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 8b925c6c 2022-07-16 thomas #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 d24ddaa6 2022-02-26 thomas #if defined(__FreeBSD__) || defined(__APPLE__)
24 def2f970 2021-09-28 thomas #define _XOPEN_SOURCE_EXTENDED /* for ncurses wide-character functions */
25 def2f970 2021-09-28 thomas #endif
26 9f7d7167 2018-04-29 stsp #include <curses.h>
27 9f7d7167 2018-04-29 stsp #include <panel.h>
28 9f7d7167 2018-04-29 stsp #include <locale.h>
29 61266923 2020-01-14 stsp #include <signal.h>
30 9f7d7167 2018-04-29 stsp #include <stdlib.h>
31 ee85c5e8 2020-02-29 stsp #include <stdarg.h>
32 26ed57b2 2018-05-19 stsp #include <stdio.h>
33 9f7d7167 2018-04-29 stsp #include <getopt.h>
34 9f7d7167 2018-04-29 stsp #include <string.h>
35 9f7d7167 2018-04-29 stsp #include <err.h>
36 80ddbec8 2018-04-29 stsp #include <unistd.h>
37 26ed57b2 2018-05-19 stsp #include <limits.h>
38 61e69b96 2018-05-20 stsp #include <wchar.h>
39 788c352e 2018-06-16 stsp #include <time.h>
40 84451b3e 2018-07-10 stsp #include <pthread.h>
41 5036bf37 2018-09-24 stsp #include <libgen.h>
42 60493ae3 2019-06-20 stsp #include <regex.h>
43 3da8ef85 2021-09-21 stsp #include <sched.h>
44 9f7d7167 2018-04-29 stsp
45 dd038bc6 2021-09-21 thomas.ad #include "got_compat.h"
46 dd038bc6 2021-09-21 thomas.ad
47 53ccebc2 2019-07-30 stsp #include "got_version.h"
48 9f7d7167 2018-04-29 stsp #include "got_error.h"
49 80ddbec8 2018-04-29 stsp #include "got_object.h"
50 80ddbec8 2018-04-29 stsp #include "got_reference.h"
51 80ddbec8 2018-04-29 stsp #include "got_repository.h"
52 80ddbec8 2018-04-29 stsp #include "got_diff.h"
53 511a516b 2018-05-19 stsp #include "got_opentemp.h"
54 00dfcb92 2018-06-11 stsp #include "got_utf8.h"
55 6fb7cd11 2019-08-22 stsp #include "got_cancel.h"
56 6fb7cd11 2019-08-22 stsp #include "got_commit_graph.h"
57 a70480e0 2018-06-23 stsp #include "got_blame.h"
58 c2db6724 2019-01-04 stsp #include "got_privsep.h"
59 1dd54920 2019-05-11 stsp #include "got_path.h"
60 b7165be3 2019-02-05 stsp #include "got_worktree.h"
61 9f7d7167 2018-04-29 stsp
62 881b2d3e 2018-04-30 stsp #ifndef MIN
63 881b2d3e 2018-04-30 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
64 881b2d3e 2018-04-30 stsp #endif
65 881b2d3e 2018-04-30 stsp
66 2bd27830 2018-10-22 stsp #ifndef MAX
67 2bd27830 2018-10-22 stsp #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
68 2bd27830 2018-10-22 stsp #endif
69 2bd27830 2018-10-22 stsp
70 acf52a76 2021-09-21 thomas.ad #ifndef CTRL
71 a4292ac5 2019-05-12 jcs #define CTRL(x) ((x) & 0x1f)
72 acf52a76 2021-09-21 thomas.ad #endif
73 2bd27830 2018-10-22 stsp
74 9f7d7167 2018-04-29 stsp #ifndef nitems
75 9f7d7167 2018-04-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
76 9f7d7167 2018-04-29 stsp #endif
77 9f7d7167 2018-04-29 stsp
78 9f7d7167 2018-04-29 stsp struct tog_cmd {
79 c2301be8 2018-04-30 stsp const char *name;
80 9f7d7167 2018-04-29 stsp const struct got_error *(*cmd_main)(int, char *[]);
81 9f7d7167 2018-04-29 stsp void (*cmd_usage)(void);
82 9f7d7167 2018-04-29 stsp };
83 9f7d7167 2018-04-29 stsp
84 6879ba42 2020-10-01 naddy __dead static void usage(int, int);
85 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
86 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
87 4ed7e80c 2018-05-20 stsp __dead static void usage_blame(void);
88 ffd1d5e5 2018-06-23 stsp __dead static void usage_tree(void);
89 6458efa5 2020-11-24 stsp __dead static void usage_ref(void);
90 9f7d7167 2018-04-29 stsp
91 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
92 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
93 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_blame(int, char *[]);
94 ffd1d5e5 2018-06-23 stsp static const struct got_error* cmd_tree(int, char *[]);
95 6458efa5 2020-11-24 stsp static const struct got_error* cmd_ref(int, char *[]);
96 9f7d7167 2018-04-29 stsp
97 641a8ee6 2022-02-16 thomas static const struct tog_cmd tog_commands[] = {
98 5e070240 2019-06-22 stsp { "log", cmd_log, usage_log },
99 5e070240 2019-06-22 stsp { "diff", cmd_diff, usage_diff },
100 5e070240 2019-06-22 stsp { "blame", cmd_blame, usage_blame },
101 5e070240 2019-06-22 stsp { "tree", cmd_tree, usage_tree },
102 6458efa5 2020-11-24 stsp { "ref", cmd_ref, usage_ref },
103 9f7d7167 2018-04-29 stsp };
104 9f7d7167 2018-04-29 stsp
105 d6b05b5b 2018-08-04 stsp enum tog_view_type {
106 d6b05b5b 2018-08-04 stsp TOG_VIEW_DIFF,
107 d6b05b5b 2018-08-04 stsp TOG_VIEW_LOG,
108 ad80ab7b 2018-08-04 stsp TOG_VIEW_BLAME,
109 6458efa5 2020-11-24 stsp TOG_VIEW_TREE,
110 6458efa5 2020-11-24 stsp TOG_VIEW_REF,
111 fc2737d5 2022-09-15 thomas TOG_VIEW_HELP
112 fc2737d5 2022-09-15 thomas };
113 fc2737d5 2022-09-15 thomas
114 fc2737d5 2022-09-15 thomas /* Match _DIFF to _HELP with enum tog_view_type TOG_VIEW_* counterparts. */
115 fc2737d5 2022-09-15 thomas enum tog_keymap_type {
116 fc2737d5 2022-09-15 thomas TOG_KEYMAP_KEYS = -2,
117 fc2737d5 2022-09-15 thomas TOG_KEYMAP_GLOBAL,
118 fc2737d5 2022-09-15 thomas TOG_KEYMAP_DIFF,
119 fc2737d5 2022-09-15 thomas TOG_KEYMAP_LOG,
120 fc2737d5 2022-09-15 thomas TOG_KEYMAP_BLAME,
121 fc2737d5 2022-09-15 thomas TOG_KEYMAP_TREE,
122 fc2737d5 2022-09-15 thomas TOG_KEYMAP_REF,
123 fc2737d5 2022-09-15 thomas TOG_KEYMAP_HELP
124 d6b05b5b 2018-08-04 stsp };
125 c3e9aa98 2019-05-13 jcs
126 a5d43cac 2022-07-01 thomas enum tog_view_mode {
127 a5d43cac 2022-07-01 thomas TOG_VIEW_SPLIT_NONE,
128 a5d43cac 2022-07-01 thomas TOG_VIEW_SPLIT_VERT,
129 a5d43cac 2022-07-01 thomas TOG_VIEW_SPLIT_HRZN
130 a5d43cac 2022-07-01 thomas };
131 a5d43cac 2022-07-01 thomas
132 a5d43cac 2022-07-01 thomas #define HSPLIT_SCALE 0.3 /* default horizontal split scale */
133 a5d43cac 2022-07-01 thomas
134 c3e9aa98 2019-05-13 jcs #define TOG_EOF_STRING "(END)"
135 d6b05b5b 2018-08-04 stsp
136 ba4f502b 2018-08-04 stsp struct commit_queue_entry {
137 ba4f502b 2018-08-04 stsp TAILQ_ENTRY(commit_queue_entry) entry;
138 ba4f502b 2018-08-04 stsp struct got_object_id *id;
139 ba4f502b 2018-08-04 stsp struct got_commit_object *commit;
140 1a76625f 2018-10-22 stsp int idx;
141 ba4f502b 2018-08-04 stsp };
142 ba4f502b 2018-08-04 stsp TAILQ_HEAD(commit_queue_head, commit_queue_entry);
143 ba4f502b 2018-08-04 stsp struct commit_queue {
144 ba4f502b 2018-08-04 stsp int ncommits;
145 ba4f502b 2018-08-04 stsp struct commit_queue_head head;
146 6d17833f 2019-11-08 stsp };
147 6d17833f 2019-11-08 stsp
148 f26dddb7 2019-11-08 stsp struct tog_color {
149 dbdddfee 2021-06-23 naddy STAILQ_ENTRY(tog_color) entry;
150 6d17833f 2019-11-08 stsp regex_t regex;
151 6d17833f 2019-11-08 stsp short colorpair;
152 15a087fe 2019-02-21 stsp };
153 dbdddfee 2021-06-23 naddy STAILQ_HEAD(tog_colors, tog_color);
154 11b20872 2019-11-08 stsp
155 d9dff0e5 2020-12-26 stsp static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
156 51a10b52 2020-12-26 stsp static struct got_reflist_object_id_map *tog_refs_idmap;
157 adf4c9e0 2022-07-03 thomas static enum got_diff_algorithm tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
158 2183bbf6 2022-01-23 thomas
159 2183bbf6 2022-01-23 thomas static const struct got_error *
160 2183bbf6 2022-01-23 thomas tog_ref_cmp_by_name(void *arg, int *cmp, struct got_reference *re1,
161 2183bbf6 2022-01-23 thomas struct got_reference* re2)
162 2183bbf6 2022-01-23 thomas {
163 2183bbf6 2022-01-23 thomas const char *name1 = got_ref_get_name(re1);
164 2183bbf6 2022-01-23 thomas const char *name2 = got_ref_get_name(re2);
165 2183bbf6 2022-01-23 thomas int isbackup1, isbackup2;
166 2183bbf6 2022-01-23 thomas
167 2183bbf6 2022-01-23 thomas /* Sort backup refs towards the bottom of the list. */
168 2183bbf6 2022-01-23 thomas isbackup1 = strncmp(name1, "refs/got/backup/", 16) == 0;
169 2183bbf6 2022-01-23 thomas isbackup2 = strncmp(name2, "refs/got/backup/", 16) == 0;
170 2183bbf6 2022-01-23 thomas if (!isbackup1 && isbackup2) {
171 2183bbf6 2022-01-23 thomas *cmp = -1;
172 2183bbf6 2022-01-23 thomas return NULL;
173 2183bbf6 2022-01-23 thomas } else if (isbackup1 && !isbackup2) {
174 2183bbf6 2022-01-23 thomas *cmp = 1;
175 2183bbf6 2022-01-23 thomas return NULL;
176 2183bbf6 2022-01-23 thomas }
177 2183bbf6 2022-01-23 thomas
178 2183bbf6 2022-01-23 thomas *cmp = got_path_cmp(name1, name2, strlen(name1), strlen(name2));
179 2183bbf6 2022-01-23 thomas return NULL;
180 2183bbf6 2022-01-23 thomas }
181 51a10b52 2020-12-26 stsp
182 11b20872 2019-11-08 stsp static const struct got_error *
183 3bfadbd4 2021-11-20 thomas tog_load_refs(struct got_repository *repo, int sort_by_date)
184 51a10b52 2020-12-26 stsp {
185 51a10b52 2020-12-26 stsp const struct got_error *err;
186 51a10b52 2020-12-26 stsp
187 3bfadbd4 2021-11-20 thomas err = got_ref_list(&tog_refs, repo, NULL, sort_by_date ?
188 2183bbf6 2022-01-23 thomas got_ref_cmp_by_commit_timestamp_descending : tog_ref_cmp_by_name,
189 3bfadbd4 2021-11-20 thomas repo);
190 51a10b52 2020-12-26 stsp if (err)
191 51a10b52 2020-12-26 stsp return err;
192 51a10b52 2020-12-26 stsp
193 51a10b52 2020-12-26 stsp return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
194 51a10b52 2020-12-26 stsp repo);
195 51a10b52 2020-12-26 stsp }
196 51a10b52 2020-12-26 stsp
197 51a10b52 2020-12-26 stsp static void
198 51a10b52 2020-12-26 stsp tog_free_refs(void)
199 51a10b52 2020-12-26 stsp {
200 51a10b52 2020-12-26 stsp if (tog_refs_idmap) {
201 f193b038 2020-12-26 stsp got_reflist_object_id_map_free(tog_refs_idmap);
202 51a10b52 2020-12-26 stsp tog_refs_idmap = NULL;
203 51a10b52 2020-12-26 stsp }
204 51a10b52 2020-12-26 stsp got_ref_list_free(&tog_refs);
205 51a10b52 2020-12-26 stsp }
206 51a10b52 2020-12-26 stsp
207 51a10b52 2020-12-26 stsp static const struct got_error *
208 11b20872 2019-11-08 stsp add_color(struct tog_colors *colors, const char *pattern,
209 11b20872 2019-11-08 stsp int idx, short color)
210 11b20872 2019-11-08 stsp {
211 11b20872 2019-11-08 stsp const struct got_error *err = NULL;
212 11b20872 2019-11-08 stsp struct tog_color *tc;
213 11b20872 2019-11-08 stsp int regerr = 0;
214 11b20872 2019-11-08 stsp
215 11b20872 2019-11-08 stsp if (idx < 1 || idx > COLOR_PAIRS - 1)
216 11b20872 2019-11-08 stsp return NULL;
217 11b20872 2019-11-08 stsp
218 11b20872 2019-11-08 stsp init_pair(idx, color, -1);
219 11b20872 2019-11-08 stsp
220 11b20872 2019-11-08 stsp tc = calloc(1, sizeof(*tc));
221 11b20872 2019-11-08 stsp if (tc == NULL)
222 11b20872 2019-11-08 stsp return got_error_from_errno("calloc");
223 11b20872 2019-11-08 stsp regerr = regcomp(&tc->regex, pattern,
224 11b20872 2019-11-08 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
225 11b20872 2019-11-08 stsp if (regerr) {
226 11b20872 2019-11-08 stsp static char regerr_msg[512];
227 11b20872 2019-11-08 stsp static char err_msg[512];
228 11b20872 2019-11-08 stsp regerror(regerr, &tc->regex, regerr_msg,
229 11b20872 2019-11-08 stsp sizeof(regerr_msg));
230 11b20872 2019-11-08 stsp snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
231 11b20872 2019-11-08 stsp regerr_msg);
232 11b20872 2019-11-08 stsp err = got_error_msg(GOT_ERR_REGEX, err_msg);
233 11b20872 2019-11-08 stsp free(tc);
234 11b20872 2019-11-08 stsp return err;
235 11b20872 2019-11-08 stsp }
236 11b20872 2019-11-08 stsp tc->colorpair = idx;
237 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(colors, tc, entry);
238 11b20872 2019-11-08 stsp return NULL;
239 11b20872 2019-11-08 stsp }
240 11b20872 2019-11-08 stsp
241 11b20872 2019-11-08 stsp static void
242 11b20872 2019-11-08 stsp free_colors(struct tog_colors *colors)
243 11b20872 2019-11-08 stsp {
244 11b20872 2019-11-08 stsp struct tog_color *tc;
245 11b20872 2019-11-08 stsp
246 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(colors)) {
247 dbdddfee 2021-06-23 naddy tc = STAILQ_FIRST(colors);
248 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(colors, entry);
249 11b20872 2019-11-08 stsp regfree(&tc->regex);
250 11b20872 2019-11-08 stsp free(tc);
251 11b20872 2019-11-08 stsp }
252 11b20872 2019-11-08 stsp }
253 11b20872 2019-11-08 stsp
254 ef20f542 2022-06-26 thomas static struct tog_color *
255 11b20872 2019-11-08 stsp get_color(struct tog_colors *colors, int colorpair)
256 11b20872 2019-11-08 stsp {
257 11b20872 2019-11-08 stsp struct tog_color *tc = NULL;
258 11b20872 2019-11-08 stsp
259 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
260 11b20872 2019-11-08 stsp if (tc->colorpair == colorpair)
261 11b20872 2019-11-08 stsp return tc;
262 11b20872 2019-11-08 stsp }
263 11b20872 2019-11-08 stsp
264 11b20872 2019-11-08 stsp return NULL;
265 11b20872 2019-11-08 stsp }
266 11b20872 2019-11-08 stsp
267 11b20872 2019-11-08 stsp static int
268 11b20872 2019-11-08 stsp default_color_value(const char *envvar)
269 11b20872 2019-11-08 stsp {
270 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
271 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
272 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
273 11b20872 2019-11-08 stsp return COLOR_CYAN;
274 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
275 11b20872 2019-11-08 stsp return COLOR_YELLOW;
276 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
277 11b20872 2019-11-08 stsp return COLOR_GREEN;
278 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
279 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
280 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
281 91b8c405 2020-01-25 stsp return COLOR_MAGENTA;
282 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
283 91b8c405 2020-01-25 stsp return COLOR_CYAN;
284 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
285 11b20872 2019-11-08 stsp return COLOR_GREEN;
286 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
287 11b20872 2019-11-08 stsp return COLOR_GREEN;
288 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
289 11b20872 2019-11-08 stsp return COLOR_CYAN;
290 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
291 11b20872 2019-11-08 stsp return COLOR_YELLOW;
292 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
293 6458efa5 2020-11-24 stsp return COLOR_GREEN;
294 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
295 6458efa5 2020-11-24 stsp return COLOR_MAGENTA;
296 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
297 6458efa5 2020-11-24 stsp return COLOR_YELLOW;
298 2183bbf6 2022-01-23 thomas if (strcmp(envvar, "TOG_COLOR_REFS_BACKUP") == 0)
299 2183bbf6 2022-01-23 thomas return COLOR_CYAN;
300 11b20872 2019-11-08 stsp
301 11b20872 2019-11-08 stsp return -1;
302 11b20872 2019-11-08 stsp }
303 11b20872 2019-11-08 stsp
304 11b20872 2019-11-08 stsp static int
305 11b20872 2019-11-08 stsp get_color_value(const char *envvar)
306 11b20872 2019-11-08 stsp {
307 11b20872 2019-11-08 stsp const char *val = getenv(envvar);
308 11b20872 2019-11-08 stsp
309 11b20872 2019-11-08 stsp if (val == NULL)
310 11b20872 2019-11-08 stsp return default_color_value(envvar);
311 15a087fe 2019-02-21 stsp
312 11b20872 2019-11-08 stsp if (strcasecmp(val, "black") == 0)
313 11b20872 2019-11-08 stsp return COLOR_BLACK;
314 11b20872 2019-11-08 stsp if (strcasecmp(val, "red") == 0)
315 11b20872 2019-11-08 stsp return COLOR_RED;
316 11b20872 2019-11-08 stsp if (strcasecmp(val, "green") == 0)
317 11b20872 2019-11-08 stsp return COLOR_GREEN;
318 11b20872 2019-11-08 stsp if (strcasecmp(val, "yellow") == 0)
319 11b20872 2019-11-08 stsp return COLOR_YELLOW;
320 11b20872 2019-11-08 stsp if (strcasecmp(val, "blue") == 0)
321 11b20872 2019-11-08 stsp return COLOR_BLUE;
322 11b20872 2019-11-08 stsp if (strcasecmp(val, "magenta") == 0)
323 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
324 11b20872 2019-11-08 stsp if (strcasecmp(val, "cyan") == 0)
325 11b20872 2019-11-08 stsp return COLOR_CYAN;
326 11b20872 2019-11-08 stsp if (strcasecmp(val, "white") == 0)
327 11b20872 2019-11-08 stsp return COLOR_WHITE;
328 11b20872 2019-11-08 stsp if (strcasecmp(val, "default") == 0)
329 11b20872 2019-11-08 stsp return -1;
330 11b20872 2019-11-08 stsp
331 11b20872 2019-11-08 stsp return default_color_value(envvar);
332 11b20872 2019-11-08 stsp }
333 11b20872 2019-11-08 stsp
334 15a087fe 2019-02-21 stsp struct tog_diff_view_state {
335 15a087fe 2019-02-21 stsp struct got_object_id *id1, *id2;
336 3dbaef42 2020-11-24 stsp const char *label1, *label2;
337 a0f32f33 2022-06-13 thomas FILE *f, *f1, *f2;
338 19a6a6b5 2022-07-01 thomas int fd1, fd2;
339 82c78e96 2022-08-06 thomas int lineno;
340 15a087fe 2019-02-21 stsp int first_displayed_line;
341 15a087fe 2019-02-21 stsp int last_displayed_line;
342 15a087fe 2019-02-21 stsp int eof;
343 15a087fe 2019-02-21 stsp int diff_context;
344 3dbaef42 2020-11-24 stsp int ignore_whitespace;
345 64453f7e 2020-11-21 stsp int force_text_diff;
346 15a087fe 2019-02-21 stsp struct got_repository *repo;
347 82c78e96 2022-08-06 thomas struct got_diff_line *lines;
348 fe621944 2020-11-10 stsp size_t nlines;
349 f44b1f58 2020-02-02 tracey int matched_line;
350 f44b1f58 2020-02-02 tracey int selected_line;
351 15a087fe 2019-02-21 stsp
352 4fc71f3b 2022-07-12 thomas /* passed from log or blame view; may be NULL */
353 4fc71f3b 2022-07-12 thomas struct tog_view *parent_view;
354 b01e7d3b 2018-08-04 stsp };
355 b01e7d3b 2018-08-04 stsp
356 1a76625f 2018-10-22 stsp pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
357 f2d749db 2022-07-12 thomas static volatile sig_atomic_t tog_thread_error;
358 1a76625f 2018-10-22 stsp
359 1a76625f 2018-10-22 stsp struct tog_log_thread_args {
360 1a76625f 2018-10-22 stsp pthread_cond_t need_commits;
361 7c1452c1 2020-03-26 stsp pthread_cond_t commit_loaded;
362 1a76625f 2018-10-22 stsp int commits_needed;
363 fb280deb 2021-08-30 stsp int load_all;
364 b01e7d3b 2018-08-04 stsp struct got_commit_graph *graph;
365 7e8004ba 2022-09-11 thomas struct commit_queue *real_commits;
366 1a76625f 2018-10-22 stsp const char *in_repo_path;
367 1a76625f 2018-10-22 stsp struct got_object_id *start_id;
368 1a76625f 2018-10-22 stsp struct got_repository *repo;
369 1af5eddf 2022-06-23 thomas int *pack_fds;
370 1a76625f 2018-10-22 stsp int log_complete;
371 1a76625f 2018-10-22 stsp sig_atomic_t *quit;
372 1a76625f 2018-10-22 stsp struct commit_queue_entry **first_displayed_entry;
373 1a76625f 2018-10-22 stsp struct commit_queue_entry **selected_entry;
374 13add988 2019-10-15 stsp int *searching;
375 13add988 2019-10-15 stsp int *search_next_done;
376 13add988 2019-10-15 stsp regex_t *regex;
377 7e8004ba 2022-09-11 thomas int *limiting;
378 7e8004ba 2022-09-11 thomas int limit_match;
379 7e8004ba 2022-09-11 thomas regex_t *limit_regex;
380 7e8004ba 2022-09-11 thomas struct commit_queue *limit_commits;
381 1a76625f 2018-10-22 stsp };
382 1a76625f 2018-10-22 stsp
383 1a76625f 2018-10-22 stsp struct tog_log_view_state {
384 7e8004ba 2022-09-11 thomas struct commit_queue *commits;
385 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *first_displayed_entry;
386 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *last_displayed_entry;
387 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *selected_entry;
388 7e8004ba 2022-09-11 thomas struct commit_queue real_commits;
389 b01e7d3b 2018-08-04 stsp int selected;
390 b01e7d3b 2018-08-04 stsp char *in_repo_path;
391 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
392 b672a97a 2020-01-27 stsp int log_branches;
393 b01e7d3b 2018-08-04 stsp struct got_repository *repo;
394 5036bf37 2018-09-24 stsp struct got_object_id *start_id;
395 1a76625f 2018-10-22 stsp sig_atomic_t quit;
396 1a76625f 2018-10-22 stsp pthread_t thread;
397 1a76625f 2018-10-22 stsp struct tog_log_thread_args thread_args;
398 60493ae3 2019-06-20 stsp struct commit_queue_entry *matched_entry;
399 96e2b566 2019-07-08 stsp struct commit_queue_entry *search_entry;
400 11b20872 2019-11-08 stsp struct tog_colors colors;
401 f69c5a46 2022-07-19 thomas int use_committer;
402 7e8004ba 2022-09-11 thomas int limit_view;
403 7e8004ba 2022-09-11 thomas regex_t limit_regex;
404 7e8004ba 2022-09-11 thomas struct commit_queue limit_commits;
405 ba4f502b 2018-08-04 stsp };
406 11b20872 2019-11-08 stsp
407 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_MINUS 1
408 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_PLUS 2
409 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_CHUNK_HEADER 3
410 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_META 4
411 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SUBMODULE 5
412 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SYMLINK 6
413 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_DIRECTORY 7
414 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_EXECUTABLE 8
415 11b20872 2019-11-08 stsp #define TOG_COLOR_COMMIT 9
416 11b20872 2019-11-08 stsp #define TOG_COLOR_AUTHOR 10
417 bf30f154 2020-12-07 naddy #define TOG_COLOR_DATE 11
418 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_HEADS 12
419 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_TAGS 13
420 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_REMOTES 14
421 2183bbf6 2022-01-23 thomas #define TOG_COLOR_REFS_BACKUP 15
422 ba4f502b 2018-08-04 stsp
423 e9424729 2018-08-04 stsp struct tog_blame_cb_args {
424 e9424729 2018-08-04 stsp struct tog_blame_line *lines; /* one per line */
425 e9424729 2018-08-04 stsp int nlines;
426 e9424729 2018-08-04 stsp
427 e9424729 2018-08-04 stsp struct tog_view *view;
428 e9424729 2018-08-04 stsp struct got_object_id *commit_id;
429 e9424729 2018-08-04 stsp int *quit;
430 e9424729 2018-08-04 stsp };
431 e9424729 2018-08-04 stsp
432 e9424729 2018-08-04 stsp struct tog_blame_thread_args {
433 e9424729 2018-08-04 stsp const char *path;
434 e9424729 2018-08-04 stsp struct got_repository *repo;
435 e9424729 2018-08-04 stsp struct tog_blame_cb_args *cb_args;
436 e9424729 2018-08-04 stsp int *complete;
437 fc06ba56 2019-08-22 stsp got_cancel_cb cancel_cb;
438 fc06ba56 2019-08-22 stsp void *cancel_arg;
439 e9424729 2018-08-04 stsp };
440 e9424729 2018-08-04 stsp
441 e9424729 2018-08-04 stsp struct tog_blame {
442 e9424729 2018-08-04 stsp FILE *f;
443 be659d10 2020-11-18 stsp off_t filesize;
444 e9424729 2018-08-04 stsp struct tog_blame_line *lines;
445 6fcac457 2018-11-19 stsp int nlines;
446 6c4c42e0 2019-06-24 stsp off_t *line_offsets;
447 e9424729 2018-08-04 stsp pthread_t thread;
448 e9424729 2018-08-04 stsp struct tog_blame_thread_args thread_args;
449 e9424729 2018-08-04 stsp struct tog_blame_cb_args cb_args;
450 e9424729 2018-08-04 stsp const char *path;
451 7cd52833 2022-06-23 thomas int *pack_fds;
452 e9424729 2018-08-04 stsp };
453 e9424729 2018-08-04 stsp
454 7cbe629d 2018-08-04 stsp struct tog_blame_view_state {
455 7cbe629d 2018-08-04 stsp int first_displayed_line;
456 7cbe629d 2018-08-04 stsp int last_displayed_line;
457 7cbe629d 2018-08-04 stsp int selected_line;
458 4fc71f3b 2022-07-12 thomas int last_diffed_line;
459 7cbe629d 2018-08-04 stsp int blame_complete;
460 e5a0f69f 2018-08-18 stsp int eof;
461 e5a0f69f 2018-08-18 stsp int done;
462 7cbe629d 2018-08-04 stsp struct got_object_id_queue blamed_commits;
463 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
464 e5a0f69f 2018-08-18 stsp char *path;
465 7cbe629d 2018-08-04 stsp struct got_repository *repo;
466 ad80ab7b 2018-08-04 stsp struct got_object_id *commit_id;
467 2a31b33b 2022-07-23 thomas struct got_object_id *id_to_log;
468 e9424729 2018-08-04 stsp struct tog_blame blame;
469 6c4c42e0 2019-06-24 stsp int matched_line;
470 11b20872 2019-11-08 stsp struct tog_colors colors;
471 ad80ab7b 2018-08-04 stsp };
472 ad80ab7b 2018-08-04 stsp
473 ad80ab7b 2018-08-04 stsp struct tog_parent_tree {
474 ad80ab7b 2018-08-04 stsp TAILQ_ENTRY(tog_parent_tree) entry;
475 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
476 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
477 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
478 ad80ab7b 2018-08-04 stsp int selected;
479 ad80ab7b 2018-08-04 stsp };
480 ad80ab7b 2018-08-04 stsp
481 ad80ab7b 2018-08-04 stsp TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
482 ad80ab7b 2018-08-04 stsp
483 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state {
484 ad80ab7b 2018-08-04 stsp char *tree_label;
485 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id;/* commit which this tree belongs to */
486 bc573f3b 2021-07-10 stsp struct got_tree_object *root; /* the commit's root tree entry */
487 bc573f3b 2021-07-10 stsp struct got_tree_object *tree; /* currently displayed (sub-)tree */
488 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
489 ad80ab7b 2018-08-04 stsp struct got_tree_entry *last_displayed_entry;
490 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
491 416a95c5 2019-01-24 stsp int ndisplayed, selected, show_ids;
492 bc573f3b 2021-07-10 stsp struct tog_parent_trees parents; /* parent trees of current sub-tree */
493 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
494 ad80ab7b 2018-08-04 stsp struct got_repository *repo;
495 7c32bd05 2019-06-22 stsp struct got_tree_entry *matched_entry;
496 6458efa5 2020-11-24 stsp struct tog_colors colors;
497 6458efa5 2020-11-24 stsp };
498 6458efa5 2020-11-24 stsp
499 6458efa5 2020-11-24 stsp struct tog_reflist_entry {
500 6458efa5 2020-11-24 stsp TAILQ_ENTRY(tog_reflist_entry) entry;
501 6458efa5 2020-11-24 stsp struct got_reference *ref;
502 6458efa5 2020-11-24 stsp int idx;
503 6458efa5 2020-11-24 stsp };
504 6458efa5 2020-11-24 stsp
505 6458efa5 2020-11-24 stsp TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
506 6458efa5 2020-11-24 stsp
507 6458efa5 2020-11-24 stsp struct tog_ref_view_state {
508 dae613fa 2020-12-26 stsp struct tog_reflist_head refs;
509 6458efa5 2020-11-24 stsp struct tog_reflist_entry *first_displayed_entry;
510 6458efa5 2020-11-24 stsp struct tog_reflist_entry *last_displayed_entry;
511 6458efa5 2020-11-24 stsp struct tog_reflist_entry *selected_entry;
512 84227eb1 2022-06-23 thomas int nrefs, ndisplayed, selected, show_date, show_ids, sort_by_date;
513 6458efa5 2020-11-24 stsp struct got_repository *repo;
514 6458efa5 2020-11-24 stsp struct tog_reflist_entry *matched_entry;
515 bddb1296 2019-11-08 stsp struct tog_colors colors;
516 fc2737d5 2022-09-15 thomas };
517 fc2737d5 2022-09-15 thomas
518 fc2737d5 2022-09-15 thomas struct tog_help_view_state {
519 fc2737d5 2022-09-15 thomas FILE *f;
520 fc2737d5 2022-09-15 thomas off_t *line_offsets;
521 fc2737d5 2022-09-15 thomas size_t nlines;
522 fc2737d5 2022-09-15 thomas int lineno;
523 fc2737d5 2022-09-15 thomas int first_displayed_line;
524 fc2737d5 2022-09-15 thomas int last_displayed_line;
525 fc2737d5 2022-09-15 thomas int eof;
526 fc2737d5 2022-09-15 thomas int matched_line;
527 fc2737d5 2022-09-15 thomas int selected_line;
528 fc2737d5 2022-09-15 thomas int all;
529 fc2737d5 2022-09-15 thomas enum tog_keymap_type type;
530 fc2737d5 2022-09-15 thomas };
531 fc2737d5 2022-09-15 thomas
532 fc2737d5 2022-09-15 thomas #define GENERATE_HELP \
533 fc2737d5 2022-09-15 thomas KEYMAP_("Global", TOG_KEYMAP_GLOBAL), \
534 fc2737d5 2022-09-15 thomas KEY_("H F1", "Open view-specific help (double tap for all help)"), \
535 fc2737d5 2022-09-15 thomas KEY_("k C-p Up", "Move cursor or page up one line"), \
536 fc2737d5 2022-09-15 thomas KEY_("j C-n Down", "Move cursor or page down one line"), \
537 fc2737d5 2022-09-15 thomas KEY_("C-b b PgUp", "Scroll the view up one page"), \
538 fc2737d5 2022-09-15 thomas KEY_("C-f f PgDn Space", "Scroll the view down one page"), \
539 fc2737d5 2022-09-15 thomas KEY_("C-u u", "Scroll the view up one half page"), \
540 fc2737d5 2022-09-15 thomas KEY_("C-d d", "Scroll the view down one half page"), \
541 fc2737d5 2022-09-15 thomas KEY_("g Home", "Go to line N (default: first line)"), \
542 fc2737d5 2022-09-15 thomas KEY_("G End", "Go to line N (default: last line)"), \
543 fc2737d5 2022-09-15 thomas KEY_("l Right", "Scroll the view right"), \
544 fc2737d5 2022-09-15 thomas KEY_("h Left", "Scroll the view left"), \
545 fc2737d5 2022-09-15 thomas KEY_("$", "Scroll view to the rightmost position"), \
546 fc2737d5 2022-09-15 thomas KEY_("0", "Scroll view to the leftmost position"), \
547 fc2737d5 2022-09-15 thomas KEY_("-", "Decrease size of the focussed split"), \
548 fc2737d5 2022-09-15 thomas KEY_("+", "Increase size of the focussed split"), \
549 fc2737d5 2022-09-15 thomas KEY_("Tab", "Switch focus between views"), \
550 fc2737d5 2022-09-15 thomas KEY_("F", "Toggle fullscreen mode"), \
551 fc2737d5 2022-09-15 thomas KEY_("/", "Open prompt to enter search term"), \
552 fc2737d5 2022-09-15 thomas KEY_("n", "Find next line/token matching the current search term"), \
553 fc2737d5 2022-09-15 thomas KEY_("N", "Find previous line/token matching the current search term"),\
554 fc2737d5 2022-09-15 thomas KEY_("q", "Quit the focussed view"), \
555 fc2737d5 2022-09-15 thomas KEY_("Q", "Quit tog"), \
556 fc2737d5 2022-09-15 thomas \
557 fc2737d5 2022-09-15 thomas KEYMAP_("Log", TOG_KEYMAP_LOG), \
558 fc2737d5 2022-09-15 thomas KEY_("< ,", "Move cursor up one commit"), \
559 fc2737d5 2022-09-15 thomas KEY_("> .", "Move cursor down one commit"), \
560 fc2737d5 2022-09-15 thomas KEY_("Enter", "Open diff view of the selected commit"), \
561 fc2737d5 2022-09-15 thomas KEY_("B", "Reload the log view and toggle display of merged commits"), \
562 fc2737d5 2022-09-15 thomas KEY_("R", "Open ref view of all repository references"), \
563 fc2737d5 2022-09-15 thomas KEY_("T", "Display tree view of the repository from the selected" \
564 fc2737d5 2022-09-15 thomas " commit"), \
565 fc2737d5 2022-09-15 thomas KEY_("@", "Toggle between displaying author and committer name"), \
566 fc2737d5 2022-09-15 thomas KEY_("&", "Open prompt to enter term to limit commits displayed"), \
567 fc2737d5 2022-09-15 thomas KEY_("C-g Backspace", "Cancel current search or log operation"), \
568 fc2737d5 2022-09-15 thomas KEY_("C-l", "Reload the log view with new commits in the repository"), \
569 fc2737d5 2022-09-15 thomas \
570 fc2737d5 2022-09-15 thomas KEYMAP_("Diff", TOG_KEYMAP_DIFF), \
571 fc2737d5 2022-09-15 thomas KEY_("K < ,", "Display diff of next line in the file/log entry"), \
572 fc2737d5 2022-09-15 thomas KEY_("J > .", "Display diff of previous line in the file/log entry"), \
573 fc2737d5 2022-09-15 thomas KEY_("A", "Toggle between Myers and Patience diff algorithm"), \
574 fc2737d5 2022-09-15 thomas KEY_("a", "Toggle treatment of file as ASCII irrespective of binary" \
575 fc2737d5 2022-09-15 thomas " data"), \
576 fc2737d5 2022-09-15 thomas KEY_("(", "Go to the previous file in the diff"), \
577 fc2737d5 2022-09-15 thomas KEY_(")", "Go to the next file in the diff"), \
578 fc2737d5 2022-09-15 thomas KEY_("{", "Go to the previous hunk in the diff"), \
579 fc2737d5 2022-09-15 thomas KEY_("}", "Go to the next hunk in the diff"), \
580 fc2737d5 2022-09-15 thomas KEY_("[", "Decrease the number of context lines"), \
581 fc2737d5 2022-09-15 thomas KEY_("]", "Increase the number of context lines"), \
582 fc2737d5 2022-09-15 thomas KEY_("w", "Toggle ignore whitespace-only changes in the diff"), \
583 fc2737d5 2022-09-15 thomas \
584 fc2737d5 2022-09-15 thomas KEYMAP_("Blame", TOG_KEYMAP_BLAME), \
585 fc2737d5 2022-09-15 thomas KEY_("Enter", "Display diff view of the selected line's commit"), \
586 fc2737d5 2022-09-15 thomas KEY_("A", "Toggle diff algorithm between Myers and Patience"), \
587 fc2737d5 2022-09-15 thomas KEY_("L", "Open log view for the currently selected annotated line"), \
588 fc2737d5 2022-09-15 thomas KEY_("C", "Reload view with the previously blamed commit"), \
589 fc2737d5 2022-09-15 thomas KEY_("c", "Reload view with the version of the file found in the" \
590 fc2737d5 2022-09-15 thomas " selected line's commit"), \
591 fc2737d5 2022-09-15 thomas KEY_("p", "Reload view with the version of the file found in the" \
592 fc2737d5 2022-09-15 thomas " selected line's parent commit"), \
593 fc2737d5 2022-09-15 thomas \
594 fc2737d5 2022-09-15 thomas KEYMAP_("Tree", TOG_KEYMAP_TREE), \
595 fc2737d5 2022-09-15 thomas KEY_("Enter", "Enter selected directory or open blame view of the" \
596 fc2737d5 2022-09-15 thomas " selected file"), \
597 fc2737d5 2022-09-15 thomas KEY_("L", "Open log view for the selected entry"), \
598 fc2737d5 2022-09-15 thomas KEY_("R", "Open ref view of all repository references"), \
599 fc2737d5 2022-09-15 thomas KEY_("i", "Show object IDs for all tree entries"), \
600 fc2737d5 2022-09-15 thomas KEY_("Backspace", "Return to the parent directory"), \
601 fc2737d5 2022-09-15 thomas \
602 fc2737d5 2022-09-15 thomas KEYMAP_("Ref", TOG_KEYMAP_REF), \
603 fc2737d5 2022-09-15 thomas KEY_("Enter", "Display log view of the selected reference"), \
604 fc2737d5 2022-09-15 thomas KEY_("T", "Display tree view of the selected reference"), \
605 fc2737d5 2022-09-15 thomas KEY_("i", "Toggle display of IDs for all non-symbolic references"), \
606 fc2737d5 2022-09-15 thomas KEY_("m", "Toggle display of last modified date for each reference"), \
607 fc2737d5 2022-09-15 thomas KEY_("o", "Toggle reference sort order (name -> timestamp)"), \
608 fc2737d5 2022-09-15 thomas KEY_("C-l", "Reload view with all repository references")
609 fc2737d5 2022-09-15 thomas
610 fc2737d5 2022-09-15 thomas struct tog_key_map {
611 fc2737d5 2022-09-15 thomas const char *keys;
612 fc2737d5 2022-09-15 thomas const char *info;
613 fc2737d5 2022-09-15 thomas enum tog_keymap_type type;
614 7cbe629d 2018-08-04 stsp };
615 7cbe629d 2018-08-04 stsp
616 669b5ffa 2018-10-07 stsp /*
617 669b5ffa 2018-10-07 stsp * We implement two types of views: parent views and child views.
618 669b5ffa 2018-10-07 stsp *
619 e78dc838 2020-12-04 stsp * The 'Tab' key switches focus between a parent view and its child view.
620 669b5ffa 2018-10-07 stsp * Child views are shown side-by-side to their parent view, provided
621 669b5ffa 2018-10-07 stsp * there is enough screen estate.
622 669b5ffa 2018-10-07 stsp *
623 669b5ffa 2018-10-07 stsp * When a new view is opened from within a parent view, this new view
624 669b5ffa 2018-10-07 stsp * becomes a child view of the parent view, replacing any existing child.
625 669b5ffa 2018-10-07 stsp *
626 669b5ffa 2018-10-07 stsp * When a new view is opened from within a child view, this new view
627 669b5ffa 2018-10-07 stsp * becomes a parent view which will obscure the views below until the
628 669b5ffa 2018-10-07 stsp * user quits the new parent view by typing 'q'.
629 669b5ffa 2018-10-07 stsp *
630 669b5ffa 2018-10-07 stsp * This list of views contains parent views only.
631 669b5ffa 2018-10-07 stsp * Child views are only pointed to by their parent view.
632 669b5ffa 2018-10-07 stsp */
633 bcbd79e2 2018-08-19 stsp TAILQ_HEAD(tog_view_list_head, tog_view);
634 669b5ffa 2018-10-07 stsp
635 cc3c9aac 2018-08-01 stsp struct tog_view {
636 e5a0f69f 2018-08-18 stsp TAILQ_ENTRY(tog_view) entry;
637 26ed57b2 2018-05-19 stsp WINDOW *window;
638 26ed57b2 2018-05-19 stsp PANEL *panel;
639 a5d43cac 2022-07-01 thomas int nlines, ncols, begin_y, begin_x; /* based on split height/width */
640 53d2bdd3 2022-07-10 thomas int resized_y, resized_x; /* begin_y/x based on user resizing */
641 05171be4 2022-06-23 thomas int maxx, x; /* max column and current start column */
642 f7d12f7e 2018-08-01 stsp int lines, cols; /* copies of LINES and COLS */
643 a5d43cac 2022-07-01 thomas int nscrolled, offset; /* lines scrolled and hsplit line offset */
644 07dd3ed3 2022-08-06 thomas int gline, hiline; /* navigate to and highlight this nG line */
645 07b0611c 2022-06-23 thomas int ch, count; /* current keymap and count prefix */
646 ea0bff04 2022-07-19 thomas int resized; /* set when in a resize event */
647 e78dc838 2020-12-04 stsp int focussed; /* Only set on one parent or child view at a time. */
648 9970f7fc 2020-12-03 stsp int dying;
649 669b5ffa 2018-10-07 stsp struct tog_view *parent;
650 669b5ffa 2018-10-07 stsp struct tog_view *child;
651 5dc9f4bc 2018-08-04 stsp
652 e78dc838 2020-12-04 stsp /*
653 e78dc838 2020-12-04 stsp * This flag is initially set on parent views when a new child view
654 e78dc838 2020-12-04 stsp * is created. It gets toggled when the 'Tab' key switches focus
655 e78dc838 2020-12-04 stsp * between parent and child.
656 e78dc838 2020-12-04 stsp * The flag indicates whether focus should be passed on to our child
657 e78dc838 2020-12-04 stsp * view if this parent view gets picked for focus after another parent
658 e78dc838 2020-12-04 stsp * view was closed. This prevents child views from losing focus in such
659 e78dc838 2020-12-04 stsp * situations.
660 e78dc838 2020-12-04 stsp */
661 e78dc838 2020-12-04 stsp int focus_child;
662 e78dc838 2020-12-04 stsp
663 a5d43cac 2022-07-01 thomas enum tog_view_mode mode;
664 5dc9f4bc 2018-08-04 stsp /* type-specific state */
665 d6b05b5b 2018-08-04 stsp enum tog_view_type type;
666 5dc9f4bc 2018-08-04 stsp union {
667 b01e7d3b 2018-08-04 stsp struct tog_diff_view_state diff;
668 b01e7d3b 2018-08-04 stsp struct tog_log_view_state log;
669 7cbe629d 2018-08-04 stsp struct tog_blame_view_state blame;
670 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state tree;
671 6458efa5 2020-11-24 stsp struct tog_ref_view_state ref;
672 fc2737d5 2022-09-15 thomas struct tog_help_view_state help;
673 5dc9f4bc 2018-08-04 stsp } state;
674 e5a0f69f 2018-08-18 stsp
675 e5a0f69f 2018-08-18 stsp const struct got_error *(*show)(struct tog_view *);
676 e5a0f69f 2018-08-18 stsp const struct got_error *(*input)(struct tog_view **,
677 e78dc838 2020-12-04 stsp struct tog_view *, int);
678 adf4c9e0 2022-07-03 thomas const struct got_error *(*reset)(struct tog_view *);
679 ea0bff04 2022-07-19 thomas const struct got_error *(*resize)(struct tog_view *, int);
680 e5a0f69f 2018-08-18 stsp const struct got_error *(*close)(struct tog_view *);
681 60493ae3 2019-06-20 stsp
682 60493ae3 2019-06-20 stsp const struct got_error *(*search_start)(struct tog_view *);
683 60493ae3 2019-06-20 stsp const struct got_error *(*search_next)(struct tog_view *);
684 2a7d3cd7 2022-09-17 thomas void (*search_setup)(struct tog_view *, FILE **, off_t **, size_t *,
685 2a7d3cd7 2022-09-17 thomas int **, int **, int **, int **);
686 c0c4acc8 2021-01-24 stsp int search_started;
687 60493ae3 2019-06-20 stsp int searching;
688 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_FORWARD 1
689 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_BACKWARD 2
690 60493ae3 2019-06-20 stsp int search_next_done;
691 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_HAVE_MORE 1
692 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_NO_MORE 2
693 f9967bca 2020-03-27 stsp #define TOG_SEARCH_HAVE_NONE 3
694 1803e47f 2019-06-22 stsp regex_t regex;
695 41605754 2020-11-12 stsp regmatch_t regmatch;
696 cc3c9aac 2018-08-01 stsp };
697 cd0acaa7 2018-05-20 stsp
698 ba4f502b 2018-08-04 stsp static const struct got_error *open_diff_view(struct tog_view *,
699 3dbaef42 2020-11-24 stsp struct got_object_id *, struct got_object_id *,
700 3dbaef42 2020-11-24 stsp const char *, const char *, int, int, int, struct tog_view *,
701 78756c87 2020-11-24 stsp struct got_repository *);
702 5dc9f4bc 2018-08-04 stsp static const struct got_error *show_diff_view(struct tog_view *);
703 e5a0f69f 2018-08-18 stsp static const struct got_error *input_diff_view(struct tog_view **,
704 e78dc838 2020-12-04 stsp struct tog_view *, int);
705 adf4c9e0 2022-07-03 thomas static const struct got_error *reset_diff_view(struct tog_view *);
706 e5a0f69f 2018-08-18 stsp static const struct got_error* close_diff_view(struct tog_view *);
707 f44b1f58 2020-02-02 tracey static const struct got_error *search_start_diff_view(struct tog_view *);
708 2a7d3cd7 2022-09-17 thomas static void search_setup_diff_view(struct tog_view *, FILE **, off_t **,
709 2a7d3cd7 2022-09-17 thomas size_t *, int **, int **, int **, int **);
710 fc2737d5 2022-09-15 thomas static const struct got_error *search_next_view_match(struct tog_view *);
711 e5a0f69f 2018-08-18 stsp
712 ba4f502b 2018-08-04 stsp static const struct got_error *open_log_view(struct tog_view *,
713 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *,
714 78756c87 2020-11-24 stsp const char *, const char *, int);
715 ba4f502b 2018-08-04 stsp static const struct got_error * show_log_view(struct tog_view *);
716 e5a0f69f 2018-08-18 stsp static const struct got_error *input_log_view(struct tog_view **,
717 e78dc838 2020-12-04 stsp struct tog_view *, int);
718 ea0bff04 2022-07-19 thomas static const struct got_error *resize_log_view(struct tog_view *, int);
719 e5a0f69f 2018-08-18 stsp static const struct got_error *close_log_view(struct tog_view *);
720 60493ae3 2019-06-20 stsp static const struct got_error *search_start_log_view(struct tog_view *);
721 60493ae3 2019-06-20 stsp static const struct got_error *search_next_log_view(struct tog_view *);
722 e5a0f69f 2018-08-18 stsp
723 e5a0f69f 2018-08-18 stsp static const struct got_error *open_blame_view(struct tog_view *, char *,
724 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *);
725 7cbe629d 2018-08-04 stsp static const struct got_error *show_blame_view(struct tog_view *);
726 e5a0f69f 2018-08-18 stsp static const struct got_error *input_blame_view(struct tog_view **,
727 e78dc838 2020-12-04 stsp struct tog_view *, int);
728 adf4c9e0 2022-07-03 thomas static const struct got_error *reset_blame_view(struct tog_view *);
729 e5a0f69f 2018-08-18 stsp static const struct got_error *close_blame_view(struct tog_view *);
730 6c4c42e0 2019-06-24 stsp static const struct got_error *search_start_blame_view(struct tog_view *);
731 2a7d3cd7 2022-09-17 thomas static void search_setup_blame_view(struct tog_view *, FILE **, off_t **,
732 2a7d3cd7 2022-09-17 thomas size_t *, int **, int **, int **, int **);
733 e5a0f69f 2018-08-18 stsp
734 ad80ab7b 2018-08-04 stsp static const struct got_error *open_tree_view(struct tog_view *,
735 bc573f3b 2021-07-10 stsp struct got_object_id *, const char *, struct got_repository *);
736 ad80ab7b 2018-08-04 stsp static const struct got_error *show_tree_view(struct tog_view *);
737 e5a0f69f 2018-08-18 stsp static const struct got_error *input_tree_view(struct tog_view **,
738 e78dc838 2020-12-04 stsp struct tog_view *, int);
739 e5a0f69f 2018-08-18 stsp static const struct got_error *close_tree_view(struct tog_view *);
740 7c32bd05 2019-06-22 stsp static const struct got_error *search_start_tree_view(struct tog_view *);
741 7c32bd05 2019-06-22 stsp static const struct got_error *search_next_tree_view(struct tog_view *);
742 6458efa5 2020-11-24 stsp
743 6458efa5 2020-11-24 stsp static const struct got_error *open_ref_view(struct tog_view *,
744 6458efa5 2020-11-24 stsp struct got_repository *);
745 6458efa5 2020-11-24 stsp static const struct got_error *show_ref_view(struct tog_view *);
746 6458efa5 2020-11-24 stsp static const struct got_error *input_ref_view(struct tog_view **,
747 e78dc838 2020-12-04 stsp struct tog_view *, int);
748 6458efa5 2020-11-24 stsp static const struct got_error *close_ref_view(struct tog_view *);
749 6458efa5 2020-11-24 stsp static const struct got_error *search_start_ref_view(struct tog_view *);
750 6458efa5 2020-11-24 stsp static const struct got_error *search_next_ref_view(struct tog_view *);
751 2a7d3cd7 2022-09-17 thomas
752 2a7d3cd7 2022-09-17 thomas static const struct got_error *open_help_view(struct tog_view *,
753 2a7d3cd7 2022-09-17 thomas struct tog_view *);
754 2a7d3cd7 2022-09-17 thomas static const struct got_error *show_help_view(struct tog_view *);
755 2a7d3cd7 2022-09-17 thomas static const struct got_error *input_help_view(struct tog_view **,
756 2a7d3cd7 2022-09-17 thomas struct tog_view *, int);
757 2a7d3cd7 2022-09-17 thomas static const struct got_error *reset_help_view(struct tog_view *);
758 2a7d3cd7 2022-09-17 thomas static const struct got_error* close_help_view(struct tog_view *);
759 2a7d3cd7 2022-09-17 thomas static const struct got_error *search_start_help_view(struct tog_view *);
760 2a7d3cd7 2022-09-17 thomas static void search_setup_help_view(struct tog_view *, FILE **, off_t **,
761 2a7d3cd7 2022-09-17 thomas size_t *, int **, int **, int **, int **);
762 25791caa 2018-10-24 stsp
763 25791caa 2018-10-24 stsp static volatile sig_atomic_t tog_sigwinch_received;
764 83baff54 2019-08-12 stsp static volatile sig_atomic_t tog_sigpipe_received;
765 61266923 2020-01-14 stsp static volatile sig_atomic_t tog_sigcont_received;
766 296152d1 2022-05-31 thomas static volatile sig_atomic_t tog_sigint_received;
767 296152d1 2022-05-31 thomas static volatile sig_atomic_t tog_sigterm_received;
768 25791caa 2018-10-24 stsp
769 25791caa 2018-10-24 stsp static void
770 25791caa 2018-10-24 stsp tog_sigwinch(int signo)
771 25791caa 2018-10-24 stsp {
772 25791caa 2018-10-24 stsp tog_sigwinch_received = 1;
773 83baff54 2019-08-12 stsp }
774 83baff54 2019-08-12 stsp
775 83baff54 2019-08-12 stsp static void
776 83baff54 2019-08-12 stsp tog_sigpipe(int signo)
777 83baff54 2019-08-12 stsp {
778 83baff54 2019-08-12 stsp tog_sigpipe_received = 1;
779 25791caa 2018-10-24 stsp }
780 26ed57b2 2018-05-19 stsp
781 61266923 2020-01-14 stsp static void
782 61266923 2020-01-14 stsp tog_sigcont(int signo)
783 61266923 2020-01-14 stsp {
784 61266923 2020-01-14 stsp tog_sigcont_received = 1;
785 61266923 2020-01-14 stsp }
786 61266923 2020-01-14 stsp
787 296152d1 2022-05-31 thomas static void
788 296152d1 2022-05-31 thomas tog_sigint(int signo)
789 296152d1 2022-05-31 thomas {
790 296152d1 2022-05-31 thomas tog_sigint_received = 1;
791 296152d1 2022-05-31 thomas }
792 296152d1 2022-05-31 thomas
793 296152d1 2022-05-31 thomas static void
794 296152d1 2022-05-31 thomas tog_sigterm(int signo)
795 296152d1 2022-05-31 thomas {
796 296152d1 2022-05-31 thomas tog_sigterm_received = 1;
797 296152d1 2022-05-31 thomas }
798 296152d1 2022-05-31 thomas
799 296152d1 2022-05-31 thomas static int
800 c31666ae 2022-06-23 thomas tog_fatal_signal_received(void)
801 296152d1 2022-05-31 thomas {
802 296152d1 2022-05-31 thomas return (tog_sigpipe_received ||
803 296152d1 2022-05-31 thomas tog_sigint_received || tog_sigint_received);
804 296152d1 2022-05-31 thomas }
805 296152d1 2022-05-31 thomas
806 e5a0f69f 2018-08-18 stsp static const struct got_error *
807 96a765a8 2018-08-04 stsp view_close(struct tog_view *view)
808 ea5e7bb5 2018-08-01 stsp {
809 f2d749db 2022-07-12 thomas const struct got_error *err = NULL, *child_err = NULL;
810 e5a0f69f 2018-08-18 stsp
811 669b5ffa 2018-10-07 stsp if (view->child) {
812 f2d749db 2022-07-12 thomas child_err = view_close(view->child);
813 669b5ffa 2018-10-07 stsp view->child = NULL;
814 669b5ffa 2018-10-07 stsp }
815 e5a0f69f 2018-08-18 stsp if (view->close)
816 e5a0f69f 2018-08-18 stsp err = view->close(view);
817 ea5e7bb5 2018-08-01 stsp if (view->panel)
818 ea5e7bb5 2018-08-01 stsp del_panel(view->panel);
819 ea5e7bb5 2018-08-01 stsp if (view->window)
820 ea5e7bb5 2018-08-01 stsp delwin(view->window);
821 ea5e7bb5 2018-08-01 stsp free(view);
822 f2d749db 2022-07-12 thomas return err ? err : child_err;
823 ea5e7bb5 2018-08-01 stsp }
824 ea5e7bb5 2018-08-01 stsp
825 ea5e7bb5 2018-08-01 stsp static struct tog_view *
826 b3665f43 2018-08-04 stsp view_open(int nlines, int ncols, int begin_y, int begin_x,
827 0cf4efb1 2018-09-29 stsp enum tog_view_type type)
828 ea5e7bb5 2018-08-01 stsp {
829 ad80ab7b 2018-08-04 stsp struct tog_view *view = calloc(1, sizeof(*view));
830 ea5e7bb5 2018-08-01 stsp
831 ea5e7bb5 2018-08-01 stsp if (view == NULL)
832 ea5e7bb5 2018-08-01 stsp return NULL;
833 ea5e7bb5 2018-08-01 stsp
834 d6b05b5b 2018-08-04 stsp view->type = type;
835 f7d12f7e 2018-08-01 stsp view->lines = LINES;
836 f7d12f7e 2018-08-01 stsp view->cols = COLS;
837 207b9029 2018-08-01 stsp view->nlines = nlines ? nlines : LINES - begin_y;
838 207b9029 2018-08-01 stsp view->ncols = ncols ? ncols : COLS - begin_x;
839 97ddc146 2018-08-01 stsp view->begin_y = begin_y;
840 97ddc146 2018-08-01 stsp view->begin_x = begin_x;
841 842167bf 2018-08-01 stsp view->window = newwin(nlines, ncols, begin_y, begin_x);
842 ea5e7bb5 2018-08-01 stsp if (view->window == NULL) {
843 96a765a8 2018-08-04 stsp view_close(view);
844 ea5e7bb5 2018-08-01 stsp return NULL;
845 ea5e7bb5 2018-08-01 stsp }
846 ea5e7bb5 2018-08-01 stsp view->panel = new_panel(view->window);
847 0cf4efb1 2018-09-29 stsp if (view->panel == NULL ||
848 0cf4efb1 2018-09-29 stsp set_panel_userptr(view->panel, view) != OK) {
849 96a765a8 2018-08-04 stsp view_close(view);
850 ea5e7bb5 2018-08-01 stsp return NULL;
851 ea5e7bb5 2018-08-01 stsp }
852 ea5e7bb5 2018-08-01 stsp
853 ea5e7bb5 2018-08-01 stsp keypad(view->window, TRUE);
854 ea5e7bb5 2018-08-01 stsp return view;
855 cdf1ee82 2018-08-01 stsp }
856 cdf1ee82 2018-08-01 stsp
857 0cf4efb1 2018-09-29 stsp static int
858 0cf4efb1 2018-09-29 stsp view_split_begin_x(int begin_x)
859 0cf4efb1 2018-09-29 stsp {
860 2bd27830 2018-10-22 stsp if (begin_x > 0 || COLS < 120)
861 0cf4efb1 2018-09-29 stsp return 0;
862 2bd27830 2018-10-22 stsp return (COLS - MAX(COLS / 2, 80));
863 5c60c32a 2018-10-18 stsp }
864 5c60c32a 2018-10-18 stsp
865 a5d43cac 2022-07-01 thomas /* XXX Stub till we decide what to do. */
866 a5d43cac 2022-07-01 thomas static int
867 a5d43cac 2022-07-01 thomas view_split_begin_y(int lines)
868 a5d43cac 2022-07-01 thomas {
869 a5d43cac 2022-07-01 thomas return lines * HSPLIT_SCALE;
870 a5d43cac 2022-07-01 thomas }
871 a5d43cac 2022-07-01 thomas
872 5c60c32a 2018-10-18 stsp static const struct got_error *view_resize(struct tog_view *);
873 5c60c32a 2018-10-18 stsp
874 5c60c32a 2018-10-18 stsp static const struct got_error *
875 5c60c32a 2018-10-18 stsp view_splitscreen(struct tog_view *view)
876 5c60c32a 2018-10-18 stsp {
877 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
878 5c60c32a 2018-10-18 stsp
879 ea0bff04 2022-07-19 thomas if (!view->resized && view->mode == TOG_VIEW_SPLIT_HRZN) {
880 53d2bdd3 2022-07-10 thomas if (view->resized_y && view->resized_y < view->lines)
881 53d2bdd3 2022-07-10 thomas view->begin_y = view->resized_y;
882 53d2bdd3 2022-07-10 thomas else
883 53d2bdd3 2022-07-10 thomas view->begin_y = view_split_begin_y(view->nlines);
884 a5d43cac 2022-07-01 thomas view->begin_x = 0;
885 ea0bff04 2022-07-19 thomas } else if (!view->resized) {
886 53d2bdd3 2022-07-10 thomas if (view->resized_x && view->resized_x < view->cols - 1 &&
887 53d2bdd3 2022-07-10 thomas view->cols > 119)
888 53d2bdd3 2022-07-10 thomas view->begin_x = view->resized_x;
889 53d2bdd3 2022-07-10 thomas else
890 53d2bdd3 2022-07-10 thomas view->begin_x = view_split_begin_x(0);
891 a5d43cac 2022-07-01 thomas view->begin_y = 0;
892 a5d43cac 2022-07-01 thomas }
893 a5d43cac 2022-07-01 thomas view->nlines = LINES - view->begin_y;
894 5c60c32a 2018-10-18 stsp view->ncols = COLS - view->begin_x;
895 5c60c32a 2018-10-18 stsp view->lines = LINES;
896 5c60c32a 2018-10-18 stsp view->cols = COLS;
897 5c60c32a 2018-10-18 stsp err = view_resize(view);
898 5c60c32a 2018-10-18 stsp if (err)
899 5c60c32a 2018-10-18 stsp return err;
900 5c60c32a 2018-10-18 stsp
901 a5d43cac 2022-07-01 thomas if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN)
902 a5d43cac 2022-07-01 thomas view->parent->nlines = view->begin_y;
903 a5d43cac 2022-07-01 thomas
904 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
905 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
906 5c60c32a 2018-10-18 stsp
907 5c60c32a 2018-10-18 stsp return NULL;
908 5c60c32a 2018-10-18 stsp }
909 5c60c32a 2018-10-18 stsp
910 5c60c32a 2018-10-18 stsp static const struct got_error *
911 5c60c32a 2018-10-18 stsp view_fullscreen(struct tog_view *view)
912 5c60c32a 2018-10-18 stsp {
913 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
914 5c60c32a 2018-10-18 stsp
915 5c60c32a 2018-10-18 stsp view->begin_x = 0;
916 ea0bff04 2022-07-19 thomas view->begin_y = view->resized ? view->begin_y : 0;
917 ea0bff04 2022-07-19 thomas view->nlines = view->resized ? view->nlines : LINES;
918 5c60c32a 2018-10-18 stsp view->ncols = COLS;
919 5c60c32a 2018-10-18 stsp view->lines = LINES;
920 5c60c32a 2018-10-18 stsp view->cols = COLS;
921 5c60c32a 2018-10-18 stsp err = view_resize(view);
922 5c60c32a 2018-10-18 stsp if (err)
923 5c60c32a 2018-10-18 stsp return err;
924 5c60c32a 2018-10-18 stsp
925 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
926 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
927 5c60c32a 2018-10-18 stsp
928 5c60c32a 2018-10-18 stsp return NULL;
929 0cf4efb1 2018-09-29 stsp }
930 0cf4efb1 2018-09-29 stsp
931 5c60c32a 2018-10-18 stsp static int
932 5c60c32a 2018-10-18 stsp view_is_parent_view(struct tog_view *view)
933 5c60c32a 2018-10-18 stsp {
934 5c60c32a 2018-10-18 stsp return view->parent == NULL;
935 5c60c32a 2018-10-18 stsp }
936 5c60c32a 2018-10-18 stsp
937 b65b3ea0 2022-06-23 thomas static int
938 b65b3ea0 2022-06-23 thomas view_is_splitscreen(struct tog_view *view)
939 b65b3ea0 2022-06-23 thomas {
940 a5d43cac 2022-07-01 thomas return view->begin_x > 0 || view->begin_y > 0;
941 e44940c3 2022-07-01 thomas }
942 e44940c3 2022-07-01 thomas
943 e44940c3 2022-07-01 thomas static int
944 e44940c3 2022-07-01 thomas view_is_fullscreen(struct tog_view *view)
945 e44940c3 2022-07-01 thomas {
946 e44940c3 2022-07-01 thomas return view->nlines == LINES && view->ncols == COLS;
947 b65b3ea0 2022-06-23 thomas }
948 b65b3ea0 2022-06-23 thomas
949 444d5325 2022-07-03 thomas static int
950 444d5325 2022-07-03 thomas view_is_hsplit_top(struct tog_view *view)
951 444d5325 2022-07-03 thomas {
952 444d5325 2022-07-03 thomas return view->mode == TOG_VIEW_SPLIT_HRZN && view->child &&
953 444d5325 2022-07-03 thomas view_is_splitscreen(view->child);
954 444d5325 2022-07-03 thomas }
955 444d5325 2022-07-03 thomas
956 a5d43cac 2022-07-01 thomas static void
957 a5d43cac 2022-07-01 thomas view_border(struct tog_view *view)
958 a5d43cac 2022-07-01 thomas {
959 a5d43cac 2022-07-01 thomas PANEL *panel;
960 a5d43cac 2022-07-01 thomas const struct tog_view *view_above;
961 b65b3ea0 2022-06-23 thomas
962 a5d43cac 2022-07-01 thomas if (view->parent)
963 a5d43cac 2022-07-01 thomas return view_border(view->parent);
964 a5d43cac 2022-07-01 thomas
965 a5d43cac 2022-07-01 thomas panel = panel_above(view->panel);
966 a5d43cac 2022-07-01 thomas if (panel == NULL)
967 a5d43cac 2022-07-01 thomas return;
968 a5d43cac 2022-07-01 thomas
969 a5d43cac 2022-07-01 thomas view_above = panel_userptr(panel);
970 a5d43cac 2022-07-01 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN)
971 a5d43cac 2022-07-01 thomas mvwhline(view->window, view_above->begin_y - 1,
972 a5d43cac 2022-07-01 thomas view->begin_x, got_locale_is_utf8() ?
973 a5d43cac 2022-07-01 thomas ACS_HLINE : '-', view->ncols);
974 a5d43cac 2022-07-01 thomas else
975 a5d43cac 2022-07-01 thomas mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
976 a5d43cac 2022-07-01 thomas got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
977 a5d43cac 2022-07-01 thomas }
978 a5d43cac 2022-07-01 thomas
979 53d2bdd3 2022-07-10 thomas static const struct got_error *view_init_hsplit(struct tog_view *, int);
980 a5d43cac 2022-07-01 thomas static const struct got_error *request_log_commits(struct tog_view *);
981 a5d43cac 2022-07-01 thomas static const struct got_error *offset_selection_down(struct tog_view *);
982 a5d43cac 2022-07-01 thomas static void offset_selection_up(struct tog_view *);
983 53d2bdd3 2022-07-10 thomas static void view_get_split(struct tog_view *, int *, int *);
984 a5d43cac 2022-07-01 thomas
985 4d8c2215 2018-08-19 stsp static const struct got_error *
986 f7d12f7e 2018-08-01 stsp view_resize(struct tog_view *view)
987 f7d12f7e 2018-08-01 stsp {
988 a5d43cac 2022-07-01 thomas const struct got_error *err = NULL;
989 a5d43cac 2022-07-01 thomas int dif, nlines, ncols;
990 f7d12f7e 2018-08-01 stsp
991 a5d43cac 2022-07-01 thomas dif = LINES - view->lines; /* line difference */
992 a5d43cac 2022-07-01 thomas
993 0cf4efb1 2018-09-29 stsp if (view->lines > LINES)
994 0cf4efb1 2018-09-29 stsp nlines = view->nlines - (view->lines - LINES);
995 0cf4efb1 2018-09-29 stsp else
996 0cf4efb1 2018-09-29 stsp nlines = view->nlines + (LINES - view->lines);
997 0cf4efb1 2018-09-29 stsp if (view->cols > COLS)
998 0cf4efb1 2018-09-29 stsp ncols = view->ncols - (view->cols - COLS);
999 0cf4efb1 2018-09-29 stsp else
1000 0cf4efb1 2018-09-29 stsp ncols = view->ncols + (COLS - view->cols);
1001 6d0fee91 2018-08-01 stsp
1002 4918811f 2022-07-01 thomas if (view->child) {
1003 a5d43cac 2022-07-01 thomas int hs = view->child->begin_y;
1004 a5d43cac 2022-07-01 thomas
1005 e44940c3 2022-07-01 thomas if (!view_is_fullscreen(view))
1006 1827fdb7 2022-07-01 thomas view->child->begin_x = view_split_begin_x(view->begin_x);
1007 a5d43cac 2022-07-01 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN ||
1008 a5d43cac 2022-07-01 thomas view->child->begin_x == 0) {
1009 40236d76 2022-06-23 thomas ncols = COLS;
1010 40236d76 2022-06-23 thomas
1011 5c60c32a 2018-10-18 stsp view_fullscreen(view->child);
1012 5c60c32a 2018-10-18 stsp if (view->child->focussed)
1013 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
1014 5c60c32a 2018-10-18 stsp else
1015 5c60c32a 2018-10-18 stsp show_panel(view->panel);
1016 5c60c32a 2018-10-18 stsp } else {
1017 40236d76 2022-06-23 thomas ncols = view->child->begin_x;
1018 40236d76 2022-06-23 thomas
1019 5c60c32a 2018-10-18 stsp view_splitscreen(view->child);
1020 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
1021 a5d43cac 2022-07-01 thomas }
1022 a5d43cac 2022-07-01 thomas /*
1023 a5d43cac 2022-07-01 thomas * XXX This is ugly and needs to be moved into the above
1024 a5d43cac 2022-07-01 thomas * logic but "works" for now and my attempts at moving it
1025 a5d43cac 2022-07-01 thomas * break either 'tab' or 'F' key maps in horizontal splits.
1026 a5d43cac 2022-07-01 thomas */
1027 a5d43cac 2022-07-01 thomas if (hs) {
1028 a5d43cac 2022-07-01 thomas err = view_splitscreen(view->child);
1029 a5d43cac 2022-07-01 thomas if (err)
1030 a5d43cac 2022-07-01 thomas return err;
1031 a5d43cac 2022-07-01 thomas if (dif < 0) { /* top split decreased */
1032 a5d43cac 2022-07-01 thomas err = offset_selection_down(view);
1033 a5d43cac 2022-07-01 thomas if (err)
1034 a5d43cac 2022-07-01 thomas return err;
1035 a5d43cac 2022-07-01 thomas }
1036 a5d43cac 2022-07-01 thomas view_border(view);
1037 a5d43cac 2022-07-01 thomas update_panels();
1038 a5d43cac 2022-07-01 thomas doupdate();
1039 a5d43cac 2022-07-01 thomas show_panel(view->child->panel);
1040 a5d43cac 2022-07-01 thomas nlines = view->nlines;
1041 a5d43cac 2022-07-01 thomas }
1042 40236d76 2022-06-23 thomas } else if (view->parent == NULL)
1043 40236d76 2022-06-23 thomas ncols = COLS;
1044 669b5ffa 2018-10-07 stsp
1045 ea0bff04 2022-07-19 thomas if (view->resize && dif > 0) {
1046 ea0bff04 2022-07-19 thomas err = view->resize(view, dif);
1047 ea0bff04 2022-07-19 thomas if (err)
1048 ea0bff04 2022-07-19 thomas return err;
1049 ea0bff04 2022-07-19 thomas }
1050 ea0bff04 2022-07-19 thomas
1051 40236d76 2022-06-23 thomas if (wresize(view->window, nlines, ncols) == ERR)
1052 40236d76 2022-06-23 thomas return got_error_from_errno("wresize");
1053 40236d76 2022-06-23 thomas if (replace_panel(view->panel, view->window) == ERR)
1054 40236d76 2022-06-23 thomas return got_error_from_errno("replace_panel");
1055 40236d76 2022-06-23 thomas wclear(view->window);
1056 40236d76 2022-06-23 thomas
1057 40236d76 2022-06-23 thomas view->nlines = nlines;
1058 40236d76 2022-06-23 thomas view->ncols = ncols;
1059 40236d76 2022-06-23 thomas view->lines = LINES;
1060 40236d76 2022-06-23 thomas view->cols = COLS;
1061 40236d76 2022-06-23 thomas
1062 5c60c32a 2018-10-18 stsp return NULL;
1063 ea0bff04 2022-07-19 thomas }
1064 ea0bff04 2022-07-19 thomas
1065 ea0bff04 2022-07-19 thomas static const struct got_error *
1066 ea0bff04 2022-07-19 thomas resize_log_view(struct tog_view *view, int increase)
1067 ea0bff04 2022-07-19 thomas {
1068 3a0139e8 2022-07-22 thomas struct tog_log_view_state *s = &view->state.log;
1069 3a0139e8 2022-07-22 thomas const struct got_error *err = NULL;
1070 3a0139e8 2022-07-22 thomas int n = 0;
1071 ea0bff04 2022-07-19 thomas
1072 3a0139e8 2022-07-22 thomas if (s->selected_entry)
1073 3a0139e8 2022-07-22 thomas n = s->selected_entry->idx + view->lines - s->selected;
1074 3a0139e8 2022-07-22 thomas
1075 ea0bff04 2022-07-19 thomas /*
1076 ea0bff04 2022-07-19 thomas * Request commits to account for the increased
1077 ea0bff04 2022-07-19 thomas * height so we have enough to populate the view.
1078 ea0bff04 2022-07-19 thomas */
1079 7e8004ba 2022-09-11 thomas if (s->commits->ncommits < n) {
1080 7e8004ba 2022-09-11 thomas view->nscrolled = n - s->commits->ncommits + increase + 1;
1081 ea0bff04 2022-07-19 thomas err = request_log_commits(view);
1082 ea0bff04 2022-07-19 thomas }
1083 ea0bff04 2022-07-19 thomas
1084 ea0bff04 2022-07-19 thomas return err;
1085 97cb21cd 2022-07-12 thomas }
1086 97cb21cd 2022-07-12 thomas
1087 97cb21cd 2022-07-12 thomas static void
1088 97cb21cd 2022-07-12 thomas view_adjust_offset(struct tog_view *view, int n)
1089 97cb21cd 2022-07-12 thomas {
1090 97cb21cd 2022-07-12 thomas if (n == 0)
1091 97cb21cd 2022-07-12 thomas return;
1092 97cb21cd 2022-07-12 thomas
1093 97cb21cd 2022-07-12 thomas if (view->parent && view->parent->offset) {
1094 97cb21cd 2022-07-12 thomas if (view->parent->offset + n >= 0)
1095 97cb21cd 2022-07-12 thomas view->parent->offset += n;
1096 97cb21cd 2022-07-12 thomas else
1097 97cb21cd 2022-07-12 thomas view->parent->offset = 0;
1098 97cb21cd 2022-07-12 thomas } else if (view->offset) {
1099 97cb21cd 2022-07-12 thomas if (view->offset - n >= 0)
1100 97cb21cd 2022-07-12 thomas view->offset -= n;
1101 97cb21cd 2022-07-12 thomas else
1102 97cb21cd 2022-07-12 thomas view->offset = 0;
1103 97cb21cd 2022-07-12 thomas }
1104 53d2bdd3 2022-07-10 thomas }
1105 53d2bdd3 2022-07-10 thomas
1106 53d2bdd3 2022-07-10 thomas static const struct got_error *
1107 53d2bdd3 2022-07-10 thomas view_resize_split(struct tog_view *view, int resize)
1108 53d2bdd3 2022-07-10 thomas {
1109 53d2bdd3 2022-07-10 thomas const struct got_error *err = NULL;
1110 53d2bdd3 2022-07-10 thomas struct tog_view *v = NULL;
1111 53d2bdd3 2022-07-10 thomas
1112 53d2bdd3 2022-07-10 thomas if (view->parent)
1113 53d2bdd3 2022-07-10 thomas v = view->parent;
1114 53d2bdd3 2022-07-10 thomas else
1115 53d2bdd3 2022-07-10 thomas v = view;
1116 53d2bdd3 2022-07-10 thomas
1117 53d2bdd3 2022-07-10 thomas if (!v->child || !view_is_splitscreen(v->child))
1118 53d2bdd3 2022-07-10 thomas return NULL;
1119 53d2bdd3 2022-07-10 thomas
1120 ea0bff04 2022-07-19 thomas v->resized = v->child->resized = resize; /* lock for resize event */
1121 53d2bdd3 2022-07-10 thomas
1122 53d2bdd3 2022-07-10 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN) {
1123 53d2bdd3 2022-07-10 thomas if (v->child->resized_y)
1124 53d2bdd3 2022-07-10 thomas v->child->begin_y = v->child->resized_y;
1125 53d2bdd3 2022-07-10 thomas if (view->parent)
1126 53d2bdd3 2022-07-10 thomas v->child->begin_y -= resize;
1127 53d2bdd3 2022-07-10 thomas else
1128 53d2bdd3 2022-07-10 thomas v->child->begin_y += resize;
1129 53d2bdd3 2022-07-10 thomas if (v->child->begin_y < 3) {
1130 53d2bdd3 2022-07-10 thomas view->count = 0;
1131 53d2bdd3 2022-07-10 thomas v->child->begin_y = 3;
1132 53d2bdd3 2022-07-10 thomas } else if (v->child->begin_y > LINES - 1) {
1133 53d2bdd3 2022-07-10 thomas view->count = 0;
1134 53d2bdd3 2022-07-10 thomas v->child->begin_y = LINES - 1;
1135 53d2bdd3 2022-07-10 thomas }
1136 53d2bdd3 2022-07-10 thomas v->ncols = COLS;
1137 53d2bdd3 2022-07-10 thomas v->child->ncols = COLS;
1138 97cb21cd 2022-07-12 thomas view_adjust_offset(view, resize);
1139 53d2bdd3 2022-07-10 thomas err = view_init_hsplit(v, v->child->begin_y);
1140 53d2bdd3 2022-07-10 thomas if (err)
1141 53d2bdd3 2022-07-10 thomas return err;
1142 53d2bdd3 2022-07-10 thomas v->child->resized_y = v->child->begin_y;
1143 53d2bdd3 2022-07-10 thomas } else {
1144 53d2bdd3 2022-07-10 thomas if (v->child->resized_x)
1145 53d2bdd3 2022-07-10 thomas v->child->begin_x = v->child->resized_x;
1146 53d2bdd3 2022-07-10 thomas if (view->parent)
1147 53d2bdd3 2022-07-10 thomas v->child->begin_x -= resize;
1148 53d2bdd3 2022-07-10 thomas else
1149 53d2bdd3 2022-07-10 thomas v->child->begin_x += resize;
1150 53d2bdd3 2022-07-10 thomas if (v->child->begin_x < 11) {
1151 53d2bdd3 2022-07-10 thomas view->count = 0;
1152 53d2bdd3 2022-07-10 thomas v->child->begin_x = 11;
1153 53d2bdd3 2022-07-10 thomas } else if (v->child->begin_x > COLS - 1) {
1154 53d2bdd3 2022-07-10 thomas view->count = 0;
1155 53d2bdd3 2022-07-10 thomas v->child->begin_x = COLS - 1;
1156 53d2bdd3 2022-07-10 thomas }
1157 53d2bdd3 2022-07-10 thomas v->child->resized_x = v->child->begin_x;
1158 53d2bdd3 2022-07-10 thomas }
1159 53d2bdd3 2022-07-10 thomas
1160 53d2bdd3 2022-07-10 thomas v->child->mode = v->mode;
1161 53d2bdd3 2022-07-10 thomas v->child->nlines = v->lines - v->child->begin_y;
1162 53d2bdd3 2022-07-10 thomas v->child->ncols = v->cols - v->child->begin_x;
1163 53d2bdd3 2022-07-10 thomas v->focus_child = 1;
1164 53d2bdd3 2022-07-10 thomas
1165 53d2bdd3 2022-07-10 thomas err = view_fullscreen(v);
1166 53d2bdd3 2022-07-10 thomas if (err)
1167 53d2bdd3 2022-07-10 thomas return err;
1168 53d2bdd3 2022-07-10 thomas err = view_splitscreen(v->child);
1169 53d2bdd3 2022-07-10 thomas if (err)
1170 53d2bdd3 2022-07-10 thomas return err;
1171 53d2bdd3 2022-07-10 thomas
1172 53d2bdd3 2022-07-10 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1173 53d2bdd3 2022-07-10 thomas err = offset_selection_down(v->child);
1174 53d2bdd3 2022-07-10 thomas if (err)
1175 53d2bdd3 2022-07-10 thomas return err;
1176 53d2bdd3 2022-07-10 thomas }
1177 53d2bdd3 2022-07-10 thomas
1178 3a0139e8 2022-07-22 thomas if (v->resize)
1179 3a0139e8 2022-07-22 thomas err = v->resize(v, 0);
1180 3a0139e8 2022-07-22 thomas else if (v->child->resize)
1181 3a0139e8 2022-07-22 thomas err = v->child->resize(v->child, 0);
1182 53d2bdd3 2022-07-10 thomas
1183 ea0bff04 2022-07-19 thomas v->resized = v->child->resized = 0;
1184 53d2bdd3 2022-07-10 thomas
1185 53d2bdd3 2022-07-10 thomas return err;
1186 53d2bdd3 2022-07-10 thomas }
1187 53d2bdd3 2022-07-10 thomas
1188 53d2bdd3 2022-07-10 thomas static void
1189 53d2bdd3 2022-07-10 thomas view_transfer_size(struct tog_view *dst, struct tog_view *src)
1190 53d2bdd3 2022-07-10 thomas {
1191 53d2bdd3 2022-07-10 thomas struct tog_view *v = src->child ? src->child : src;
1192 53d2bdd3 2022-07-10 thomas
1193 53d2bdd3 2022-07-10 thomas dst->resized_x = v->resized_x;
1194 53d2bdd3 2022-07-10 thomas dst->resized_y = v->resized_y;
1195 669b5ffa 2018-10-07 stsp }
1196 669b5ffa 2018-10-07 stsp
1197 669b5ffa 2018-10-07 stsp static const struct got_error *
1198 669b5ffa 2018-10-07 stsp view_close_child(struct tog_view *view)
1199 669b5ffa 2018-10-07 stsp {
1200 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1201 669b5ffa 2018-10-07 stsp
1202 669b5ffa 2018-10-07 stsp if (view->child == NULL)
1203 669b5ffa 2018-10-07 stsp return NULL;
1204 669b5ffa 2018-10-07 stsp
1205 669b5ffa 2018-10-07 stsp err = view_close(view->child);
1206 669b5ffa 2018-10-07 stsp view->child = NULL;
1207 669b5ffa 2018-10-07 stsp return err;
1208 669b5ffa 2018-10-07 stsp }
1209 669b5ffa 2018-10-07 stsp
1210 40236d76 2022-06-23 thomas static const struct got_error *
1211 669b5ffa 2018-10-07 stsp view_set_child(struct tog_view *view, struct tog_view *child)
1212 669b5ffa 2018-10-07 stsp {
1213 53d2bdd3 2022-07-10 thomas const struct got_error *err = NULL;
1214 53d2bdd3 2022-07-10 thomas
1215 669b5ffa 2018-10-07 stsp view->child = child;
1216 669b5ffa 2018-10-07 stsp child->parent = view;
1217 40236d76 2022-06-23 thomas
1218 53d2bdd3 2022-07-10 thomas err = view_resize(view);
1219 53d2bdd3 2022-07-10 thomas if (err)
1220 53d2bdd3 2022-07-10 thomas return err;
1221 53d2bdd3 2022-07-10 thomas
1222 53d2bdd3 2022-07-10 thomas if (view->child->resized_x || view->child->resized_y)
1223 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, 0);
1224 53d2bdd3 2022-07-10 thomas
1225 53d2bdd3 2022-07-10 thomas return err;
1226 bfddd0d9 2018-09-29 stsp }
1227 2a31b33b 2022-07-23 thomas
1228 2a31b33b 2022-07-23 thomas static const struct got_error *view_dispatch_request(struct tog_view **,
1229 2a31b33b 2022-07-23 thomas struct tog_view *, enum tog_view_type, int, int);
1230 2a31b33b 2022-07-23 thomas
1231 2a31b33b 2022-07-23 thomas static const struct got_error *
1232 2a31b33b 2022-07-23 thomas view_request_new(struct tog_view **requested, struct tog_view *view,
1233 2a31b33b 2022-07-23 thomas enum tog_view_type request)
1234 2a31b33b 2022-07-23 thomas {
1235 2a31b33b 2022-07-23 thomas struct tog_view *new_view = NULL;
1236 2a31b33b 2022-07-23 thomas const struct got_error *err;
1237 2a31b33b 2022-07-23 thomas int y = 0, x = 0;
1238 2a31b33b 2022-07-23 thomas
1239 2a31b33b 2022-07-23 thomas *requested = NULL;
1240 2a31b33b 2022-07-23 thomas
1241 2a31b33b 2022-07-23 thomas if (view_is_parent_view(view))
1242 2a31b33b 2022-07-23 thomas view_get_split(view, &y, &x);
1243 bfddd0d9 2018-09-29 stsp
1244 2a31b33b 2022-07-23 thomas err = view_dispatch_request(&new_view, view, request, y, x);
1245 2a31b33b 2022-07-23 thomas if (err)
1246 2a31b33b 2022-07-23 thomas return err;
1247 2a31b33b 2022-07-23 thomas
1248 2a31b33b 2022-07-23 thomas if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN) {
1249 2a31b33b 2022-07-23 thomas err = view_init_hsplit(view, y);
1250 2a31b33b 2022-07-23 thomas if (err)
1251 2a31b33b 2022-07-23 thomas return err;
1252 2a31b33b 2022-07-23 thomas }
1253 2a31b33b 2022-07-23 thomas
1254 2a31b33b 2022-07-23 thomas view->focussed = 0;
1255 2a31b33b 2022-07-23 thomas new_view->focussed = 1;
1256 2a31b33b 2022-07-23 thomas new_view->mode = view->mode;
1257 2a31b33b 2022-07-23 thomas new_view->nlines = view->lines - y;
1258 2a31b33b 2022-07-23 thomas
1259 2a31b33b 2022-07-23 thomas if (view_is_parent_view(view)) {
1260 2a31b33b 2022-07-23 thomas view_transfer_size(new_view, view);
1261 2a31b33b 2022-07-23 thomas err = view_close_child(view);
1262 2a31b33b 2022-07-23 thomas if (err)
1263 2a31b33b 2022-07-23 thomas return err;
1264 2a31b33b 2022-07-23 thomas err = view_set_child(view, new_view);
1265 2a31b33b 2022-07-23 thomas if (err)
1266 2a31b33b 2022-07-23 thomas return err;
1267 2a31b33b 2022-07-23 thomas view->focus_child = 1;
1268 2a31b33b 2022-07-23 thomas } else
1269 2a31b33b 2022-07-23 thomas *requested = new_view;
1270 2a31b33b 2022-07-23 thomas
1271 2a31b33b 2022-07-23 thomas return NULL;
1272 2a31b33b 2022-07-23 thomas }
1273 2a31b33b 2022-07-23 thomas
1274 34bc9ec9 2019-02-22 stsp static void
1275 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
1276 25791caa 2018-10-24 stsp {
1277 25791caa 2018-10-24 stsp int cols, lines;
1278 25791caa 2018-10-24 stsp struct winsize size;
1279 25791caa 2018-10-24 stsp
1280 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1281 25791caa 2018-10-24 stsp cols = 80; /* Default */
1282 25791caa 2018-10-24 stsp lines = 24;
1283 25791caa 2018-10-24 stsp } else {
1284 25791caa 2018-10-24 stsp cols = size.ws_col;
1285 25791caa 2018-10-24 stsp lines = size.ws_row;
1286 25791caa 2018-10-24 stsp }
1287 25791caa 2018-10-24 stsp resize_term(lines, cols);
1288 2b49a8ae 2019-06-22 stsp }
1289 2b49a8ae 2019-06-22 stsp
1290 2b49a8ae 2019-06-22 stsp static const struct got_error *
1291 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
1292 2b49a8ae 2019-06-22 stsp {
1293 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
1294 a5d43cac 2022-07-01 thomas struct tog_view *v = view;
1295 2b49a8ae 2019-06-22 stsp char pattern[1024];
1296 2b49a8ae 2019-06-22 stsp int ret;
1297 c0c4acc8 2021-01-24 stsp
1298 c0c4acc8 2021-01-24 stsp if (view->search_started) {
1299 c0c4acc8 2021-01-24 stsp regfree(&view->regex);
1300 c0c4acc8 2021-01-24 stsp view->searching = 0;
1301 c0c4acc8 2021-01-24 stsp memset(&view->regmatch, 0, sizeof(view->regmatch));
1302 c0c4acc8 2021-01-24 stsp }
1303 c0c4acc8 2021-01-24 stsp view->search_started = 0;
1304 2b49a8ae 2019-06-22 stsp
1305 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
1306 2b49a8ae 2019-06-22 stsp return NULL;
1307 2b49a8ae 2019-06-22 stsp
1308 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
1309 a5d43cac 2022-07-01 thomas v = view->child;
1310 2b49a8ae 2019-06-22 stsp
1311 a5d43cac 2022-07-01 thomas mvwaddstr(v->window, v->nlines - 1, 0, "/");
1312 a5d43cac 2022-07-01 thomas wclrtoeol(v->window);
1313 a5d43cac 2022-07-01 thomas
1314 634cb454 2022-07-03 thomas nodelay(view->window, FALSE); /* block for search term input */
1315 2b49a8ae 2019-06-22 stsp nocbreak();
1316 2b49a8ae 2019-06-22 stsp echo();
1317 a5d43cac 2022-07-01 thomas ret = wgetnstr(v->window, pattern, sizeof(pattern));
1318 a5d43cac 2022-07-01 thomas wrefresh(v->window);
1319 2b49a8ae 2019-06-22 stsp cbreak();
1320 2b49a8ae 2019-06-22 stsp noecho();
1321 634cb454 2022-07-03 thomas nodelay(view->window, TRUE);
1322 2b49a8ae 2019-06-22 stsp if (ret == ERR)
1323 2b49a8ae 2019-06-22 stsp return NULL;
1324 2b49a8ae 2019-06-22 stsp
1325 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1326 7c32bd05 2019-06-22 stsp err = view->search_start(view);
1327 7c32bd05 2019-06-22 stsp if (err) {
1328 7c32bd05 2019-06-22 stsp regfree(&view->regex);
1329 7c32bd05 2019-06-22 stsp return err;
1330 7c32bd05 2019-06-22 stsp }
1331 c0c4acc8 2021-01-24 stsp view->search_started = 1;
1332 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
1333 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
1334 2b49a8ae 2019-06-22 stsp view->search_next(view);
1335 2b49a8ae 2019-06-22 stsp }
1336 2b49a8ae 2019-06-22 stsp
1337 2b49a8ae 2019-06-22 stsp return NULL;
1338 64486692 2022-07-07 thomas }
1339 64486692 2022-07-07 thomas
1340 ddbc4d37 2022-07-12 thomas /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1341 64486692 2022-07-07 thomas static const struct got_error *
1342 64486692 2022-07-07 thomas switch_split(struct tog_view *view)
1343 64486692 2022-07-07 thomas {
1344 64486692 2022-07-07 thomas const struct got_error *err = NULL;
1345 64486692 2022-07-07 thomas struct tog_view *v = NULL;
1346 64486692 2022-07-07 thomas
1347 64486692 2022-07-07 thomas if (view->parent)
1348 64486692 2022-07-07 thomas v = view->parent;
1349 64486692 2022-07-07 thomas else
1350 64486692 2022-07-07 thomas v = view;
1351 64486692 2022-07-07 thomas
1352 ddbc4d37 2022-07-12 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN)
1353 ddbc4d37 2022-07-12 thomas v->mode = TOG_VIEW_SPLIT_VERT;
1354 ddbc4d37 2022-07-12 thomas else
1355 64486692 2022-07-07 thomas v->mode = TOG_VIEW_SPLIT_HRZN;
1356 64486692 2022-07-07 thomas
1357 ddbc4d37 2022-07-12 thomas if (!v->child)
1358 ddbc4d37 2022-07-12 thomas return NULL;
1359 ddbc4d37 2022-07-12 thomas else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1360 ddbc4d37 2022-07-12 thomas v->mode = TOG_VIEW_SPLIT_NONE;
1361 ddbc4d37 2022-07-12 thomas
1362 64486692 2022-07-07 thomas view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1363 53d2bdd3 2022-07-10 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1364 53d2bdd3 2022-07-10 thomas v->child->begin_y = v->child->resized_y;
1365 ddbc4d37 2022-07-12 thomas else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1366 53d2bdd3 2022-07-10 thomas v->child->begin_x = v->child->resized_x;
1367 64486692 2022-07-07 thomas
1368 ddbc4d37 2022-07-12 thomas
1369 64486692 2022-07-07 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1370 64486692 2022-07-07 thomas v->ncols = COLS;
1371 64486692 2022-07-07 thomas v->child->ncols = COLS;
1372 ddbc4d37 2022-07-12 thomas v->child->nscrolled = LINES - v->child->nlines;
1373 64486692 2022-07-07 thomas
1374 64486692 2022-07-07 thomas err = view_init_hsplit(v, v->child->begin_y);
1375 64486692 2022-07-07 thomas if (err)
1376 64486692 2022-07-07 thomas return err;
1377 64486692 2022-07-07 thomas }
1378 64486692 2022-07-07 thomas v->child->mode = v->mode;
1379 64486692 2022-07-07 thomas v->child->nlines = v->lines - v->child->begin_y;
1380 64486692 2022-07-07 thomas v->focus_child = 1;
1381 64486692 2022-07-07 thomas
1382 64486692 2022-07-07 thomas err = view_fullscreen(v);
1383 64486692 2022-07-07 thomas if (err)
1384 64486692 2022-07-07 thomas return err;
1385 64486692 2022-07-07 thomas err = view_splitscreen(v->child);
1386 64486692 2022-07-07 thomas if (err)
1387 64486692 2022-07-07 thomas return err;
1388 64486692 2022-07-07 thomas
1389 ddbc4d37 2022-07-12 thomas if (v->mode == TOG_VIEW_SPLIT_NONE)
1390 ddbc4d37 2022-07-12 thomas v->mode = TOG_VIEW_SPLIT_VERT;
1391 ddbc4d37 2022-07-12 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1392 ddbc4d37 2022-07-12 thomas err = offset_selection_down(v);
1393 cf1fe301 2022-07-29 thomas if (err)
1394 cf1fe301 2022-07-29 thomas return err;
1395 64486692 2022-07-07 thomas err = offset_selection_down(v->child);
1396 cf1fe301 2022-07-29 thomas if (err)
1397 cf1fe301 2022-07-29 thomas return err;
1398 ddbc4d37 2022-07-12 thomas } else {
1399 ddbc4d37 2022-07-12 thomas offset_selection_up(v);
1400 ddbc4d37 2022-07-12 thomas offset_selection_up(v->child);
1401 64486692 2022-07-07 thomas }
1402 f4e6231a 2022-07-22 thomas if (v->resize)
1403 f4e6231a 2022-07-22 thomas err = v->resize(v, 0);
1404 f4e6231a 2022-07-22 thomas else if (v->child->resize)
1405 f4e6231a 2022-07-22 thomas err = v->child->resize(v->child, 0);
1406 64486692 2022-07-07 thomas
1407 64486692 2022-07-07 thomas return err;
1408 0cf4efb1 2018-09-29 stsp }
1409 6d0fee91 2018-08-01 stsp
1410 07b0611c 2022-06-23 thomas /*
1411 fa502711 2022-07-03 thomas * Compute view->count from numeric input. Assign total to view->count and
1412 fa502711 2022-07-03 thomas * return first non-numeric key entered.
1413 07b0611c 2022-06-23 thomas */
1414 07b0611c 2022-06-23 thomas static int
1415 07b0611c 2022-06-23 thomas get_compound_key(struct tog_view *view, int c)
1416 07b0611c 2022-06-23 thomas {
1417 a5d43cac 2022-07-01 thomas struct tog_view *v = view;
1418 a5d43cac 2022-07-01 thomas int x, n = 0;
1419 07b0611c 2022-06-23 thomas
1420 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
1421 a5d43cac 2022-07-01 thomas v = view->child;
1422 a5d43cac 2022-07-01 thomas else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1423 a5d43cac 2022-07-01 thomas v = view->parent;
1424 a5d43cac 2022-07-01 thomas
1425 07b0611c 2022-06-23 thomas view->count = 0;
1426 fa502711 2022-07-03 thomas cbreak(); /* block for input */
1427 07dd3ed3 2022-08-06 thomas nodelay(view->window, FALSE);
1428 a5d43cac 2022-07-01 thomas wmove(v->window, v->nlines - 1, 0);
1429 a5d43cac 2022-07-01 thomas wclrtoeol(v->window);
1430 a5d43cac 2022-07-01 thomas waddch(v->window, ':');
1431 07b0611c 2022-06-23 thomas
1432 07b0611c 2022-06-23 thomas do {
1433 a5d43cac 2022-07-01 thomas x = getcurx(v->window);
1434 a5d43cac 2022-07-01 thomas if (x != ERR && x < view->ncols) {
1435 a5d43cac 2022-07-01 thomas waddch(v->window, c);
1436 a5d43cac 2022-07-01 thomas wrefresh(v->window);
1437 a5d43cac 2022-07-01 thomas }
1438 a5d43cac 2022-07-01 thomas
1439 07b0611c 2022-06-23 thomas /*
1440 07b0611c 2022-06-23 thomas * Don't overflow. Max valid request should be the greatest
1441 07b0611c 2022-06-23 thomas * between the longest and total lines; cap at 10 million.
1442 07b0611c 2022-06-23 thomas */
1443 07b0611c 2022-06-23 thomas if (n >= 9999999)
1444 07b0611c 2022-06-23 thomas n = 9999999;
1445 07b0611c 2022-06-23 thomas else
1446 07b0611c 2022-06-23 thomas n = n * 10 + (c - '0');
1447 07b0611c 2022-06-23 thomas } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1448 07b0611c 2022-06-23 thomas
1449 07dd3ed3 2022-08-06 thomas if (c == 'G' || c == 'g') { /* nG key map */
1450 07dd3ed3 2022-08-06 thomas view->gline = view->hiline = n;
1451 07dd3ed3 2022-08-06 thomas n = 0;
1452 07dd3ed3 2022-08-06 thomas c = 0;
1453 07dd3ed3 2022-08-06 thomas }
1454 07dd3ed3 2022-08-06 thomas
1455 07b0611c 2022-06-23 thomas /* Massage excessive or inapplicable values at the input handler. */
1456 07b0611c 2022-06-23 thomas view->count = n;
1457 07b0611c 2022-06-23 thomas
1458 07b0611c 2022-06-23 thomas return c;
1459 07b0611c 2022-06-23 thomas }
1460 07b0611c 2022-06-23 thomas
1461 0cf4efb1 2018-09-29 stsp static const struct got_error *
1462 e78dc838 2020-12-04 stsp view_input(struct tog_view **new, int *done, struct tog_view *view,
1463 e78dc838 2020-12-04 stsp struct tog_view_list_head *views)
1464 e5a0f69f 2018-08-18 stsp {
1465 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1466 669b5ffa 2018-10-07 stsp struct tog_view *v;
1467 1a76625f 2018-10-22 stsp int ch, errcode;
1468 e5a0f69f 2018-08-18 stsp
1469 e5a0f69f 2018-08-18 stsp *new = NULL;
1470 8f4ed634 2020-03-26 stsp
1471 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
1472 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1473 07b0611c 2022-06-23 thomas view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1474 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
1475 07b0611c 2022-06-23 thomas view->count = 0;
1476 07b0611c 2022-06-23 thomas }
1477 e5a0f69f 2018-08-18 stsp
1478 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
1479 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1480 82954512 2020-02-03 stsp if (errcode)
1481 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1482 82954512 2020-02-03 stsp "pthread_mutex_unlock");
1483 3da8ef85 2021-09-21 stsp sched_yield();
1484 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
1485 82954512 2020-02-03 stsp if (errcode)
1486 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1487 82954512 2020-02-03 stsp "pthread_mutex_lock");
1488 60493ae3 2019-06-20 stsp view->search_next(view);
1489 60493ae3 2019-06-20 stsp return NULL;
1490 60493ae3 2019-06-20 stsp }
1491 60493ae3 2019-06-20 stsp
1492 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
1493 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1494 1a76625f 2018-10-22 stsp if (errcode)
1495 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
1496 634cb454 2022-07-03 thomas /* If we have an unfinished count, let C-g or backspace abort. */
1497 634cb454 2022-07-03 thomas if (view->count && --view->count) {
1498 634cb454 2022-07-03 thomas cbreak();
1499 634cb454 2022-07-03 thomas nodelay(view->window, TRUE);
1500 07b0611c 2022-06-23 thomas ch = wgetch(view->window);
1501 634cb454 2022-07-03 thomas if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1502 634cb454 2022-07-03 thomas view->count = 0;
1503 634cb454 2022-07-03 thomas else
1504 634cb454 2022-07-03 thomas ch = view->ch;
1505 634cb454 2022-07-03 thomas } else {
1506 634cb454 2022-07-03 thomas ch = wgetch(view->window);
1507 07b0611c 2022-06-23 thomas if (ch >= '1' && ch <= '9')
1508 07b0611c 2022-06-23 thomas view->ch = ch = get_compound_key(view, ch);
1509 07b0611c 2022-06-23 thomas }
1510 07dd3ed3 2022-08-06 thomas if (view->hiline && ch != ERR && ch != 0)
1511 07dd3ed3 2022-08-06 thomas view->hiline = 0; /* key pressed, clear line highlight */
1512 07dd3ed3 2022-08-06 thomas nodelay(view->window, TRUE);
1513 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1514 1a76625f 2018-10-22 stsp if (errcode)
1515 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1516 25791caa 2018-10-24 stsp
1517 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
1518 25791caa 2018-10-24 stsp tog_resizeterm();
1519 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
1520 61266923 2020-01-14 stsp tog_sigcont_received = 0;
1521 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
1522 25791caa 2018-10-24 stsp err = view_resize(v);
1523 25791caa 2018-10-24 stsp if (err)
1524 25791caa 2018-10-24 stsp return err;
1525 e78dc838 2020-12-04 stsp err = v->input(new, v, KEY_RESIZE);
1526 25791caa 2018-10-24 stsp if (err)
1527 25791caa 2018-10-24 stsp return err;
1528 cdfcfb03 2020-12-06 stsp if (v->child) {
1529 cdfcfb03 2020-12-06 stsp err = view_resize(v->child);
1530 cdfcfb03 2020-12-06 stsp if (err)
1531 cdfcfb03 2020-12-06 stsp return err;
1532 cdfcfb03 2020-12-06 stsp err = v->child->input(new, v->child,
1533 cdfcfb03 2020-12-06 stsp KEY_RESIZE);
1534 cdfcfb03 2020-12-06 stsp if (err)
1535 cdfcfb03 2020-12-06 stsp return err;
1536 53d2bdd3 2022-07-10 thomas if (v->child->resized_x || v->child->resized_y) {
1537 53d2bdd3 2022-07-10 thomas err = view_resize_split(v, 0);
1538 53d2bdd3 2022-07-10 thomas if (err)
1539 53d2bdd3 2022-07-10 thomas return err;
1540 53d2bdd3 2022-07-10 thomas }
1541 cdfcfb03 2020-12-06 stsp }
1542 25791caa 2018-10-24 stsp }
1543 25791caa 2018-10-24 stsp }
1544 25791caa 2018-10-24 stsp
1545 e5a0f69f 2018-08-18 stsp switch (ch) {
1546 fc2737d5 2022-09-15 thomas case '?':
1547 fc2737d5 2022-09-15 thomas case 'H':
1548 fc2737d5 2022-09-15 thomas case KEY_F(1):
1549 fc2737d5 2022-09-15 thomas if (view->type == TOG_VIEW_HELP)
1550 fc2737d5 2022-09-15 thomas err = view->reset(view);
1551 fc2737d5 2022-09-15 thomas else
1552 fc2737d5 2022-09-15 thomas err = view_request_new(new, view, TOG_VIEW_HELP);
1553 fc2737d5 2022-09-15 thomas break;
1554 1e37a5c2 2019-05-12 jcs case '\t':
1555 07b0611c 2022-06-23 thomas view->count = 0;
1556 1e37a5c2 2019-05-12 jcs if (view->child) {
1557 e78dc838 2020-12-04 stsp view->focussed = 0;
1558 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1559 e78dc838 2020-12-04 stsp view->focus_child = 1;
1560 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
1561 e78dc838 2020-12-04 stsp view->focussed = 0;
1562 e78dc838 2020-12-04 stsp view->parent->focussed = 1;
1563 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1564 a5d43cac 2022-07-01 thomas if (!view_is_splitscreen(view)) {
1565 3a0139e8 2022-07-22 thomas if (view->parent->resize) {
1566 3a0139e8 2022-07-22 thomas err = view->parent->resize(view->parent,
1567 3a0139e8 2022-07-22 thomas 0);
1568 a5d43cac 2022-07-01 thomas if (err)
1569 a5d43cac 2022-07-01 thomas return err;
1570 a5d43cac 2022-07-01 thomas }
1571 a5d43cac 2022-07-01 thomas offset_selection_up(view->parent);
1572 b65b3ea0 2022-06-23 thomas err = view_fullscreen(view->parent);
1573 a5d43cac 2022-07-01 thomas if (err)
1574 a5d43cac 2022-07-01 thomas return err;
1575 a5d43cac 2022-07-01 thomas }
1576 1e37a5c2 2019-05-12 jcs }
1577 1e37a5c2 2019-05-12 jcs break;
1578 1e37a5c2 2019-05-12 jcs case 'q':
1579 a5d43cac 2022-07-01 thomas if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1580 3a0139e8 2022-07-22 thomas if (view->parent->resize) {
1581 a5d43cac 2022-07-01 thomas /* might need more commits to fill fullscreen */
1582 3a0139e8 2022-07-22 thomas err = view->parent->resize(view->parent, 0);
1583 a5d43cac 2022-07-01 thomas if (err)
1584 a5d43cac 2022-07-01 thomas break;
1585 a5d43cac 2022-07-01 thomas }
1586 a5d43cac 2022-07-01 thomas offset_selection_up(view->parent);
1587 a5d43cac 2022-07-01 thomas }
1588 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1589 9970f7fc 2020-12-03 stsp view->dying = 1;
1590 1e37a5c2 2019-05-12 jcs break;
1591 1e37a5c2 2019-05-12 jcs case 'Q':
1592 1e37a5c2 2019-05-12 jcs *done = 1;
1593 1e37a5c2 2019-05-12 jcs break;
1594 1c5e5faa 2022-06-23 thomas case 'F':
1595 07b0611c 2022-06-23 thomas view->count = 0;
1596 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
1597 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
1598 1e37a5c2 2019-05-12 jcs break;
1599 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
1600 e78dc838 2020-12-04 stsp view->focussed = 0;
1601 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1602 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
1603 53d2bdd3 2022-07-10 thomas } else {
1604 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
1605 53d2bdd3 2022-07-10 thomas if (!err)
1606 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, 0);
1607 53d2bdd3 2022-07-10 thomas }
1608 1e37a5c2 2019-05-12 jcs if (err)
1609 1e37a5c2 2019-05-12 jcs break;
1610 e78dc838 2020-12-04 stsp err = view->child->input(new, view->child,
1611 9970f7fc 2020-12-03 stsp KEY_RESIZE);
1612 1e37a5c2 2019-05-12 jcs } else {
1613 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
1614 e78dc838 2020-12-04 stsp view->parent->focussed = 0;
1615 e78dc838 2020-12-04 stsp view->focussed = 1;
1616 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
1617 1e37a5c2 2019-05-12 jcs } else {
1618 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
1619 a5d43cac 2022-07-01 thomas if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1620 b65b3ea0 2022-06-23 thomas err = view_resize(view->parent);
1621 53d2bdd3 2022-07-10 thomas if (!err)
1622 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, 0);
1623 669b5ffa 2018-10-07 stsp }
1624 1e37a5c2 2019-05-12 jcs if (err)
1625 1e37a5c2 2019-05-12 jcs break;
1626 e78dc838 2020-12-04 stsp err = view->input(new, view, KEY_RESIZE);
1627 a5d43cac 2022-07-01 thomas }
1628 a5d43cac 2022-07-01 thomas if (err)
1629 a5d43cac 2022-07-01 thomas break;
1630 3a0139e8 2022-07-22 thomas if (view->resize) {
1631 3a0139e8 2022-07-22 thomas err = view->resize(view, 0);
1632 a5d43cac 2022-07-01 thomas if (err)
1633 a5d43cac 2022-07-01 thomas break;
1634 1e37a5c2 2019-05-12 jcs }
1635 a5d43cac 2022-07-01 thomas if (view->parent)
1636 a5d43cac 2022-07-01 thomas err = offset_selection_down(view->parent);
1637 a5d43cac 2022-07-01 thomas if (!err)
1638 a5d43cac 2022-07-01 thomas err = offset_selection_down(view);
1639 1e37a5c2 2019-05-12 jcs break;
1640 64486692 2022-07-07 thomas case 'S':
1641 53d2bdd3 2022-07-10 thomas view->count = 0;
1642 64486692 2022-07-07 thomas err = switch_split(view);
1643 53d2bdd3 2022-07-10 thomas break;
1644 53d2bdd3 2022-07-10 thomas case '-':
1645 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, -1);
1646 64486692 2022-07-07 thomas break;
1647 53d2bdd3 2022-07-10 thomas case '+':
1648 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, 1);
1649 53d2bdd3 2022-07-10 thomas break;
1650 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
1651 60493ae3 2019-06-20 stsp break;
1652 60493ae3 2019-06-20 stsp case '/':
1653 07b0611c 2022-06-23 thomas view->count = 0;
1654 60493ae3 2019-06-20 stsp if (view->search_start)
1655 2b49a8ae 2019-06-22 stsp view_search_start(view);
1656 60493ae3 2019-06-20 stsp else
1657 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1658 1e37a5c2 2019-05-12 jcs break;
1659 b1bf1435 2019-06-21 stsp case 'N':
1660 60493ae3 2019-06-20 stsp case 'n':
1661 c0c4acc8 2021-01-24 stsp if (view->search_started && view->search_next) {
1662 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
1663 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1664 60493ae3 2019-06-20 stsp view->search_next_done = 0;
1665 60493ae3 2019-06-20 stsp view->search_next(view);
1666 60493ae3 2019-06-20 stsp } else
1667 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1668 adf4c9e0 2022-07-03 thomas break;
1669 adf4c9e0 2022-07-03 thomas case 'A':
1670 adf4c9e0 2022-07-03 thomas if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS)
1671 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1672 adf4c9e0 2022-07-03 thomas else
1673 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1674 adf4c9e0 2022-07-03 thomas TAILQ_FOREACH(v, views, entry) {
1675 adf4c9e0 2022-07-03 thomas if (v->reset) {
1676 adf4c9e0 2022-07-03 thomas err = v->reset(v);
1677 adf4c9e0 2022-07-03 thomas if (err)
1678 adf4c9e0 2022-07-03 thomas return err;
1679 adf4c9e0 2022-07-03 thomas }
1680 adf4c9e0 2022-07-03 thomas if (v->child && v->child->reset) {
1681 adf4c9e0 2022-07-03 thomas err = v->child->reset(v->child);
1682 adf4c9e0 2022-07-03 thomas if (err)
1683 adf4c9e0 2022-07-03 thomas return err;
1684 adf4c9e0 2022-07-03 thomas }
1685 adf4c9e0 2022-07-03 thomas }
1686 60493ae3 2019-06-20 stsp break;
1687 1e37a5c2 2019-05-12 jcs default:
1688 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1689 1e37a5c2 2019-05-12 jcs break;
1690 e5a0f69f 2018-08-18 stsp }
1691 e5a0f69f 2018-08-18 stsp
1692 e5a0f69f 2018-08-18 stsp return err;
1693 bcbd79e2 2018-08-19 stsp }
1694 bcbd79e2 2018-08-19 stsp
1695 ef20f542 2022-06-26 thomas static int
1696 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
1697 a3404814 2018-09-02 stsp {
1698 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
1699 acdafe9c 2020-12-03 stsp if (view->child == NULL || view->child->focussed)
1700 669b5ffa 2018-10-07 stsp return 0;
1701 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
1702 669b5ffa 2018-10-07 stsp return 0;
1703 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
1704 a3404814 2018-09-02 stsp return 0;
1705 a3404814 2018-09-02 stsp
1706 669b5ffa 2018-10-07 stsp return view->focussed;
1707 a3404814 2018-09-02 stsp }
1708 a3404814 2018-09-02 stsp
1709 bcbd79e2 2018-08-19 stsp static const struct got_error *
1710 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
1711 e5a0f69f 2018-08-18 stsp {
1712 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1713 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
1714 fb59748f 2020-12-05 stsp struct tog_view *new_view;
1715 64486692 2022-07-07 thomas char *mode;
1716 fd823528 2018-10-22 stsp int fast_refresh = 10;
1717 1a76625f 2018-10-22 stsp int done = 0, errcode;
1718 e5a0f69f 2018-08-18 stsp
1719 64486692 2022-07-07 thomas mode = getenv("TOG_VIEW_SPLIT_MODE");
1720 64486692 2022-07-07 thomas if (!mode || !(*mode == 'h' || *mode == 'H'))
1721 64486692 2022-07-07 thomas view->mode = TOG_VIEW_SPLIT_VERT;
1722 64486692 2022-07-07 thomas else
1723 64486692 2022-07-07 thomas view->mode = TOG_VIEW_SPLIT_HRZN;
1724 64486692 2022-07-07 thomas
1725 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1726 1a76625f 2018-10-22 stsp if (errcode)
1727 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1728 1a76625f 2018-10-22 stsp
1729 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
1730 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
1731 e5a0f69f 2018-08-18 stsp
1732 1004088d 2018-09-29 stsp view->focussed = 1;
1733 878940b7 2018-09-29 stsp err = view->show(view);
1734 0cf4efb1 2018-09-29 stsp if (err)
1735 0cf4efb1 2018-09-29 stsp return err;
1736 0cf4efb1 2018-09-29 stsp update_panels();
1737 0cf4efb1 2018-09-29 stsp doupdate();
1738 f2d749db 2022-07-12 thomas while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1739 f2d749db 2022-07-12 thomas !tog_fatal_signal_received()) {
1740 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
1741 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
1742 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
1743 fd823528 2018-10-22 stsp
1744 e78dc838 2020-12-04 stsp err = view_input(&new_view, &done, view, &views);
1745 e5a0f69f 2018-08-18 stsp if (err)
1746 e5a0f69f 2018-08-18 stsp break;
1747 9970f7fc 2020-12-03 stsp if (view->dying) {
1748 e78dc838 2020-12-04 stsp struct tog_view *v, *prev = NULL;
1749 669b5ffa 2018-10-07 stsp
1750 9970f7fc 2020-12-03 stsp if (view_is_parent_view(view))
1751 9970f7fc 2020-12-03 stsp prev = TAILQ_PREV(view, tog_view_list_head,
1752 9970f7fc 2020-12-03 stsp entry);
1753 e78dc838 2020-12-04 stsp else if (view->parent)
1754 669b5ffa 2018-10-07 stsp prev = view->parent;
1755 669b5ffa 2018-10-07 stsp
1756 e78dc838 2020-12-04 stsp if (view->parent) {
1757 9970f7fc 2020-12-03 stsp view->parent->child = NULL;
1758 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1759 a5d43cac 2022-07-01 thomas /* Restore fullscreen line height. */
1760 a5d43cac 2022-07-01 thomas view->parent->nlines = view->parent->lines;
1761 40236d76 2022-06-23 thomas err = view_resize(view->parent);
1762 40236d76 2022-06-23 thomas if (err)
1763 40236d76 2022-06-23 thomas break;
1764 53d2bdd3 2022-07-10 thomas /* Make resized splits persist. */
1765 53d2bdd3 2022-07-10 thomas view_transfer_size(view->parent, view);
1766 e78dc838 2020-12-04 stsp } else
1767 9970f7fc 2020-12-03 stsp TAILQ_REMOVE(&views, view, entry);
1768 669b5ffa 2018-10-07 stsp
1769 9970f7fc 2020-12-03 stsp err = view_close(view);
1770 fb59748f 2020-12-05 stsp if (err)
1771 e5a0f69f 2018-08-18 stsp goto done;
1772 669b5ffa 2018-10-07 stsp
1773 e78dc838 2020-12-04 stsp view = NULL;
1774 e78dc838 2020-12-04 stsp TAILQ_FOREACH(v, &views, entry) {
1775 e78dc838 2020-12-04 stsp if (v->focussed)
1776 e78dc838 2020-12-04 stsp break;
1777 0cf4efb1 2018-09-29 stsp }
1778 e78dc838 2020-12-04 stsp if (view == NULL && new_view == NULL) {
1779 e78dc838 2020-12-04 stsp /* No view has focus. Try to pick one. */
1780 e78dc838 2020-12-04 stsp if (prev)
1781 e78dc838 2020-12-04 stsp view = prev;
1782 e78dc838 2020-12-04 stsp else if (!TAILQ_EMPTY(&views)) {
1783 e78dc838 2020-12-04 stsp view = TAILQ_LAST(&views,
1784 e78dc838 2020-12-04 stsp tog_view_list_head);
1785 e78dc838 2020-12-04 stsp }
1786 e78dc838 2020-12-04 stsp if (view) {
1787 e78dc838 2020-12-04 stsp if (view->focus_child) {
1788 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1789 e78dc838 2020-12-04 stsp view = view->child;
1790 e78dc838 2020-12-04 stsp } else
1791 e78dc838 2020-12-04 stsp view->focussed = 1;
1792 e78dc838 2020-12-04 stsp }
1793 e78dc838 2020-12-04 stsp }
1794 e5a0f69f 2018-08-18 stsp }
1795 bcbd79e2 2018-08-19 stsp if (new_view) {
1796 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1797 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1798 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1799 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1800 86c66b02 2018-10-18 stsp continue;
1801 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1802 86c66b02 2018-10-18 stsp err = view_close(v);
1803 86c66b02 2018-10-18 stsp if (err)
1804 86c66b02 2018-10-18 stsp goto done;
1805 86c66b02 2018-10-18 stsp break;
1806 86c66b02 2018-10-18 stsp }
1807 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1808 fed7eaa8 2018-10-24 stsp view = new_view;
1809 7cd52833 2022-06-23 thomas }
1810 669b5ffa 2018-10-07 stsp if (view) {
1811 e78dc838 2020-12-04 stsp if (view_is_parent_view(view)) {
1812 e78dc838 2020-12-04 stsp if (view->child && view->child->focussed)
1813 e78dc838 2020-12-04 stsp view = view->child;
1814 e78dc838 2020-12-04 stsp } else {
1815 e78dc838 2020-12-04 stsp if (view->parent && view->parent->focussed)
1816 e78dc838 2020-12-04 stsp view = view->parent;
1817 1a76625f 2018-10-22 stsp }
1818 e78dc838 2020-12-04 stsp show_panel(view->panel);
1819 e78dc838 2020-12-04 stsp if (view->child && view_is_splitscreen(view->child))
1820 e78dc838 2020-12-04 stsp show_panel(view->child->panel);
1821 e78dc838 2020-12-04 stsp if (view->parent && view_is_splitscreen(view)) {
1822 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1823 669b5ffa 2018-10-07 stsp if (err)
1824 1a76625f 2018-10-22 stsp goto done;
1825 669b5ffa 2018-10-07 stsp }
1826 669b5ffa 2018-10-07 stsp err = view->show(view);
1827 0cf4efb1 2018-09-29 stsp if (err)
1828 1a76625f 2018-10-22 stsp goto done;
1829 669b5ffa 2018-10-07 stsp if (view->child) {
1830 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1831 669b5ffa 2018-10-07 stsp if (err)
1832 1a76625f 2018-10-22 stsp goto done;
1833 669b5ffa 2018-10-07 stsp }
1834 1a76625f 2018-10-22 stsp update_panels();
1835 1a76625f 2018-10-22 stsp doupdate();
1836 0cf4efb1 2018-09-29 stsp }
1837 e5a0f69f 2018-08-18 stsp }
1838 e5a0f69f 2018-08-18 stsp done:
1839 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1840 f2d749db 2022-07-12 thomas const struct got_error *close_err;
1841 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1842 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1843 f2d749db 2022-07-12 thomas close_err = view_close(view);
1844 f2d749db 2022-07-12 thomas if (close_err && err == NULL)
1845 f2d749db 2022-07-12 thomas err = close_err;
1846 e5a0f69f 2018-08-18 stsp }
1847 1a76625f 2018-10-22 stsp
1848 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1849 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1850 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1851 1a76625f 2018-10-22 stsp
1852 e5a0f69f 2018-08-18 stsp return err;
1853 ea5e7bb5 2018-08-01 stsp }
1854 ea5e7bb5 2018-08-01 stsp
1855 4ed7e80c 2018-05-20 stsp __dead static void
1856 9f7d7167 2018-04-29 stsp usage_log(void)
1857 9f7d7167 2018-04-29 stsp {
1858 80ddbec8 2018-04-29 stsp endwin();
1859 c70c5802 2018-08-01 stsp fprintf(stderr,
1860 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1861 9f7d7167 2018-04-29 stsp getprogname());
1862 9f7d7167 2018-04-29 stsp exit(1);
1863 80ddbec8 2018-04-29 stsp }
1864 80ddbec8 2018-04-29 stsp
1865 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1866 80ddbec8 2018-04-29 stsp static const struct got_error *
1867 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1868 963b370f 2018-05-20 stsp {
1869 00dfcb92 2018-06-11 stsp char *vis = NULL;
1870 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1871 963b370f 2018-05-20 stsp
1872 963b370f 2018-05-20 stsp *ws = NULL;
1873 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1874 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1875 00dfcb92 2018-06-11 stsp int vislen;
1876 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1877 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1878 00dfcb92 2018-06-11 stsp
1879 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1880 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1881 00dfcb92 2018-06-11 stsp if (err)
1882 00dfcb92 2018-06-11 stsp return err;
1883 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1884 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1885 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1886 a7f50699 2018-06-11 stsp goto done;
1887 a7f50699 2018-06-11 stsp }
1888 00dfcb92 2018-06-11 stsp }
1889 963b370f 2018-05-20 stsp
1890 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1891 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1892 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1893 a7f50699 2018-06-11 stsp goto done;
1894 a7f50699 2018-06-11 stsp }
1895 963b370f 2018-05-20 stsp
1896 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1897 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1898 a7f50699 2018-06-11 stsp done:
1899 00dfcb92 2018-06-11 stsp free(vis);
1900 963b370f 2018-05-20 stsp if (err) {
1901 963b370f 2018-05-20 stsp free(*ws);
1902 963b370f 2018-05-20 stsp *ws = NULL;
1903 963b370f 2018-05-20 stsp *wlen = 0;
1904 963b370f 2018-05-20 stsp }
1905 963b370f 2018-05-20 stsp return err;
1906 05171be4 2022-06-23 thomas }
1907 05171be4 2022-06-23 thomas
1908 05171be4 2022-06-23 thomas static const struct got_error *
1909 05171be4 2022-06-23 thomas expand_tab(char **ptr, const char *src)
1910 05171be4 2022-06-23 thomas {
1911 05171be4 2022-06-23 thomas char *dst;
1912 05171be4 2022-06-23 thomas size_t len, n, idx = 0, sz = 0;
1913 05171be4 2022-06-23 thomas
1914 05171be4 2022-06-23 thomas *ptr = NULL;
1915 05171be4 2022-06-23 thomas n = len = strlen(src);
1916 83316834 2022-06-23 thomas dst = malloc(n + 1);
1917 05171be4 2022-06-23 thomas if (dst == NULL)
1918 05171be4 2022-06-23 thomas return got_error_from_errno("malloc");
1919 05171be4 2022-06-23 thomas
1920 05171be4 2022-06-23 thomas while (idx < len && src[idx]) {
1921 05171be4 2022-06-23 thomas const char c = src[idx];
1922 05171be4 2022-06-23 thomas
1923 05171be4 2022-06-23 thomas if (c == '\t') {
1924 05171be4 2022-06-23 thomas size_t nb = TABSIZE - sz % TABSIZE;
1925 b235ad5d 2022-06-23 thomas char *p;
1926 b235ad5d 2022-06-23 thomas
1927 b235ad5d 2022-06-23 thomas p = realloc(dst, n + nb);
1928 83316834 2022-06-23 thomas if (p == NULL) {
1929 83316834 2022-06-23 thomas free(dst);
1930 83316834 2022-06-23 thomas return got_error_from_errno("realloc");
1931 83316834 2022-06-23 thomas
1932 83316834 2022-06-23 thomas }
1933 83316834 2022-06-23 thomas dst = p;
1934 05171be4 2022-06-23 thomas n += nb;
1935 83316834 2022-06-23 thomas memset(dst + sz, ' ', nb);
1936 05171be4 2022-06-23 thomas sz += nb;
1937 05171be4 2022-06-23 thomas } else
1938 05171be4 2022-06-23 thomas dst[sz++] = src[idx];
1939 05171be4 2022-06-23 thomas ++idx;
1940 05171be4 2022-06-23 thomas }
1941 05171be4 2022-06-23 thomas
1942 05171be4 2022-06-23 thomas dst[sz] = '\0';
1943 05171be4 2022-06-23 thomas *ptr = dst;
1944 05171be4 2022-06-23 thomas return NULL;
1945 963b370f 2018-05-20 stsp }
1946 963b370f 2018-05-20 stsp
1947 8d208d34 2022-06-23 thomas /*
1948 8d208d34 2022-06-23 thomas * Advance at most n columns from wline starting at offset off.
1949 8d208d34 2022-06-23 thomas * Return the index to the first character after the span operation.
1950 8d208d34 2022-06-23 thomas * Return the combined column width of all spanned wide character in
1951 8d208d34 2022-06-23 thomas * *rcol.
1952 f91a2b48 2022-06-23 thomas */
1953 8d208d34 2022-06-23 thomas static int
1954 8d208d34 2022-06-23 thomas span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
1955 8d208d34 2022-06-23 thomas {
1956 8d208d34 2022-06-23 thomas int width, i, cols = 0;
1957 f91a2b48 2022-06-23 thomas
1958 8d208d34 2022-06-23 thomas if (n == 0) {
1959 8d208d34 2022-06-23 thomas *rcol = cols;
1960 8d208d34 2022-06-23 thomas return off;
1961 8d208d34 2022-06-23 thomas }
1962 f91a2b48 2022-06-23 thomas
1963 8d208d34 2022-06-23 thomas for (i = off; wline[i] != L'\0'; ++i) {
1964 8d208d34 2022-06-23 thomas if (wline[i] == L'\t')
1965 8d208d34 2022-06-23 thomas width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
1966 8d208d34 2022-06-23 thomas else
1967 8d208d34 2022-06-23 thomas width = wcwidth(wline[i]);
1968 f91a2b48 2022-06-23 thomas
1969 8d208d34 2022-06-23 thomas if (width == -1) {
1970 8d208d34 2022-06-23 thomas width = 1;
1971 8d208d34 2022-06-23 thomas wline[i] = L'.';
1972 f91a2b48 2022-06-23 thomas }
1973 f91a2b48 2022-06-23 thomas
1974 8d208d34 2022-06-23 thomas if (cols + width > n)
1975 8d208d34 2022-06-23 thomas break;
1976 8d208d34 2022-06-23 thomas cols += width;
1977 f91a2b48 2022-06-23 thomas }
1978 f91a2b48 2022-06-23 thomas
1979 8d208d34 2022-06-23 thomas *rcol = cols;
1980 8d208d34 2022-06-23 thomas return i;
1981 f91a2b48 2022-06-23 thomas }
1982 f91a2b48 2022-06-23 thomas
1983 f91a2b48 2022-06-23 thomas /*
1984 f91a2b48 2022-06-23 thomas * Format a line for display, ensuring that it won't overflow a width limit.
1985 f91a2b48 2022-06-23 thomas * With scrolling, the width returned refers to the scrolled version of the
1986 f91a2b48 2022-06-23 thomas * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
1987 f91a2b48 2022-06-23 thomas */
1988 f91a2b48 2022-06-23 thomas static const struct got_error *
1989 f91a2b48 2022-06-23 thomas format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
1990 f91a2b48 2022-06-23 thomas const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
1991 f91a2b48 2022-06-23 thomas {
1992 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1993 8d208d34 2022-06-23 thomas int cols;
1994 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1995 05171be4 2022-06-23 thomas char *exstr = NULL;
1996 963b370f 2018-05-20 stsp size_t wlen;
1997 8d208d34 2022-06-23 thomas int i, scrollx;
1998 963b370f 2018-05-20 stsp
1999 963b370f 2018-05-20 stsp *wlinep = NULL;
2000 b700b5d6 2018-07-10 stsp *widthp = 0;
2001 963b370f 2018-05-20 stsp
2002 05171be4 2022-06-23 thomas if (expand) {
2003 05171be4 2022-06-23 thomas err = expand_tab(&exstr, line);
2004 05171be4 2022-06-23 thomas if (err)
2005 05171be4 2022-06-23 thomas return err;
2006 05171be4 2022-06-23 thomas }
2007 05171be4 2022-06-23 thomas
2008 05171be4 2022-06-23 thomas err = mbs2ws(&wline, &wlen, expand ? exstr : line);
2009 05171be4 2022-06-23 thomas free(exstr);
2010 963b370f 2018-05-20 stsp if (err)
2011 963b370f 2018-05-20 stsp return err;
2012 963b370f 2018-05-20 stsp
2013 8d208d34 2022-06-23 thomas scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
2014 f91a2b48 2022-06-23 thomas
2015 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\n') {
2016 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2017 3f670bfb 2020-12-10 stsp wlen--;
2018 3f670bfb 2020-12-10 stsp }
2019 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\r') {
2020 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2021 3f670bfb 2020-12-10 stsp wlen--;
2022 3f670bfb 2020-12-10 stsp }
2023 3f670bfb 2020-12-10 stsp
2024 8d208d34 2022-06-23 thomas i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
2025 8d208d34 2022-06-23 thomas wline[i] = L'\0';
2026 27a741e5 2019-09-11 stsp
2027 b700b5d6 2018-07-10 stsp if (widthp)
2028 b700b5d6 2018-07-10 stsp *widthp = cols;
2029 f91a2b48 2022-06-23 thomas if (scrollxp)
2030 f91a2b48 2022-06-23 thomas *scrollxp = scrollx;
2031 963b370f 2018-05-20 stsp if (err)
2032 963b370f 2018-05-20 stsp free(wline);
2033 963b370f 2018-05-20 stsp else
2034 963b370f 2018-05-20 stsp *wlinep = wline;
2035 963b370f 2018-05-20 stsp return err;
2036 963b370f 2018-05-20 stsp }
2037 963b370f 2018-05-20 stsp
2038 8b473291 2019-02-21 stsp static const struct got_error*
2039 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
2040 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
2041 8b473291 2019-02-21 stsp {
2042 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
2043 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
2044 8b473291 2019-02-21 stsp char *s;
2045 8b473291 2019-02-21 stsp const char *name;
2046 8b473291 2019-02-21 stsp
2047 8b473291 2019-02-21 stsp *refs_str = NULL;
2048 8b473291 2019-02-21 stsp
2049 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
2050 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
2051 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
2052 52b5abe1 2019-08-13 stsp int cmp;
2053 52b5abe1 2019-08-13 stsp
2054 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
2055 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
2056 8b473291 2019-02-21 stsp continue;
2057 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
2058 8b473291 2019-02-21 stsp name += 5;
2059 2183bbf6 2022-01-23 thomas if (strncmp(name, "got/", 4) == 0 &&
2060 2183bbf6 2022-01-23 thomas strncmp(name, "got/backup/", 11) != 0)
2061 7143d404 2019-03-12 stsp continue;
2062 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
2063 8b473291 2019-02-21 stsp name += 6;
2064 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
2065 8b473291 2019-02-21 stsp name += 8;
2066 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
2067 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
2068 79cc719f 2020-04-24 stsp continue;
2069 79cc719f 2020-04-24 stsp }
2070 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
2071 48cae60d 2020-09-22 stsp if (err)
2072 48cae60d 2020-09-22 stsp break;
2073 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
2074 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
2075 5d844a1e 2019-08-13 stsp if (err) {
2076 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
2077 48cae60d 2020-09-22 stsp free(ref_id);
2078 5d844a1e 2019-08-13 stsp break;
2079 48cae60d 2020-09-22 stsp }
2080 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
2081 5d844a1e 2019-08-13 stsp err = NULL;
2082 5d844a1e 2019-08-13 stsp tag = NULL;
2083 5d844a1e 2019-08-13 stsp }
2084 52b5abe1 2019-08-13 stsp }
2085 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
2086 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
2087 48cae60d 2020-09-22 stsp free(ref_id);
2088 52b5abe1 2019-08-13 stsp if (tag)
2089 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
2090 52b5abe1 2019-08-13 stsp if (cmp != 0)
2091 52b5abe1 2019-08-13 stsp continue;
2092 8b473291 2019-02-21 stsp s = *refs_str;
2093 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
2094 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
2095 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2096 8b473291 2019-02-21 stsp free(s);
2097 8b473291 2019-02-21 stsp *refs_str = NULL;
2098 8b473291 2019-02-21 stsp break;
2099 8b473291 2019-02-21 stsp }
2100 8b473291 2019-02-21 stsp free(s);
2101 8b473291 2019-02-21 stsp }
2102 8b473291 2019-02-21 stsp
2103 8b473291 2019-02-21 stsp return err;
2104 8b473291 2019-02-21 stsp }
2105 8b473291 2019-02-21 stsp
2106 963b370f 2018-05-20 stsp static const struct got_error *
2107 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
2108 27a741e5 2019-09-11 stsp int col_tab_align)
2109 5813d178 2019-03-09 stsp {
2110 e6b8b890 2020-12-29 naddy char *smallerthan;
2111 5813d178 2019-03-09 stsp
2112 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
2113 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
2114 5813d178 2019-03-09 stsp author = smallerthan + 1;
2115 e6b8b890 2020-12-29 naddy author[strcspn(author, "@>")] = '\0';
2116 f91a2b48 2022-06-23 thomas return format_line(wauthor, author_width, NULL, author, 0, limit,
2117 f91a2b48 2022-06-23 thomas col_tab_align, 0);
2118 5813d178 2019-03-09 stsp }
2119 5813d178 2019-03-09 stsp
2120 5813d178 2019-03-09 stsp static const struct got_error *
2121 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
2122 8fdc79fe 2020-12-01 naddy struct got_object_id *id, const size_t date_display_cols,
2123 8fdc79fe 2020-12-01 naddy int author_display_cols)
2124 80ddbec8 2018-04-29 stsp {
2125 8fdc79fe 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2126 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
2127 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
2128 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
2129 5813d178 2019-03-09 stsp char *author = NULL;
2130 f91a2b48 2022-06-23 thomas wchar_t *wlogmsg = NULL, *wauthor = NULL;
2131 bb737323 2018-05-20 stsp int author_width, logmsg_width;
2132 5813d178 2019-03-09 stsp char *newline, *line = NULL;
2133 f91a2b48 2022-06-23 thomas int col, limit, scrollx;
2134 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
2135 ccb26ccd 2018-11-05 stsp struct tm tm;
2136 45d799e2 2018-12-23 stsp time_t committer_time;
2137 11b20872 2019-11-08 stsp struct tog_color *tc;
2138 80ddbec8 2018-04-29 stsp
2139 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
2140 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
2141 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
2142 ec6d1a36 2021-03-21 jrick if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
2143 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
2144 b39d25c7 2018-07-10 stsp
2145 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
2146 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
2147 b39d25c7 2018-07-10 stsp else
2148 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2149 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_DATE);
2150 11b20872 2019-11-08 stsp if (tc)
2151 11b20872 2019-11-08 stsp wattr_on(view->window,
2152 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2153 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
2154 11b20872 2019-11-08 stsp if (tc)
2155 11b20872 2019-11-08 stsp wattr_off(view->window,
2156 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2157 27a741e5 2019-09-11 stsp col = limit;
2158 b39d25c7 2018-07-10 stsp if (col > avail)
2159 b39d25c7 2018-07-10 stsp goto done;
2160 6570a66d 2019-11-08 stsp
2161 6570a66d 2019-11-08 stsp if (avail >= 120) {
2162 6570a66d 2019-11-08 stsp char *id_str;
2163 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
2164 6570a66d 2019-11-08 stsp if (err)
2165 6570a66d 2019-11-08 stsp goto done;
2166 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2167 11b20872 2019-11-08 stsp if (tc)
2168 11b20872 2019-11-08 stsp wattr_on(view->window,
2169 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2170 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
2171 11b20872 2019-11-08 stsp if (tc)
2172 11b20872 2019-11-08 stsp wattr_off(view->window,
2173 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2174 6570a66d 2019-11-08 stsp free(id_str);
2175 6570a66d 2019-11-08 stsp col += 9;
2176 6570a66d 2019-11-08 stsp if (col > avail)
2177 6570a66d 2019-11-08 stsp goto done;
2178 6570a66d 2019-11-08 stsp }
2179 b39d25c7 2018-07-10 stsp
2180 f69c5a46 2022-07-19 thomas if (s->use_committer)
2181 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_committer(commit));
2182 f69c5a46 2022-07-19 thomas else
2183 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_author(commit));
2184 5813d178 2019-03-09 stsp if (author == NULL) {
2185 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2186 80ddbec8 2018-04-29 stsp goto done;
2187 80ddbec8 2018-04-29 stsp }
2188 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
2189 bb737323 2018-05-20 stsp if (err)
2190 bb737323 2018-05-20 stsp goto done;
2191 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2192 11b20872 2019-11-08 stsp if (tc)
2193 11b20872 2019-11-08 stsp wattr_on(view->window,
2194 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2195 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
2196 bb737323 2018-05-20 stsp col += author_width;
2197 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
2198 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2199 bb737323 2018-05-20 stsp col++;
2200 bb737323 2018-05-20 stsp author_width++;
2201 bb737323 2018-05-20 stsp }
2202 f31d6c3b 2022-09-09 thomas if (tc)
2203 f31d6c3b 2022-09-09 thomas wattr_off(view->window,
2204 f31d6c3b 2022-09-09 thomas COLOR_PAIR(tc->colorpair), NULL);
2205 9c2eaf34 2018-05-20 stsp if (col > avail)
2206 9c2eaf34 2018-05-20 stsp goto done;
2207 80ddbec8 2018-04-29 stsp
2208 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
2209 5943eee2 2019-08-13 stsp if (err)
2210 6d9fbc00 2018-04-29 stsp goto done;
2211 bb737323 2018-05-20 stsp logmsg = logmsg0;
2212 bb737323 2018-05-20 stsp while (*logmsg == '\n')
2213 bb737323 2018-05-20 stsp logmsg++;
2214 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
2215 bb737323 2018-05-20 stsp if (newline)
2216 bb737323 2018-05-20 stsp *newline = '\0';
2217 f91a2b48 2022-06-23 thomas limit = avail - col;
2218 444d5325 2022-07-03 thomas if (view->child && !view_is_hsplit_top(view) && limit > 0)
2219 5c6cacf5 2022-06-23 thomas limit--; /* for the border */
2220 f91a2b48 2022-06-23 thomas err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2221 f91a2b48 2022-06-23 thomas limit, col, 1);
2222 331b1a16 2022-06-23 thomas if (err)
2223 331b1a16 2022-06-23 thomas goto done;
2224 f91a2b48 2022-06-23 thomas waddwstr(view->window, &wlogmsg[scrollx]);
2225 331b1a16 2022-06-23 thomas col += MAX(logmsg_width, 0);
2226 27a741e5 2019-09-11 stsp while (col < avail) {
2227 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2228 bb737323 2018-05-20 stsp col++;
2229 881b2d3e 2018-04-30 stsp }
2230 80ddbec8 2018-04-29 stsp done:
2231 80ddbec8 2018-04-29 stsp free(logmsg0);
2232 bb737323 2018-05-20 stsp free(wlogmsg);
2233 5813d178 2019-03-09 stsp free(author);
2234 bb737323 2018-05-20 stsp free(wauthor);
2235 80ddbec8 2018-04-29 stsp free(line);
2236 80ddbec8 2018-04-29 stsp return err;
2237 80ddbec8 2018-04-29 stsp }
2238 26ed57b2 2018-05-19 stsp
2239 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
2240 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
2241 899d86c2 2018-05-10 stsp struct got_object_id *id)
2242 80ddbec8 2018-04-29 stsp {
2243 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
2244 d68b9737 2022-09-05 thomas struct got_object_id *dup;
2245 80ddbec8 2018-04-29 stsp
2246 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
2247 80ddbec8 2018-04-29 stsp if (entry == NULL)
2248 899d86c2 2018-05-10 stsp return NULL;
2249 99db9666 2018-05-07 stsp
2250 d68b9737 2022-09-05 thomas dup = got_object_id_dup(id);
2251 d68b9737 2022-09-05 thomas if (dup == NULL) {
2252 d68b9737 2022-09-05 thomas free(entry);
2253 d68b9737 2022-09-05 thomas return NULL;
2254 d68b9737 2022-09-05 thomas }
2255 d68b9737 2022-09-05 thomas
2256 d68b9737 2022-09-05 thomas entry->id = dup;
2257 99db9666 2018-05-07 stsp entry->commit = commit;
2258 899d86c2 2018-05-10 stsp return entry;
2259 99db9666 2018-05-07 stsp }
2260 80ddbec8 2018-04-29 stsp
2261 99db9666 2018-05-07 stsp static void
2262 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
2263 99db9666 2018-05-07 stsp {
2264 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
2265 99db9666 2018-05-07 stsp
2266 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
2267 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
2268 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
2269 ecb28ae0 2018-07-16 stsp commits->ncommits--;
2270 d68b9737 2022-09-05 thomas free(entry->id);
2271 99db9666 2018-05-07 stsp free(entry);
2272 99db9666 2018-05-07 stsp }
2273 99db9666 2018-05-07 stsp
2274 99db9666 2018-05-07 stsp static void
2275 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
2276 99db9666 2018-05-07 stsp {
2277 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
2278 99db9666 2018-05-07 stsp pop_commit(commits);
2279 c4972b91 2018-05-07 stsp }
2280 c4972b91 2018-05-07 stsp
2281 c4972b91 2018-05-07 stsp static const struct got_error *
2282 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
2283 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
2284 13add988 2019-10-15 stsp {
2285 13add988 2019-10-15 stsp const struct got_error *err = NULL;
2286 13add988 2019-10-15 stsp regmatch_t regmatch;
2287 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
2288 13add988 2019-10-15 stsp
2289 13add988 2019-10-15 stsp *have_match = 0;
2290 13add988 2019-10-15 stsp
2291 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
2292 13add988 2019-10-15 stsp if (err)
2293 13add988 2019-10-15 stsp return err;
2294 13add988 2019-10-15 stsp
2295 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2296 13add988 2019-10-15 stsp if (err)
2297 13add988 2019-10-15 stsp goto done;
2298 13add988 2019-10-15 stsp
2299 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
2300 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2301 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
2302 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2303 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2304 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2305 13add988 2019-10-15 stsp *have_match = 1;
2306 13add988 2019-10-15 stsp done:
2307 13add988 2019-10-15 stsp free(id_str);
2308 13add988 2019-10-15 stsp free(logmsg);
2309 13add988 2019-10-15 stsp return err;
2310 13add988 2019-10-15 stsp }
2311 13add988 2019-10-15 stsp
2312 13add988 2019-10-15 stsp static const struct got_error *
2313 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
2314 c4972b91 2018-05-07 stsp {
2315 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
2316 9ba79e04 2018-06-11 stsp
2317 1a76625f 2018-10-22 stsp /*
2318 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
2319 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
2320 1a76625f 2018-10-22 stsp * while updating the display.
2321 1a76625f 2018-10-22 stsp */
2322 4e0d2870 2020-12-07 naddy do {
2323 7210b715 2022-09-11 thomas struct got_object_id id;
2324 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
2325 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
2326 7e8004ba 2022-09-11 thomas int limit_match = 0;
2327 1a76625f 2018-10-22 stsp int errcode;
2328 899d86c2 2018-05-10 stsp
2329 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2330 4e0d2870 2020-12-07 naddy NULL, NULL);
2331 7210b715 2022-09-11 thomas if (err)
2332 ecb28ae0 2018-07-16 stsp break;
2333 899d86c2 2018-05-10 stsp
2334 7210b715 2022-09-11 thomas err = got_object_open_as_commit(&commit, a->repo, &id);
2335 9ba79e04 2018-06-11 stsp if (err)
2336 9ba79e04 2018-06-11 stsp break;
2337 7210b715 2022-09-11 thomas entry = alloc_commit_queue_entry(commit, &id);
2338 9ba79e04 2018-06-11 stsp if (entry == NULL) {
2339 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
2340 9ba79e04 2018-06-11 stsp break;
2341 9ba79e04 2018-06-11 stsp }
2342 93e45b7c 2018-09-24 stsp
2343 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2344 1a76625f 2018-10-22 stsp if (errcode) {
2345 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
2346 13add988 2019-10-15 stsp "pthread_mutex_lock");
2347 1a76625f 2018-10-22 stsp break;
2348 1a76625f 2018-10-22 stsp }
2349 1a76625f 2018-10-22 stsp
2350 7e8004ba 2022-09-11 thomas entry->idx = a->real_commits->ncommits;
2351 7e8004ba 2022-09-11 thomas TAILQ_INSERT_TAIL(&a->real_commits->head, entry, entry);
2352 7e8004ba 2022-09-11 thomas a->real_commits->ncommits++;
2353 1a76625f 2018-10-22 stsp
2354 7e8004ba 2022-09-11 thomas if (*a->limiting) {
2355 7e8004ba 2022-09-11 thomas err = match_commit(&limit_match, &id, commit,
2356 7e8004ba 2022-09-11 thomas a->limit_regex);
2357 7e8004ba 2022-09-11 thomas if (err)
2358 7e8004ba 2022-09-11 thomas break;
2359 7e8004ba 2022-09-11 thomas
2360 7e8004ba 2022-09-11 thomas if (limit_match) {
2361 7e8004ba 2022-09-11 thomas struct commit_queue_entry *matched;
2362 7e8004ba 2022-09-11 thomas
2363 7e8004ba 2022-09-11 thomas matched = alloc_commit_queue_entry(
2364 7e8004ba 2022-09-11 thomas entry->commit, entry->id);
2365 7e8004ba 2022-09-11 thomas if (matched == NULL) {
2366 7e8004ba 2022-09-11 thomas err = got_error_from_errno(
2367 7e8004ba 2022-09-11 thomas "alloc_commit_queue_entry");
2368 7e8004ba 2022-09-11 thomas break;
2369 7e8004ba 2022-09-11 thomas }
2370 6f6c25d6 2022-09-18 thomas matched->commit = entry->commit;
2371 6f6c25d6 2022-09-18 thomas got_object_commit_retain(entry->commit);
2372 7e8004ba 2022-09-11 thomas
2373 7e8004ba 2022-09-11 thomas matched->idx = a->limit_commits->ncommits;
2374 7e8004ba 2022-09-11 thomas TAILQ_INSERT_TAIL(&a->limit_commits->head,
2375 7e8004ba 2022-09-11 thomas matched, entry);
2376 7e8004ba 2022-09-11 thomas a->limit_commits->ncommits++;
2377 7e8004ba 2022-09-11 thomas }
2378 7e8004ba 2022-09-11 thomas
2379 7e8004ba 2022-09-11 thomas /*
2380 7e8004ba 2022-09-11 thomas * This is how we signal log_thread() that we
2381 7e8004ba 2022-09-11 thomas * have found a match, and that it should be
2382 7e8004ba 2022-09-11 thomas * counted as a new entry for the view.
2383 7e8004ba 2022-09-11 thomas */
2384 7e8004ba 2022-09-11 thomas a->limit_match = limit_match;
2385 7e8004ba 2022-09-11 thomas }
2386 7e8004ba 2022-09-11 thomas
2387 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
2388 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
2389 7c1452c1 2020-03-26 stsp int have_match;
2390 7210b715 2022-09-11 thomas err = match_commit(&have_match, &id, commit, a->regex);
2391 7c1452c1 2020-03-26 stsp if (err)
2392 7c1452c1 2020-03-26 stsp break;
2393 7e8004ba 2022-09-11 thomas
2394 7e8004ba 2022-09-11 thomas if (*a->limiting) {
2395 7e8004ba 2022-09-11 thomas if (limit_match && have_match)
2396 7e8004ba 2022-09-11 thomas *a->search_next_done =
2397 7e8004ba 2022-09-11 thomas TOG_SEARCH_HAVE_MORE;
2398 7e8004ba 2022-09-11 thomas } else if (have_match)
2399 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2400 13add988 2019-10-15 stsp }
2401 13add988 2019-10-15 stsp
2402 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2403 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2404 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2405 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2406 7c1452c1 2020-03-26 stsp if (err)
2407 13add988 2019-10-15 stsp break;
2408 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2409 899d86c2 2018-05-10 stsp
2410 9ba79e04 2018-06-11 stsp return err;
2411 0553a4e3 2018-04-30 stsp }
2412 0553a4e3 2018-04-30 stsp
2413 2b779855 2020-12-05 naddy static void
2414 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
2415 2b779855 2020-12-05 naddy {
2416 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
2417 2b779855 2020-12-05 naddy int ncommits = 0;
2418 2b779855 2020-12-05 naddy
2419 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
2420 2b779855 2020-12-05 naddy while (entry) {
2421 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
2422 2b779855 2020-12-05 naddy s->selected_entry = entry;
2423 2b779855 2020-12-05 naddy break;
2424 2b779855 2020-12-05 naddy }
2425 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
2426 2b779855 2020-12-05 naddy ncommits++;
2427 2b779855 2020-12-05 naddy }
2428 2b779855 2020-12-05 naddy }
2429 2b779855 2020-12-05 naddy
2430 0553a4e3 2018-04-30 stsp static const struct got_error *
2431 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
2432 0553a4e3 2018-04-30 stsp {
2433 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
2434 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
2435 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
2436 bd3f8225 2022-08-12 thomas int limit = view->nlines;
2437 60493ae3 2019-06-20 stsp int width;
2438 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
2439 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2440 8b473291 2019-02-21 stsp char *refs_str = NULL;
2441 ecb28ae0 2018-07-16 stsp wchar_t *wline;
2442 11b20872 2019-11-08 stsp struct tog_color *tc;
2443 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
2444 bd3f8225 2022-08-12 thomas
2445 bd3f8225 2022-08-12 thomas if (view_is_hsplit_top(view))
2446 bd3f8225 2022-08-12 thomas --limit; /* account for border */
2447 0553a4e3 2018-04-30 stsp
2448 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
2449 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
2450 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
2451 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
2452 1a76625f 2018-10-22 stsp if (err)
2453 ecb28ae0 2018-07-16 stsp return err;
2454 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2455 d2075bf3 2020-12-25 stsp s->selected_entry->id);
2456 d2075bf3 2020-12-25 stsp if (refs) {
2457 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
2458 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
2459 d2075bf3 2020-12-25 stsp if (err)
2460 d2075bf3 2020-12-25 stsp goto done;
2461 d2075bf3 2020-12-25 stsp }
2462 867c6645 2018-07-10 stsp }
2463 359bfafd 2019-02-22 stsp
2464 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
2465 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
2466 1a76625f 2018-10-22 stsp
2467 fb280deb 2021-08-30 stsp if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2468 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2469 7e8004ba 2022-09-11 thomas entry ? entry->idx + 1 : 0, s->commits->ncommits,
2470 d2ad595c 2020-04-09 stsp (view->searching && !view->search_next_done) ?
2471 d2ad595c 2020-04-09 stsp "searching..." : "loading...") == -1) {
2472 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2473 8f4ed634 2020-03-26 stsp goto done;
2474 8f4ed634 2020-03-26 stsp }
2475 8f4ed634 2020-03-26 stsp } else {
2476 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
2477 7e8004ba 2022-09-11 thomas const char *limit_str = NULL;
2478 f9686aa5 2020-03-27 stsp
2479 f9686aa5 2020-03-27 stsp if (view->searching) {
2480 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
2481 f9686aa5 2020-03-27 stsp search_str = "no more matches";
2482 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2483 f9686aa5 2020-03-27 stsp search_str = "no matches found";
2484 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
2485 f9686aa5 2020-03-27 stsp search_str = "searching...";
2486 f9686aa5 2020-03-27 stsp }
2487 f9686aa5 2020-03-27 stsp
2488 7e8004ba 2022-09-11 thomas if (s->limit_view && s->commits->ncommits == 0)
2489 7e8004ba 2022-09-11 thomas limit_str = "no matches found";
2490 7e8004ba 2022-09-11 thomas
2491 7e8004ba 2022-09-11 thomas if (asprintf(&ncommits_str, " [%d/%d] %s %s",
2492 7e8004ba 2022-09-11 thomas entry ? entry->idx + 1 : 0, s->commits->ncommits,
2493 7e8004ba 2022-09-11 thomas search_str ? search_str : (refs_str ? refs_str : ""),
2494 7e8004ba 2022-09-11 thomas limit_str ? limit_str : "") == -1) {
2495 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2496 8f4ed634 2020-03-26 stsp goto done;
2497 8f4ed634 2020-03-26 stsp }
2498 8b473291 2019-02-21 stsp }
2499 1a76625f 2018-10-22 stsp
2500 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2501 91198554 2022-06-23 thomas if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2502 91198554 2022-06-23 thomas "........................................",
2503 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
2504 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2505 1a76625f 2018-10-22 stsp header = NULL;
2506 1a76625f 2018-10-22 stsp goto done;
2507 1a76625f 2018-10-22 stsp }
2508 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
2509 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
2510 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
2511 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2512 1a76625f 2018-10-22 stsp header = NULL;
2513 1a76625f 2018-10-22 stsp goto done;
2514 ecb28ae0 2018-07-16 stsp }
2515 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2516 1a76625f 2018-10-22 stsp if (err)
2517 1a76625f 2018-10-22 stsp goto done;
2518 867c6645 2018-07-10 stsp
2519 2814baeb 2018-08-01 stsp werase(view->window);
2520 867c6645 2018-07-10 stsp
2521 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2522 a3404814 2018-09-02 stsp wstandout(view->window);
2523 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2524 11b20872 2019-11-08 stsp if (tc)
2525 86f4aab9 2022-09-09 thomas wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2526 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
2527 1a76625f 2018-10-22 stsp while (width < view->ncols) {
2528 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
2529 1a76625f 2018-10-22 stsp width++;
2530 1a76625f 2018-10-22 stsp }
2531 86f4aab9 2022-09-09 thomas if (tc)
2532 86f4aab9 2022-09-09 thomas wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2533 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2534 a3404814 2018-09-02 stsp wstandend(view->window);
2535 ecb28ae0 2018-07-16 stsp free(wline);
2536 ecb28ae0 2018-07-16 stsp if (limit <= 1)
2537 1a76625f 2018-10-22 stsp goto done;
2538 0553a4e3 2018-04-30 stsp
2539 331b1a16 2022-06-23 thomas /* Grow author column size if necessary, and set view->maxx. */
2540 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2541 5813d178 2019-03-09 stsp ncommits = 0;
2542 05171be4 2022-06-23 thomas view->maxx = 0;
2543 5813d178 2019-03-09 stsp while (entry) {
2544 f69c5a46 2022-07-19 thomas struct got_commit_object *c = entry->commit;
2545 05171be4 2022-06-23 thomas char *author, *eol, *msg, *msg0;
2546 331b1a16 2022-06-23 thomas wchar_t *wauthor, *wmsg;
2547 5813d178 2019-03-09 stsp int width;
2548 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
2549 5813d178 2019-03-09 stsp break;
2550 f69c5a46 2022-07-19 thomas if (s->use_committer)
2551 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_committer(c));
2552 f69c5a46 2022-07-19 thomas else
2553 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_author(c));
2554 5813d178 2019-03-09 stsp if (author == NULL) {
2555 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2556 5813d178 2019-03-09 stsp goto done;
2557 5813d178 2019-03-09 stsp }
2558 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
2559 27a741e5 2019-09-11 stsp date_display_cols);
2560 5813d178 2019-03-09 stsp if (author_cols < width)
2561 5813d178 2019-03-09 stsp author_cols = width;
2562 5813d178 2019-03-09 stsp free(wauthor);
2563 5813d178 2019-03-09 stsp free(author);
2564 ef944b8b 2022-07-21 thomas if (err)
2565 ef944b8b 2022-07-21 thomas goto done;
2566 f69c5a46 2022-07-19 thomas err = got_object_commit_get_logmsg(&msg0, c);
2567 05171be4 2022-06-23 thomas if (err)
2568 05171be4 2022-06-23 thomas goto done;
2569 05171be4 2022-06-23 thomas msg = msg0;
2570 05171be4 2022-06-23 thomas while (*msg == '\n')
2571 05171be4 2022-06-23 thomas ++msg;
2572 05171be4 2022-06-23 thomas if ((eol = strchr(msg, '\n')))
2573 331b1a16 2022-06-23 thomas *eol = '\0';
2574 f91a2b48 2022-06-23 thomas err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2575 331b1a16 2022-06-23 thomas date_display_cols + author_cols, 0);
2576 331b1a16 2022-06-23 thomas if (err)
2577 331b1a16 2022-06-23 thomas goto done;
2578 331b1a16 2022-06-23 thomas view->maxx = MAX(view->maxx, width);
2579 05171be4 2022-06-23 thomas free(msg0);
2580 331b1a16 2022-06-23 thomas free(wmsg);
2581 7ca04879 2019-10-19 stsp ncommits++;
2582 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
2583 5813d178 2019-03-09 stsp }
2584 5813d178 2019-03-09 stsp
2585 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2586 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
2587 867c6645 2018-07-10 stsp ncommits = 0;
2588 899d86c2 2018-05-10 stsp while (entry) {
2589 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
2590 899d86c2 2018-05-10 stsp break;
2591 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2592 2814baeb 2018-08-01 stsp wstandout(view->window);
2593 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
2594 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
2595 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2596 2814baeb 2018-08-01 stsp wstandend(view->window);
2597 0553a4e3 2018-04-30 stsp if (err)
2598 60493ae3 2019-06-20 stsp goto done;
2599 0553a4e3 2018-04-30 stsp ncommits++;
2600 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
2601 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
2602 80ddbec8 2018-04-29 stsp }
2603 80ddbec8 2018-04-29 stsp
2604 a5d43cac 2022-07-01 thomas view_border(view);
2605 1a76625f 2018-10-22 stsp done:
2606 1a76625f 2018-10-22 stsp free(id_str);
2607 8b473291 2019-02-21 stsp free(refs_str);
2608 1a76625f 2018-10-22 stsp free(ncommits_str);
2609 1a76625f 2018-10-22 stsp free(header);
2610 80ddbec8 2018-04-29 stsp return err;
2611 9f7d7167 2018-04-29 stsp }
2612 07b55e75 2018-05-10 stsp
2613 07b55e75 2018-05-10 stsp static void
2614 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2615 07b55e75 2018-05-10 stsp {
2616 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
2617 07b55e75 2018-05-10 stsp int nscrolled = 0;
2618 07b55e75 2018-05-10 stsp
2619 7e8004ba 2022-09-11 thomas entry = TAILQ_FIRST(&s->commits->head);
2620 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
2621 07b55e75 2018-05-10 stsp return;
2622 9f7d7167 2018-04-29 stsp
2623 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
2624 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
2625 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2626 07b55e75 2018-05-10 stsp if (entry) {
2627 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
2628 07b55e75 2018-05-10 stsp nscrolled++;
2629 07b55e75 2018-05-10 stsp }
2630 07b55e75 2018-05-10 stsp }
2631 aa075928 2018-05-10 stsp }
2632 aa075928 2018-05-10 stsp
2633 aa075928 2018-05-10 stsp static const struct got_error *
2634 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
2635 aa075928 2018-05-10 stsp {
2636 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
2637 5e224a3e 2019-02-22 stsp int errcode;
2638 8a42fca8 2019-02-22 stsp
2639 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
2640 aa075928 2018-05-10 stsp
2641 f2d749db 2022-07-12 thomas while (!ta->log_complete && !tog_thread_error &&
2642 f2d749db 2022-07-12 thomas (ta->commits_needed > 0 || ta->load_all)) {
2643 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
2644 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
2645 7aafa0d1 2019-02-22 stsp if (errcode)
2646 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2647 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2648 7c1452c1 2020-03-26 stsp
2649 7c1452c1 2020-03-26 stsp /*
2650 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
2651 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
2652 7c1452c1 2020-03-26 stsp */
2653 7c1452c1 2020-03-26 stsp if (!wait)
2654 7c1452c1 2020-03-26 stsp break;
2655 7c1452c1 2020-03-26 stsp
2656 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2657 ffe38506 2020-12-01 naddy show_log_view(view);
2658 7c1452c1 2020-03-26 stsp update_panels();
2659 7c1452c1 2020-03-26 stsp doupdate();
2660 7c1452c1 2020-03-26 stsp
2661 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
2662 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2663 82954512 2020-02-03 stsp if (errcode)
2664 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
2665 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2666 82954512 2020-02-03 stsp
2667 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2668 ffe38506 2020-12-01 naddy show_log_view(view);
2669 7c1452c1 2020-03-26 stsp update_panels();
2670 7c1452c1 2020-03-26 stsp doupdate();
2671 5e224a3e 2019-02-22 stsp }
2672 5e224a3e 2019-02-22 stsp
2673 5e224a3e 2019-02-22 stsp return NULL;
2674 a5d43cac 2022-07-01 thomas }
2675 a5d43cac 2022-07-01 thomas
2676 a5d43cac 2022-07-01 thomas static const struct got_error *
2677 a5d43cac 2022-07-01 thomas request_log_commits(struct tog_view *view)
2678 a5d43cac 2022-07-01 thomas {
2679 a5d43cac 2022-07-01 thomas struct tog_log_view_state *state = &view->state.log;
2680 a5d43cac 2022-07-01 thomas const struct got_error *err = NULL;
2681 fe731b51 2022-07-14 thomas
2682 fe731b51 2022-07-14 thomas if (state->thread_args.log_complete)
2683 fe731b51 2022-07-14 thomas return NULL;
2684 a5d43cac 2022-07-01 thomas
2685 ae98518f 2022-07-12 thomas state->thread_args.commits_needed += view->nscrolled;
2686 a5d43cac 2022-07-01 thomas err = trigger_log_thread(view, 1);
2687 a5d43cac 2022-07-01 thomas view->nscrolled = 0;
2688 a5d43cac 2022-07-01 thomas
2689 a5d43cac 2022-07-01 thomas return err;
2690 5e224a3e 2019-02-22 stsp }
2691 5e224a3e 2019-02-22 stsp
2692 5e224a3e 2019-02-22 stsp static const struct got_error *
2693 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
2694 5e224a3e 2019-02-22 stsp {
2695 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2696 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
2697 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
2698 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
2699 5e224a3e 2019-02-22 stsp
2700 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
2701 5e224a3e 2019-02-22 stsp return NULL;
2702 5e224a3e 2019-02-22 stsp
2703 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2704 7e8004ba 2022-09-11 thomas if (s->commits->ncommits < ncommits_needed &&
2705 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
2706 08ebd0a9 2019-02-22 stsp /*
2707 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
2708 08ebd0a9 2019-02-22 stsp */
2709 07dd3ed3 2022-08-06 thomas s->thread_args.commits_needed +=
2710 7e8004ba 2022-09-11 thomas ncommits_needed - s->commits->ncommits;
2711 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2712 5e224a3e 2019-02-22 stsp if (err)
2713 5e224a3e 2019-02-22 stsp return err;
2714 7aafa0d1 2019-02-22 stsp }
2715 b295e71b 2019-02-22 stsp
2716 7aafa0d1 2019-02-22 stsp do {
2717 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2718 a5d43cac 2022-07-01 thomas if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2719 88048b54 2019-02-21 stsp break;
2720 88048b54 2019-02-21 stsp
2721 a5d43cac 2022-07-01 thomas s->last_displayed_entry = pentry ?
2722 a5d43cac 2022-07-01 thomas pentry : s->last_displayed_entry;;
2723 aa075928 2018-05-10 stsp
2724 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2725 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
2726 dd0a52c1 2018-05-20 stsp break;
2727 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
2728 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
2729 aa075928 2018-05-10 stsp
2730 fe731b51 2022-07-14 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2731 a5d43cac 2022-07-01 thomas view->nscrolled += nscrolled;
2732 a5d43cac 2022-07-01 thomas else
2733 a5d43cac 2022-07-01 thomas view->nscrolled = 0;
2734 a5d43cac 2022-07-01 thomas
2735 dd0a52c1 2018-05-20 stsp return err;
2736 07b55e75 2018-05-10 stsp }
2737 4a7f7875 2018-05-10 stsp
2738 cd0acaa7 2018-05-20 stsp static const struct got_error *
2739 a5d43cac 2022-07-01 thomas open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2740 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
2741 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
2742 cd0acaa7 2018-05-20 stsp {
2743 cd0acaa7 2018-05-20 stsp const struct got_error *err;
2744 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
2745 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
2746 cd0acaa7 2018-05-20 stsp
2747 a5d43cac 2022-07-01 thomas diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2748 15a94983 2018-12-23 stsp if (diff_view == NULL)
2749 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
2750 ea5e7bb5 2018-08-01 stsp
2751 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2752 ec242592 2022-04-22 thomas err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2753 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2754 e5a0f69f 2018-08-18 stsp if (err == NULL)
2755 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
2756 cd0acaa7 2018-05-20 stsp return err;
2757 4a7f7875 2018-05-10 stsp }
2758 4a7f7875 2018-05-10 stsp
2759 80ddbec8 2018-04-29 stsp static const struct got_error *
2760 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
2761 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
2762 9343a5fb 2018-06-23 stsp {
2763 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
2764 941e9f74 2019-05-21 stsp
2765 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
2766 941e9f74 2019-05-21 stsp if (parent == NULL)
2767 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
2768 941e9f74 2019-05-21 stsp
2769 941e9f74 2019-05-21 stsp parent->tree = s->tree;
2770 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
2771 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
2772 941e9f74 2019-05-21 stsp parent->selected = s->selected;
2773 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2774 941e9f74 2019-05-21 stsp s->tree = subtree;
2775 941e9f74 2019-05-21 stsp s->selected = 0;
2776 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
2777 941e9f74 2019-05-21 stsp return NULL;
2778 941e9f74 2019-05-21 stsp }
2779 941e9f74 2019-05-21 stsp
2780 941e9f74 2019-05-21 stsp static const struct got_error *
2781 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
2782 945f9229 2022-04-16 thomas struct got_commit_object *commit, const char *path)
2783 941e9f74 2019-05-21 stsp {
2784 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
2785 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
2786 941e9f74 2019-05-21 stsp const char *p;
2787 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
2788 9343a5fb 2018-06-23 stsp
2789 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
2790 941e9f74 2019-05-21 stsp p = path;
2791 941e9f74 2019-05-21 stsp while (*p) {
2792 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2793 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
2794 56e0773d 2019-11-28 stsp char *te_name;
2795 33cbf02b 2020-01-12 stsp
2796 33cbf02b 2020-01-12 stsp while (p[0] == '/')
2797 33cbf02b 2020-01-12 stsp p++;
2798 941e9f74 2019-05-21 stsp
2799 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
2800 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2801 941e9f74 2019-05-21 stsp if (slash == NULL)
2802 33cbf02b 2020-01-12 stsp te_name = strdup(p);
2803 33cbf02b 2020-01-12 stsp else
2804 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
2805 56e0773d 2019-11-28 stsp if (te_name == NULL) {
2806 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
2807 56e0773d 2019-11-28 stsp break;
2808 941e9f74 2019-05-21 stsp }
2809 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
2810 56e0773d 2019-11-28 stsp if (te == NULL) {
2811 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2812 56e0773d 2019-11-28 stsp free(te_name);
2813 941e9f74 2019-05-21 stsp break;
2814 941e9f74 2019-05-21 stsp }
2815 56e0773d 2019-11-28 stsp free(te_name);
2816 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
2817 941e9f74 2019-05-21 stsp
2818 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2819 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
2820 b03c880f 2019-05-21 stsp
2821 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2822 941e9f74 2019-05-21 stsp if (slash)
2823 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
2824 941e9f74 2019-05-21 stsp else
2825 941e9f74 2019-05-21 stsp subpath = strdup(path);
2826 941e9f74 2019-05-21 stsp if (subpath == NULL) {
2827 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
2828 941e9f74 2019-05-21 stsp break;
2829 941e9f74 2019-05-21 stsp }
2830 941e9f74 2019-05-21 stsp
2831 945f9229 2022-04-16 thomas err = got_object_id_by_path(&tree_id, s->repo, commit,
2832 941e9f74 2019-05-21 stsp subpath);
2833 941e9f74 2019-05-21 stsp if (err)
2834 941e9f74 2019-05-21 stsp break;
2835 941e9f74 2019-05-21 stsp
2836 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
2837 941e9f74 2019-05-21 stsp free(tree_id);
2838 941e9f74 2019-05-21 stsp if (err)
2839 941e9f74 2019-05-21 stsp break;
2840 941e9f74 2019-05-21 stsp
2841 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
2842 941e9f74 2019-05-21 stsp if (err) {
2843 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
2844 941e9f74 2019-05-21 stsp break;
2845 941e9f74 2019-05-21 stsp }
2846 941e9f74 2019-05-21 stsp if (slash == NULL)
2847 941e9f74 2019-05-21 stsp break;
2848 941e9f74 2019-05-21 stsp free(subpath);
2849 941e9f74 2019-05-21 stsp subpath = NULL;
2850 941e9f74 2019-05-21 stsp p = slash;
2851 941e9f74 2019-05-21 stsp }
2852 941e9f74 2019-05-21 stsp
2853 941e9f74 2019-05-21 stsp free(subpath);
2854 1a76625f 2018-10-22 stsp return err;
2855 61266923 2020-01-14 stsp }
2856 61266923 2020-01-14 stsp
2857 61266923 2020-01-14 stsp static const struct got_error *
2858 444d5325 2022-07-03 thomas browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2859 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
2860 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
2861 55cccc34 2020-02-20 stsp {
2862 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
2863 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
2864 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
2865 55cccc34 2020-02-20 stsp
2866 444d5325 2022-07-03 thomas tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2867 55cccc34 2020-02-20 stsp if (tree_view == NULL)
2868 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
2869 55cccc34 2020-02-20 stsp
2870 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2871 bc573f3b 2021-07-10 stsp if (err)
2872 55cccc34 2020-02-20 stsp return err;
2873 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
2874 55cccc34 2020-02-20 stsp
2875 55cccc34 2020-02-20 stsp *new_view = tree_view;
2876 55cccc34 2020-02-20 stsp
2877 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
2878 55cccc34 2020-02-20 stsp return NULL;
2879 55cccc34 2020-02-20 stsp
2880 945f9229 2022-04-16 thomas return tree_view_walk_path(s, entry->commit, path);
2881 55cccc34 2020-02-20 stsp }
2882 55cccc34 2020-02-20 stsp
2883 55cccc34 2020-02-20 stsp static const struct got_error *
2884 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
2885 61266923 2020-01-14 stsp {
2886 61266923 2020-01-14 stsp sigset_t sigset;
2887 61266923 2020-01-14 stsp int errcode;
2888 61266923 2020-01-14 stsp
2889 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
2890 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2891 61266923 2020-01-14 stsp
2892 296152d1 2022-05-31 thomas /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2893 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2894 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2895 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2896 296152d1 2022-05-31 thomas return got_error_from_errno("sigaddset");
2897 296152d1 2022-05-31 thomas if (sigaddset(&sigset, SIGINT) == -1)
2898 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2899 296152d1 2022-05-31 thomas if (sigaddset(&sigset, SIGTERM) == -1)
2900 296152d1 2022-05-31 thomas return got_error_from_errno("sigaddset");
2901 61266923 2020-01-14 stsp
2902 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2903 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2904 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2905 61266923 2020-01-14 stsp
2906 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2907 61266923 2020-01-14 stsp if (errcode)
2908 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2909 61266923 2020-01-14 stsp
2910 61266923 2020-01-14 stsp return NULL;
2911 1a76625f 2018-10-22 stsp }
2912 1a76625f 2018-10-22 stsp
2913 1a76625f 2018-10-22 stsp static void *
2914 1a76625f 2018-10-22 stsp log_thread(void *arg)
2915 1a76625f 2018-10-22 stsp {
2916 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2917 1a76625f 2018-10-22 stsp int errcode = 0;
2918 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2919 1a76625f 2018-10-22 stsp int done = 0;
2920 61266923 2020-01-14 stsp
2921 f2d749db 2022-07-12 thomas /*
2922 f2d749db 2022-07-12 thomas * Sync startup with main thread such that we begin our
2923 f2d749db 2022-07-12 thomas * work once view_input() has released the mutex.
2924 f2d749db 2022-07-12 thomas */
2925 f2d749db 2022-07-12 thomas errcode = pthread_mutex_lock(&tog_mutex);
2926 f2d749db 2022-07-12 thomas if (errcode) {
2927 f2d749db 2022-07-12 thomas err = got_error_set_errno(errcode, "pthread_mutex_lock");
2928 61266923 2020-01-14 stsp return (void *)err;
2929 f2d749db 2022-07-12 thomas }
2930 1a76625f 2018-10-22 stsp
2931 f2d749db 2022-07-12 thomas err = block_signals_used_by_main_thread();
2932 f2d749db 2022-07-12 thomas if (err) {
2933 f2d749db 2022-07-12 thomas pthread_mutex_unlock(&tog_mutex);
2934 f2d749db 2022-07-12 thomas goto done;
2935 f2d749db 2022-07-12 thomas }
2936 f2d749db 2022-07-12 thomas
2937 296152d1 2022-05-31 thomas while (!done && !err && !tog_fatal_signal_received()) {
2938 f2d749db 2022-07-12 thomas errcode = pthread_mutex_unlock(&tog_mutex);
2939 f2d749db 2022-07-12 thomas if (errcode) {
2940 f2d749db 2022-07-12 thomas err = got_error_set_errno(errcode,
2941 f2d749db 2022-07-12 thomas "pthread_mutex_unlock");
2942 f2d749db 2022-07-12 thomas goto done;
2943 f2d749db 2022-07-12 thomas }
2944 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2945 1a76625f 2018-10-22 stsp if (err) {
2946 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2947 f2d749db 2022-07-12 thomas goto done;
2948 1a76625f 2018-10-22 stsp err = NULL;
2949 1a76625f 2018-10-22 stsp done = 1;
2950 7e8004ba 2022-09-11 thomas } else if (a->commits_needed > 0 && !a->load_all) {
2951 7e8004ba 2022-09-11 thomas if (*a->limiting) {
2952 7e8004ba 2022-09-11 thomas if (a->limit_match)
2953 7e8004ba 2022-09-11 thomas a->commits_needed--;
2954 7e8004ba 2022-09-11 thomas } else
2955 7e8004ba 2022-09-11 thomas a->commits_needed--;
2956 7e8004ba 2022-09-11 thomas }
2957 1a76625f 2018-10-22 stsp
2958 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2959 3abe8080 2019-04-10 stsp if (errcode) {
2960 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2961 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2962 f2d749db 2022-07-12 thomas goto done;
2963 3abe8080 2019-04-10 stsp } else if (*a->quit)
2964 1a76625f 2018-10-22 stsp done = 1;
2965 7e8004ba 2022-09-11 thomas else if (*a->limiting && *a->first_displayed_entry == NULL) {
2966 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2967 7e8004ba 2022-09-11 thomas TAILQ_FIRST(&a->limit_commits->head);
2968 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2969 7e8004ba 2022-09-11 thomas } else if (*a->first_displayed_entry == NULL) {
2970 7e8004ba 2022-09-11 thomas *a->first_displayed_entry =
2971 7e8004ba 2022-09-11 thomas TAILQ_FIRST(&a->real_commits->head);
2972 7e8004ba 2022-09-11 thomas *a->selected_entry = *a->first_displayed_entry;
2973 1a76625f 2018-10-22 stsp }
2974 1a76625f 2018-10-22 stsp
2975 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2976 7c1452c1 2020-03-26 stsp if (errcode) {
2977 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2978 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2979 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2980 f2d749db 2022-07-12 thomas goto done;
2981 7c1452c1 2020-03-26 stsp }
2982 7c1452c1 2020-03-26 stsp
2983 1a76625f 2018-10-22 stsp if (done)
2984 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2985 7c1452c1 2020-03-26 stsp else {
2986 fb280deb 2021-08-30 stsp if (a->commits_needed == 0 && !a->load_all) {
2987 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2988 7c1452c1 2020-03-26 stsp &tog_mutex);
2989 f2d749db 2022-07-12 thomas if (errcode) {
2990 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2991 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2992 f2d749db 2022-07-12 thomas pthread_mutex_unlock(&tog_mutex);
2993 f2d749db 2022-07-12 thomas goto done;
2994 f2d749db 2022-07-12 thomas }
2995 21355643 2020-12-06 stsp if (*a->quit)
2996 21355643 2020-12-06 stsp done = 1;
2997 7c1452c1 2020-03-26 stsp }
2998 1a76625f 2018-10-22 stsp }
2999 1a76625f 2018-10-22 stsp }
3000 3abe8080 2019-04-10 stsp a->log_complete = 1;
3001 f2d749db 2022-07-12 thomas errcode = pthread_mutex_unlock(&tog_mutex);
3002 f2d749db 2022-07-12 thomas if (errcode)
3003 f2d749db 2022-07-12 thomas err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3004 f2d749db 2022-07-12 thomas done:
3005 f2d749db 2022-07-12 thomas if (err) {
3006 f2d749db 2022-07-12 thomas tog_thread_error = 1;
3007 f2d749db 2022-07-12 thomas pthread_cond_signal(&a->commit_loaded);
3008 f2d749db 2022-07-12 thomas }
3009 1a76625f 2018-10-22 stsp return (void *)err;
3010 1a76625f 2018-10-22 stsp }
3011 1a76625f 2018-10-22 stsp
3012 1a76625f 2018-10-22 stsp static const struct got_error *
3013 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
3014 1a76625f 2018-10-22 stsp {
3015 f2d749db 2022-07-12 thomas const struct got_error *err = NULL, *thread_err = NULL;
3016 1a76625f 2018-10-22 stsp int errcode;
3017 1a76625f 2018-10-22 stsp
3018 1a76625f 2018-10-22 stsp if (s->thread) {
3019 1a76625f 2018-10-22 stsp s->quit = 1;
3020 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
3021 1a76625f 2018-10-22 stsp if (errcode)
3022 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3023 2af4a041 2019-05-11 jcs "pthread_cond_signal");
3024 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3025 1a76625f 2018-10-22 stsp if (errcode)
3026 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3027 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
3028 f2d749db 2022-07-12 thomas errcode = pthread_join(s->thread, (void **)&thread_err);
3029 1a76625f 2018-10-22 stsp if (errcode)
3030 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
3031 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3032 1a76625f 2018-10-22 stsp if (errcode)
3033 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3034 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3035 dd038bc6 2021-09-21 thomas.ad s->thread = 0; //NULL;
3036 1a76625f 2018-10-22 stsp }
3037 1a76625f 2018-10-22 stsp
3038 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
3039 1d0f4054 2021-06-17 stsp err = got_repo_close(s->thread_args.repo);
3040 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
3041 1af5eddf 2022-06-23 thomas }
3042 1af5eddf 2022-06-23 thomas
3043 1af5eddf 2022-06-23 thomas if (s->thread_args.pack_fds) {
3044 1af5eddf 2022-06-23 thomas const struct got_error *pack_err =
3045 1af5eddf 2022-06-23 thomas got_repo_pack_fds_close(s->thread_args.pack_fds);
3046 1af5eddf 2022-06-23 thomas if (err == NULL)
3047 1af5eddf 2022-06-23 thomas err = pack_err;
3048 1af5eddf 2022-06-23 thomas s->thread_args.pack_fds = NULL;
3049 1a76625f 2018-10-22 stsp }
3050 1a76625f 2018-10-22 stsp
3051 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
3052 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
3053 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
3054 1a76625f 2018-10-22 stsp }
3055 1a76625f 2018-10-22 stsp
3056 f2d749db 2022-07-12 thomas return err ? err : thread_err;
3057 9343a5fb 2018-06-23 stsp }
3058 9343a5fb 2018-06-23 stsp
3059 9343a5fb 2018-06-23 stsp static const struct got_error *
3060 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
3061 1a76625f 2018-10-22 stsp {
3062 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
3063 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
3064 276b94a1 2020-11-13 naddy int errcode;
3065 1a76625f 2018-10-22 stsp
3066 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
3067 276b94a1 2020-11-13 naddy
3068 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
3069 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3070 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3071 276b94a1 2020-11-13 naddy
3072 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
3073 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3074 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3075 276b94a1 2020-11-13 naddy
3076 7e8004ba 2022-09-11 thomas free_commits(&s->limit_commits);
3077 7e8004ba 2022-09-11 thomas free_commits(&s->real_commits);
3078 1a76625f 2018-10-22 stsp free(s->in_repo_path);
3079 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
3080 1a76625f 2018-10-22 stsp free(s->start_id);
3081 797bc7b9 2018-10-22 stsp s->start_id = NULL;
3082 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
3083 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
3084 1a76625f 2018-10-22 stsp return err;
3085 1a76625f 2018-10-22 stsp }
3086 1a76625f 2018-10-22 stsp
3087 7e8004ba 2022-09-11 thomas /*
3088 7e8004ba 2022-09-11 thomas * We use two queues to implement the limit feature: first consists of
3089 7e8004ba 2022-09-11 thomas * commits matching the current limit_regex; second is the real queue
3090 7e8004ba 2022-09-11 thomas * of all known commits (real_commits). When the user starts limiting,
3091 7e8004ba 2022-09-11 thomas * we swap queues such that all movement and displaying functionality
3092 7e8004ba 2022-09-11 thomas * works with very slight change.
3093 7e8004ba 2022-09-11 thomas */
3094 1a76625f 2018-10-22 stsp static const struct got_error *
3095 7e8004ba 2022-09-11 thomas limit_log_view(struct tog_view *view)
3096 7e8004ba 2022-09-11 thomas {
3097 7e8004ba 2022-09-11 thomas struct tog_log_view_state *s = &view->state.log;
3098 7e8004ba 2022-09-11 thomas struct commit_queue_entry *entry;
3099 7e8004ba 2022-09-11 thomas struct tog_view *v = view;
3100 7e8004ba 2022-09-11 thomas const struct got_error *err = NULL;
3101 7e8004ba 2022-09-11 thomas char pattern[1024];
3102 7e8004ba 2022-09-11 thomas int ret;
3103 7e8004ba 2022-09-11 thomas
3104 7e8004ba 2022-09-11 thomas if (view_is_hsplit_top(view))
3105 7e8004ba 2022-09-11 thomas v = view->child;
3106 7e8004ba 2022-09-11 thomas else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
3107 7e8004ba 2022-09-11 thomas v = view->parent;
3108 7e8004ba 2022-09-11 thomas
3109 7e8004ba 2022-09-11 thomas /* Get the pattern */
3110 7e8004ba 2022-09-11 thomas wmove(v->window, v->nlines - 1, 0);
3111 7e8004ba 2022-09-11 thomas wclrtoeol(v->window);
3112 7e8004ba 2022-09-11 thomas mvwaddstr(v->window, v->nlines - 1, 0, "&/");
3113 7e8004ba 2022-09-11 thomas nodelay(v->window, FALSE);
3114 7e8004ba 2022-09-11 thomas nocbreak();
3115 7e8004ba 2022-09-11 thomas echo();
3116 7e8004ba 2022-09-11 thomas ret = wgetnstr(v->window, pattern, sizeof(pattern));
3117 7e8004ba 2022-09-11 thomas cbreak();
3118 7e8004ba 2022-09-11 thomas noecho();
3119 7e8004ba 2022-09-11 thomas nodelay(v->window, TRUE);
3120 7e8004ba 2022-09-11 thomas if (ret == ERR)
3121 7e8004ba 2022-09-11 thomas return NULL;
3122 7e8004ba 2022-09-11 thomas
3123 7e8004ba 2022-09-11 thomas if (*pattern == '\0') {
3124 7e8004ba 2022-09-11 thomas /*
3125 7e8004ba 2022-09-11 thomas * Safety measure for the situation where the user
3126 7e8004ba 2022-09-11 thomas * resets limit without previously limiting anything.
3127 7e8004ba 2022-09-11 thomas */
3128 7e8004ba 2022-09-11 thomas if (!s->limit_view)
3129 7e8004ba 2022-09-11 thomas return NULL;
3130 7e8004ba 2022-09-11 thomas
3131 7e8004ba 2022-09-11 thomas /*
3132 7e8004ba 2022-09-11 thomas * User could have pressed Ctrl+L, which refreshed the
3133 7e8004ba 2022-09-11 thomas * commit queues, it means we can't save previously
3134 7e8004ba 2022-09-11 thomas * (before limit took place) displayed entries,
3135 7e8004ba 2022-09-11 thomas * because they would point to already free'ed memory,
3136 7e8004ba 2022-09-11 thomas * so we are forced to always select first entry of
3137 7e8004ba 2022-09-11 thomas * the queue.
3138 7e8004ba 2022-09-11 thomas */
3139 7e8004ba 2022-09-11 thomas s->commits = &s->real_commits;
3140 7e8004ba 2022-09-11 thomas s->first_displayed_entry = TAILQ_FIRST(&s->real_commits.head);
3141 7e8004ba 2022-09-11 thomas s->selected_entry = s->first_displayed_entry;
3142 7e8004ba 2022-09-11 thomas s->selected = 0;
3143 7e8004ba 2022-09-11 thomas s->limit_view = 0;
3144 7e8004ba 2022-09-11 thomas
3145 7e8004ba 2022-09-11 thomas return NULL;
3146 7e8004ba 2022-09-11 thomas }
3147 7e8004ba 2022-09-11 thomas
3148 7e8004ba 2022-09-11 thomas if (regcomp(&s->limit_regex, pattern, REG_EXTENDED | REG_NEWLINE))
3149 7e8004ba 2022-09-11 thomas return NULL;
3150 7e8004ba 2022-09-11 thomas
3151 7e8004ba 2022-09-11 thomas s->limit_view = 1;
3152 7e8004ba 2022-09-11 thomas
3153 7e8004ba 2022-09-11 thomas /* Clear the screen while loading limit view */
3154 7e8004ba 2022-09-11 thomas s->first_displayed_entry = NULL;
3155 7e8004ba 2022-09-11 thomas s->last_displayed_entry = NULL;
3156 7e8004ba 2022-09-11 thomas s->selected_entry = NULL;
3157 7e8004ba 2022-09-11 thomas s->commits = &s->limit_commits;
3158 7e8004ba 2022-09-11 thomas
3159 7e8004ba 2022-09-11 thomas /* Prepare limit queue for new search */
3160 7e8004ba 2022-09-11 thomas free_commits(&s->limit_commits);
3161 7e8004ba 2022-09-11 thomas s->limit_commits.ncommits = 0;
3162 7e8004ba 2022-09-11 thomas
3163 7e8004ba 2022-09-11 thomas /* First process commits, which are in queue already */
3164 7e8004ba 2022-09-11 thomas TAILQ_FOREACH(entry, &s->real_commits.head, entry) {
3165 7e8004ba 2022-09-11 thomas int have_match = 0;
3166 7e8004ba 2022-09-11 thomas
3167 7e8004ba 2022-09-11 thomas err = match_commit(&have_match, entry->id,
3168 7e8004ba 2022-09-11 thomas entry->commit, &s->limit_regex);
3169 7e8004ba 2022-09-11 thomas if (err)
3170 7e8004ba 2022-09-11 thomas return err;
3171 7e8004ba 2022-09-11 thomas
3172 7e8004ba 2022-09-11 thomas if (have_match) {
3173 7e8004ba 2022-09-11 thomas struct commit_queue_entry *matched;
3174 7e8004ba 2022-09-11 thomas
3175 7e8004ba 2022-09-11 thomas matched = alloc_commit_queue_entry(entry->commit,
3176 7e8004ba 2022-09-11 thomas entry->id);
3177 7e8004ba 2022-09-11 thomas if (matched == NULL) {
3178 7e8004ba 2022-09-11 thomas err = got_error_from_errno(
3179 7e8004ba 2022-09-11 thomas "alloc_commit_queue_entry");
3180 7e8004ba 2022-09-11 thomas break;
3181 7e8004ba 2022-09-11 thomas }
3182 6f6c25d6 2022-09-18 thomas matched->commit = entry->commit;
3183 6f6c25d6 2022-09-18 thomas got_object_commit_retain(entry->commit);
3184 7e8004ba 2022-09-11 thomas
3185 7e8004ba 2022-09-11 thomas matched->idx = s->limit_commits.ncommits;
3186 7e8004ba 2022-09-11 thomas TAILQ_INSERT_TAIL(&s->limit_commits.head,
3187 7e8004ba 2022-09-11 thomas matched, entry);
3188 7e8004ba 2022-09-11 thomas s->limit_commits.ncommits++;
3189 7e8004ba 2022-09-11 thomas }
3190 7e8004ba 2022-09-11 thomas }
3191 7e8004ba 2022-09-11 thomas
3192 7e8004ba 2022-09-11 thomas /* Second process all the commits, until we fill the screen */
3193 7e8004ba 2022-09-11 thomas if (s->limit_commits.ncommits < view->nlines - 1 &&
3194 7e8004ba 2022-09-11 thomas !s->thread_args.log_complete) {
3195 7e8004ba 2022-09-11 thomas s->thread_args.commits_needed +=
3196 7e8004ba 2022-09-11 thomas view->nlines - s->limit_commits.ncommits - 1;
3197 7e8004ba 2022-09-11 thomas err = trigger_log_thread(view, 1);
3198 7e8004ba 2022-09-11 thomas if (err)
3199 7e8004ba 2022-09-11 thomas return err;
3200 7e8004ba 2022-09-11 thomas }
3201 7e8004ba 2022-09-11 thomas
3202 7e8004ba 2022-09-11 thomas s->first_displayed_entry = TAILQ_FIRST(&s->commits->head);
3203 7e8004ba 2022-09-11 thomas s->selected_entry = TAILQ_FIRST(&s->commits->head);
3204 7e8004ba 2022-09-11 thomas s->selected = 0;
3205 7e8004ba 2022-09-11 thomas
3206 7e8004ba 2022-09-11 thomas return NULL;
3207 7e8004ba 2022-09-11 thomas }
3208 7e8004ba 2022-09-11 thomas
3209 7e8004ba 2022-09-11 thomas static const struct got_error *
3210 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
3211 60493ae3 2019-06-20 stsp {
3212 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3213 60493ae3 2019-06-20 stsp
3214 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
3215 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3216 60493ae3 2019-06-20 stsp return NULL;
3217 60493ae3 2019-06-20 stsp }
3218 60493ae3 2019-06-20 stsp
3219 60493ae3 2019-06-20 stsp static const struct got_error *
3220 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
3221 60493ae3 2019-06-20 stsp {
3222 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
3223 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3224 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
3225 60493ae3 2019-06-20 stsp
3226 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
3227 f9686aa5 2020-03-27 stsp show_log_view(view);
3228 f9686aa5 2020-03-27 stsp update_panels();
3229 f9686aa5 2020-03-27 stsp doupdate();
3230 f9686aa5 2020-03-27 stsp
3231 96e2b566 2019-07-08 stsp if (s->search_entry) {
3232 13add988 2019-10-15 stsp int errcode, ch;
3233 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3234 13add988 2019-10-15 stsp if (errcode)
3235 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3236 13add988 2019-10-15 stsp "pthread_mutex_unlock");
3237 13add988 2019-10-15 stsp ch = wgetch(view->window);
3238 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
3239 13add988 2019-10-15 stsp if (errcode)
3240 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3241 13add988 2019-10-15 stsp "pthread_mutex_lock");
3242 634cb454 2022-07-03 thomas if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
3243 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3244 678cbce5 2019-07-28 stsp return NULL;
3245 678cbce5 2019-07-28 stsp }
3246 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
3247 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
3248 96e2b566 2019-07-08 stsp else
3249 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
3250 96e2b566 2019-07-08 stsp commit_queue_head, entry);
3251 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
3252 df5e841d 2022-06-23 thomas /*
3253 1f4d5162 2022-06-23 thomas * If the user has moved the cursor after we hit a match,
3254 1f4d5162 2022-06-23 thomas * the position from where we should continue searching
3255 1f4d5162 2022-06-23 thomas * might have changed.
3256 df5e841d 2022-06-23 thomas */
3257 e7baaec8 2022-09-13 thomas if (view->searching == TOG_SEARCH_FORWARD)
3258 e7baaec8 2022-09-13 thomas entry = TAILQ_NEXT(s->selected_entry, entry);
3259 e7baaec8 2022-09-13 thomas else
3260 e7baaec8 2022-09-13 thomas entry = TAILQ_PREV(s->selected_entry, commit_queue_head,
3261 e7baaec8 2022-09-13 thomas entry);
3262 20be8d96 2019-06-21 stsp } else {
3263 de0d3ad4 2021-12-10 thomas entry = s->selected_entry;
3264 20be8d96 2019-06-21 stsp }
3265 60493ae3 2019-06-20 stsp
3266 60493ae3 2019-06-20 stsp while (1) {
3267 13add988 2019-10-15 stsp int have_match = 0;
3268 13add988 2019-10-15 stsp
3269 60493ae3 2019-06-20 stsp if (entry == NULL) {
3270 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
3271 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
3272 f9967bca 2020-03-27 stsp view->search_next_done =
3273 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
3274 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
3275 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
3276 f801134a 2019-06-25 stsp return NULL;
3277 60493ae3 2019-06-20 stsp }
3278 96e2b566 2019-07-08 stsp /*
3279 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
3280 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
3281 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
3282 96e2b566 2019-07-08 stsp */
3283 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
3284 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
3285 60493ae3 2019-06-20 stsp }
3286 60493ae3 2019-06-20 stsp
3287 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
3288 13add988 2019-10-15 stsp &view->regex);
3289 5943eee2 2019-08-13 stsp if (err)
3290 13add988 2019-10-15 stsp break;
3291 13add988 2019-10-15 stsp if (have_match) {
3292 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3293 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
3294 60493ae3 2019-06-20 stsp break;
3295 60493ae3 2019-06-20 stsp }
3296 13add988 2019-10-15 stsp
3297 96e2b566 2019-07-08 stsp s->search_entry = entry;
3298 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
3299 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
3300 b1bf1435 2019-06-21 stsp else
3301 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
3302 60493ae3 2019-06-20 stsp }
3303 60493ae3 2019-06-20 stsp
3304 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
3305 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
3306 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
3307 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
3308 60493ae3 2019-06-20 stsp if (err)
3309 60493ae3 2019-06-20 stsp return err;
3310 ead14cbe 2019-06-21 stsp cur++;
3311 ead14cbe 2019-06-21 stsp }
3312 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
3313 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
3314 60493ae3 2019-06-20 stsp if (err)
3315 60493ae3 2019-06-20 stsp return err;
3316 ead14cbe 2019-06-21 stsp cur--;
3317 60493ae3 2019-06-20 stsp }
3318 60493ae3 2019-06-20 stsp }
3319 60493ae3 2019-06-20 stsp
3320 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3321 96e2b566 2019-07-08 stsp
3322 60493ae3 2019-06-20 stsp return NULL;
3323 60493ae3 2019-06-20 stsp }
3324 60493ae3 2019-06-20 stsp
3325 60493ae3 2019-06-20 stsp static const struct got_error *
3326 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
3327 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
3328 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
3329 80ddbec8 2018-04-29 stsp {
3330 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
3331 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3332 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
3333 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
3334 1a76625f 2018-10-22 stsp int errcode;
3335 80ddbec8 2018-04-29 stsp
3336 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
3337 f135c941 2020-02-20 stsp free(s->in_repo_path);
3338 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
3339 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
3340 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3341 f135c941 2020-02-20 stsp }
3342 ecb28ae0 2018-07-16 stsp
3343 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
3344 7e8004ba 2022-09-11 thomas TAILQ_INIT(&s->real_commits.head);
3345 7e8004ba 2022-09-11 thomas s->real_commits.ncommits = 0;
3346 7e8004ba 2022-09-11 thomas s->commits = &s->real_commits;
3347 78756c87 2020-11-24 stsp
3348 7e8004ba 2022-09-11 thomas TAILQ_INIT(&s->limit_commits.head);
3349 7e8004ba 2022-09-11 thomas s->limit_view = 0;
3350 7e8004ba 2022-09-11 thomas s->limit_commits.ncommits = 0;
3351 7e8004ba 2022-09-11 thomas
3352 fb2756b9 2018-08-04 stsp s->repo = repo;
3353 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
3354 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
3355 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
3356 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
3357 9cd7cbd1 2020-12-07 stsp goto done;
3358 9cd7cbd1 2020-12-07 stsp }
3359 9cd7cbd1 2020-12-07 stsp }
3360 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
3361 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
3362 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3363 5036bf37 2018-09-24 stsp goto done;
3364 5036bf37 2018-09-24 stsp }
3365 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
3366 e5a0f69f 2018-08-18 stsp
3367 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
3368 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3369 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3370 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
3371 11b20872 2019-11-08 stsp if (err)
3372 11b20872 2019-11-08 stsp goto done;
3373 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3374 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3375 11b20872 2019-11-08 stsp if (err) {
3376 11b20872 2019-11-08 stsp free_colors(&s->colors);
3377 11b20872 2019-11-08 stsp goto done;
3378 11b20872 2019-11-08 stsp }
3379 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3380 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3381 11b20872 2019-11-08 stsp if (err) {
3382 11b20872 2019-11-08 stsp free_colors(&s->colors);
3383 11b20872 2019-11-08 stsp goto done;
3384 11b20872 2019-11-08 stsp }
3385 11b20872 2019-11-08 stsp }
3386 11b20872 2019-11-08 stsp
3387 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
3388 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
3389 ea0bff04 2022-07-19 thomas view->resize = resize_log_view;
3390 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
3391 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
3392 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
3393 1a76625f 2018-10-22 stsp
3394 1af5eddf 2022-06-23 thomas if (s->thread_args.pack_fds == NULL) {
3395 1af5eddf 2022-06-23 thomas err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3396 1af5eddf 2022-06-23 thomas if (err)
3397 1af5eddf 2022-06-23 thomas goto done;
3398 1af5eddf 2022-06-23 thomas }
3399 7cd52833 2022-06-23 thomas err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3400 1af5eddf 2022-06-23 thomas s->thread_args.pack_fds);
3401 7cd52833 2022-06-23 thomas if (err)
3402 7cd52833 2022-06-23 thomas goto done;
3403 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3404 b672a97a 2020-01-27 stsp !s->log_branches);
3405 1a76625f 2018-10-22 stsp if (err)
3406 1a76625f 2018-10-22 stsp goto done;
3407 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
3408 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
3409 c5b78334 2020-01-12 stsp if (err)
3410 c5b78334 2020-01-12 stsp goto done;
3411 1a76625f 2018-10-22 stsp
3412 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3413 1a76625f 2018-10-22 stsp if (errcode) {
3414 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
3415 1a76625f 2018-10-22 stsp goto done;
3416 1a76625f 2018-10-22 stsp }
3417 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3418 7c1452c1 2020-03-26 stsp if (errcode) {
3419 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
3420 7c1452c1 2020-03-26 stsp goto done;
3421 7c1452c1 2020-03-26 stsp }
3422 1a76625f 2018-10-22 stsp
3423 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
3424 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
3425 7e8004ba 2022-09-11 thomas s->thread_args.real_commits = &s->real_commits;
3426 7e8004ba 2022-09-11 thomas s->thread_args.limit_commits = &s->limit_commits;
3427 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
3428 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
3429 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
3430 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
3431 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
3432 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3433 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
3434 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
3435 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
3436 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
3437 7e8004ba 2022-09-11 thomas s->thread_args.limiting = &s->limit_view;
3438 7e8004ba 2022-09-11 thomas s->thread_args.limit_regex = &s->limit_regex;
3439 7e8004ba 2022-09-11 thomas s->thread_args.limit_commits = &s->limit_commits;
3440 ba4f502b 2018-08-04 stsp done:
3441 1a76625f 2018-10-22 stsp if (err)
3442 1a76625f 2018-10-22 stsp close_log_view(view);
3443 ba4f502b 2018-08-04 stsp return err;
3444 ba4f502b 2018-08-04 stsp }
3445 ba4f502b 2018-08-04 stsp
3446 e5a0f69f 2018-08-18 stsp static const struct got_error *
3447 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
3448 ba4f502b 2018-08-04 stsp {
3449 f2f6d207 2020-11-24 stsp const struct got_error *err;
3450 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3451 ba4f502b 2018-08-04 stsp
3452 dd038bc6 2021-09-21 thomas.ad if (s->thread == 0) { //NULL) {
3453 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
3454 2b380cc8 2018-10-24 stsp &s->thread_args);
3455 2b380cc8 2018-10-24 stsp if (errcode)
3456 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3457 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
3458 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
3459 f2f6d207 2020-11-24 stsp if (err)
3460 f2f6d207 2020-11-24 stsp return err;
3461 f2f6d207 2020-11-24 stsp }
3462 2b380cc8 2018-10-24 stsp }
3463 2b380cc8 2018-10-24 stsp
3464 8fdc79fe 2020-12-01 naddy return draw_commits(view);
3465 b31f89ff 2022-07-01 thomas }
3466 b31f89ff 2022-07-01 thomas
3467 b31f89ff 2022-07-01 thomas static void
3468 b31f89ff 2022-07-01 thomas log_move_cursor_up(struct tog_view *view, int page, int home)
3469 b31f89ff 2022-07-01 thomas {
3470 b31f89ff 2022-07-01 thomas struct tog_log_view_state *s = &view->state.log;
3471 b31f89ff 2022-07-01 thomas
3472 b31f89ff 2022-07-01 thomas if (s->first_displayed_entry == NULL)
3473 b31f89ff 2022-07-01 thomas return;
3474 7e8004ba 2022-09-11 thomas if (s->selected_entry->idx == 0)
3475 7e8004ba 2022-09-11 thomas view->count = 0;
3476 b31f89ff 2022-07-01 thomas
3477 7e8004ba 2022-09-11 thomas if ((page && TAILQ_FIRST(&s->commits->head) == s->first_displayed_entry)
3478 b31f89ff 2022-07-01 thomas || home)
3479 b31f89ff 2022-07-01 thomas s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3480 b31f89ff 2022-07-01 thomas
3481 b31f89ff 2022-07-01 thomas if (!page && !home && s->selected > 0)
3482 b31f89ff 2022-07-01 thomas --s->selected;
3483 b31f89ff 2022-07-01 thomas else
3484 7e8004ba 2022-09-11 thomas log_scroll_up(s, home ? s->commits->ncommits : MAX(page, 1));
3485 b31f89ff 2022-07-01 thomas
3486 b31f89ff 2022-07-01 thomas select_commit(s);
3487 b31f89ff 2022-07-01 thomas return;
3488 b31f89ff 2022-07-01 thomas }
3489 b31f89ff 2022-07-01 thomas
3490 b31f89ff 2022-07-01 thomas static const struct got_error *
3491 b31f89ff 2022-07-01 thomas log_move_cursor_down(struct tog_view *view, int page)
3492 b31f89ff 2022-07-01 thomas {
3493 b31f89ff 2022-07-01 thomas struct tog_log_view_state *s = &view->state.log;
3494 b31f89ff 2022-07-01 thomas const struct got_error *err = NULL;
3495 7ed048bd 2022-08-12 thomas int eos = view->nlines - 2;
3496 b31f89ff 2022-07-01 thomas
3497 7e8004ba 2022-09-11 thomas if (s->first_displayed_entry == NULL)
3498 7e8004ba 2022-09-11 thomas return NULL;
3499 7e8004ba 2022-09-11 thomas
3500 b31f89ff 2022-07-01 thomas if (s->thread_args.log_complete &&
3501 7e8004ba 2022-09-11 thomas s->selected_entry->idx >= s->commits->ncommits - 1)
3502 b31f89ff 2022-07-01 thomas return NULL;
3503 b31f89ff 2022-07-01 thomas
3504 7ed048bd 2022-08-12 thomas if (view_is_hsplit_top(view))
3505 7ed048bd 2022-08-12 thomas --eos; /* border consumes the last line */
3506 b31f89ff 2022-07-01 thomas
3507 7ed048bd 2022-08-12 thomas if (!page) {
3508 7e8004ba 2022-09-11 thomas if (s->selected < MIN(eos, s->commits->ncommits - 1))
3509 b31f89ff 2022-07-01 thomas ++s->selected;
3510 b31f89ff 2022-07-01 thomas else
3511 b31f89ff 2022-07-01 thomas err = log_scroll_down(view, 1);
3512 c0be8933 2022-08-12 thomas } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3513 7ed048bd 2022-08-12 thomas struct commit_queue_entry *entry;
3514 7ed048bd 2022-08-12 thomas int n;
3515 7ed048bd 2022-08-12 thomas
3516 7ed048bd 2022-08-12 thomas s->selected = 0;
3517 7e8004ba 2022-09-11 thomas entry = TAILQ_LAST(&s->commits->head, commit_queue_head);
3518 7ed048bd 2022-08-12 thomas s->last_displayed_entry = entry;
3519 7ed048bd 2022-08-12 thomas for (n = 0; n <= eos; n++) {
3520 7ed048bd 2022-08-12 thomas if (entry == NULL)
3521 7ed048bd 2022-08-12 thomas break;
3522 7ed048bd 2022-08-12 thomas s->first_displayed_entry = entry;
3523 7ed048bd 2022-08-12 thomas entry = TAILQ_PREV(entry, commit_queue_head, entry);
3524 7ed048bd 2022-08-12 thomas }
3525 7ed048bd 2022-08-12 thomas if (n > 0)
3526 7ed048bd 2022-08-12 thomas s->selected = n - 1;
3527 b31f89ff 2022-07-01 thomas } else {
3528 7e8004ba 2022-09-11 thomas if (s->last_displayed_entry->idx == s->commits->ncommits - 1 &&
3529 bd3f8225 2022-08-12 thomas s->thread_args.log_complete)
3530 bd3f8225 2022-08-12 thomas s->selected += MIN(page,
3531 7e8004ba 2022-09-11 thomas s->commits->ncommits - s->selected_entry->idx - 1);
3532 bd3f8225 2022-08-12 thomas else
3533 bd3f8225 2022-08-12 thomas err = log_scroll_down(view, page);
3534 b31f89ff 2022-07-01 thomas }
3535 b31f89ff 2022-07-01 thomas if (err)
3536 b31f89ff 2022-07-01 thomas return err;
3537 b31f89ff 2022-07-01 thomas
3538 a5d43cac 2022-07-01 thomas /*
3539 a5d43cac 2022-07-01 thomas * We might necessarily overshoot in horizontal
3540 a5d43cac 2022-07-01 thomas * splits; if so, select the last displayed commit.
3541 a5d43cac 2022-07-01 thomas */
3542 25100026 2022-08-13 thomas if (s->first_displayed_entry && s->last_displayed_entry) {
3543 25100026 2022-08-13 thomas s->selected = MIN(s->selected,
3544 25100026 2022-08-13 thomas s->last_displayed_entry->idx -
3545 25100026 2022-08-13 thomas s->first_displayed_entry->idx);
3546 25100026 2022-08-13 thomas }
3547 a5d43cac 2022-07-01 thomas
3548 b31f89ff 2022-07-01 thomas select_commit(s);
3549 b31f89ff 2022-07-01 thomas
3550 b31f89ff 2022-07-01 thomas if (s->thread_args.log_complete &&
3551 7e8004ba 2022-09-11 thomas s->selected_entry->idx == s->commits->ncommits - 1)
3552 b31f89ff 2022-07-01 thomas view->count = 0;
3553 b31f89ff 2022-07-01 thomas
3554 b31f89ff 2022-07-01 thomas return NULL;
3555 e5a0f69f 2018-08-18 stsp }
3556 04cc582a 2018-08-01 stsp
3557 a5d43cac 2022-07-01 thomas static void
3558 a5d43cac 2022-07-01 thomas view_get_split(struct tog_view *view, int *y, int *x)
3559 a5d43cac 2022-07-01 thomas {
3560 24415785 2022-07-03 thomas *x = 0;
3561 24415785 2022-07-03 thomas *y = 0;
3562 24415785 2022-07-03 thomas
3563 53d2bdd3 2022-07-10 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3564 53d2bdd3 2022-07-10 thomas if (view->child && view->child->resized_y)
3565 53d2bdd3 2022-07-10 thomas *y = view->child->resized_y;
3566 ddbc4d37 2022-07-12 thomas else if (view->resized_y)
3567 ddbc4d37 2022-07-12 thomas *y = view->resized_y;
3568 53d2bdd3 2022-07-10 thomas else
3569 53d2bdd3 2022-07-10 thomas *y = view_split_begin_y(view->lines);
3570 ddbc4d37 2022-07-12 thomas } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3571 53d2bdd3 2022-07-10 thomas if (view->child && view->child->resized_x)
3572 53d2bdd3 2022-07-10 thomas *x = view->child->resized_x;
3573 ddbc4d37 2022-07-12 thomas else if (view->resized_x)
3574 ddbc4d37 2022-07-12 thomas *x = view->resized_x;
3575 53d2bdd3 2022-07-10 thomas else
3576 53d2bdd3 2022-07-10 thomas *x = view_split_begin_x(view->begin_x);
3577 53d2bdd3 2022-07-10 thomas }
3578 a5d43cac 2022-07-01 thomas }
3579 a5d43cac 2022-07-01 thomas
3580 a5d43cac 2022-07-01 thomas /* Split view horizontally at y and offset view->state->selected line. */
3581 e5a0f69f 2018-08-18 stsp static const struct got_error *
3582 a5d43cac 2022-07-01 thomas view_init_hsplit(struct tog_view *view, int y)
3583 a5d43cac 2022-07-01 thomas {
3584 a5d43cac 2022-07-01 thomas const struct got_error *err = NULL;
3585 a5d43cac 2022-07-01 thomas
3586 a5d43cac 2022-07-01 thomas view->nlines = y;
3587 64486692 2022-07-07 thomas view->ncols = COLS;
3588 a5d43cac 2022-07-01 thomas err = view_resize(view);
3589 a5d43cac 2022-07-01 thomas if (err)
3590 a5d43cac 2022-07-01 thomas return err;
3591 a5d43cac 2022-07-01 thomas
3592 a5d43cac 2022-07-01 thomas err = offset_selection_down(view);
3593 a5d43cac 2022-07-01 thomas
3594 a5d43cac 2022-07-01 thomas return err;
3595 07dd3ed3 2022-08-06 thomas }
3596 07dd3ed3 2022-08-06 thomas
3597 07dd3ed3 2022-08-06 thomas static const struct got_error *
3598 07dd3ed3 2022-08-06 thomas log_goto_line(struct tog_view *view, int nlines)
3599 07dd3ed3 2022-08-06 thomas {
3600 07dd3ed3 2022-08-06 thomas const struct got_error *err = NULL;
3601 07dd3ed3 2022-08-06 thomas struct tog_log_view_state *s = &view->state.log;
3602 07dd3ed3 2022-08-06 thomas int g, idx = s->selected_entry->idx;
3603 25100026 2022-08-13 thomas
3604 25100026 2022-08-13 thomas if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3605 25100026 2022-08-13 thomas return NULL;
3606 07dd3ed3 2022-08-06 thomas
3607 07dd3ed3 2022-08-06 thomas g = view->gline;
3608 07dd3ed3 2022-08-06 thomas view->gline = 0;
3609 07dd3ed3 2022-08-06 thomas
3610 07dd3ed3 2022-08-06 thomas if (g >= s->first_displayed_entry->idx + 1 &&
3611 07dd3ed3 2022-08-06 thomas g <= s->last_displayed_entry->idx + 1 &&
3612 07dd3ed3 2022-08-06 thomas g - s->first_displayed_entry->idx - 1 < nlines) {
3613 07dd3ed3 2022-08-06 thomas s->selected = g - s->first_displayed_entry->idx - 1;
3614 07dd3ed3 2022-08-06 thomas select_commit(s);
3615 07dd3ed3 2022-08-06 thomas return NULL;
3616 07dd3ed3 2022-08-06 thomas }
3617 07dd3ed3 2022-08-06 thomas
3618 07dd3ed3 2022-08-06 thomas if (idx + 1 < g) {
3619 07dd3ed3 2022-08-06 thomas err = log_move_cursor_down(view, g - idx - 1);
3620 07dd3ed3 2022-08-06 thomas if (!err && g > s->selected_entry->idx + 1)
3621 07dd3ed3 2022-08-06 thomas err = log_move_cursor_down(view,
3622 07dd3ed3 2022-08-06 thomas g - s->first_displayed_entry->idx - 1);
3623 07dd3ed3 2022-08-06 thomas if (err)
3624 07dd3ed3 2022-08-06 thomas return err;
3625 07dd3ed3 2022-08-06 thomas } else if (idx + 1 > g)
3626 07dd3ed3 2022-08-06 thomas log_move_cursor_up(view, idx - g + 1, 0);
3627 07dd3ed3 2022-08-06 thomas
3628 07dd3ed3 2022-08-06 thomas if (g < nlines && s->first_displayed_entry->idx == 0)
3629 07dd3ed3 2022-08-06 thomas s->selected = g - 1;
3630 07dd3ed3 2022-08-06 thomas
3631 07dd3ed3 2022-08-06 thomas select_commit(s);
3632 07dd3ed3 2022-08-06 thomas return NULL;
3633 07dd3ed3 2022-08-06 thomas
3634 a5d43cac 2022-07-01 thomas }
3635 a5d43cac 2022-07-01 thomas
3636 a5d43cac 2022-07-01 thomas static const struct got_error *
3637 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3638 e5a0f69f 2018-08-18 stsp {
3639 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3640 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
3641 7ed048bd 2022-08-12 thomas int eos, nscroll;
3642 80ddbec8 2018-04-29 stsp
3643 528dedf3 2021-08-30 stsp if (s->thread_args.load_all) {
3644 634cb454 2022-07-03 thomas if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3645 fb280deb 2021-08-30 stsp s->thread_args.load_all = 0;
3646 528dedf3 2021-08-30 stsp else if (s->thread_args.log_complete) {
3647 7e8004ba 2022-09-11 thomas err = log_move_cursor_down(view, s->commits->ncommits);
3648 068ab281 2022-07-01 thomas s->thread_args.load_all = 0;
3649 fb280deb 2021-08-30 stsp }
3650 c0be8933 2022-08-12 thomas if (err)
3651 c0be8933 2022-08-12 thomas return err;
3652 528dedf3 2021-08-30 stsp }
3653 068ab281 2022-07-01 thomas
3654 068ab281 2022-07-01 thomas eos = nscroll = view->nlines - 1;
3655 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
3656 068ab281 2022-07-01 thomas --eos; /* border */
3657 07dd3ed3 2022-08-06 thomas
3658 07dd3ed3 2022-08-06 thomas if (view->gline)
3659 07dd3ed3 2022-08-06 thomas return log_goto_line(view, eos);
3660 068ab281 2022-07-01 thomas
3661 528dedf3 2021-08-30 stsp switch (ch) {
3662 7e8004ba 2022-09-11 thomas case '&':
3663 7e8004ba 2022-09-11 thomas err = limit_log_view(view);
3664 7e8004ba 2022-09-11 thomas break;
3665 1e37a5c2 2019-05-12 jcs case 'q':
3666 1e37a5c2 2019-05-12 jcs s->quit = 1;
3667 05171be4 2022-06-23 thomas break;
3668 05171be4 2022-06-23 thomas case '0':
3669 05171be4 2022-06-23 thomas view->x = 0;
3670 05171be4 2022-06-23 thomas break;
3671 05171be4 2022-06-23 thomas case '$':
3672 05171be4 2022-06-23 thomas view->x = MAX(view->maxx - view->ncols / 2, 0);
3673 07b0611c 2022-06-23 thomas view->count = 0;
3674 05171be4 2022-06-23 thomas break;
3675 05171be4 2022-06-23 thomas case KEY_RIGHT:
3676 05171be4 2022-06-23 thomas case 'l':
3677 05171be4 2022-06-23 thomas if (view->x + view->ncols / 2 < view->maxx)
3678 05171be4 2022-06-23 thomas view->x += 2; /* move two columns right */
3679 07b0611c 2022-06-23 thomas else
3680 07b0611c 2022-06-23 thomas view->count = 0;
3681 1e37a5c2 2019-05-12 jcs break;
3682 05171be4 2022-06-23 thomas case KEY_LEFT:
3683 05171be4 2022-06-23 thomas case 'h':
3684 05171be4 2022-06-23 thomas view->x -= MIN(view->x, 2); /* move two columns back */
3685 07b0611c 2022-06-23 thomas if (view->x <= 0)
3686 07b0611c 2022-06-23 thomas view->count = 0;
3687 05171be4 2022-06-23 thomas break;
3688 1e37a5c2 2019-05-12 jcs case 'k':
3689 1e37a5c2 2019-05-12 jcs case KEY_UP:
3690 1e37a5c2 2019-05-12 jcs case '<':
3691 1e37a5c2 2019-05-12 jcs case ',':
3692 f7140bf5 2021-10-17 thomas case CTRL('p'):
3693 b31f89ff 2022-07-01 thomas log_move_cursor_up(view, 0, 0);
3694 912a3f79 2021-08-30 j break;
3695 912a3f79 2021-08-30 j case 'g':
3696 912a3f79 2021-08-30 j case KEY_HOME:
3697 b31f89ff 2022-07-01 thomas log_move_cursor_up(view, 0, 1);
3698 07b0611c 2022-06-23 thomas view->count = 0;
3699 1e37a5c2 2019-05-12 jcs break;
3700 70f17a53 2022-06-13 thomas case CTRL('u'):
3701 23427b14 2022-06-23 thomas case 'u':
3702 70f17a53 2022-06-13 thomas nscroll /= 2;
3703 70f17a53 2022-06-13 thomas /* FALL THROUGH */
3704 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3705 a4292ac5 2019-05-12 jcs case CTRL('b'):
3706 1c5e5faa 2022-06-23 thomas case 'b':
3707 b31f89ff 2022-07-01 thomas log_move_cursor_up(view, nscroll, 0);
3708 1e37a5c2 2019-05-12 jcs break;
3709 1e37a5c2 2019-05-12 jcs case 'j':
3710 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3711 1e37a5c2 2019-05-12 jcs case '>':
3712 1e37a5c2 2019-05-12 jcs case '.':
3713 f7140bf5 2021-10-17 thomas case CTRL('n'):
3714 b31f89ff 2022-07-01 thomas err = log_move_cursor_down(view, 0);
3715 912a3f79 2021-08-30 j break;
3716 f69c5a46 2022-07-19 thomas case '@':
3717 f69c5a46 2022-07-19 thomas s->use_committer = !s->use_committer;
3718 f69c5a46 2022-07-19 thomas break;
3719 912a3f79 2021-08-30 j case 'G':
3720 912a3f79 2021-08-30 j case KEY_END: {
3721 912a3f79 2021-08-30 j /* We don't know yet how many commits, so we're forced to
3722 912a3f79 2021-08-30 j * traverse them all. */
3723 07b0611c 2022-06-23 thomas view->count = 0;
3724 7ed048bd 2022-08-12 thomas s->thread_args.load_all = 1;
3725 7ed048bd 2022-08-12 thomas if (!s->thread_args.log_complete)
3726 fb280deb 2021-08-30 stsp return trigger_log_thread(view, 0);
3727 7e8004ba 2022-09-11 thomas err = log_move_cursor_down(view, s->commits->ncommits);
3728 7ed048bd 2022-08-12 thomas s->thread_args.load_all = 0;
3729 1e37a5c2 2019-05-12 jcs break;
3730 912a3f79 2021-08-30 j }
3731 bccd1d5d 2022-06-13 thomas case CTRL('d'):
3732 23427b14 2022-06-23 thomas case 'd':
3733 70f17a53 2022-06-13 thomas nscroll /= 2;
3734 70f17a53 2022-06-13 thomas /* FALL THROUGH */
3735 70f17a53 2022-06-13 thomas case KEY_NPAGE:
3736 1c5e5faa 2022-06-23 thomas case CTRL('f'):
3737 4c2d69cb 2022-06-23 thomas case 'f':
3738 b31f89ff 2022-07-01 thomas case ' ':
3739 b31f89ff 2022-07-01 thomas err = log_move_cursor_down(view, nscroll);
3740 1e37a5c2 2019-05-12 jcs break;
3741 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3742 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
3743 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
3744 7e8004ba 2022-09-11 thomas if (s->selected > s->commits->ncommits - 1)
3745 7e8004ba 2022-09-11 thomas s->selected = s->commits->ncommits - 1;
3746 2b779855 2020-12-05 naddy select_commit(s);
3747 7e8004ba 2022-09-11 thomas if (s->commits->ncommits < view->nlines - 1 &&
3748 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
3749 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
3750 7e8004ba 2022-09-11 thomas s->commits->ncommits;
3751 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
3752 0bf7f153 2020-12-02 naddy }
3753 1e37a5c2 2019-05-12 jcs break;
3754 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3755 444d5325 2022-07-03 thomas case '\r':
3756 07b0611c 2022-06-23 thomas view->count = 0;
3757 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3758 e5a0f69f 2018-08-18 stsp break;
3759 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3760 1e37a5c2 2019-05-12 jcs break;
3761 1be4947a 2022-07-22 thomas case 'T':
3762 07b0611c 2022-06-23 thomas view->count = 0;
3763 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3764 5036bf37 2018-09-24 stsp break;
3765 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_TREE);
3766 1e37a5c2 2019-05-12 jcs break;
3767 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
3768 21355643 2020-12-06 stsp case CTRL('l'):
3769 21355643 2020-12-06 stsp case 'B':
3770 07b0611c 2022-06-23 thomas view->count = 0;
3771 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
3772 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
3773 1e37a5c2 2019-05-12 jcs break;
3774 21355643 2020-12-06 stsp err = stop_log_thread(s);
3775 74cfe85e 2020-10-20 stsp if (err)
3776 74cfe85e 2020-10-20 stsp return err;
3777 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
3778 21355643 2020-12-06 stsp char *parent_path;
3779 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
3780 21355643 2020-12-06 stsp if (err)
3781 21355643 2020-12-06 stsp return err;
3782 21355643 2020-12-06 stsp free(s->in_repo_path);
3783 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
3784 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
3785 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
3786 21355643 2020-12-06 stsp struct got_object_id *start_id;
3787 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
3788 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3789 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3790 21355643 2020-12-06 stsp if (err)
3791 21355643 2020-12-06 stsp return err;
3792 21355643 2020-12-06 stsp free(s->start_id);
3793 21355643 2020-12-06 stsp s->start_id = start_id;
3794 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
3795 21355643 2020-12-06 stsp } else /* 'B' */
3796 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
3797 21355643 2020-12-06 stsp
3798 bf7e79b3 2022-06-23 thomas if (s->thread_args.pack_fds == NULL) {
3799 bf7e79b3 2022-06-23 thomas err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3800 bf7e79b3 2022-06-23 thomas if (err)
3801 bf7e79b3 2022-06-23 thomas return err;
3802 bf7e79b3 2022-06-23 thomas }
3803 1af5eddf 2022-06-23 thomas err = got_repo_open(&s->thread_args.repo,
3804 1af5eddf 2022-06-23 thomas got_repo_get_path(s->repo), NULL,
3805 1af5eddf 2022-06-23 thomas s->thread_args.pack_fds);
3806 74cfe85e 2020-10-20 stsp if (err)
3807 21355643 2020-12-06 stsp return err;
3808 51a10b52 2020-12-26 stsp tog_free_refs();
3809 3bfadbd4 2021-11-20 thomas err = tog_load_refs(s->repo, 0);
3810 ca51c541 2020-12-07 stsp if (err)
3811 ca51c541 2020-12-07 stsp return err;
3812 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
3813 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
3814 d01904d4 2019-06-25 stsp if (err)
3815 d01904d4 2019-06-25 stsp return err;
3816 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
3817 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
3818 b672a97a 2020-01-27 stsp if (err)
3819 b672a97a 2020-01-27 stsp return err;
3820 7e8004ba 2022-09-11 thomas free_commits(&s->real_commits);
3821 7e8004ba 2022-09-11 thomas free_commits(&s->limit_commits);
3822 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
3823 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
3824 21355643 2020-12-06 stsp s->selected_entry = NULL;
3825 21355643 2020-12-06 stsp s->selected = 0;
3826 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
3827 21355643 2020-12-06 stsp s->quit = 0;
3828 a5d43cac 2022-07-01 thomas s->thread_args.commits_needed = view->lines;
3829 e24d0f15 2022-06-23 thomas s->matched_entry = NULL;
3830 e24d0f15 2022-06-23 thomas s->search_entry = NULL;
3831 94ecf40d 2022-07-22 thomas view->offset = 0;
3832 d01904d4 2019-06-25 stsp break;
3833 1be4947a 2022-07-22 thomas case 'R':
3834 07b0611c 2022-06-23 thomas view->count = 0;
3835 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_REF);
3836 6458efa5 2020-11-24 stsp break;
3837 1e37a5c2 2019-05-12 jcs default:
3838 07b0611c 2022-06-23 thomas view->count = 0;
3839 1e37a5c2 2019-05-12 jcs break;
3840 899d86c2 2018-05-10 stsp }
3841 e5a0f69f 2018-08-18 stsp
3842 80ddbec8 2018-04-29 stsp return err;
3843 80ddbec8 2018-04-29 stsp }
3844 80ddbec8 2018-04-29 stsp
3845 4ed7e80c 2018-05-20 stsp static const struct got_error *
3846 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
3847 c2db6724 2019-01-04 stsp {
3848 c2db6724 2019-01-04 stsp const struct got_error *error;
3849 c2db6724 2019-01-04 stsp
3850 37c06ea4 2019-07-15 stsp #ifdef PROFILE
3851 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
3852 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
3853 37c06ea4 2019-07-15 stsp #endif
3854 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
3855 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
3856 c2db6724 2019-01-04 stsp
3857 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
3858 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
3859 c2db6724 2019-01-04 stsp
3860 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3861 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3862 c2db6724 2019-01-04 stsp
3863 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
3864 c2db6724 2019-01-04 stsp if (error != NULL)
3865 c2db6724 2019-01-04 stsp return error;
3866 c2db6724 2019-01-04 stsp
3867 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
3868 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
3869 c2db6724 2019-01-04 stsp
3870 c2db6724 2019-01-04 stsp return NULL;
3871 c2db6724 2019-01-04 stsp }
3872 c2db6724 2019-01-04 stsp
3873 a915003a 2019-02-05 stsp static void
3874 a915003a 2019-02-05 stsp init_curses(void)
3875 a915003a 2019-02-05 stsp {
3876 296152d1 2022-05-31 thomas /*
3877 296152d1 2022-05-31 thomas * Override default signal handlers before starting ncurses.
3878 296152d1 2022-05-31 thomas * This should prevent ncurses from installing its own
3879 296152d1 2022-05-31 thomas * broken cleanup() signal handler.
3880 296152d1 2022-05-31 thomas */
3881 296152d1 2022-05-31 thomas signal(SIGWINCH, tog_sigwinch);
3882 296152d1 2022-05-31 thomas signal(SIGPIPE, tog_sigpipe);
3883 296152d1 2022-05-31 thomas signal(SIGCONT, tog_sigcont);
3884 296152d1 2022-05-31 thomas signal(SIGINT, tog_sigint);
3885 296152d1 2022-05-31 thomas signal(SIGTERM, tog_sigterm);
3886 296152d1 2022-05-31 thomas
3887 a915003a 2019-02-05 stsp initscr();
3888 a915003a 2019-02-05 stsp cbreak();
3889 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
3890 a915003a 2019-02-05 stsp noecho();
3891 a915003a 2019-02-05 stsp nonl();
3892 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
3893 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
3894 a915003a 2019-02-05 stsp curs_set(0);
3895 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
3896 6d17833f 2019-11-08 stsp start_color();
3897 6d17833f 2019-11-08 stsp use_default_colors();
3898 6d17833f 2019-11-08 stsp }
3899 a915003a 2019-02-05 stsp }
3900 a915003a 2019-02-05 stsp
3901 c2db6724 2019-01-04 stsp static const struct got_error *
3902 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3903 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
3904 f135c941 2020-02-20 stsp {
3905 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
3906 f135c941 2020-02-20 stsp
3907 f135c941 2020-02-20 stsp if (argc == 0) {
3908 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
3909 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
3910 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3911 f135c941 2020-02-20 stsp return NULL;
3912 f135c941 2020-02-20 stsp }
3913 f135c941 2020-02-20 stsp
3914 f135c941 2020-02-20 stsp if (worktree) {
3915 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3916 bfd61697 2020-11-14 stsp char *p;
3917 f135c941 2020-02-20 stsp
3918 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
3919 f135c941 2020-02-20 stsp if (err)
3920 f135c941 2020-02-20 stsp return err;
3921 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
3922 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3923 bfd61697 2020-11-14 stsp p) == -1) {
3924 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
3925 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
3926 f135c941 2020-02-20 stsp }
3927 f135c941 2020-02-20 stsp free(p);
3928 f135c941 2020-02-20 stsp } else
3929 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
3930 f135c941 2020-02-20 stsp
3931 f135c941 2020-02-20 stsp return err;
3932 f135c941 2020-02-20 stsp }
3933 f135c941 2020-02-20 stsp
3934 f135c941 2020-02-20 stsp static const struct got_error *
3935 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
3936 9f7d7167 2018-04-29 stsp {
3937 80ddbec8 2018-04-29 stsp const struct got_error *error;
3938 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
3939 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
3940 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
3941 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3942 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
3943 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
3944 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
3945 f135c941 2020-02-20 stsp int ch, log_branches = 0;
3946 04cc582a 2018-08-01 stsp struct tog_view *view;
3947 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
3948 80ddbec8 2018-04-29 stsp
3949 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3950 80ddbec8 2018-04-29 stsp switch (ch) {
3951 b672a97a 2020-01-27 stsp case 'b':
3952 b672a97a 2020-01-27 stsp log_branches = 1;
3953 b672a97a 2020-01-27 stsp break;
3954 80ddbec8 2018-04-29 stsp case 'c':
3955 80ddbec8 2018-04-29 stsp start_commit = optarg;
3956 80ddbec8 2018-04-29 stsp break;
3957 ecb28ae0 2018-07-16 stsp case 'r':
3958 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3959 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
3960 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3961 9ba1d308 2019-10-21 stsp optarg);
3962 ecb28ae0 2018-07-16 stsp break;
3963 80ddbec8 2018-04-29 stsp default:
3964 17020d27 2019-03-07 stsp usage_log();
3965 80ddbec8 2018-04-29 stsp /* NOTREACHED */
3966 80ddbec8 2018-04-29 stsp }
3967 80ddbec8 2018-04-29 stsp }
3968 80ddbec8 2018-04-29 stsp
3969 80ddbec8 2018-04-29 stsp argc -= optind;
3970 80ddbec8 2018-04-29 stsp argv += optind;
3971 80ddbec8 2018-04-29 stsp
3972 f135c941 2020-02-20 stsp if (argc > 1)
3973 f135c941 2020-02-20 stsp usage_log();
3974 963f97a1 2019-03-18 stsp
3975 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
3976 7cd52833 2022-06-23 thomas if (error != NULL)
3977 7cd52833 2022-06-23 thomas goto done;
3978 7cd52833 2022-06-23 thomas
3979 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
3980 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3981 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3982 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3983 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3984 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3985 c156c7a4 2020-12-18 stsp goto done;
3986 a1fbf39a 2019-08-11 stsp if (worktree)
3987 6962eb72 2020-02-20 stsp repo_path =
3988 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
3989 a1fbf39a 2019-08-11 stsp else
3990 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
3991 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
3992 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
3993 c156c7a4 2020-12-18 stsp goto done;
3994 c156c7a4 2020-12-18 stsp }
3995 ecb28ae0 2018-07-16 stsp }
3996 ecb28ae0 2018-07-16 stsp
3997 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
3998 80ddbec8 2018-04-29 stsp if (error != NULL)
3999 ecb28ae0 2018-07-16 stsp goto done;
4000 80ddbec8 2018-04-29 stsp
4001 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
4002 f135c941 2020-02-20 stsp repo, worktree);
4003 f135c941 2020-02-20 stsp if (error)
4004 f135c941 2020-02-20 stsp goto done;
4005 f135c941 2020-02-20 stsp
4006 f135c941 2020-02-20 stsp init_curses();
4007 f135c941 2020-02-20 stsp
4008 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
4009 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4010 c02c541e 2019-03-29 stsp if (error)
4011 c02c541e 2019-03-29 stsp goto done;
4012 c02c541e 2019-03-29 stsp
4013 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
4014 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
4015 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
4016 87670572 2020-12-26 naddy if (error)
4017 87670572 2020-12-26 naddy goto done;
4018 87670572 2020-12-26 naddy }
4019 51a10b52 2020-12-26 stsp
4020 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
4021 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
4022 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
4023 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4024 d8f38dc4 2020-12-05 stsp if (error)
4025 d8f38dc4 2020-12-05 stsp goto done;
4026 d8f38dc4 2020-12-05 stsp head_ref_name = label;
4027 d8f38dc4 2020-12-05 stsp } else {
4028 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
4029 d8f38dc4 2020-12-05 stsp if (error == NULL)
4030 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
4031 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
4032 d8f38dc4 2020-12-05 stsp goto done;
4033 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
4034 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4035 d8f38dc4 2020-12-05 stsp if (error)
4036 d8f38dc4 2020-12-05 stsp goto done;
4037 d8f38dc4 2020-12-05 stsp }
4038 8b473291 2019-02-21 stsp
4039 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
4040 04cc582a 2018-08-01 stsp if (view == NULL) {
4041 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4042 04cc582a 2018-08-01 stsp goto done;
4043 04cc582a 2018-08-01 stsp }
4044 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
4045 f135c941 2020-02-20 stsp in_repo_path, log_branches);
4046 ba4f502b 2018-08-04 stsp if (error)
4047 ba4f502b 2018-08-04 stsp goto done;
4048 2fc00ff4 2019-08-31 stsp if (worktree) {
4049 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
4050 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
4051 2fc00ff4 2019-08-31 stsp worktree = NULL;
4052 2fc00ff4 2019-08-31 stsp }
4053 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4054 ecb28ae0 2018-07-16 stsp done:
4055 f135c941 2020-02-20 stsp free(in_repo_path);
4056 ecb28ae0 2018-07-16 stsp free(repo_path);
4057 ecb28ae0 2018-07-16 stsp free(cwd);
4058 899d86c2 2018-05-10 stsp free(start_id);
4059 d8f38dc4 2020-12-05 stsp free(label);
4060 d8f38dc4 2020-12-05 stsp if (ref)
4061 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
4062 1d0f4054 2021-06-17 stsp if (repo) {
4063 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
4064 1d0f4054 2021-06-17 stsp if (error == NULL)
4065 1d0f4054 2021-06-17 stsp error = close_err;
4066 1d0f4054 2021-06-17 stsp }
4067 ec142235 2019-03-07 stsp if (worktree)
4068 ec142235 2019-03-07 stsp got_worktree_close(worktree);
4069 7cd52833 2022-06-23 thomas if (pack_fds) {
4070 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
4071 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
4072 7cd52833 2022-06-23 thomas if (error == NULL)
4073 7cd52833 2022-06-23 thomas error = pack_err;
4074 7cd52833 2022-06-23 thomas }
4075 51a10b52 2020-12-26 stsp tog_free_refs();
4076 80ddbec8 2018-04-29 stsp return error;
4077 9f7d7167 2018-04-29 stsp }
4078 9f7d7167 2018-04-29 stsp
4079 4ed7e80c 2018-05-20 stsp __dead static void
4080 9f7d7167 2018-04-29 stsp usage_diff(void)
4081 9f7d7167 2018-04-29 stsp {
4082 80ddbec8 2018-04-29 stsp endwin();
4083 d6506a3d 2022-08-16 thomas fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
4084 d6506a3d 2022-08-16 thomas "object1 object2\n", getprogname());
4085 9f7d7167 2018-04-29 stsp exit(1);
4086 b304db33 2018-05-20 stsp }
4087 b304db33 2018-05-20 stsp
4088 6d17833f 2019-11-08 stsp static int
4089 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
4090 41605754 2020-11-12 stsp regmatch_t *regmatch)
4091 6d17833f 2019-11-08 stsp {
4092 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
4093 6d17833f 2019-11-08 stsp }
4094 6d17833f 2019-11-08 stsp
4095 ef20f542 2022-06-26 thomas static struct tog_color *
4096 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
4097 6d17833f 2019-11-08 stsp {
4098 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
4099 6d17833f 2019-11-08 stsp
4100 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
4101 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
4102 6d17833f 2019-11-08 stsp return tc;
4103 6d17833f 2019-11-08 stsp }
4104 6d17833f 2019-11-08 stsp
4105 6d17833f 2019-11-08 stsp return NULL;
4106 6d17833f 2019-11-08 stsp }
4107 6d17833f 2019-11-08 stsp
4108 4ed7e80c 2018-05-20 stsp static const struct got_error *
4109 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
4110 cbea3800 2022-06-23 thomas WINDOW *window, int skipcol, regmatch_t *regmatch)
4111 41605754 2020-11-12 stsp {
4112 41605754 2020-11-12 stsp const struct got_error *err = NULL;
4113 666f7b10 2022-06-23 thomas char *exstr = NULL;
4114 cbea3800 2022-06-23 thomas wchar_t *wline = NULL;
4115 cbea3800 2022-06-23 thomas int rme, rms, n, width, scrollx;
4116 cbea3800 2022-06-23 thomas int width0 = 0, width1 = 0, width2 = 0;
4117 cbea3800 2022-06-23 thomas char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
4118 41605754 2020-11-12 stsp
4119 41605754 2020-11-12 stsp *wtotal = 0;
4120 cbea3800 2022-06-23 thomas
4121 05171be4 2022-06-23 thomas rms = regmatch->rm_so;
4122 05171be4 2022-06-23 thomas rme = regmatch->rm_eo;
4123 41605754 2020-11-12 stsp
4124 666f7b10 2022-06-23 thomas err = expand_tab(&exstr, line);
4125 666f7b10 2022-06-23 thomas if (err)
4126 666f7b10 2022-06-23 thomas return err;
4127 666f7b10 2022-06-23 thomas
4128 cbea3800 2022-06-23 thomas /* Split the line into 3 segments, according to match offsets. */
4129 666f7b10 2022-06-23 thomas seg0 = strndup(exstr, rms);
4130 666f7b10 2022-06-23 thomas if (seg0 == NULL) {
4131 666f7b10 2022-06-23 thomas err = got_error_from_errno("strndup");
4132 666f7b10 2022-06-23 thomas goto done;
4133 666f7b10 2022-06-23 thomas }
4134 666f7b10 2022-06-23 thomas seg1 = strndup(exstr + rms, rme - rms);
4135 cbea3800 2022-06-23 thomas if (seg1 == NULL) {
4136 cbea3800 2022-06-23 thomas err = got_error_from_errno("strndup");
4137 cbea3800 2022-06-23 thomas goto done;
4138 cbea3800 2022-06-23 thomas }
4139 666f7b10 2022-06-23 thomas seg2 = strdup(exstr + rme);
4140 1065461d 2022-06-23 thomas if (seg2 == NULL) {
4141 cbea3800 2022-06-23 thomas err = got_error_from_errno("strndup");
4142 cbea3800 2022-06-23 thomas goto done;
4143 cbea3800 2022-06-23 thomas }
4144 05171be4 2022-06-23 thomas
4145 05171be4 2022-06-23 thomas /* draw up to matched token if we haven't scrolled past it */
4146 cbea3800 2022-06-23 thomas err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
4147 cbea3800 2022-06-23 thomas col_tab_align, 1);
4148 cbea3800 2022-06-23 thomas if (err)
4149 cbea3800 2022-06-23 thomas goto done;
4150 cbea3800 2022-06-23 thomas n = MAX(width0 - skipcol, 0);
4151 05171be4 2022-06-23 thomas if (n) {
4152 cbea3800 2022-06-23 thomas free(wline);
4153 cbea3800 2022-06-23 thomas err = format_line(&wline, &width, &scrollx, seg0, skipcol,
4154 cbea3800 2022-06-23 thomas wlimit, col_tab_align, 1);
4155 cbea3800 2022-06-23 thomas if (err)
4156 cbea3800 2022-06-23 thomas goto done;
4157 cbea3800 2022-06-23 thomas waddwstr(window, &wline[scrollx]);
4158 cbea3800 2022-06-23 thomas wlimit -= width;
4159 cbea3800 2022-06-23 thomas *wtotal += width;
4160 41605754 2020-11-12 stsp }
4161 41605754 2020-11-12 stsp
4162 41605754 2020-11-12 stsp if (wlimit > 0) {
4163 cbea3800 2022-06-23 thomas int i = 0, w = 0;
4164 cbea3800 2022-06-23 thomas size_t wlen;
4165 cbea3800 2022-06-23 thomas
4166 cbea3800 2022-06-23 thomas free(wline);
4167 cbea3800 2022-06-23 thomas err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
4168 cbea3800 2022-06-23 thomas col_tab_align, 1);
4169 cbea3800 2022-06-23 thomas if (err)
4170 cbea3800 2022-06-23 thomas goto done;
4171 cbea3800 2022-06-23 thomas wlen = wcslen(wline);
4172 cbea3800 2022-06-23 thomas while (i < wlen) {
4173 cbea3800 2022-06-23 thomas width = wcwidth(wline[i]);
4174 cbea3800 2022-06-23 thomas if (width == -1) {
4175 cbea3800 2022-06-23 thomas /* should not happen, tabs are expanded */
4176 cbea3800 2022-06-23 thomas err = got_error(GOT_ERR_RANGE);
4177 cbea3800 2022-06-23 thomas goto done;
4178 cbea3800 2022-06-23 thomas }
4179 cbea3800 2022-06-23 thomas if (width0 + w + width > skipcol)
4180 cbea3800 2022-06-23 thomas break;
4181 1c5e5faa 2022-06-23 thomas w += width;
4182 cbea3800 2022-06-23 thomas i++;
4183 41605754 2020-11-12 stsp }
4184 05171be4 2022-06-23 thomas /* draw (visible part of) matched token (if scrolled into it) */
4185 cbea3800 2022-06-23 thomas if (width1 - w > 0) {
4186 05171be4 2022-06-23 thomas wattron(window, A_STANDOUT);
4187 cbea3800 2022-06-23 thomas waddwstr(window, &wline[i]);
4188 05171be4 2022-06-23 thomas wattroff(window, A_STANDOUT);
4189 cbea3800 2022-06-23 thomas wlimit -= (width1 - w);
4190 cbea3800 2022-06-23 thomas *wtotal += (width1 - w);
4191 41605754 2020-11-12 stsp }
4192 41605754 2020-11-12 stsp }
4193 41605754 2020-11-12 stsp
4194 cbea3800 2022-06-23 thomas if (wlimit > 0) { /* draw rest of line */
4195 cbea3800 2022-06-23 thomas free(wline);
4196 cbea3800 2022-06-23 thomas if (skipcol > width0 + width1) {
4197 cbea3800 2022-06-23 thomas err = format_line(&wline, &width2, &scrollx, seg2,
4198 cbea3800 2022-06-23 thomas skipcol - (width0 + width1), wlimit,
4199 cbea3800 2022-06-23 thomas col_tab_align, 1);
4200 cbea3800 2022-06-23 thomas if (err)
4201 cbea3800 2022-06-23 thomas goto done;
4202 cbea3800 2022-06-23 thomas waddwstr(window, &wline[scrollx]);
4203 cbea3800 2022-06-23 thomas } else {
4204 cbea3800 2022-06-23 thomas err = format_line(&wline, &width2, NULL, seg2, 0,
4205 cbea3800 2022-06-23 thomas wlimit, col_tab_align, 1);
4206 cbea3800 2022-06-23 thomas if (err)
4207 cbea3800 2022-06-23 thomas goto done;
4208 cbea3800 2022-06-23 thomas waddwstr(window, wline);
4209 cbea3800 2022-06-23 thomas }
4210 cbea3800 2022-06-23 thomas *wtotal += width2;
4211 41605754 2020-11-12 stsp }
4212 cbea3800 2022-06-23 thomas done:
4213 05171be4 2022-06-23 thomas free(wline);
4214 666f7b10 2022-06-23 thomas free(exstr);
4215 cbea3800 2022-06-23 thomas free(seg0);
4216 cbea3800 2022-06-23 thomas free(seg1);
4217 cbea3800 2022-06-23 thomas free(seg2);
4218 cbea3800 2022-06-23 thomas return err;
4219 41605754 2020-11-12 stsp }
4220 07dd3ed3 2022-08-06 thomas
4221 07dd3ed3 2022-08-06 thomas static int
4222 07dd3ed3 2022-08-06 thomas gotoline(struct tog_view *view, int *lineno, int *nprinted)
4223 07dd3ed3 2022-08-06 thomas {
4224 07dd3ed3 2022-08-06 thomas FILE *f = NULL;
4225 07dd3ed3 2022-08-06 thomas int *eof, *first, *selected;
4226 07dd3ed3 2022-08-06 thomas
4227 07dd3ed3 2022-08-06 thomas if (view->type == TOG_VIEW_DIFF) {
4228 07dd3ed3 2022-08-06 thomas struct tog_diff_view_state *s = &view->state.diff;
4229 fc2737d5 2022-09-15 thomas
4230 fc2737d5 2022-09-15 thomas first = &s->first_displayed_line;
4231 fc2737d5 2022-09-15 thomas selected = first;
4232 fc2737d5 2022-09-15 thomas eof = &s->eof;
4233 fc2737d5 2022-09-15 thomas f = s->f;
4234 fc2737d5 2022-09-15 thomas } else if (view->type == TOG_VIEW_HELP) {
4235 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
4236 41605754 2020-11-12 stsp
4237 07dd3ed3 2022-08-06 thomas first = &s->first_displayed_line;
4238 07dd3ed3 2022-08-06 thomas selected = first;
4239 07dd3ed3 2022-08-06 thomas eof = &s->eof;
4240 07dd3ed3 2022-08-06 thomas f = s->f;
4241 07dd3ed3 2022-08-06 thomas } else if (view->type == TOG_VIEW_BLAME) {
4242 07dd3ed3 2022-08-06 thomas struct tog_blame_view_state *s = &view->state.blame;
4243 07dd3ed3 2022-08-06 thomas
4244 07dd3ed3 2022-08-06 thomas first = &s->first_displayed_line;
4245 07dd3ed3 2022-08-06 thomas selected = &s->selected_line;
4246 07dd3ed3 2022-08-06 thomas eof = &s->eof;
4247 07dd3ed3 2022-08-06 thomas f = s->blame.f;
4248 07dd3ed3 2022-08-06 thomas } else
4249 07dd3ed3 2022-08-06 thomas return 0;
4250 07dd3ed3 2022-08-06 thomas
4251 07dd3ed3 2022-08-06 thomas /* Center gline in the middle of the page like vi(1). */
4252 07dd3ed3 2022-08-06 thomas if (*lineno < view->gline - (view->nlines - 3) / 2)
4253 07dd3ed3 2022-08-06 thomas return 0;
4254 07dd3ed3 2022-08-06 thomas if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
4255 07dd3ed3 2022-08-06 thomas rewind(f);
4256 07dd3ed3 2022-08-06 thomas *eof = 0;
4257 07dd3ed3 2022-08-06 thomas *first = 1;
4258 07dd3ed3 2022-08-06 thomas *lineno = 0;
4259 07dd3ed3 2022-08-06 thomas *nprinted = 0;
4260 07dd3ed3 2022-08-06 thomas return 0;
4261 07dd3ed3 2022-08-06 thomas }
4262 07dd3ed3 2022-08-06 thomas
4263 07dd3ed3 2022-08-06 thomas *selected = view->gline <= (view->nlines - 3) / 2 ?
4264 07dd3ed3 2022-08-06 thomas view->gline : (view->nlines - 3) / 2 + 1;
4265 07dd3ed3 2022-08-06 thomas view->gline = 0;
4266 07dd3ed3 2022-08-06 thomas
4267 07dd3ed3 2022-08-06 thomas return 1;
4268 07dd3ed3 2022-08-06 thomas }
4269 07dd3ed3 2022-08-06 thomas
4270 41605754 2020-11-12 stsp static const struct got_error *
4271 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
4272 26ed57b2 2018-05-19 stsp {
4273 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
4274 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
4275 61e69b96 2018-05-20 stsp const struct got_error *err;
4276 82c78e96 2022-08-06 thomas int nprinted = 0;
4277 b304db33 2018-05-20 stsp char *line;
4278 826082fe 2020-12-10 stsp size_t linesize = 0;
4279 826082fe 2020-12-10 stsp ssize_t linelen;
4280 61e69b96 2018-05-20 stsp wchar_t *wline;
4281 e0b650dd 2018-05-20 stsp int width;
4282 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
4283 89f1a395 2020-12-01 naddy int nlines = s->nlines;
4284 fe621944 2020-11-10 stsp off_t line_offset;
4285 26ed57b2 2018-05-19 stsp
4286 82c78e96 2022-08-06 thomas s->lineno = s->first_displayed_line - 1;
4287 82c78e96 2022-08-06 thomas line_offset = s->lines[s->first_displayed_line - 1].offset;
4288 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
4289 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
4290 fe621944 2020-11-10 stsp
4291 f7d12f7e 2018-08-01 stsp werase(view->window);
4292 a3404814 2018-09-02 stsp
4293 07dd3ed3 2022-08-06 thomas if (view->gline > s->nlines - 1)
4294 07dd3ed3 2022-08-06 thomas view->gline = s->nlines - 1;
4295 07dd3ed3 2022-08-06 thomas
4296 a3404814 2018-09-02 stsp if (header) {
4297 07dd3ed3 2022-08-06 thomas int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
4298 07dd3ed3 2022-08-06 thomas 1 : view->gline - (view->nlines - 3) / 2 :
4299 82c78e96 2022-08-06 thomas s->lineno + s->selected_line;
4300 07dd3ed3 2022-08-06 thomas
4301 07dd3ed3 2022-08-06 thomas if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
4302 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
4303 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols,
4304 f91a2b48 2022-06-23 thomas 0, 0);
4305 135a2da0 2020-11-11 stsp free(line);
4306 135a2da0 2020-11-11 stsp if (err)
4307 a3404814 2018-09-02 stsp return err;
4308 a3404814 2018-09-02 stsp
4309 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4310 a3404814 2018-09-02 stsp wstandout(view->window);
4311 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
4312 e54cc94a 2020-11-11 stsp free(wline);
4313 e54cc94a 2020-11-11 stsp wline = NULL;
4314 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
4315 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
4316 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4317 a3404814 2018-09-02 stsp wstandend(view->window);
4318 26ed57b2 2018-05-19 stsp
4319 a3404814 2018-09-02 stsp if (max_lines <= 1)
4320 a3404814 2018-09-02 stsp return NULL;
4321 a3404814 2018-09-02 stsp max_lines--;
4322 a3404814 2018-09-02 stsp }
4323 a3404814 2018-09-02 stsp
4324 89f1a395 2020-12-01 naddy s->eof = 0;
4325 05171be4 2022-06-23 thomas view->maxx = 0;
4326 826082fe 2020-12-10 stsp line = NULL;
4327 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
4328 6568f0aa 2022-08-06 thomas enum got_diff_line_type linetype;
4329 6568f0aa 2022-08-06 thomas attr_t attr = 0;
4330 6568f0aa 2022-08-06 thomas
4331 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4332 826082fe 2020-12-10 stsp if (linelen == -1) {
4333 826082fe 2020-12-10 stsp if (feof(s->f)) {
4334 826082fe 2020-12-10 stsp s->eof = 1;
4335 826082fe 2020-12-10 stsp break;
4336 826082fe 2020-12-10 stsp }
4337 826082fe 2020-12-10 stsp free(line);
4338 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
4339 61e69b96 2018-05-20 stsp }
4340 05171be4 2022-06-23 thomas
4341 82c78e96 2022-08-06 thomas if (++s->lineno < s->first_displayed_line)
4342 07dd3ed3 2022-08-06 thomas continue;
4343 82c78e96 2022-08-06 thomas if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4344 07dd3ed3 2022-08-06 thomas continue;
4345 82c78e96 2022-08-06 thomas if (s->lineno == view->hiline)
4346 07dd3ed3 2022-08-06 thomas attr = A_STANDOUT;
4347 07dd3ed3 2022-08-06 thomas
4348 cbea3800 2022-06-23 thomas /* Set view->maxx based on full line length. */
4349 cbea3800 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4350 cbea3800 2022-06-23 thomas view->x ? 1 : 0);
4351 cbea3800 2022-06-23 thomas if (err) {
4352 cbea3800 2022-06-23 thomas free(line);
4353 cbea3800 2022-06-23 thomas return err;
4354 cbea3800 2022-06-23 thomas }
4355 cbea3800 2022-06-23 thomas view->maxx = MAX(view->maxx, width);
4356 cbea3800 2022-06-23 thomas free(wline);
4357 cbea3800 2022-06-23 thomas wline = NULL;
4358 cbea3800 2022-06-23 thomas
4359 6568f0aa 2022-08-06 thomas linetype = s->lines[s->lineno].type;
4360 6568f0aa 2022-08-06 thomas if (linetype > GOT_DIFF_LINE_LOGMSG &&
4361 6568f0aa 2022-08-06 thomas linetype < GOT_DIFF_LINE_CONTEXT)
4362 6568f0aa 2022-08-06 thomas attr |= COLOR_PAIR(linetype);
4363 07dd3ed3 2022-08-06 thomas if (attr)
4364 07dd3ed3 2022-08-06 thomas wattron(view->window, attr);
4365 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
4366 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4367 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
4368 05171be4 2022-06-23 thomas view->window, view->x, regmatch);
4369 41605754 2020-11-12 stsp if (err) {
4370 41605754 2020-11-12 stsp free(line);
4371 41605754 2020-11-12 stsp return err;
4372 41605754 2020-11-12 stsp }
4373 41605754 2020-11-12 stsp } else {
4374 f1c0ec19 2022-06-23 thomas int skip;
4375 f1c0ec19 2022-06-23 thomas err = format_line(&wline, &width, &skip, line,
4376 f1c0ec19 2022-06-23 thomas view->x, view->ncols, 0, view->x ? 1 : 0);
4377 f1c0ec19 2022-06-23 thomas if (err) {
4378 f1c0ec19 2022-06-23 thomas free(line);
4379 f1c0ec19 2022-06-23 thomas return err;
4380 f1c0ec19 2022-06-23 thomas }
4381 f1c0ec19 2022-06-23 thomas waddwstr(view->window, &wline[skip]);
4382 f1c0ec19 2022-06-23 thomas free(wline);
4383 41605754 2020-11-12 stsp wline = NULL;
4384 41605754 2020-11-12 stsp }
4385 82c78e96 2022-08-06 thomas if (s->lineno == view->hiline) {
4386 07dd3ed3 2022-08-06 thomas /* highlight full gline length */
4387 07dd3ed3 2022-08-06 thomas while (width++ < view->ncols)
4388 07dd3ed3 2022-08-06 thomas waddch(view->window, ' ');
4389 07dd3ed3 2022-08-06 thomas } else {
4390 07dd3ed3 2022-08-06 thomas if (width <= view->ncols - 1)
4391 07dd3ed3 2022-08-06 thomas waddch(view->window, '\n');
4392 07dd3ed3 2022-08-06 thomas }
4393 07dd3ed3 2022-08-06 thomas if (attr)
4394 07dd3ed3 2022-08-06 thomas wattroff(view->window, attr);
4395 07dd3ed3 2022-08-06 thomas if (++nprinted == 1)
4396 82c78e96 2022-08-06 thomas s->first_displayed_line = s->lineno;
4397 826082fe 2020-12-10 stsp }
4398 826082fe 2020-12-10 stsp free(line);
4399 fe621944 2020-11-10 stsp if (nprinted >= 1)
4400 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
4401 89f1a395 2020-12-01 naddy (nprinted - 1);
4402 fe621944 2020-11-10 stsp else
4403 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
4404 26ed57b2 2018-05-19 stsp
4405 a5d43cac 2022-07-01 thomas view_border(view);
4406 c3e9aa98 2019-05-13 jcs
4407 89f1a395 2020-12-01 naddy if (s->eof) {
4408 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
4409 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
4410 c3e9aa98 2019-05-13 jcs nprinted++;
4411 c3e9aa98 2019-05-13 jcs }
4412 c3e9aa98 2019-05-13 jcs
4413 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4414 f91a2b48 2022-06-23 thomas view->ncols, 0, 0);
4415 c3e9aa98 2019-05-13 jcs if (err) {
4416 c3e9aa98 2019-05-13 jcs return err;
4417 c3e9aa98 2019-05-13 jcs }
4418 26ed57b2 2018-05-19 stsp
4419 c3e9aa98 2019-05-13 jcs wstandout(view->window);
4420 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
4421 e54cc94a 2020-11-11 stsp free(wline);
4422 e54cc94a 2020-11-11 stsp wline = NULL;
4423 c3e9aa98 2019-05-13 jcs wstandend(view->window);
4424 c3e9aa98 2019-05-13 jcs }
4425 c3e9aa98 2019-05-13 jcs
4426 26ed57b2 2018-05-19 stsp return NULL;
4427 abd2672a 2018-12-23 stsp }
4428 abd2672a 2018-12-23 stsp
4429 abd2672a 2018-12-23 stsp static char *
4430 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
4431 abd2672a 2018-12-23 stsp {
4432 09867e48 2019-08-13 stsp struct tm mytm, *tm;
4433 09867e48 2019-08-13 stsp char *p, *s;
4434 09867e48 2019-08-13 stsp
4435 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
4436 09867e48 2019-08-13 stsp if (tm == NULL)
4437 09867e48 2019-08-13 stsp return NULL;
4438 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
4439 09867e48 2019-08-13 stsp if (s == NULL)
4440 09867e48 2019-08-13 stsp return NULL;
4441 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
4442 abd2672a 2018-12-23 stsp if (p)
4443 abd2672a 2018-12-23 stsp *p = '\0';
4444 abd2672a 2018-12-23 stsp return s;
4445 9f7d7167 2018-04-29 stsp }
4446 9f7d7167 2018-04-29 stsp
4447 4ed7e80c 2018-05-20 stsp static const struct got_error *
4448 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
4449 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
4450 0208f208 2020-05-05 stsp {
4451 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
4452 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4453 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4454 0208f208 2020-05-05 stsp struct got_object_qid *qid;
4455 0208f208 2020-05-05 stsp
4456 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4457 0208f208 2020-05-05 stsp if (qid != NULL) {
4458 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
4459 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
4460 ec242592 2022-04-22 thomas &qid->id);
4461 0208f208 2020-05-05 stsp if (err)
4462 0208f208 2020-05-05 stsp return err;
4463 0208f208 2020-05-05 stsp
4464 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
4465 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
4466 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
4467 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
4468 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
4469 aa8b5dd0 2021-08-01 stsp }
4470 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
4471 0208f208 2020-05-05 stsp
4472 0208f208 2020-05-05 stsp }
4473 0208f208 2020-05-05 stsp
4474 0208f208 2020-05-05 stsp if (tree_id1) {
4475 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
4476 0208f208 2020-05-05 stsp if (err)
4477 0208f208 2020-05-05 stsp goto done;
4478 0208f208 2020-05-05 stsp }
4479 0208f208 2020-05-05 stsp
4480 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
4481 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
4482 0208f208 2020-05-05 stsp if (err)
4483 0208f208 2020-05-05 stsp goto done;
4484 0208f208 2020-05-05 stsp
4485 19a6a6b5 2022-07-01 thomas err = got_diff_tree(tree1, tree2, NULL, NULL, -1, -1, "", "", repo,
4486 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
4487 0208f208 2020-05-05 stsp done:
4488 0208f208 2020-05-05 stsp if (tree1)
4489 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
4490 0208f208 2020-05-05 stsp if (tree2)
4491 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
4492 aa8b5dd0 2021-08-01 stsp free(tree_id1);
4493 0208f208 2020-05-05 stsp return err;
4494 0208f208 2020-05-05 stsp }
4495 0208f208 2020-05-05 stsp
4496 0208f208 2020-05-05 stsp static const struct got_error *
4497 82c78e96 2022-08-06 thomas add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4498 82c78e96 2022-08-06 thomas off_t off, uint8_t type)
4499 abd2672a 2018-12-23 stsp {
4500 82c78e96 2022-08-06 thomas struct got_diff_line *p;
4501 fe621944 2020-11-10 stsp
4502 82c78e96 2022-08-06 thomas p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4503 fe621944 2020-11-10 stsp if (p == NULL)
4504 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
4505 82c78e96 2022-08-06 thomas *lines = p;
4506 82c78e96 2022-08-06 thomas (*lines)[*nlines].offset = off;
4507 82c78e96 2022-08-06 thomas (*lines)[*nlines].type = type;
4508 fe621944 2020-11-10 stsp (*nlines)++;
4509 82c78e96 2022-08-06 thomas
4510 fe621944 2020-11-10 stsp return NULL;
4511 fe621944 2020-11-10 stsp }
4512 fe621944 2020-11-10 stsp
4513 fe621944 2020-11-10 stsp static const struct got_error *
4514 82c78e96 2022-08-06 thomas write_commit_info(struct got_diff_line **lines, size_t *nlines,
4515 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4516 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
4517 fe621944 2020-11-10 stsp {
4518 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
4519 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
4520 15a94983 2018-12-23 stsp struct got_commit_object *commit;
4521 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4522 45d799e2 2018-12-23 stsp time_t committer_time;
4523 45d799e2 2018-12-23 stsp const char *author, *committer;
4524 8b473291 2019-02-21 stsp char *refs_str = NULL;
4525 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
4526 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
4527 fe621944 2020-11-10 stsp off_t outoff = 0;
4528 fe621944 2020-11-10 stsp int n;
4529 abd2672a 2018-12-23 stsp
4530 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
4531 0208f208 2020-05-05 stsp
4532 8b473291 2019-02-21 stsp if (refs) {
4533 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
4534 8b473291 2019-02-21 stsp if (err)
4535 8b473291 2019-02-21 stsp return err;
4536 8b473291 2019-02-21 stsp }
4537 8b473291 2019-02-21 stsp
4538 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
4539 abd2672a 2018-12-23 stsp if (err)
4540 abd2672a 2018-12-23 stsp return err;
4541 abd2672a 2018-12-23 stsp
4542 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
4543 15a94983 2018-12-23 stsp if (err) {
4544 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
4545 15a94983 2018-12-23 stsp goto done;
4546 15a94983 2018-12-23 stsp }
4547 abd2672a 2018-12-23 stsp
4548 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4549 fe621944 2020-11-10 stsp if (err)
4550 fe621944 2020-11-10 stsp goto done;
4551 fe621944 2020-11-10 stsp
4552 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4553 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
4554 fe621944 2020-11-10 stsp if (n < 0) {
4555 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4556 abd2672a 2018-12-23 stsp goto done;
4557 abd2672a 2018-12-23 stsp }
4558 fe621944 2020-11-10 stsp outoff += n;
4559 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4560 fe621944 2020-11-10 stsp if (err)
4561 fe621944 2020-11-10 stsp goto done;
4562 fe621944 2020-11-10 stsp
4563 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
4564 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
4565 fe621944 2020-11-10 stsp if (n < 0) {
4566 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4567 abd2672a 2018-12-23 stsp goto done;
4568 abd2672a 2018-12-23 stsp }
4569 fe621944 2020-11-10 stsp outoff += n;
4570 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4571 fe621944 2020-11-10 stsp if (err)
4572 fe621944 2020-11-10 stsp goto done;
4573 fe621944 2020-11-10 stsp
4574 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
4575 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
4576 fe621944 2020-11-10 stsp if (datestr) {
4577 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
4578 fe621944 2020-11-10 stsp if (n < 0) {
4579 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4580 fe621944 2020-11-10 stsp goto done;
4581 fe621944 2020-11-10 stsp }
4582 fe621944 2020-11-10 stsp outoff += n;
4583 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4584 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_DATE);
4585 fe621944 2020-11-10 stsp if (err)
4586 fe621944 2020-11-10 stsp goto done;
4587 abd2672a 2018-12-23 stsp }
4588 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
4589 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
4590 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
4591 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
4592 fe621944 2020-11-10 stsp if (n < 0) {
4593 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4594 fe621944 2020-11-10 stsp goto done;
4595 fe621944 2020-11-10 stsp }
4596 fe621944 2020-11-10 stsp outoff += n;
4597 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4598 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_AUTHOR);
4599 fe621944 2020-11-10 stsp if (err)
4600 fe621944 2020-11-10 stsp goto done;
4601 abd2672a 2018-12-23 stsp }
4602 ac4dc263 2021-09-24 thomas if (got_object_commit_get_nparents(commit) > 1) {
4603 ac4dc263 2021-09-24 thomas const struct got_object_id_queue *parent_ids;
4604 ac4dc263 2021-09-24 thomas struct got_object_qid *qid;
4605 ac4dc263 2021-09-24 thomas int pn = 1;
4606 ac4dc263 2021-09-24 thomas parent_ids = got_object_commit_get_parent_ids(commit);
4607 ac4dc263 2021-09-24 thomas STAILQ_FOREACH(qid, parent_ids, entry) {
4608 ec242592 2022-04-22 thomas err = got_object_id_str(&id_str, &qid->id);
4609 ac4dc263 2021-09-24 thomas if (err)
4610 ac4dc263 2021-09-24 thomas goto done;
4611 ac4dc263 2021-09-24 thomas n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4612 ac4dc263 2021-09-24 thomas if (n < 0) {
4613 ac4dc263 2021-09-24 thomas err = got_error_from_errno("fprintf");
4614 ac4dc263 2021-09-24 thomas goto done;
4615 ac4dc263 2021-09-24 thomas }
4616 ac4dc263 2021-09-24 thomas outoff += n;
4617 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4618 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_META);
4619 ac4dc263 2021-09-24 thomas if (err)
4620 ac4dc263 2021-09-24 thomas goto done;
4621 ac4dc263 2021-09-24 thomas free(id_str);
4622 ac4dc263 2021-09-24 thomas id_str = NULL;
4623 ac4dc263 2021-09-24 thomas }
4624 ac4dc263 2021-09-24 thomas }
4625 ac4dc263 2021-09-24 thomas
4626 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
4627 5943eee2 2019-08-13 stsp if (err)
4628 5943eee2 2019-08-13 stsp goto done;
4629 fe621944 2020-11-10 stsp s = logmsg;
4630 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
4631 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
4632 fe621944 2020-11-10 stsp if (n < 0) {
4633 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4634 fe621944 2020-11-10 stsp goto done;
4635 fe621944 2020-11-10 stsp }
4636 fe621944 2020-11-10 stsp outoff += n;
4637 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4638 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_LOGMSG);
4639 fe621944 2020-11-10 stsp if (err)
4640 fe621944 2020-11-10 stsp goto done;
4641 abd2672a 2018-12-23 stsp }
4642 fe621944 2020-11-10 stsp
4643 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
4644 0208f208 2020-05-05 stsp if (err)
4645 0208f208 2020-05-05 stsp goto done;
4646 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4647 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
4648 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
4649 fe621944 2020-11-10 stsp if (n < 0) {
4650 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4651 fe621944 2020-11-10 stsp goto done;
4652 fe621944 2020-11-10 stsp }
4653 fe621944 2020-11-10 stsp outoff += n;
4654 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4655 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_CHANGES);
4656 fe621944 2020-11-10 stsp if (err)
4657 fe621944 2020-11-10 stsp goto done;
4658 0208f208 2020-05-05 stsp free((char *)pe->path);
4659 0208f208 2020-05-05 stsp free(pe->data);
4660 0208f208 2020-05-05 stsp }
4661 fe621944 2020-11-10 stsp
4662 0208f208 2020-05-05 stsp fputc('\n', outfile);
4663 fe621944 2020-11-10 stsp outoff++;
4664 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4665 abd2672a 2018-12-23 stsp done:
4666 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4667 abd2672a 2018-12-23 stsp free(id_str);
4668 5943eee2 2019-08-13 stsp free(logmsg);
4669 8b473291 2019-02-21 stsp free(refs_str);
4670 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4671 7510f233 2020-08-09 stsp if (err) {
4672 82c78e96 2022-08-06 thomas free(*lines);
4673 82c78e96 2022-08-06 thomas *lines = NULL;
4674 ae6a6978 2020-08-09 stsp *nlines = 0;
4675 7510f233 2020-08-09 stsp }
4676 fe621944 2020-11-10 stsp return err;
4677 abd2672a 2018-12-23 stsp }
4678 abd2672a 2018-12-23 stsp
4679 abd2672a 2018-12-23 stsp static const struct got_error *
4680 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
4681 26ed57b2 2018-05-19 stsp {
4682 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
4683 48ae06ee 2018-10-18 stsp FILE *f = NULL;
4684 15a94983 2018-12-23 stsp int obj_type;
4685 fe621944 2020-11-10 stsp
4686 82c78e96 2022-08-06 thomas free(s->lines);
4687 82c78e96 2022-08-06 thomas s->lines = malloc(sizeof(*s->lines));
4688 82c78e96 2022-08-06 thomas if (s->lines == NULL)
4689 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
4690 fe621944 2020-11-10 stsp s->nlines = 0;
4691 26ed57b2 2018-05-19 stsp
4692 511a516b 2018-05-19 stsp f = got_opentemp();
4693 48ae06ee 2018-10-18 stsp if (f == NULL) {
4694 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4695 48ae06ee 2018-10-18 stsp goto done;
4696 48ae06ee 2018-10-18 stsp }
4697 56b63ca4 2021-01-22 stsp if (s->f && fclose(s->f) == EOF) {
4698 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4699 fb43ecf1 2019-02-11 stsp goto done;
4700 fb43ecf1 2019-02-11 stsp }
4701 48ae06ee 2018-10-18 stsp s->f = f;
4702 26ed57b2 2018-05-19 stsp
4703 15a94983 2018-12-23 stsp if (s->id1)
4704 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
4705 15a94983 2018-12-23 stsp else
4706 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
4707 15a94983 2018-12-23 stsp if (err)
4708 15a94983 2018-12-23 stsp goto done;
4709 15a94983 2018-12-23 stsp
4710 15a94983 2018-12-23 stsp switch (obj_type) {
4711 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
4712 82c78e96 2022-08-06 thomas err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4713 19a6a6b5 2022-07-01 thomas s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4714 adf4c9e0 2022-07-03 thomas s->label1, s->label2, tog_diff_algo, s->diff_context,
4715 19a6a6b5 2022-07-01 thomas s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4716 26ed57b2 2018-05-19 stsp break;
4717 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
4718 82c78e96 2022-08-06 thomas err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4719 19a6a6b5 2022-07-01 thomas s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4720 adf4c9e0 2022-07-03 thomas tog_diff_algo, s->diff_context, s->ignore_whitespace,
4721 25ec7006 2022-07-01 thomas s->force_text_diff, s->repo, s->f);
4722 26ed57b2 2018-05-19 stsp break;
4723 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
4724 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
4725 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
4726 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
4727 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
4728 abd2672a 2018-12-23 stsp
4729 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4730 abd2672a 2018-12-23 stsp if (err)
4731 3ffacbe1 2020-02-02 tracey goto done;
4732 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4733 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
4734 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
4735 82c78e96 2022-08-06 thomas err = write_commit_info(&s->lines, &s->nlines, s->id2,
4736 82c78e96 2022-08-06 thomas refs, s->repo, s->f);
4737 f44b1f58 2020-02-02 tracey if (err)
4738 f44b1f58 2020-02-02 tracey goto done;
4739 f44b1f58 2020-02-02 tracey } else {
4740 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
4741 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
4742 ec242592 2022-04-22 thomas if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4743 82c78e96 2022-08-06 thomas err = write_commit_info(&s->lines,
4744 82c78e96 2022-08-06 thomas &s->nlines, s->id2, refs, s->repo,
4745 82c78e96 2022-08-06 thomas s->f);
4746 f44b1f58 2020-02-02 tracey if (err)
4747 f44b1f58 2020-02-02 tracey goto done;
4748 f5404e4e 2020-02-02 tracey break;
4749 15a087fe 2019-02-21 stsp }
4750 abd2672a 2018-12-23 stsp }
4751 abd2672a 2018-12-23 stsp }
4752 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
4753 abd2672a 2018-12-23 stsp
4754 82c78e96 2022-08-06 thomas err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4755 19a6a6b5 2022-07-01 thomas s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4756 adf4c9e0 2022-07-03 thomas tog_diff_algo, s->diff_context, s->ignore_whitespace,
4757 25ec7006 2022-07-01 thomas s->force_text_diff, s->repo, s->f);
4758 26ed57b2 2018-05-19 stsp break;
4759 abd2672a 2018-12-23 stsp }
4760 26ed57b2 2018-05-19 stsp default:
4761 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4762 48ae06ee 2018-10-18 stsp break;
4763 26ed57b2 2018-05-19 stsp }
4764 48ae06ee 2018-10-18 stsp done:
4765 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
4766 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
4767 48ae06ee 2018-10-18 stsp return err;
4768 48ae06ee 2018-10-18 stsp }
4769 26ed57b2 2018-05-19 stsp
4770 f5215bb9 2019-02-22 stsp static void
4771 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
4772 f5215bb9 2019-02-22 stsp {
4773 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
4774 f5215bb9 2019-02-22 stsp update_panels();
4775 f5215bb9 2019-02-22 stsp doupdate();
4776 f44b1f58 2020-02-02 tracey }
4777 f44b1f58 2020-02-02 tracey
4778 f44b1f58 2020-02-02 tracey static const struct got_error *
4779 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
4780 f44b1f58 2020-02-02 tracey {
4781 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4782 f44b1f58 2020-02-02 tracey
4783 f44b1f58 2020-02-02 tracey s->matched_line = 0;
4784 f44b1f58 2020-02-02 tracey return NULL;
4785 f44b1f58 2020-02-02 tracey }
4786 f44b1f58 2020-02-02 tracey
4787 2a7d3cd7 2022-09-17 thomas static void
4788 2a7d3cd7 2022-09-17 thomas search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
4789 fc2737d5 2022-09-15 thomas size_t *nlines, int **first, int **last, int **match, int **selected)
4790 f44b1f58 2020-02-02 tracey {
4791 2a7d3cd7 2022-09-17 thomas struct tog_diff_view_state *s = &view->state.diff;
4792 fc2737d5 2022-09-15 thomas
4793 2a7d3cd7 2022-09-17 thomas *f = s->f;
4794 2a7d3cd7 2022-09-17 thomas *nlines = s->nlines;
4795 2a7d3cd7 2022-09-17 thomas *line_offsets = NULL;
4796 2a7d3cd7 2022-09-17 thomas *match = &s->matched_line;
4797 2a7d3cd7 2022-09-17 thomas *first = &s->first_displayed_line;
4798 2a7d3cd7 2022-09-17 thomas *last = &s->last_displayed_line;
4799 2a7d3cd7 2022-09-17 thomas *selected = &s->selected_line;
4800 fc2737d5 2022-09-15 thomas }
4801 fc2737d5 2022-09-15 thomas
4802 fc2737d5 2022-09-15 thomas static const struct got_error *
4803 fc2737d5 2022-09-15 thomas search_next_view_match(struct tog_view *view)
4804 fc2737d5 2022-09-15 thomas {
4805 05171be4 2022-06-23 thomas const struct got_error *err = NULL;
4806 fc2737d5 2022-09-15 thomas FILE *f;
4807 f44b1f58 2020-02-02 tracey int lineno;
4808 78eecffc 2022-06-23 thomas char *line = NULL;
4809 826082fe 2020-12-10 stsp size_t linesize = 0;
4810 826082fe 2020-12-10 stsp ssize_t linelen;
4811 fc2737d5 2022-09-15 thomas off_t *line_offsets;
4812 fc2737d5 2022-09-15 thomas size_t nlines = 0;
4813 fc2737d5 2022-09-15 thomas int *first, *last, *match, *selected;
4814 f44b1f58 2020-02-02 tracey
4815 2a7d3cd7 2022-09-17 thomas if (!view->search_setup)
4816 2a7d3cd7 2022-09-17 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
4817 2a7d3cd7 2022-09-17 thomas "view search not supported");
4818 2a7d3cd7 2022-09-17 thomas view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
4819 fc2737d5 2022-09-15 thomas &match, &selected);
4820 fc2737d5 2022-09-15 thomas
4821 f44b1f58 2020-02-02 tracey if (!view->searching) {
4822 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4823 f44b1f58 2020-02-02 tracey return NULL;
4824 f44b1f58 2020-02-02 tracey }
4825 f44b1f58 2020-02-02 tracey
4826 fc2737d5 2022-09-15 thomas if (*match) {
4827 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4828 fc2737d5 2022-09-15 thomas lineno = *match + 1;
4829 f44b1f58 2020-02-02 tracey else
4830 fc2737d5 2022-09-15 thomas lineno = *match - 1;
4831 4b3f9dac 2021-12-17 thomas } else
4832 fc2737d5 2022-09-15 thomas lineno = *first - 1 + *selected;
4833 f44b1f58 2020-02-02 tracey
4834 f44b1f58 2020-02-02 tracey while (1) {
4835 f44b1f58 2020-02-02 tracey off_t offset;
4836 f44b1f58 2020-02-02 tracey
4837 fc2737d5 2022-09-15 thomas if (lineno <= 0 || lineno > nlines) {
4838 fc2737d5 2022-09-15 thomas if (*match == 0) {
4839 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4840 f44b1f58 2020-02-02 tracey break;
4841 f44b1f58 2020-02-02 tracey }
4842 f44b1f58 2020-02-02 tracey
4843 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4844 f44b1f58 2020-02-02 tracey lineno = 1;
4845 f44b1f58 2020-02-02 tracey else
4846 fc2737d5 2022-09-15 thomas lineno = nlines;
4847 f44b1f58 2020-02-02 tracey }
4848 f44b1f58 2020-02-02 tracey
4849 fc2737d5 2022-09-15 thomas offset = view->type == TOG_VIEW_DIFF ?
4850 fc2737d5 2022-09-15 thomas view->state.diff.lines[lineno - 1].offset :
4851 fc2737d5 2022-09-15 thomas line_offsets[lineno - 1];
4852 fc2737d5 2022-09-15 thomas if (fseeko(f, offset, SEEK_SET) != 0) {
4853 f44b1f58 2020-02-02 tracey free(line);
4854 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
4855 f44b1f58 2020-02-02 tracey }
4856 fc2737d5 2022-09-15 thomas linelen = getline(&line, &linesize, f);
4857 78eecffc 2022-06-23 thomas if (linelen != -1) {
4858 78eecffc 2022-06-23 thomas char *exstr;
4859 78eecffc 2022-06-23 thomas err = expand_tab(&exstr, line);
4860 78eecffc 2022-06-23 thomas if (err)
4861 78eecffc 2022-06-23 thomas break;
4862 78eecffc 2022-06-23 thomas if (match_line(exstr, &view->regex, 1,
4863 78eecffc 2022-06-23 thomas &view->regmatch)) {
4864 78eecffc 2022-06-23 thomas view->search_next_done = TOG_SEARCH_HAVE_MORE;
4865 fc2737d5 2022-09-15 thomas *match = lineno;
4866 78eecffc 2022-06-23 thomas free(exstr);
4867 78eecffc 2022-06-23 thomas break;
4868 78eecffc 2022-06-23 thomas }
4869 78eecffc 2022-06-23 thomas free(exstr);
4870 f44b1f58 2020-02-02 tracey }
4871 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4872 f44b1f58 2020-02-02 tracey lineno++;
4873 f44b1f58 2020-02-02 tracey else
4874 f44b1f58 2020-02-02 tracey lineno--;
4875 f44b1f58 2020-02-02 tracey }
4876 826082fe 2020-12-10 stsp free(line);
4877 f44b1f58 2020-02-02 tracey
4878 fc2737d5 2022-09-15 thomas if (*match) {
4879 fc2737d5 2022-09-15 thomas *first = *match;
4880 fc2737d5 2022-09-15 thomas *selected = 1;
4881 f44b1f58 2020-02-02 tracey }
4882 f44b1f58 2020-02-02 tracey
4883 05171be4 2022-06-23 thomas return err;
4884 f5215bb9 2019-02-22 stsp }
4885 f5215bb9 2019-02-22 stsp
4886 48ae06ee 2018-10-18 stsp static const struct got_error *
4887 a0f32f33 2022-06-13 thomas close_diff_view(struct tog_view *view)
4888 a0f32f33 2022-06-13 thomas {
4889 a0f32f33 2022-06-13 thomas const struct got_error *err = NULL;
4890 a0f32f33 2022-06-13 thomas struct tog_diff_view_state *s = &view->state.diff;
4891 a0f32f33 2022-06-13 thomas
4892 a0f32f33 2022-06-13 thomas free(s->id1);
4893 a0f32f33 2022-06-13 thomas s->id1 = NULL;
4894 a0f32f33 2022-06-13 thomas free(s->id2);
4895 a0f32f33 2022-06-13 thomas s->id2 = NULL;
4896 a0f32f33 2022-06-13 thomas if (s->f && fclose(s->f) == EOF)
4897 a0f32f33 2022-06-13 thomas err = got_error_from_errno("fclose");
4898 a0f32f33 2022-06-13 thomas s->f = NULL;
4899 19a6a6b5 2022-07-01 thomas if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4900 a0f32f33 2022-06-13 thomas err = got_error_from_errno("fclose");
4901 a0f32f33 2022-06-13 thomas s->f1 = NULL;
4902 19a6a6b5 2022-07-01 thomas if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4903 a0f32f33 2022-06-13 thomas err = got_error_from_errno("fclose");
4904 a0f32f33 2022-06-13 thomas s->f2 = NULL;
4905 19a6a6b5 2022-07-01 thomas if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4906 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("close");
4907 19a6a6b5 2022-07-01 thomas s->fd1 = -1;
4908 19a6a6b5 2022-07-01 thomas if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4909 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("close");
4910 19a6a6b5 2022-07-01 thomas s->fd2 = -1;
4911 82c78e96 2022-08-06 thomas free(s->lines);
4912 82c78e96 2022-08-06 thomas s->lines = NULL;
4913 a0f32f33 2022-06-13 thomas s->nlines = 0;
4914 a0f32f33 2022-06-13 thomas return err;
4915 a0f32f33 2022-06-13 thomas }
4916 a0f32f33 2022-06-13 thomas
4917 a0f32f33 2022-06-13 thomas static const struct got_error *
4918 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
4919 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
4920 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
4921 4fc71f3b 2022-07-12 thomas struct tog_view *parent_view, struct got_repository *repo)
4922 48ae06ee 2018-10-18 stsp {
4923 48ae06ee 2018-10-18 stsp const struct got_error *err;
4924 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
4925 5dc9f4bc 2018-08-04 stsp
4926 a0f32f33 2022-06-13 thomas memset(s, 0, sizeof(*s));
4927 19a6a6b5 2022-07-01 thomas s->fd1 = -1;
4928 19a6a6b5 2022-07-01 thomas s->fd2 = -1;
4929 a0f32f33 2022-06-13 thomas
4930 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
4931 15a94983 2018-12-23 stsp int type1, type2;
4932 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
4933 15a94983 2018-12-23 stsp if (err)
4934 15a94983 2018-12-23 stsp return err;
4935 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
4936 15a94983 2018-12-23 stsp if (err)
4937 15a94983 2018-12-23 stsp return err;
4938 15a94983 2018-12-23 stsp
4939 15a94983 2018-12-23 stsp if (type1 != type2)
4940 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
4941 15a94983 2018-12-23 stsp }
4942 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
4943 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
4944 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4945 f44b1f58 2020-02-02 tracey s->repo = repo;
4946 f44b1f58 2020-02-02 tracey s->id1 = id1;
4947 f44b1f58 2020-02-02 tracey s->id2 = id2;
4948 3dbaef42 2020-11-24 stsp s->label1 = label1;
4949 3dbaef42 2020-11-24 stsp s->label2 = label2;
4950 48ae06ee 2018-10-18 stsp
4951 15a94983 2018-12-23 stsp if (id1) {
4952 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
4953 5465d566 2020-02-01 tracey if (s->id1 == NULL)
4954 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4955 48ae06ee 2018-10-18 stsp } else
4956 5465d566 2020-02-01 tracey s->id1 = NULL;
4957 48ae06ee 2018-10-18 stsp
4958 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
4959 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
4960 a0f32f33 2022-06-13 thomas err = got_error_from_errno("got_object_id_dup");
4961 a0f32f33 2022-06-13 thomas goto done;
4962 48ae06ee 2018-10-18 stsp }
4963 a0f32f33 2022-06-13 thomas
4964 9a1d7435 2022-06-23 thomas s->f1 = got_opentemp();
4965 9a1d7435 2022-06-23 thomas if (s->f1 == NULL) {
4966 9a1d7435 2022-06-23 thomas err = got_error_from_errno("got_opentemp");
4967 9a1d7435 2022-06-23 thomas goto done;
4968 9a1d7435 2022-06-23 thomas }
4969 9a1d7435 2022-06-23 thomas
4970 a0f32f33 2022-06-13 thomas s->f2 = got_opentemp();
4971 a0f32f33 2022-06-13 thomas if (s->f2 == NULL) {
4972 a0f32f33 2022-06-13 thomas err = got_error_from_errno("got_opentemp");
4973 a0f32f33 2022-06-13 thomas goto done;
4974 a0f32f33 2022-06-13 thomas }
4975 a0f32f33 2022-06-13 thomas
4976 19a6a6b5 2022-07-01 thomas s->fd1 = got_opentempfd();
4977 19a6a6b5 2022-07-01 thomas if (s->fd1 == -1) {
4978 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
4979 19a6a6b5 2022-07-01 thomas goto done;
4980 19a6a6b5 2022-07-01 thomas }
4981 19a6a6b5 2022-07-01 thomas
4982 19a6a6b5 2022-07-01 thomas s->fd2 = got_opentempfd();
4983 19a6a6b5 2022-07-01 thomas if (s->fd2 == -1) {
4984 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
4985 19a6a6b5 2022-07-01 thomas goto done;
4986 19a6a6b5 2022-07-01 thomas }
4987 19a6a6b5 2022-07-01 thomas
4988 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
4989 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
4990 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
4991 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
4992 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
4993 4fc71f3b 2022-07-12 thomas s->parent_view = parent_view;
4994 5465d566 2020-02-01 tracey s->repo = repo;
4995 6d17833f 2019-11-08 stsp
4996 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
4997 6568f0aa 2022-08-06 thomas int rc;
4998 6d17833f 2019-11-08 stsp
4999 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_MINUS,
5000 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5001 6568f0aa 2022-08-06 thomas if (rc != ERR)
5002 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_PLUS,
5003 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5004 6568f0aa 2022-08-06 thomas if (rc != ERR)
5005 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_HUNK,
5006 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5007 6568f0aa 2022-08-06 thomas if (rc != ERR)
5008 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_META,
5009 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5010 6568f0aa 2022-08-06 thomas if (rc != ERR)
5011 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_CHANGES,
5012 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5013 6568f0aa 2022-08-06 thomas if (rc != ERR)
5014 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5015 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5016 6568f0aa 2022-08-06 thomas if (rc != ERR)
5017 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5018 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5019 6568f0aa 2022-08-06 thomas if (rc != ERR)
5020 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5021 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_AUTHOR"), -1);
5022 6568f0aa 2022-08-06 thomas if (rc != ERR)
5023 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_DATE,
5024 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DATE"), -1);
5025 6568f0aa 2022-08-06 thomas if (rc == ERR) {
5026 6568f0aa 2022-08-06 thomas err = got_error(GOT_ERR_RANGE);
5027 a0f32f33 2022-06-13 thomas goto done;
5028 6568f0aa 2022-08-06 thomas }
5029 6d17833f 2019-11-08 stsp }
5030 5dc9f4bc 2018-08-04 stsp
5031 4fc71f3b 2022-07-12 thomas if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5032 4fc71f3b 2022-07-12 thomas view_is_splitscreen(view))
5033 4fc71f3b 2022-07-12 thomas show_log_view(parent_view); /* draw border */
5034 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
5035 f5215bb9 2019-02-22 stsp
5036 5465d566 2020-02-01 tracey err = create_diff(s);
5037 48ae06ee 2018-10-18 stsp
5038 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
5039 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
5040 adf4c9e0 2022-07-03 thomas view->reset = reset_diff_view;
5041 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
5042 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
5043 2a7d3cd7 2022-09-17 thomas view->search_setup = search_setup_diff_view;
5044 fc2737d5 2022-09-15 thomas view->search_next = search_next_view_match;
5045 a0f32f33 2022-06-13 thomas done:
5046 a0f32f33 2022-06-13 thomas if (err)
5047 a0f32f33 2022-06-13 thomas close_diff_view(view);
5048 e5a0f69f 2018-08-18 stsp return err;
5049 5dc9f4bc 2018-08-04 stsp }
5050 5dc9f4bc 2018-08-04 stsp
5051 5dc9f4bc 2018-08-04 stsp static const struct got_error *
5052 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
5053 5dc9f4bc 2018-08-04 stsp {
5054 a3404814 2018-09-02 stsp const struct got_error *err;
5055 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
5056 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
5057 3dbaef42 2020-11-24 stsp const char *label1, *label2;
5058 a3404814 2018-09-02 stsp
5059 a3404814 2018-09-02 stsp if (s->id1) {
5060 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
5061 a3404814 2018-09-02 stsp if (err)
5062 a3404814 2018-09-02 stsp return err;
5063 d3f8b1f9 2022-08-31 thomas label1 = s->label1 ? s->label1 : id_str1;
5064 3dbaef42 2020-11-24 stsp } else
5065 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
5066 3dbaef42 2020-11-24 stsp
5067 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
5068 a3404814 2018-09-02 stsp if (err)
5069 a3404814 2018-09-02 stsp return err;
5070 d3f8b1f9 2022-08-31 thomas label2 = s->label2 ? s->label2 : id_str2;
5071 26ed57b2 2018-05-19 stsp
5072 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5073 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5074 a3404814 2018-09-02 stsp free(id_str1);
5075 a3404814 2018-09-02 stsp free(id_str2);
5076 a3404814 2018-09-02 stsp return err;
5077 a3404814 2018-09-02 stsp }
5078 a3404814 2018-09-02 stsp free(id_str1);
5079 a3404814 2018-09-02 stsp free(id_str2);
5080 a3404814 2018-09-02 stsp
5081 267bb3b8 2021-08-01 stsp err = draw_file(view, header);
5082 267bb3b8 2021-08-01 stsp free(header);
5083 267bb3b8 2021-08-01 stsp return err;
5084 15a087fe 2019-02-21 stsp }
5085 15a087fe 2019-02-21 stsp
5086 15a087fe 2019-02-21 stsp static const struct got_error *
5087 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
5088 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
5089 15a087fe 2019-02-21 stsp {
5090 d7a04538 2019-02-21 stsp const struct got_error *err;
5091 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
5092 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
5093 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
5094 15a087fe 2019-02-21 stsp
5095 15a087fe 2019-02-21 stsp free(s->id2);
5096 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
5097 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
5098 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
5099 15a087fe 2019-02-21 stsp
5100 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5101 d7a04538 2019-02-21 stsp if (err)
5102 d7a04538 2019-02-21 stsp return err;
5103 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
5104 15a087fe 2019-02-21 stsp free(s->id1);
5105 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
5106 ec242592 2022-04-22 thomas s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5107 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
5108 15a087fe 2019-02-21 stsp return NULL;
5109 0cf4efb1 2018-09-29 stsp }
5110 0cf4efb1 2018-09-29 stsp
5111 0cf4efb1 2018-09-29 stsp static const struct got_error *
5112 adf4c9e0 2022-07-03 thomas reset_diff_view(struct tog_view *view)
5113 adf4c9e0 2022-07-03 thomas {
5114 adf4c9e0 2022-07-03 thomas struct tog_diff_view_state *s = &view->state.diff;
5115 adf4c9e0 2022-07-03 thomas
5116 adf4c9e0 2022-07-03 thomas view->count = 0;
5117 adf4c9e0 2022-07-03 thomas wclear(view->window);
5118 adf4c9e0 2022-07-03 thomas s->first_displayed_line = 1;
5119 adf4c9e0 2022-07-03 thomas s->last_displayed_line = view->nlines;
5120 adf4c9e0 2022-07-03 thomas s->matched_line = 0;
5121 adf4c9e0 2022-07-03 thomas diff_view_indicate_progress(view);
5122 adf4c9e0 2022-07-03 thomas return create_diff(s);
5123 82c78e96 2022-08-06 thomas }
5124 82c78e96 2022-08-06 thomas
5125 82c78e96 2022-08-06 thomas static void
5126 82c78e96 2022-08-06 thomas diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5127 82c78e96 2022-08-06 thomas {
5128 82c78e96 2022-08-06 thomas int start, i;
5129 82c78e96 2022-08-06 thomas
5130 82c78e96 2022-08-06 thomas i = start = s->first_displayed_line - 1;
5131 82c78e96 2022-08-06 thomas
5132 82c78e96 2022-08-06 thomas while (s->lines[i].type != type) {
5133 82c78e96 2022-08-06 thomas if (i == 0)
5134 82c78e96 2022-08-06 thomas i = s->nlines - 1;
5135 82c78e96 2022-08-06 thomas if (--i == start)
5136 82c78e96 2022-08-06 thomas return; /* do nothing, requested type not in file */
5137 82c78e96 2022-08-06 thomas }
5138 82c78e96 2022-08-06 thomas
5139 82c78e96 2022-08-06 thomas s->selected_line = 1;
5140 82c78e96 2022-08-06 thomas s->first_displayed_line = i;
5141 adf4c9e0 2022-07-03 thomas }
5142 adf4c9e0 2022-07-03 thomas
5143 82c78e96 2022-08-06 thomas static void
5144 82c78e96 2022-08-06 thomas diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5145 82c78e96 2022-08-06 thomas {
5146 82c78e96 2022-08-06 thomas int start, i;
5147 82c78e96 2022-08-06 thomas
5148 82c78e96 2022-08-06 thomas i = start = s->first_displayed_line + 1;
5149 82c78e96 2022-08-06 thomas
5150 82c78e96 2022-08-06 thomas while (s->lines[i].type != type) {
5151 82c78e96 2022-08-06 thomas if (i == s->nlines - 1)
5152 82c78e96 2022-08-06 thomas i = 0;
5153 82c78e96 2022-08-06 thomas if (++i == start)
5154 82c78e96 2022-08-06 thomas return; /* do nothing, requested type not in file */
5155 82c78e96 2022-08-06 thomas }
5156 82c78e96 2022-08-06 thomas
5157 82c78e96 2022-08-06 thomas s->selected_line = 1;
5158 82c78e96 2022-08-06 thomas s->first_displayed_line = i;
5159 82c78e96 2022-08-06 thomas }
5160 82c78e96 2022-08-06 thomas
5161 4fc71f3b 2022-07-12 thomas static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5162 4fc71f3b 2022-07-12 thomas int, int, int);
5163 4fc71f3b 2022-07-12 thomas static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5164 4fc71f3b 2022-07-12 thomas int, int);
5165 4fc71f3b 2022-07-12 thomas
5166 adf4c9e0 2022-07-03 thomas static const struct got_error *
5167 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5168 e5a0f69f 2018-08-18 stsp {
5169 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
5170 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
5171 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
5172 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
5173 826082fe 2020-12-10 stsp char *line = NULL;
5174 826082fe 2020-12-10 stsp size_t linesize = 0;
5175 826082fe 2020-12-10 stsp ssize_t linelen;
5176 4fc71f3b 2022-07-12 thomas int i, nscroll = view->nlines - 1, up = 0;
5177 e5a0f69f 2018-08-18 stsp
5178 82c78e96 2022-08-06 thomas s->lineno = s->first_displayed_line - 1 + s->selected_line;
5179 82c78e96 2022-08-06 thomas
5180 e5a0f69f 2018-08-18 stsp switch (ch) {
5181 05171be4 2022-06-23 thomas case '0':
5182 05171be4 2022-06-23 thomas view->x = 0;
5183 05171be4 2022-06-23 thomas break;
5184 05171be4 2022-06-23 thomas case '$':
5185 05171be4 2022-06-23 thomas view->x = MAX(view->maxx - view->ncols / 3, 0);
5186 07b0611c 2022-06-23 thomas view->count = 0;
5187 05171be4 2022-06-23 thomas break;
5188 05171be4 2022-06-23 thomas case KEY_RIGHT:
5189 05171be4 2022-06-23 thomas case 'l':
5190 05171be4 2022-06-23 thomas if (view->x + view->ncols / 3 < view->maxx)
5191 05171be4 2022-06-23 thomas view->x += 2; /* move two columns right */
5192 07b0611c 2022-06-23 thomas else
5193 07b0611c 2022-06-23 thomas view->count = 0;
5194 05171be4 2022-06-23 thomas break;
5195 05171be4 2022-06-23 thomas case KEY_LEFT:
5196 05171be4 2022-06-23 thomas case 'h':
5197 05171be4 2022-06-23 thomas view->x -= MIN(view->x, 2); /* move two columns back */
5198 07b0611c 2022-06-23 thomas if (view->x <= 0)
5199 07b0611c 2022-06-23 thomas view->count = 0;
5200 05171be4 2022-06-23 thomas break;
5201 64453f7e 2020-11-21 stsp case 'a':
5202 3dbaef42 2020-11-24 stsp case 'w':
5203 3dbaef42 2020-11-24 stsp if (ch == 'a')
5204 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
5205 3dbaef42 2020-11-24 stsp if (ch == 'w')
5206 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
5207 adf4c9e0 2022-07-03 thomas err = reset_diff_view(view);
5208 912a3f79 2021-08-30 j break;
5209 912a3f79 2021-08-30 j case 'g':
5210 912a3f79 2021-08-30 j case KEY_HOME:
5211 912a3f79 2021-08-30 j s->first_displayed_line = 1;
5212 07b0611c 2022-06-23 thomas view->count = 0;
5213 64453f7e 2020-11-21 stsp break;
5214 912a3f79 2021-08-30 j case 'G':
5215 912a3f79 2021-08-30 j case KEY_END:
5216 07b0611c 2022-06-23 thomas view->count = 0;
5217 912a3f79 2021-08-30 j if (s->eof)
5218 912a3f79 2021-08-30 j break;
5219 912a3f79 2021-08-30 j
5220 912a3f79 2021-08-30 j s->first_displayed_line = (s->nlines - view->nlines) + 2;
5221 912a3f79 2021-08-30 j s->eof = 1;
5222 912a3f79 2021-08-30 j break;
5223 1e37a5c2 2019-05-12 jcs case 'k':
5224 1e37a5c2 2019-05-12 jcs case KEY_UP:
5225 f7140bf5 2021-10-17 thomas case CTRL('p'):
5226 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
5227 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5228 07b0611c 2022-06-23 thomas else
5229 07b0611c 2022-06-23 thomas view->count = 0;
5230 1e37a5c2 2019-05-12 jcs break;
5231 70f17a53 2022-06-13 thomas case CTRL('u'):
5232 23427b14 2022-06-23 thomas case 'u':
5233 70f17a53 2022-06-13 thomas nscroll /= 2;
5234 70f17a53 2022-06-13 thomas /* FALL THROUGH */
5235 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5236 a60a9dc4 2019-05-13 jcs case CTRL('b'):
5237 1c5e5faa 2022-06-23 thomas case 'b':
5238 07b0611c 2022-06-23 thomas if (s->first_displayed_line == 1) {
5239 07b0611c 2022-06-23 thomas view->count = 0;
5240 26ed57b2 2018-05-19 stsp break;
5241 07b0611c 2022-06-23 thomas }
5242 1e37a5c2 2019-05-12 jcs i = 0;
5243 70f17a53 2022-06-13 thomas while (i++ < nscroll && s->first_displayed_line > 1)
5244 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5245 1e37a5c2 2019-05-12 jcs break;
5246 1e37a5c2 2019-05-12 jcs case 'j':
5247 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5248 f7140bf5 2021-10-17 thomas case CTRL('n'):
5249 1e37a5c2 2019-05-12 jcs if (!s->eof)
5250 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5251 07b0611c 2022-06-23 thomas else
5252 07b0611c 2022-06-23 thomas view->count = 0;
5253 1e37a5c2 2019-05-12 jcs break;
5254 70f17a53 2022-06-13 thomas case CTRL('d'):
5255 23427b14 2022-06-23 thomas case 'd':
5256 70f17a53 2022-06-13 thomas nscroll /= 2;
5257 70f17a53 2022-06-13 thomas /* FALL THROUGH */
5258 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
5259 a60a9dc4 2019-05-13 jcs case CTRL('f'):
5260 1c5e5faa 2022-06-23 thomas case 'f':
5261 1e37a5c2 2019-05-12 jcs case ' ':
5262 07b0611c 2022-06-23 thomas if (s->eof) {
5263 07b0611c 2022-06-23 thomas view->count = 0;
5264 1e37a5c2 2019-05-12 jcs break;
5265 07b0611c 2022-06-23 thomas }
5266 1e37a5c2 2019-05-12 jcs i = 0;
5267 70f17a53 2022-06-13 thomas while (!s->eof && i++ < nscroll) {
5268 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
5269 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5270 826082fe 2020-12-10 stsp if (linelen == -1) {
5271 826082fe 2020-12-10 stsp if (feof(s->f)) {
5272 826082fe 2020-12-10 stsp s->eof = 1;
5273 826082fe 2020-12-10 stsp } else
5274 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
5275 34bc9ec9 2019-02-22 stsp break;
5276 826082fe 2020-12-10 stsp }
5277 1e37a5c2 2019-05-12 jcs }
5278 826082fe 2020-12-10 stsp free(line);
5279 1e37a5c2 2019-05-12 jcs break;
5280 82c78e96 2022-08-06 thomas case '(':
5281 82c78e96 2022-08-06 thomas diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5282 82c78e96 2022-08-06 thomas break;
5283 82c78e96 2022-08-06 thomas case ')':
5284 82c78e96 2022-08-06 thomas diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5285 82c78e96 2022-08-06 thomas break;
5286 82c78e96 2022-08-06 thomas case '{':
5287 82c78e96 2022-08-06 thomas diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5288 82c78e96 2022-08-06 thomas break;
5289 82c78e96 2022-08-06 thomas case '}':
5290 82c78e96 2022-08-06 thomas diff_next_index(s, GOT_DIFF_LINE_HUNK);
5291 82c78e96 2022-08-06 thomas break;
5292 1e37a5c2 2019-05-12 jcs case '[':
5293 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
5294 1e37a5c2 2019-05-12 jcs s->diff_context--;
5295 aa61903a 2021-12-31 thomas s->matched_line = 0;
5296 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5297 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5298 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
5299 27829c9e 2020-11-21 stsp s->nlines) {
5300 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
5301 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
5302 27829c9e 2020-11-21 stsp }
5303 07b0611c 2022-06-23 thomas } else
5304 07b0611c 2022-06-23 thomas view->count = 0;
5305 1e37a5c2 2019-05-12 jcs break;
5306 1e37a5c2 2019-05-12 jcs case ']':
5307 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5308 1e37a5c2 2019-05-12 jcs s->diff_context++;
5309 aa61903a 2021-12-31 thomas s->matched_line = 0;
5310 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5311 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5312 07b0611c 2022-06-23 thomas } else
5313 07b0611c 2022-06-23 thomas view->count = 0;
5314 1e37a5c2 2019-05-12 jcs break;
5315 1e37a5c2 2019-05-12 jcs case '<':
5316 1e37a5c2 2019-05-12 jcs case ',':
5317 777aae21 2022-07-20 thomas case 'K':
5318 4fc71f3b 2022-07-12 thomas up = 1;
5319 4fc71f3b 2022-07-12 thomas /* FALL THROUGH */
5320 4fc71f3b 2022-07-12 thomas case '>':
5321 4fc71f3b 2022-07-12 thomas case '.':
5322 777aae21 2022-07-20 thomas case 'J':
5323 4fc71f3b 2022-07-12 thomas if (s->parent_view == NULL) {
5324 07b0611c 2022-06-23 thomas view->count = 0;
5325 48ae06ee 2018-10-18 stsp break;
5326 07b0611c 2022-06-23 thomas }
5327 4fc71f3b 2022-07-12 thomas s->parent_view->count = view->count;
5328 6524637e 2019-02-21 stsp
5329 4fc71f3b 2022-07-12 thomas if (s->parent_view->type == TOG_VIEW_LOG) {
5330 4fc71f3b 2022-07-12 thomas ls = &s->parent_view->state.log;
5331 4fc71f3b 2022-07-12 thomas old_selected_entry = ls->selected_entry;
5332 15a087fe 2019-02-21 stsp
5333 4fc71f3b 2022-07-12 thomas err = input_log_view(NULL, s->parent_view,
5334 4fc71f3b 2022-07-12 thomas up ? KEY_UP : KEY_DOWN);
5335 4fc71f3b 2022-07-12 thomas if (err)
5336 4fc71f3b 2022-07-12 thomas break;
5337 4fc71f3b 2022-07-12 thomas view->count = s->parent_view->count;
5338 15a087fe 2019-02-21 stsp
5339 4fc71f3b 2022-07-12 thomas if (old_selected_entry == ls->selected_entry)
5340 4fc71f3b 2022-07-12 thomas break;
5341 15a087fe 2019-02-21 stsp
5342 4fc71f3b 2022-07-12 thomas err = set_selected_commit(s, ls->selected_entry);
5343 4fc71f3b 2022-07-12 thomas if (err)
5344 4fc71f3b 2022-07-12 thomas break;
5345 4fc71f3b 2022-07-12 thomas } else if (s->parent_view->type == TOG_VIEW_BLAME) {
5346 4fc71f3b 2022-07-12 thomas struct tog_blame_view_state *bs;
5347 4fc71f3b 2022-07-12 thomas struct got_object_id *id, *prev_id;
5348 5e224a3e 2019-02-22 stsp
5349 4fc71f3b 2022-07-12 thomas bs = &s->parent_view->state.blame;
5350 4fc71f3b 2022-07-12 thomas prev_id = get_annotation_for_line(bs->blame.lines,
5351 4fc71f3b 2022-07-12 thomas bs->blame.nlines, bs->last_diffed_line);
5352 4fc71f3b 2022-07-12 thomas
5353 4fc71f3b 2022-07-12 thomas err = input_blame_view(&view, s->parent_view,
5354 4fc71f3b 2022-07-12 thomas up ? KEY_UP : KEY_DOWN);
5355 4fc71f3b 2022-07-12 thomas if (err)
5356 4fc71f3b 2022-07-12 thomas break;
5357 4fc71f3b 2022-07-12 thomas view->count = s->parent_view->count;
5358 5a8b5076 2020-12-05 stsp
5359 4fc71f3b 2022-07-12 thomas if (prev_id == NULL)
5360 4fc71f3b 2022-07-12 thomas break;
5361 4fc71f3b 2022-07-12 thomas id = get_selected_commit_id(bs->blame.lines,
5362 4fc71f3b 2022-07-12 thomas bs->blame.nlines, bs->first_displayed_line,
5363 4fc71f3b 2022-07-12 thomas bs->selected_line);
5364 4fc71f3b 2022-07-12 thomas if (id == NULL)
5365 4fc71f3b 2022-07-12 thomas break;
5366 15a087fe 2019-02-21 stsp
5367 4fc71f3b 2022-07-12 thomas if (!got_object_id_cmp(prev_id, id))
5368 4fc71f3b 2022-07-12 thomas break;
5369 15a087fe 2019-02-21 stsp
5370 4fc71f3b 2022-07-12 thomas err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5371 4fc71f3b 2022-07-12 thomas if (err)
5372 4fc71f3b 2022-07-12 thomas break;
5373 4fc71f3b 2022-07-12 thomas }
5374 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5375 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
5376 aa61903a 2021-12-31 thomas s->matched_line = 0;
5377 05171be4 2022-06-23 thomas view->x = 0;
5378 1e37a5c2 2019-05-12 jcs
5379 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5380 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5381 1e37a5c2 2019-05-12 jcs break;
5382 1e37a5c2 2019-05-12 jcs default:
5383 07b0611c 2022-06-23 thomas view->count = 0;
5384 1e37a5c2 2019-05-12 jcs break;
5385 26ed57b2 2018-05-19 stsp }
5386 e5a0f69f 2018-08-18 stsp
5387 bcbd79e2 2018-08-19 stsp return err;
5388 26ed57b2 2018-05-19 stsp }
5389 26ed57b2 2018-05-19 stsp
5390 4ed7e80c 2018-05-20 stsp static const struct got_error *
5391 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
5392 9f7d7167 2018-04-29 stsp {
5393 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
5394 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
5395 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
5396 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
5397 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
5398 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
5399 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
5400 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
5401 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
5402 3dbaef42 2020-11-24 stsp const char *errstr;
5403 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
5404 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
5405 70ac5f84 2019-03-28 stsp
5406 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5407 26ed57b2 2018-05-19 stsp switch (ch) {
5408 64453f7e 2020-11-21 stsp case 'a':
5409 64453f7e 2020-11-21 stsp force_text_diff = 1;
5410 3dbaef42 2020-11-24 stsp break;
5411 3dbaef42 2020-11-24 stsp case 'C':
5412 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5413 3dbaef42 2020-11-24 stsp &errstr);
5414 3dbaef42 2020-11-24 stsp if (errstr != NULL)
5415 8f666e67 2022-02-12 thomas errx(1, "number of context lines is %s: %s",
5416 8f666e67 2022-02-12 thomas errstr, errstr);
5417 64453f7e 2020-11-21 stsp break;
5418 09b5bff8 2020-02-23 naddy case 'r':
5419 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
5420 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
5421 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
5422 09b5bff8 2020-02-23 naddy optarg);
5423 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
5424 09b5bff8 2020-02-23 naddy break;
5425 3dbaef42 2020-11-24 stsp case 'w':
5426 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
5427 3dbaef42 2020-11-24 stsp break;
5428 26ed57b2 2018-05-19 stsp default:
5429 17020d27 2019-03-07 stsp usage_diff();
5430 26ed57b2 2018-05-19 stsp /* NOTREACHED */
5431 26ed57b2 2018-05-19 stsp }
5432 26ed57b2 2018-05-19 stsp }
5433 26ed57b2 2018-05-19 stsp
5434 26ed57b2 2018-05-19 stsp argc -= optind;
5435 26ed57b2 2018-05-19 stsp argv += optind;
5436 26ed57b2 2018-05-19 stsp
5437 26ed57b2 2018-05-19 stsp if (argc == 0) {
5438 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
5439 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
5440 15a94983 2018-12-23 stsp id_str1 = argv[0];
5441 15a94983 2018-12-23 stsp id_str2 = argv[1];
5442 26ed57b2 2018-05-19 stsp } else
5443 26ed57b2 2018-05-19 stsp usage_diff();
5444 eb6600df 2019-01-04 stsp
5445 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
5446 7cd52833 2022-06-23 thomas if (error)
5447 7cd52833 2022-06-23 thomas goto done;
5448 7cd52833 2022-06-23 thomas
5449 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
5450 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5451 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5452 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5453 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5454 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5455 c156c7a4 2020-12-18 stsp goto done;
5456 a273ac94 2020-02-23 naddy if (worktree)
5457 a273ac94 2020-02-23 naddy repo_path =
5458 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
5459 a273ac94 2020-02-23 naddy else
5460 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
5461 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5462 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5463 c156c7a4 2020-12-18 stsp goto done;
5464 c156c7a4 2020-12-18 stsp }
5465 a273ac94 2020-02-23 naddy }
5466 a273ac94 2020-02-23 naddy
5467 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5468 eb6600df 2019-01-04 stsp if (error)
5469 eb6600df 2019-01-04 stsp goto done;
5470 26ed57b2 2018-05-19 stsp
5471 a273ac94 2020-02-23 naddy init_curses();
5472 a273ac94 2020-02-23 naddy
5473 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5474 51a10b52 2020-12-26 stsp if (error)
5475 51a10b52 2020-12-26 stsp goto done;
5476 51a10b52 2020-12-26 stsp
5477 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
5478 26ed57b2 2018-05-19 stsp if (error)
5479 26ed57b2 2018-05-19 stsp goto done;
5480 26ed57b2 2018-05-19 stsp
5481 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
5482 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5483 26ed57b2 2018-05-19 stsp if (error)
5484 26ed57b2 2018-05-19 stsp goto done;
5485 26ed57b2 2018-05-19 stsp
5486 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
5487 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5488 26ed57b2 2018-05-19 stsp if (error)
5489 26ed57b2 2018-05-19 stsp goto done;
5490 26ed57b2 2018-05-19 stsp
5491 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5492 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
5493 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5494 ea5e7bb5 2018-08-01 stsp goto done;
5495 ea5e7bb5 2018-08-01 stsp }
5496 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5497 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
5498 5dc9f4bc 2018-08-04 stsp if (error)
5499 5dc9f4bc 2018-08-04 stsp goto done;
5500 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5501 26ed57b2 2018-05-19 stsp done:
5502 3dbaef42 2020-11-24 stsp free(label1);
5503 3dbaef42 2020-11-24 stsp free(label2);
5504 c02c541e 2019-03-29 stsp free(repo_path);
5505 a273ac94 2020-02-23 naddy free(cwd);
5506 1d0f4054 2021-06-17 stsp if (repo) {
5507 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5508 1d0f4054 2021-06-17 stsp if (error == NULL)
5509 1d0f4054 2021-06-17 stsp error = close_err;
5510 1d0f4054 2021-06-17 stsp }
5511 a273ac94 2020-02-23 naddy if (worktree)
5512 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
5513 7cd52833 2022-06-23 thomas if (pack_fds) {
5514 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
5515 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
5516 7cd52833 2022-06-23 thomas if (error == NULL)
5517 7cd52833 2022-06-23 thomas error = pack_err;
5518 7cd52833 2022-06-23 thomas }
5519 51a10b52 2020-12-26 stsp tog_free_refs();
5520 26ed57b2 2018-05-19 stsp return error;
5521 9f7d7167 2018-04-29 stsp }
5522 9f7d7167 2018-04-29 stsp
5523 4ed7e80c 2018-05-20 stsp __dead static void
5524 9f7d7167 2018-04-29 stsp usage_blame(void)
5525 9f7d7167 2018-04-29 stsp {
5526 80ddbec8 2018-04-29 stsp endwin();
5527 91198554 2022-06-23 thomas fprintf(stderr,
5528 91198554 2022-06-23 thomas "usage: %s blame [-c commit] [-r repository-path] path\n",
5529 9f7d7167 2018-04-29 stsp getprogname());
5530 9f7d7167 2018-04-29 stsp exit(1);
5531 9f7d7167 2018-04-29 stsp }
5532 84451b3e 2018-07-10 stsp
5533 84451b3e 2018-07-10 stsp struct tog_blame_line {
5534 84451b3e 2018-07-10 stsp int annotated;
5535 84451b3e 2018-07-10 stsp struct got_object_id *id;
5536 84451b3e 2018-07-10 stsp };
5537 9f7d7167 2018-04-29 stsp
5538 4ed7e80c 2018-05-20 stsp static const struct got_error *
5539 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
5540 84451b3e 2018-07-10 stsp {
5541 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5542 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5543 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
5544 84451b3e 2018-07-10 stsp const struct got_error *err;
5545 923086fd 2022-06-23 thomas int lineno = 0, nprinted = 0;
5546 826082fe 2020-12-10 stsp char *line = NULL;
5547 826082fe 2020-12-10 stsp size_t linesize = 0;
5548 826082fe 2020-12-10 stsp ssize_t linelen;
5549 84451b3e 2018-07-10 stsp wchar_t *wline;
5550 27a741e5 2019-09-11 stsp int width;
5551 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
5552 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
5553 ab089a2a 2018-07-12 stsp char *id_str;
5554 11b20872 2019-11-08 stsp struct tog_color *tc;
5555 ab089a2a 2018-07-12 stsp
5556 ec242592 2022-04-22 thomas err = got_object_id_str(&id_str, &s->blamed_commit->id);
5557 ab089a2a 2018-07-12 stsp if (err)
5558 ab089a2a 2018-07-12 stsp return err;
5559 84451b3e 2018-07-10 stsp
5560 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
5561 f7d12f7e 2018-08-01 stsp werase(view->window);
5562 84451b3e 2018-07-10 stsp
5563 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
5564 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5565 ab089a2a 2018-07-12 stsp free(id_str);
5566 ab089a2a 2018-07-12 stsp return err;
5567 ab089a2a 2018-07-12 stsp }
5568 ab089a2a 2018-07-12 stsp
5569 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5570 ab089a2a 2018-07-12 stsp free(line);
5571 2550e4c3 2018-07-13 stsp line = NULL;
5572 1cae65b4 2019-09-22 stsp if (err)
5573 1cae65b4 2019-09-22 stsp return err;
5574 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5575 a3404814 2018-09-02 stsp wstandout(view->window);
5576 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5577 11b20872 2019-11-08 stsp if (tc)
5578 86f4aab9 2022-09-09 thomas wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
5579 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5580 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
5581 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
5582 11b20872 2019-11-08 stsp if (tc)
5583 86f4aab9 2022-09-09 thomas wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
5584 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5585 a3404814 2018-09-02 stsp wstandend(view->window);
5586 2550e4c3 2018-07-13 stsp free(wline);
5587 2550e4c3 2018-07-13 stsp wline = NULL;
5588 ab089a2a 2018-07-12 stsp
5589 07dd3ed3 2022-08-06 thomas if (view->gline > blame->nlines)
5590 07dd3ed3 2022-08-06 thomas view->gline = blame->nlines;
5591 07dd3ed3 2022-08-06 thomas
5592 07dd3ed3 2022-08-06 thomas if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5593 4f7c3e5e 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5594 4f7c3e5e 2020-12-01 naddy s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5595 ab089a2a 2018-07-12 stsp free(id_str);
5596 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5597 ab089a2a 2018-07-12 stsp }
5598 ab089a2a 2018-07-12 stsp free(id_str);
5599 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5600 3f60a8ef 2018-07-10 stsp free(line);
5601 2550e4c3 2018-07-13 stsp line = NULL;
5602 3f60a8ef 2018-07-10 stsp if (err)
5603 3f60a8ef 2018-07-10 stsp return err;
5604 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5605 2550e4c3 2018-07-13 stsp free(wline);
5606 2550e4c3 2018-07-13 stsp wline = NULL;
5607 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5608 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5609 3f60a8ef 2018-07-10 stsp
5610 4f7c3e5e 2020-12-01 naddy s->eof = 0;
5611 05171be4 2022-06-23 thomas view->maxx = 0;
5612 4f7c3e5e 2020-12-01 naddy while (nprinted < view->nlines - 2) {
5613 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, blame->f);
5614 826082fe 2020-12-10 stsp if (linelen == -1) {
5615 826082fe 2020-12-10 stsp if (feof(blame->f)) {
5616 826082fe 2020-12-10 stsp s->eof = 1;
5617 826082fe 2020-12-10 stsp break;
5618 826082fe 2020-12-10 stsp }
5619 84451b3e 2018-07-10 stsp free(line);
5620 826082fe 2020-12-10 stsp return got_ferror(blame->f, GOT_ERR_IO);
5621 84451b3e 2018-07-10 stsp }
5622 826082fe 2020-12-10 stsp if (++lineno < s->first_displayed_line)
5623 07dd3ed3 2022-08-06 thomas continue;
5624 07dd3ed3 2022-08-06 thomas if (view->gline && !gotoline(view, &lineno, &nprinted))
5625 826082fe 2020-12-10 stsp continue;
5626 cbea3800 2022-06-23 thomas
5627 cbea3800 2022-06-23 thomas /* Set view->maxx based on full line length. */
5628 cbea3800 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5629 cbea3800 2022-06-23 thomas if (err) {
5630 cbea3800 2022-06-23 thomas free(line);
5631 cbea3800 2022-06-23 thomas return err;
5632 cbea3800 2022-06-23 thomas }
5633 cbea3800 2022-06-23 thomas free(wline);
5634 cbea3800 2022-06-23 thomas wline = NULL;
5635 cbea3800 2022-06-23 thomas view->maxx = MAX(view->maxx, width);
5636 84451b3e 2018-07-10 stsp
5637 4fc71f3b 2022-07-12 thomas if (nprinted == s->selected_line - 1)
5638 f7d12f7e 2018-08-01 stsp wstandout(view->window);
5639 b700b5d6 2018-07-10 stsp
5640 4f7c3e5e 2020-12-01 naddy if (blame->nlines > 0) {
5641 4f7c3e5e 2020-12-01 naddy blame_line = &blame->lines[lineno - 1];
5642 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
5643 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5644 4fc71f3b 2022-07-12 thomas !(nprinted == s->selected_line - 1)) {
5645 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5646 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
5647 8d0fe45a 2019-08-12 stsp char *id_str;
5648 91198554 2022-06-23 thomas err = got_object_id_str(&id_str,
5649 91198554 2022-06-23 thomas blame_line->id);
5650 8d0fe45a 2019-08-12 stsp if (err) {
5651 8d0fe45a 2019-08-12 stsp free(line);
5652 8d0fe45a 2019-08-12 stsp return err;
5653 8d0fe45a 2019-08-12 stsp }
5654 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5655 11b20872 2019-11-08 stsp if (tc)
5656 11b20872 2019-11-08 stsp wattr_on(view->window,
5657 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5658 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
5659 11b20872 2019-11-08 stsp if (tc)
5660 11b20872 2019-11-08 stsp wattr_off(view->window,
5661 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5662 8d0fe45a 2019-08-12 stsp free(id_str);
5663 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
5664 8d0fe45a 2019-08-12 stsp } else {
5665 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5666 8d0fe45a 2019-08-12 stsp prev_id = NULL;
5667 84451b3e 2018-07-10 stsp }
5668 ee41ec32 2018-07-10 stsp } else {
5669 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5670 ee41ec32 2018-07-10 stsp prev_id = NULL;
5671 ee41ec32 2018-07-10 stsp }
5672 84451b3e 2018-07-10 stsp
5673 4fc71f3b 2022-07-12 thomas if (nprinted == s->selected_line - 1)
5674 f7d12f7e 2018-08-01 stsp wstandend(view->window);
5675 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5676 27a741e5 2019-09-11 stsp
5677 41605754 2020-11-12 stsp if (view->ncols <= 9) {
5678 41605754 2020-11-12 stsp width = 9;
5679 4f7c3e5e 2020-12-01 naddy } else if (s->first_displayed_line + nprinted ==
5680 4f7c3e5e 2020-12-01 naddy s->matched_line &&
5681 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5682 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
5683 05171be4 2022-06-23 thomas view->window, view->x, regmatch);
5684 41605754 2020-11-12 stsp if (err) {
5685 41605754 2020-11-12 stsp free(line);
5686 41605754 2020-11-12 stsp return err;
5687 41605754 2020-11-12 stsp }
5688 41605754 2020-11-12 stsp width += 9;
5689 41605754 2020-11-12 stsp } else {
5690 923086fd 2022-06-23 thomas int skip;
5691 923086fd 2022-06-23 thomas err = format_line(&wline, &width, &skip, line,
5692 923086fd 2022-06-23 thomas view->x, view->ncols - 9, 9, 1);
5693 923086fd 2022-06-23 thomas if (err) {
5694 923086fd 2022-06-23 thomas free(line);
5695 923086fd 2022-06-23 thomas return err;
5696 05171be4 2022-06-23 thomas }
5697 923086fd 2022-06-23 thomas waddwstr(view->window, &wline[skip]);
5698 02bce7e2 2022-06-23 thomas width += 9;
5699 41605754 2020-11-12 stsp free(wline);
5700 41605754 2020-11-12 stsp wline = NULL;
5701 41605754 2020-11-12 stsp }
5702 41605754 2020-11-12 stsp
5703 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
5704 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
5705 84451b3e 2018-07-10 stsp if (++nprinted == 1)
5706 4f7c3e5e 2020-12-01 naddy s->first_displayed_line = lineno;
5707 84451b3e 2018-07-10 stsp }
5708 826082fe 2020-12-10 stsp free(line);
5709 4f7c3e5e 2020-12-01 naddy s->last_displayed_line = lineno;
5710 84451b3e 2018-07-10 stsp
5711 a5d43cac 2022-07-01 thomas view_border(view);
5712 84451b3e 2018-07-10 stsp
5713 84451b3e 2018-07-10 stsp return NULL;
5714 84451b3e 2018-07-10 stsp }
5715 84451b3e 2018-07-10 stsp
5716 84451b3e 2018-07-10 stsp static const struct got_error *
5717 10f173fe 2022-04-16 thomas blame_cb(void *arg, int nlines, int lineno,
5718 10f173fe 2022-04-16 thomas struct got_commit_object *commit, struct got_object_id *id)
5719 84451b3e 2018-07-10 stsp {
5720 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
5721 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
5722 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
5723 1a76625f 2018-10-22 stsp int errcode;
5724 84451b3e 2018-07-10 stsp
5725 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
5726 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
5727 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
5728 84451b3e 2018-07-10 stsp
5729 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5730 1a76625f 2018-10-22 stsp if (errcode)
5731 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
5732 84451b3e 2018-07-10 stsp
5733 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
5734 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
5735 d68a0a7d 2018-07-10 stsp goto done;
5736 d68a0a7d 2018-07-10 stsp }
5737 d68a0a7d 2018-07-10 stsp
5738 d68a0a7d 2018-07-10 stsp if (lineno == -1)
5739 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
5740 d68a0a7d 2018-07-10 stsp
5741 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
5742 d68a0a7d 2018-07-10 stsp if (line->annotated)
5743 d68a0a7d 2018-07-10 stsp goto done;
5744 d68a0a7d 2018-07-10 stsp
5745 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
5746 84451b3e 2018-07-10 stsp if (line->id == NULL) {
5747 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5748 84451b3e 2018-07-10 stsp goto done;
5749 84451b3e 2018-07-10 stsp }
5750 84451b3e 2018-07-10 stsp line->annotated = 1;
5751 84451b3e 2018-07-10 stsp done:
5752 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5753 1a76625f 2018-10-22 stsp if (errcode)
5754 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5755 84451b3e 2018-07-10 stsp return err;
5756 84451b3e 2018-07-10 stsp }
5757 84451b3e 2018-07-10 stsp
5758 84451b3e 2018-07-10 stsp static void *
5759 84451b3e 2018-07-10 stsp blame_thread(void *arg)
5760 84451b3e 2018-07-10 stsp {
5761 1d0f4054 2021-06-17 stsp const struct got_error *err, *close_err;
5762 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
5763 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
5764 9117a7b7 2022-07-01 thomas int errcode, fd1 = -1, fd2 = -1;
5765 9117a7b7 2022-07-01 thomas FILE *f1 = NULL, *f2 = NULL;
5766 00a8878e 2022-07-01 thomas
5767 9117a7b7 2022-07-01 thomas fd1 = got_opentempfd();
5768 9117a7b7 2022-07-01 thomas if (fd1 == -1)
5769 00a8878e 2022-07-01 thomas return (void *)got_error_from_errno("got_opentempfd");
5770 9117a7b7 2022-07-01 thomas
5771 9117a7b7 2022-07-01 thomas fd2 = got_opentempfd();
5772 9117a7b7 2022-07-01 thomas if (fd2 == -1) {
5773 9117a7b7 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
5774 9117a7b7 2022-07-01 thomas goto done;
5775 9117a7b7 2022-07-01 thomas }
5776 18430de3 2018-07-10 stsp
5777 9117a7b7 2022-07-01 thomas f1 = got_opentemp();
5778 9117a7b7 2022-07-01 thomas if (f1 == NULL) {
5779 9117a7b7 2022-07-01 thomas err = (void *)got_error_from_errno("got_opentemp");
5780 9117a7b7 2022-07-01 thomas goto done;
5781 9117a7b7 2022-07-01 thomas }
5782 9117a7b7 2022-07-01 thomas f2 = got_opentemp();
5783 9117a7b7 2022-07-01 thomas if (f2 == NULL) {
5784 9117a7b7 2022-07-01 thomas err = (void *)got_error_from_errno("got_opentemp");
5785 9117a7b7 2022-07-01 thomas goto done;
5786 9117a7b7 2022-07-01 thomas }
5787 9117a7b7 2022-07-01 thomas
5788 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
5789 61266923 2020-01-14 stsp if (err)
5790 9117a7b7 2022-07-01 thomas goto done;
5791 61266923 2020-01-14 stsp
5792 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
5793 adf4c9e0 2022-07-03 thomas tog_diff_algo, blame_cb, ta->cb_args,
5794 25ec7006 2022-07-01 thomas ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5795 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
5796 fc06ba56 2019-08-22 stsp err = NULL;
5797 18430de3 2018-07-10 stsp
5798 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5799 9117a7b7 2022-07-01 thomas if (errcode) {
5800 9117a7b7 2022-07-01 thomas err = got_error_set_errno(errcode, "pthread_mutex_lock");
5801 9117a7b7 2022-07-01 thomas goto done;
5802 9117a7b7 2022-07-01 thomas }
5803 18430de3 2018-07-10 stsp
5804 1d0f4054 2021-06-17 stsp close_err = got_repo_close(ta->repo);
5805 1d0f4054 2021-06-17 stsp if (err == NULL)
5806 1d0f4054 2021-06-17 stsp err = close_err;
5807 c9beca56 2018-07-22 stsp ta->repo = NULL;
5808 c9beca56 2018-07-22 stsp *ta->complete = 1;
5809 18430de3 2018-07-10 stsp
5810 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5811 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
5812 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5813 18430de3 2018-07-10 stsp
5814 9117a7b7 2022-07-01 thomas done:
5815 9117a7b7 2022-07-01 thomas if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5816 00a8878e 2022-07-01 thomas err = got_error_from_errno("close");
5817 9117a7b7 2022-07-01 thomas if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5818 9117a7b7 2022-07-01 thomas err = got_error_from_errno("close");
5819 9117a7b7 2022-07-01 thomas if (f1 && fclose(f1) == EOF && err == NULL)
5820 9117a7b7 2022-07-01 thomas err = got_error_from_errno("fclose");
5821 9117a7b7 2022-07-01 thomas if (f2 && fclose(f2) == EOF && err == NULL)
5822 9117a7b7 2022-07-01 thomas err = got_error_from_errno("fclose");
5823 00a8878e 2022-07-01 thomas
5824 18430de3 2018-07-10 stsp return (void *)err;
5825 84451b3e 2018-07-10 stsp }
5826 84451b3e 2018-07-10 stsp
5827 245d91c1 2018-07-12 stsp static struct got_object_id *
5828 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5829 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
5830 245d91c1 2018-07-12 stsp {
5831 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
5832 8d0fe45a 2019-08-12 stsp
5833 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
5834 8d0fe45a 2019-08-12 stsp return NULL;
5835 b880a918 2018-07-10 stsp
5836 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
5837 4fc71f3b 2022-07-12 thomas if (!line->annotated)
5838 4fc71f3b 2022-07-12 thomas return NULL;
5839 4fc71f3b 2022-07-12 thomas
5840 4fc71f3b 2022-07-12 thomas return line->id;
5841 4fc71f3b 2022-07-12 thomas }
5842 4fc71f3b 2022-07-12 thomas
5843 4fc71f3b 2022-07-12 thomas static struct got_object_id *
5844 4fc71f3b 2022-07-12 thomas get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5845 4fc71f3b 2022-07-12 thomas int lineno)
5846 4fc71f3b 2022-07-12 thomas {
5847 4fc71f3b 2022-07-12 thomas struct tog_blame_line *line;
5848 4fc71f3b 2022-07-12 thomas
5849 4fc71f3b 2022-07-12 thomas if (nlines <= 0 || lineno >= nlines)
5850 4fc71f3b 2022-07-12 thomas return NULL;
5851 4fc71f3b 2022-07-12 thomas
5852 4fc71f3b 2022-07-12 thomas line = &lines[lineno - 1];
5853 245d91c1 2018-07-12 stsp if (!line->annotated)
5854 245d91c1 2018-07-12 stsp return NULL;
5855 245d91c1 2018-07-12 stsp
5856 245d91c1 2018-07-12 stsp return line->id;
5857 b880a918 2018-07-10 stsp }
5858 245d91c1 2018-07-12 stsp
5859 b880a918 2018-07-10 stsp static const struct got_error *
5860 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
5861 a70480e0 2018-06-23 stsp {
5862 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
5863 245d91c1 2018-07-12 stsp int i;
5864 245d91c1 2018-07-12 stsp
5865 245d91c1 2018-07-12 stsp if (blame->thread) {
5866 1a76625f 2018-10-22 stsp int errcode;
5867 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5868 1a76625f 2018-10-22 stsp if (errcode)
5869 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5870 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
5871 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
5872 1a76625f 2018-10-22 stsp if (errcode)
5873 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
5874 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5875 1a76625f 2018-10-22 stsp if (errcode)
5876 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5877 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
5878 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
5879 245d91c1 2018-07-12 stsp err = NULL;
5880 dd038bc6 2021-09-21 thomas.ad blame->thread = 0; //NULL;
5881 245d91c1 2018-07-12 stsp }
5882 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
5883 1d0f4054 2021-06-17 stsp const struct got_error *close_err;
5884 1d0f4054 2021-06-17 stsp close_err = got_repo_close(blame->thread_args.repo);
5885 1d0f4054 2021-06-17 stsp if (err == NULL)
5886 1d0f4054 2021-06-17 stsp err = close_err;
5887 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
5888 245d91c1 2018-07-12 stsp }
5889 245d91c1 2018-07-12 stsp if (blame->f) {
5890 56b63ca4 2021-01-22 stsp if (fclose(blame->f) == EOF && err == NULL)
5891 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
5892 245d91c1 2018-07-12 stsp blame->f = NULL;
5893 245d91c1 2018-07-12 stsp }
5894 57670559 2018-12-23 stsp if (blame->lines) {
5895 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
5896 57670559 2018-12-23 stsp free(blame->lines[i].id);
5897 57670559 2018-12-23 stsp free(blame->lines);
5898 57670559 2018-12-23 stsp blame->lines = NULL;
5899 57670559 2018-12-23 stsp }
5900 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
5901 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
5902 7cd52833 2022-06-23 thomas if (blame->pack_fds) {
5903 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
5904 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(blame->pack_fds);
5905 7cd52833 2022-06-23 thomas if (err == NULL)
5906 7cd52833 2022-06-23 thomas err = pack_err;
5907 ece63358 2022-06-23 thomas blame->pack_fds = NULL;
5908 7cd52833 2022-06-23 thomas }
5909 245d91c1 2018-07-12 stsp return err;
5910 245d91c1 2018-07-12 stsp }
5911 245d91c1 2018-07-12 stsp
5912 245d91c1 2018-07-12 stsp static const struct got_error *
5913 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
5914 fc06ba56 2019-08-22 stsp {
5915 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
5916 fc06ba56 2019-08-22 stsp int *done = arg;
5917 fc06ba56 2019-08-22 stsp int errcode;
5918 fc06ba56 2019-08-22 stsp
5919 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5920 fc06ba56 2019-08-22 stsp if (errcode)
5921 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5922 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
5923 fc06ba56 2019-08-22 stsp
5924 fc06ba56 2019-08-22 stsp if (*done)
5925 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
5926 fc06ba56 2019-08-22 stsp
5927 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&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_lock");
5931 fc06ba56 2019-08-22 stsp
5932 fc06ba56 2019-08-22 stsp return err;
5933 fc06ba56 2019-08-22 stsp }
5934 fc06ba56 2019-08-22 stsp
5935 fc06ba56 2019-08-22 stsp static const struct got_error *
5936 a5388363 2020-12-01 naddy run_blame(struct tog_view *view)
5937 245d91c1 2018-07-12 stsp {
5938 a5388363 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5939 a5388363 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5940 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
5941 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
5942 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
5943 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
5944 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
5945 f4ae6ddb 2022-07-01 thomas int obj_type, fd = -1;
5946 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
5947 a70480e0 2018-06-23 stsp
5948 945f9229 2022-04-16 thomas err = got_object_open_as_commit(&commit, s->repo,
5949 ec242592 2022-04-22 thomas &s->blamed_commit->id);
5950 27d434c2 2018-09-15 stsp if (err)
5951 15a94983 2018-12-23 stsp return err;
5952 f4ae6ddb 2022-07-01 thomas
5953 f4ae6ddb 2022-07-01 thomas fd = got_opentempfd();
5954 f4ae6ddb 2022-07-01 thomas if (fd == -1) {
5955 f4ae6ddb 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
5956 f4ae6ddb 2022-07-01 thomas goto done;
5957 f4ae6ddb 2022-07-01 thomas }
5958 945f9229 2022-04-16 thomas
5959 945f9229 2022-04-16 thomas err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
5960 945f9229 2022-04-16 thomas if (err)
5961 945f9229 2022-04-16 thomas goto done;
5962 27d434c2 2018-09-15 stsp
5963 a5388363 2020-12-01 naddy err = got_object_get_type(&obj_type, s->repo, obj_id);
5964 84451b3e 2018-07-10 stsp if (err)
5965 84451b3e 2018-07-10 stsp goto done;
5966 27d434c2 2018-09-15 stsp
5967 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
5968 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5969 84451b3e 2018-07-10 stsp goto done;
5970 84451b3e 2018-07-10 stsp }
5971 a70480e0 2018-06-23 stsp
5972 f4ae6ddb 2022-07-01 thomas err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
5973 a70480e0 2018-06-23 stsp if (err)
5974 a70480e0 2018-06-23 stsp goto done;
5975 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
5976 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
5977 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
5978 84451b3e 2018-07-10 stsp goto done;
5979 84451b3e 2018-07-10 stsp }
5980 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
5981 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
5982 1fddf795 2021-01-20 stsp if (err)
5983 1fddf795 2021-01-20 stsp goto done;
5984 1fddf795 2021-01-20 stsp if (blame->nlines == 0) {
5985 1fddf795 2021-01-20 stsp s->blame_complete = 1;
5986 84451b3e 2018-07-10 stsp goto done;
5987 1fddf795 2021-01-20 stsp }
5988 b02560ec 2019-08-19 stsp
5989 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
5990 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
5991 b02560ec 2019-08-19 stsp blame->nlines--;
5992 a70480e0 2018-06-23 stsp
5993 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
5994 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
5995 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
5996 84451b3e 2018-07-10 stsp goto done;
5997 84451b3e 2018-07-10 stsp }
5998 a70480e0 2018-06-23 stsp
5999 7cd52833 2022-06-23 thomas err = got_repo_pack_fds_open(&pack_fds);
6000 bd24772e 2018-07-11 stsp if (err)
6001 bd24772e 2018-07-11 stsp goto done;
6002 7cd52833 2022-06-23 thomas err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6003 7cd52833 2022-06-23 thomas pack_fds);
6004 7cd52833 2022-06-23 thomas if (err)
6005 7cd52833 2022-06-23 thomas goto done;
6006 bd24772e 2018-07-11 stsp
6007 7cd52833 2022-06-23 thomas blame->pack_fds = pack_fds;
6008 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
6009 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
6010 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
6011 ec242592 2022-04-22 thomas blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6012 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
6013 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
6014 245d91c1 2018-07-12 stsp goto done;
6015 245d91c1 2018-07-12 stsp }
6016 a5388363 2020-12-01 naddy blame->cb_args.quit = &s->done;
6017 245d91c1 2018-07-12 stsp
6018 a5388363 2020-12-01 naddy blame->thread_args.path = s->path;
6019 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
6020 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
6021 a5388363 2020-12-01 naddy blame->thread_args.complete = &s->blame_complete;
6022 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
6023 a5388363 2020-12-01 naddy blame->thread_args.cancel_arg = &s->done;
6024 a5388363 2020-12-01 naddy s->blame_complete = 0;
6025 f5a09613 2020-12-13 naddy
6026 f5a09613 2020-12-13 naddy if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6027 f5a09613 2020-12-13 naddy s->first_displayed_line = 1;
6028 f5a09613 2020-12-13 naddy s->last_displayed_line = view->nlines;
6029 f5a09613 2020-12-13 naddy s->selected_line = 1;
6030 f5a09613 2020-12-13 naddy }
6031 aa61903a 2021-12-31 thomas s->matched_line = 0;
6032 245d91c1 2018-07-12 stsp
6033 245d91c1 2018-07-12 stsp done:
6034 945f9229 2022-04-16 thomas if (commit)
6035 945f9229 2022-04-16 thomas got_object_commit_close(commit);
6036 f4ae6ddb 2022-07-01 thomas if (fd != -1 && close(fd) == -1 && err == NULL)
6037 f4ae6ddb 2022-07-01 thomas err = got_error_from_errno("close");
6038 245d91c1 2018-07-12 stsp if (blob)
6039 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
6040 27d434c2 2018-09-15 stsp free(obj_id);
6041 245d91c1 2018-07-12 stsp if (err)
6042 245d91c1 2018-07-12 stsp stop_blame(blame);
6043 245d91c1 2018-07-12 stsp return err;
6044 245d91c1 2018-07-12 stsp }
6045 245d91c1 2018-07-12 stsp
6046 245d91c1 2018-07-12 stsp static const struct got_error *
6047 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
6048 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6049 245d91c1 2018-07-12 stsp {
6050 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
6051 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6052 dbc6a6b6 2018-07-12 stsp
6053 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->blamed_commits);
6054 245d91c1 2018-07-12 stsp
6055 c4843652 2019-08-12 stsp s->path = strdup(path);
6056 c4843652 2019-08-12 stsp if (s->path == NULL)
6057 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
6058 c4843652 2019-08-12 stsp
6059 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6060 c4843652 2019-08-12 stsp if (err) {
6061 c4843652 2019-08-12 stsp free(s->path);
6062 7cbe629d 2018-08-04 stsp return err;
6063 c4843652 2019-08-12 stsp }
6064 245d91c1 2018-07-12 stsp
6065 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6066 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
6067 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
6068 fb2756b9 2018-08-04 stsp s->selected_line = 1;
6069 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
6070 fb2756b9 2018-08-04 stsp s->repo = repo;
6071 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
6072 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
6073 7cbe629d 2018-08-04 stsp
6074 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
6075 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
6076 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6077 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
6078 11b20872 2019-11-08 stsp if (err)
6079 11b20872 2019-11-08 stsp return err;
6080 11b20872 2019-11-08 stsp }
6081 11b20872 2019-11-08 stsp
6082 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
6083 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
6084 adf4c9e0 2022-07-03 thomas view->reset = reset_blame_view;
6085 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
6086 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
6087 2a7d3cd7 2022-09-17 thomas view->search_setup = search_setup_blame_view;
6088 fc2737d5 2022-09-15 thomas view->search_next = search_next_view_match;
6089 e5a0f69f 2018-08-18 stsp
6090 a5388363 2020-12-01 naddy return run_blame(view);
6091 7cbe629d 2018-08-04 stsp }
6092 7cbe629d 2018-08-04 stsp
6093 e5a0f69f 2018-08-18 stsp static const struct got_error *
6094 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
6095 7cbe629d 2018-08-04 stsp {
6096 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6097 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6098 7cbe629d 2018-08-04 stsp
6099 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
6100 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
6101 e5a0f69f 2018-08-18 stsp
6102 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&s->blamed_commits)) {
6103 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
6104 dbdddfee 2021-06-23 naddy blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6105 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6106 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
6107 7cbe629d 2018-08-04 stsp }
6108 e5a0f69f 2018-08-18 stsp
6109 e5a0f69f 2018-08-18 stsp free(s->path);
6110 11b20872 2019-11-08 stsp free_colors(&s->colors);
6111 e5a0f69f 2018-08-18 stsp return err;
6112 7cbe629d 2018-08-04 stsp }
6113 7cbe629d 2018-08-04 stsp
6114 7cbe629d 2018-08-04 stsp static const struct got_error *
6115 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
6116 6c4c42e0 2019-06-24 stsp {
6117 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
6118 6c4c42e0 2019-06-24 stsp
6119 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
6120 6c4c42e0 2019-06-24 stsp return NULL;
6121 2a7d3cd7 2022-09-17 thomas }
6122 2a7d3cd7 2022-09-17 thomas
6123 2a7d3cd7 2022-09-17 thomas static void
6124 2a7d3cd7 2022-09-17 thomas search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6125 2a7d3cd7 2022-09-17 thomas size_t *nlines, int **first, int **last, int **match, int **selected)
6126 2a7d3cd7 2022-09-17 thomas {
6127 2a7d3cd7 2022-09-17 thomas struct tog_blame_view_state *s = &view->state.blame;
6128 2a7d3cd7 2022-09-17 thomas
6129 2a7d3cd7 2022-09-17 thomas *f = s->blame.f;
6130 2a7d3cd7 2022-09-17 thomas *nlines = s->blame.nlines;
6131 2a7d3cd7 2022-09-17 thomas *line_offsets = s->blame.line_offsets;
6132 2a7d3cd7 2022-09-17 thomas *match = &s->matched_line;
6133 2a7d3cd7 2022-09-17 thomas *first = &s->first_displayed_line;
6134 2a7d3cd7 2022-09-17 thomas *last = &s->last_displayed_line;
6135 2a7d3cd7 2022-09-17 thomas *selected = &s->selected_line;
6136 6c4c42e0 2019-06-24 stsp }
6137 6c4c42e0 2019-06-24 stsp
6138 6c4c42e0 2019-06-24 stsp static const struct got_error *
6139 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
6140 7cbe629d 2018-08-04 stsp {
6141 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6142 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
6143 2b380cc8 2018-10-24 stsp int errcode;
6144 2b380cc8 2018-10-24 stsp
6145 89a927a3 2021-09-21 thomas.ad if (s->blame.thread == 0 && !s->blame_complete) {
6146 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6147 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
6148 2b380cc8 2018-10-24 stsp if (errcode)
6149 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
6150 51fe7530 2019-08-19 stsp
6151 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
6152 2b380cc8 2018-10-24 stsp }
6153 e5a0f69f 2018-08-18 stsp
6154 51fe7530 2019-08-19 stsp if (s->blame_complete)
6155 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
6156 51fe7530 2019-08-19 stsp
6157 4f7c3e5e 2020-12-01 naddy err = draw_blame(view);
6158 e5a0f69f 2018-08-18 stsp
6159 a5d43cac 2022-07-01 thomas view_border(view);
6160 e5a0f69f 2018-08-18 stsp return err;
6161 e5a0f69f 2018-08-18 stsp }
6162 e5a0f69f 2018-08-18 stsp
6163 e5a0f69f 2018-08-18 stsp static const struct got_error *
6164 eaeaa612 2022-07-20 thomas log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6165 eaeaa612 2022-07-20 thomas struct got_repository *repo, struct got_object_id *id)
6166 eaeaa612 2022-07-20 thomas {
6167 eaeaa612 2022-07-20 thomas struct tog_view *log_view;
6168 eaeaa612 2022-07-20 thomas const struct got_error *err = NULL;
6169 eaeaa612 2022-07-20 thomas
6170 eaeaa612 2022-07-20 thomas *new_view = NULL;
6171 eaeaa612 2022-07-20 thomas
6172 eaeaa612 2022-07-20 thomas log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6173 eaeaa612 2022-07-20 thomas if (log_view == NULL)
6174 eaeaa612 2022-07-20 thomas return got_error_from_errno("view_open");
6175 eaeaa612 2022-07-20 thomas
6176 eaeaa612 2022-07-20 thomas err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
6177 eaeaa612 2022-07-20 thomas if (err)
6178 eaeaa612 2022-07-20 thomas view_close(log_view);
6179 eaeaa612 2022-07-20 thomas else
6180 eaeaa612 2022-07-20 thomas *new_view = log_view;
6181 eaeaa612 2022-07-20 thomas
6182 eaeaa612 2022-07-20 thomas return err;
6183 eaeaa612 2022-07-20 thomas }
6184 eaeaa612 2022-07-20 thomas
6185 eaeaa612 2022-07-20 thomas static const struct got_error *
6186 e78dc838 2020-12-04 stsp input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6187 e5a0f69f 2018-08-18 stsp {
6188 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
6189 2a31b33b 2022-07-23 thomas struct tog_view *diff_view;
6190 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6191 a5d43cac 2022-07-01 thomas int eos, nscroll, begin_y = 0, begin_x = 0;
6192 a5d43cac 2022-07-01 thomas
6193 a5d43cac 2022-07-01 thomas eos = nscroll = view->nlines - 2;
6194 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
6195 a5d43cac 2022-07-01 thomas --eos; /* border */
6196 7cbe629d 2018-08-04 stsp
6197 e5a0f69f 2018-08-18 stsp switch (ch) {
6198 05171be4 2022-06-23 thomas case '0':
6199 05171be4 2022-06-23 thomas view->x = 0;
6200 05171be4 2022-06-23 thomas break;
6201 05171be4 2022-06-23 thomas case '$':
6202 05171be4 2022-06-23 thomas view->x = MAX(view->maxx - view->ncols / 3, 0);
6203 07b0611c 2022-06-23 thomas view->count = 0;
6204 05171be4 2022-06-23 thomas break;
6205 05171be4 2022-06-23 thomas case KEY_RIGHT:
6206 05171be4 2022-06-23 thomas case 'l':
6207 05171be4 2022-06-23 thomas if (view->x + view->ncols / 3 < view->maxx)
6208 05171be4 2022-06-23 thomas view->x += 2; /* move two columns right */
6209 07b0611c 2022-06-23 thomas else
6210 07b0611c 2022-06-23 thomas view->count = 0;
6211 05171be4 2022-06-23 thomas break;
6212 05171be4 2022-06-23 thomas case KEY_LEFT:
6213 05171be4 2022-06-23 thomas case 'h':
6214 05171be4 2022-06-23 thomas view->x -= MIN(view->x, 2); /* move two columns back */
6215 07b0611c 2022-06-23 thomas if (view->x <= 0)
6216 07b0611c 2022-06-23 thomas view->count = 0;
6217 05171be4 2022-06-23 thomas break;
6218 1e37a5c2 2019-05-12 jcs case 'q':
6219 1e37a5c2 2019-05-12 jcs s->done = 1;
6220 4deef56f 2021-09-02 naddy break;
6221 4deef56f 2021-09-02 naddy case 'g':
6222 4deef56f 2021-09-02 naddy case KEY_HOME:
6223 4deef56f 2021-09-02 naddy s->selected_line = 1;
6224 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6225 07b0611c 2022-06-23 thomas view->count = 0;
6226 4deef56f 2021-09-02 naddy break;
6227 4deef56f 2021-09-02 naddy case 'G':
6228 4deef56f 2021-09-02 naddy case KEY_END:
6229 a5d43cac 2022-07-01 thomas if (s->blame.nlines < eos) {
6230 4deef56f 2021-09-02 naddy s->selected_line = s->blame.nlines;
6231 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6232 4deef56f 2021-09-02 naddy } else {
6233 a5d43cac 2022-07-01 thomas s->selected_line = eos;
6234 a5d43cac 2022-07-01 thomas s->first_displayed_line = s->blame.nlines - (eos - 1);
6235 4deef56f 2021-09-02 naddy }
6236 07b0611c 2022-06-23 thomas view->count = 0;
6237 1e37a5c2 2019-05-12 jcs break;
6238 1e37a5c2 2019-05-12 jcs case 'k':
6239 1e37a5c2 2019-05-12 jcs case KEY_UP:
6240 f7140bf5 2021-10-17 thomas case CTRL('p'):
6241 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
6242 1e37a5c2 2019-05-12 jcs s->selected_line--;
6243 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
6244 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
6245 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
6246 07b0611c 2022-06-23 thomas else
6247 07b0611c 2022-06-23 thomas view->count = 0;
6248 1e37a5c2 2019-05-12 jcs break;
6249 70f17a53 2022-06-13 thomas case CTRL('u'):
6250 23427b14 2022-06-23 thomas case 'u':
6251 70f17a53 2022-06-13 thomas nscroll /= 2;
6252 70f17a53 2022-06-13 thomas /* FALL THROUGH */
6253 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
6254 ea025d1d 2020-02-22 naddy case CTRL('b'):
6255 1c5e5faa 2022-06-23 thomas case 'b':
6256 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
6257 07b0611c 2022-06-23 thomas if (view->count > 1)
6258 07b0611c 2022-06-23 thomas nscroll += nscroll;
6259 70f17a53 2022-06-13 thomas s->selected_line = MAX(1, s->selected_line - nscroll);
6260 07b0611c 2022-06-23 thomas view->count = 0;
6261 e5a0f69f 2018-08-18 stsp break;
6262 1e37a5c2 2019-05-12 jcs }
6263 70f17a53 2022-06-13 thomas if (s->first_displayed_line > nscroll)
6264 70f17a53 2022-06-13 thomas s->first_displayed_line -= nscroll;
6265 1e37a5c2 2019-05-12 jcs else
6266 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
6267 1e37a5c2 2019-05-12 jcs break;
6268 1e37a5c2 2019-05-12 jcs case 'j':
6269 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
6270 f7140bf5 2021-10-17 thomas case CTRL('n'):
6271 a5d43cac 2022-07-01 thomas if (s->selected_line < eos && s->first_displayed_line +
6272 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
6273 1e37a5c2 2019-05-12 jcs s->selected_line++;
6274 a5d43cac 2022-07-01 thomas else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
6275 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
6276 07b0611c 2022-06-23 thomas else
6277 07b0611c 2022-06-23 thomas view->count = 0;
6278 1e37a5c2 2019-05-12 jcs break;
6279 1c5e5faa 2022-06-23 thomas case 'c':
6280 1e37a5c2 2019-05-12 jcs case 'p': {
6281 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6282 07b0611c 2022-06-23 thomas
6283 07b0611c 2022-06-23 thomas view->count = 0;
6284 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6285 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6286 1e37a5c2 2019-05-12 jcs if (id == NULL)
6287 e5a0f69f 2018-08-18 stsp break;
6288 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
6289 945f9229 2022-04-16 thomas struct got_commit_object *commit, *pcommit;
6290 15a94983 2018-12-23 stsp struct got_object_qid *pid;
6291 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
6292 1e37a5c2 2019-05-12 jcs int obj_type;
6293 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
6294 1e37a5c2 2019-05-12 jcs s->repo, id);
6295 e5a0f69f 2018-08-18 stsp if (err)
6296 e5a0f69f 2018-08-18 stsp break;
6297 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(
6298 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
6299 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
6300 15a94983 2018-12-23 stsp got_object_commit_close(commit);
6301 e5a0f69f 2018-08-18 stsp break;
6302 e5a0f69f 2018-08-18 stsp }
6303 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
6304 945f9229 2022-04-16 thomas err = got_object_open_as_commit(&pcommit,
6305 ec242592 2022-04-22 thomas s->repo, &pid->id);
6306 945f9229 2022-04-16 thomas if (err)
6307 945f9229 2022-04-16 thomas break;
6308 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
6309 945f9229 2022-04-16 thomas pcommit, s->path);
6310 945f9229 2022-04-16 thomas got_object_commit_close(pcommit);
6311 e5a0f69f 2018-08-18 stsp if (err) {
6312 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
6313 1e37a5c2 2019-05-12 jcs err = NULL;
6314 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6315 e5a0f69f 2018-08-18 stsp break;
6316 e5a0f69f 2018-08-18 stsp }
6317 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
6318 1e37a5c2 2019-05-12 jcs blob_id);
6319 1e37a5c2 2019-05-12 jcs free(blob_id);
6320 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
6321 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
6322 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6323 e5a0f69f 2018-08-18 stsp break;
6324 1e37a5c2 2019-05-12 jcs }
6325 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6326 ec242592 2022-04-22 thomas &pid->id);
6327 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6328 1e37a5c2 2019-05-12 jcs } else {
6329 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
6330 ec242592 2022-04-22 thomas &s->blamed_commit->id) == 0)
6331 1e37a5c2 2019-05-12 jcs break;
6332 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6333 1e37a5c2 2019-05-12 jcs id);
6334 1e37a5c2 2019-05-12 jcs }
6335 1e37a5c2 2019-05-12 jcs if (err)
6336 e5a0f69f 2018-08-18 stsp break;
6337 1e37a5c2 2019-05-12 jcs s->done = 1;
6338 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6339 1e37a5c2 2019-05-12 jcs s->done = 0;
6340 1e37a5c2 2019-05-12 jcs if (thread_err)
6341 1e37a5c2 2019-05-12 jcs break;
6342 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits,
6343 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
6344 a5388363 2020-12-01 naddy err = run_blame(view);
6345 1e37a5c2 2019-05-12 jcs if (err)
6346 1e37a5c2 2019-05-12 jcs break;
6347 1e37a5c2 2019-05-12 jcs break;
6348 1e37a5c2 2019-05-12 jcs }
6349 1c5e5faa 2022-06-23 thomas case 'C': {
6350 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
6351 07b0611c 2022-06-23 thomas
6352 07b0611c 2022-06-23 thomas view->count = 0;
6353 dbdddfee 2021-06-23 naddy first = STAILQ_FIRST(&s->blamed_commits);
6354 ec242592 2022-04-22 thomas if (!got_object_id_cmp(&first->id, s->commit_id))
6355 1e37a5c2 2019-05-12 jcs break;
6356 1e37a5c2 2019-05-12 jcs s->done = 1;
6357 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6358 1e37a5c2 2019-05-12 jcs s->done = 0;
6359 1e37a5c2 2019-05-12 jcs if (thread_err)
6360 1e37a5c2 2019-05-12 jcs break;
6361 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6362 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
6363 1e37a5c2 2019-05-12 jcs s->blamed_commit =
6364 dbdddfee 2021-06-23 naddy STAILQ_FIRST(&s->blamed_commits);
6365 a5388363 2020-12-01 naddy err = run_blame(view);
6366 1e37a5c2 2019-05-12 jcs if (err)
6367 1e37a5c2 2019-05-12 jcs break;
6368 1e37a5c2 2019-05-12 jcs break;
6369 1e37a5c2 2019-05-12 jcs }
6370 2a31b33b 2022-07-23 thomas case 'L':
6371 eaeaa612 2022-07-20 thomas view->count = 0;
6372 2a31b33b 2022-07-23 thomas s->id_to_log = get_selected_commit_id(s->blame.lines,
6373 2a31b33b 2022-07-23 thomas s->blame.nlines, s->first_displayed_line, s->selected_line);
6374 2a31b33b 2022-07-23 thomas if (s->id_to_log)
6375 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_LOG);
6376 eaeaa612 2022-07-20 thomas break;
6377 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
6378 1e37a5c2 2019-05-12 jcs case '\r': {
6379 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6380 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
6381 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
6382 07b0611c 2022-06-23 thomas
6383 07b0611c 2022-06-23 thomas view->count = 0;
6384 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6385 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6386 1e37a5c2 2019-05-12 jcs if (id == NULL)
6387 1e37a5c2 2019-05-12 jcs break;
6388 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
6389 1e37a5c2 2019-05-12 jcs if (err)
6390 1e37a5c2 2019-05-12 jcs break;
6391 a5d43cac 2022-07-01 thomas pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6392 4fc71f3b 2022-07-12 thomas if (*new_view) {
6393 4fc71f3b 2022-07-12 thomas /* traversed from diff view, release diff resources */
6394 4fc71f3b 2022-07-12 thomas err = close_diff_view(*new_view);
6395 4fc71f3b 2022-07-12 thomas if (err)
6396 4fc71f3b 2022-07-12 thomas break;
6397 4fc71f3b 2022-07-12 thomas diff_view = *new_view;
6398 4fc71f3b 2022-07-12 thomas } else {
6399 4fc71f3b 2022-07-12 thomas if (view_is_parent_view(view))
6400 4fc71f3b 2022-07-12 thomas view_get_split(view, &begin_y, &begin_x);
6401 a5d43cac 2022-07-01 thomas
6402 4fc71f3b 2022-07-12 thomas diff_view = view_open(0, 0, begin_y, begin_x,
6403 4fc71f3b 2022-07-12 thomas TOG_VIEW_DIFF);
6404 4fc71f3b 2022-07-12 thomas if (diff_view == NULL) {
6405 4fc71f3b 2022-07-12 thomas got_object_commit_close(commit);
6406 4fc71f3b 2022-07-12 thomas err = got_error_from_errno("view_open");
6407 4fc71f3b 2022-07-12 thomas break;
6408 4fc71f3b 2022-07-12 thomas }
6409 15a94983 2018-12-23 stsp }
6410 ec242592 2022-04-22 thomas err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6411 4fc71f3b 2022-07-12 thomas id, NULL, NULL, 3, 0, 0, view, s->repo);
6412 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6413 1e37a5c2 2019-05-12 jcs if (err) {
6414 1e37a5c2 2019-05-12 jcs view_close(diff_view);
6415 1e37a5c2 2019-05-12 jcs break;
6416 1e37a5c2 2019-05-12 jcs }
6417 4fc71f3b 2022-07-12 thomas s->last_diffed_line = s->first_displayed_line - 1 +
6418 4fc71f3b 2022-07-12 thomas s->selected_line;
6419 4fc71f3b 2022-07-12 thomas if (*new_view)
6420 4fc71f3b 2022-07-12 thomas break; /* still open from active diff view */
6421 444d5325 2022-07-03 thomas if (view_is_parent_view(view) &&
6422 444d5325 2022-07-03 thomas view->mode == TOG_VIEW_SPLIT_HRZN) {
6423 a5d43cac 2022-07-01 thomas err = view_init_hsplit(view, begin_y);
6424 a5d43cac 2022-07-01 thomas if (err)
6425 a5d43cac 2022-07-01 thomas break;
6426 a5d43cac 2022-07-01 thomas }
6427 a5d43cac 2022-07-01 thomas
6428 e78dc838 2020-12-04 stsp view->focussed = 0;
6429 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
6430 a5d43cac 2022-07-01 thomas diff_view->mode = view->mode;
6431 a5d43cac 2022-07-01 thomas diff_view->nlines = view->lines - begin_y;
6432 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
6433 53d2bdd3 2022-07-10 thomas view_transfer_size(diff_view, view);
6434 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
6435 1e37a5c2 2019-05-12 jcs if (err)
6436 34bc9ec9 2019-02-22 stsp break;
6437 40236d76 2022-06-23 thomas err = view_set_child(view, diff_view);
6438 40236d76 2022-06-23 thomas if (err)
6439 40236d76 2022-06-23 thomas break;
6440 e78dc838 2020-12-04 stsp view->focus_child = 1;
6441 1e37a5c2 2019-05-12 jcs } else
6442 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
6443 1e37a5c2 2019-05-12 jcs if (err)
6444 e5a0f69f 2018-08-18 stsp break;
6445 1e37a5c2 2019-05-12 jcs break;
6446 1e37a5c2 2019-05-12 jcs }
6447 70f17a53 2022-06-13 thomas case CTRL('d'):
6448 23427b14 2022-06-23 thomas case 'd':
6449 70f17a53 2022-06-13 thomas nscroll /= 2;
6450 70f17a53 2022-06-13 thomas /* FALL THROUGH */
6451 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
6452 ea025d1d 2020-02-22 naddy case CTRL('f'):
6453 1c5e5faa 2022-06-23 thomas case 'f':
6454 1e37a5c2 2019-05-12 jcs case ' ':
6455 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6456 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
6457 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
6458 07b0611c 2022-06-23 thomas view->count = 0;
6459 e5a0f69f 2018-08-18 stsp break;
6460 1e37a5c2 2019-05-12 jcs }
6461 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6462 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
6463 70f17a53 2022-06-13 thomas s->selected_line +=
6464 70f17a53 2022-06-13 thomas MIN(nscroll, s->last_displayed_line -
6465 70f17a53 2022-06-13 thomas s->first_displayed_line - s->selected_line + 1);
6466 1e37a5c2 2019-05-12 jcs }
6467 70f17a53 2022-06-13 thomas if (s->last_displayed_line + nscroll <= s->blame.nlines)
6468 70f17a53 2022-06-13 thomas s->first_displayed_line += nscroll;
6469 1e37a5c2 2019-05-12 jcs else
6470 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
6471 70f17a53 2022-06-13 thomas s->blame.nlines - (view->nlines - 3);
6472 1e37a5c2 2019-05-12 jcs break;
6473 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
6474 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
6475 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
6476 1e37a5c2 2019-05-12 jcs view->nlines - 2);
6477 1e37a5c2 2019-05-12 jcs }
6478 1e37a5c2 2019-05-12 jcs break;
6479 1e37a5c2 2019-05-12 jcs default:
6480 07b0611c 2022-06-23 thomas view->count = 0;
6481 1e37a5c2 2019-05-12 jcs break;
6482 a70480e0 2018-06-23 stsp }
6483 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
6484 adf4c9e0 2022-07-03 thomas }
6485 adf4c9e0 2022-07-03 thomas
6486 adf4c9e0 2022-07-03 thomas static const struct got_error *
6487 adf4c9e0 2022-07-03 thomas reset_blame_view(struct tog_view *view)
6488 adf4c9e0 2022-07-03 thomas {
6489 adf4c9e0 2022-07-03 thomas const struct got_error *err;
6490 adf4c9e0 2022-07-03 thomas struct tog_blame_view_state *s = &view->state.blame;
6491 adf4c9e0 2022-07-03 thomas
6492 adf4c9e0 2022-07-03 thomas view->count = 0;
6493 adf4c9e0 2022-07-03 thomas s->done = 1;
6494 adf4c9e0 2022-07-03 thomas err = stop_blame(&s->blame);
6495 adf4c9e0 2022-07-03 thomas s->done = 0;
6496 adf4c9e0 2022-07-03 thomas if (err)
6497 adf4c9e0 2022-07-03 thomas return err;
6498 adf4c9e0 2022-07-03 thomas return run_blame(view);
6499 a70480e0 2018-06-23 stsp }
6500 a70480e0 2018-06-23 stsp
6501 a70480e0 2018-06-23 stsp static const struct got_error *
6502 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
6503 9f7d7167 2018-04-29 stsp {
6504 a70480e0 2018-06-23 stsp const struct got_error *error;
6505 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
6506 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
6507 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6508 0587e10c 2020-07-23 stsp char *link_target = NULL;
6509 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
6510 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
6511 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
6512 a70480e0 2018-06-23 stsp int ch;
6513 e1cd8fed 2018-08-01 stsp struct tog_view *view;
6514 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
6515 a70480e0 2018-06-23 stsp
6516 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6517 a70480e0 2018-06-23 stsp switch (ch) {
6518 a70480e0 2018-06-23 stsp case 'c':
6519 a70480e0 2018-06-23 stsp commit_id_str = optarg;
6520 a70480e0 2018-06-23 stsp break;
6521 69069811 2018-08-02 stsp case 'r':
6522 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
6523 69069811 2018-08-02 stsp if (repo_path == NULL)
6524 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6525 9ba1d308 2019-10-21 stsp optarg);
6526 69069811 2018-08-02 stsp break;
6527 a70480e0 2018-06-23 stsp default:
6528 17020d27 2019-03-07 stsp usage_blame();
6529 a70480e0 2018-06-23 stsp /* NOTREACHED */
6530 a70480e0 2018-06-23 stsp }
6531 a70480e0 2018-06-23 stsp }
6532 a70480e0 2018-06-23 stsp
6533 a70480e0 2018-06-23 stsp argc -= optind;
6534 a70480e0 2018-06-23 stsp argv += optind;
6535 a70480e0 2018-06-23 stsp
6536 f135c941 2020-02-20 stsp if (argc != 1)
6537 a70480e0 2018-06-23 stsp usage_blame();
6538 6962eb72 2020-02-20 stsp
6539 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
6540 7cd52833 2022-06-23 thomas if (error != NULL)
6541 7cd52833 2022-06-23 thomas goto done;
6542 7cd52833 2022-06-23 thomas
6543 69069811 2018-08-02 stsp if (repo_path == NULL) {
6544 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
6545 c156c7a4 2020-12-18 stsp if (cwd == NULL)
6546 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
6547 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
6548 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6549 c156c7a4 2020-12-18 stsp goto done;
6550 f135c941 2020-02-20 stsp if (worktree)
6551 eb41ed75 2019-02-05 stsp repo_path =
6552 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
6553 f135c941 2020-02-20 stsp else
6554 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
6555 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
6556 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
6557 c156c7a4 2020-12-18 stsp goto done;
6558 c156c7a4 2020-12-18 stsp }
6559 f135c941 2020-02-20 stsp }
6560 a915003a 2019-02-05 stsp
6561 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6562 c02c541e 2019-03-29 stsp if (error != NULL)
6563 8e94dd5b 2019-01-04 stsp goto done;
6564 69069811 2018-08-02 stsp
6565 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6566 f135c941 2020-02-20 stsp worktree);
6567 c02c541e 2019-03-29 stsp if (error)
6568 92205607 2019-01-04 stsp goto done;
6569 69069811 2018-08-02 stsp
6570 f135c941 2020-02-20 stsp init_curses();
6571 f135c941 2020-02-20 stsp
6572 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6573 51a10b52 2020-12-26 stsp if (error)
6574 51a10b52 2020-12-26 stsp goto done;
6575 51a10b52 2020-12-26 stsp
6576 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
6577 eb41ed75 2019-02-05 stsp if (error)
6578 69069811 2018-08-02 stsp goto done;
6579 a70480e0 2018-06-23 stsp
6580 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
6581 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
6582 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
6583 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6584 a70480e0 2018-06-23 stsp if (error != NULL)
6585 66b4983c 2018-06-23 stsp goto done;
6586 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
6587 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
6588 a70480e0 2018-06-23 stsp } else {
6589 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
6590 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6591 a70480e0 2018-06-23 stsp }
6592 a19e88aa 2018-06-23 stsp if (error != NULL)
6593 8b473291 2019-02-21 stsp goto done;
6594 8b473291 2019-02-21 stsp
6595 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6596 e1cd8fed 2018-08-01 stsp if (view == NULL) {
6597 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
6598 e1cd8fed 2018-08-01 stsp goto done;
6599 e1cd8fed 2018-08-01 stsp }
6600 0587e10c 2020-07-23 stsp
6601 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
6602 945f9229 2022-04-16 thomas if (error)
6603 945f9229 2022-04-16 thomas goto done;
6604 945f9229 2022-04-16 thomas
6605 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
6606 945f9229 2022-04-16 thomas commit, repo);
6607 7cbe629d 2018-08-04 stsp if (error)
6608 7cbe629d 2018-08-04 stsp goto done;
6609 0587e10c 2020-07-23 stsp
6610 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
6611 78756c87 2020-11-24 stsp commit_id, repo);
6612 0587e10c 2020-07-23 stsp if (error)
6613 0587e10c 2020-07-23 stsp goto done;
6614 12314ad4 2019-08-31 stsp if (worktree) {
6615 12314ad4 2019-08-31 stsp /* Release work tree lock. */
6616 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
6617 12314ad4 2019-08-31 stsp worktree = NULL;
6618 12314ad4 2019-08-31 stsp }
6619 e5a0f69f 2018-08-18 stsp error = view_loop(view);
6620 a70480e0 2018-06-23 stsp done:
6621 69069811 2018-08-02 stsp free(repo_path);
6622 f135c941 2020-02-20 stsp free(in_repo_path);
6623 0587e10c 2020-07-23 stsp free(link_target);
6624 69069811 2018-08-02 stsp free(cwd);
6625 a70480e0 2018-06-23 stsp free(commit_id);
6626 945f9229 2022-04-16 thomas if (commit)
6627 945f9229 2022-04-16 thomas got_object_commit_close(commit);
6628 eb41ed75 2019-02-05 stsp if (worktree)
6629 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
6630 1d0f4054 2021-06-17 stsp if (repo) {
6631 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6632 1d0f4054 2021-06-17 stsp if (error == NULL)
6633 1d0f4054 2021-06-17 stsp error = close_err;
6634 1d0f4054 2021-06-17 stsp }
6635 7cd52833 2022-06-23 thomas if (pack_fds) {
6636 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
6637 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
6638 7cd52833 2022-06-23 thomas if (error == NULL)
6639 7cd52833 2022-06-23 thomas error = pack_err;
6640 7cd52833 2022-06-23 thomas }
6641 51a10b52 2020-12-26 stsp tog_free_refs();
6642 a70480e0 2018-06-23 stsp return error;
6643 ffd1d5e5 2018-06-23 stsp }
6644 ffd1d5e5 2018-06-23 stsp
6645 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6646 d86d3b18 2020-12-01 naddy draw_tree_entries(struct tog_view *view, const char *parent_path)
6647 ffd1d5e5 2018-06-23 stsp {
6648 d86d3b18 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
6649 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6650 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
6651 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
6652 86f4aab9 2022-09-09 thomas char *index = NULL;
6653 f26dddb7 2019-11-08 stsp struct tog_color *tc;
6654 07dd3ed3 2022-08-06 thomas int width, n, nentries, i = 1;
6655 d86d3b18 2020-12-01 naddy int limit = view->nlines;
6656 ffd1d5e5 2018-06-23 stsp
6657 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
6658 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
6659 a5d43cac 2022-07-01 thomas --limit; /* border */
6660 ffd1d5e5 2018-06-23 stsp
6661 f7d12f7e 2018-08-01 stsp werase(view->window);
6662 ffd1d5e5 2018-06-23 stsp
6663 ffd1d5e5 2018-06-23 stsp if (limit == 0)
6664 ffd1d5e5 2018-06-23 stsp return NULL;
6665 ffd1d5e5 2018-06-23 stsp
6666 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6667 f91a2b48 2022-06-23 thomas 0, 0);
6668 ffd1d5e5 2018-06-23 stsp if (err)
6669 ffd1d5e5 2018-06-23 stsp return err;
6670 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6671 a3404814 2018-09-02 stsp wstandout(view->window);
6672 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6673 11b20872 2019-11-08 stsp if (tc)
6674 86f4aab9 2022-09-09 thomas wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6675 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6676 86f4aab9 2022-09-09 thomas free(wline);
6677 86f4aab9 2022-09-09 thomas wline = NULL;
6678 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
6679 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
6680 11b20872 2019-11-08 stsp if (tc)
6681 86f4aab9 2022-09-09 thomas wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6682 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6683 a3404814 2018-09-02 stsp wstandend(view->window);
6684 86f4aab9 2022-09-09 thomas if (--limit <= 0)
6685 86f4aab9 2022-09-09 thomas return NULL;
6686 07dd3ed3 2022-08-06 thomas
6687 6f5f393a 2022-08-12 thomas i += s->selected;
6688 6f5f393a 2022-08-12 thomas if (s->first_displayed_entry) {
6689 6f5f393a 2022-08-12 thomas i += got_tree_entry_get_index(s->first_displayed_entry);
6690 6f5f393a 2022-08-12 thomas if (s->tree != s->root)
6691 6f5f393a 2022-08-12 thomas ++i; /* account for ".." entry */
6692 07dd3ed3 2022-08-06 thomas }
6693 07dd3ed3 2022-08-06 thomas nentries = got_object_tree_get_nentries(s->tree);
6694 86f4aab9 2022-09-09 thomas if (asprintf(&index, "[%d/%d] %s",
6695 86f4aab9 2022-09-09 thomas i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
6696 86f4aab9 2022-09-09 thomas return got_error_from_errno("asprintf");
6697 86f4aab9 2022-09-09 thomas err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
6698 86f4aab9 2022-09-09 thomas free(index);
6699 ce52c690 2018-06-23 stsp if (err)
6700 ce52c690 2018-06-23 stsp return err;
6701 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6702 2550e4c3 2018-07-13 stsp free(wline);
6703 2550e4c3 2018-07-13 stsp wline = NULL;
6704 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6705 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6706 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6707 ffd1d5e5 2018-06-23 stsp return NULL;
6708 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6709 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
6710 a1eca9bb 2018-06-23 stsp return NULL;
6711 ffd1d5e5 2018-06-23 stsp
6712 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
6713 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
6714 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
6715 0cf4efb1 2018-09-29 stsp if (view->focussed)
6716 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6717 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
6718 ffd1d5e5 2018-06-23 stsp }
6719 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
6720 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
6721 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6722 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6723 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6724 ffd1d5e5 2018-06-23 stsp return NULL;
6725 ffd1d5e5 2018-06-23 stsp n = 1;
6726 ffd1d5e5 2018-06-23 stsp } else {
6727 ffd1d5e5 2018-06-23 stsp n = 0;
6728 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
6729 ffd1d5e5 2018-06-23 stsp }
6730 ffd1d5e5 2018-06-23 stsp
6731 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6732 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
6733 848d6979 2019-08-12 stsp const char *modestr = "";
6734 56e0773d 2019-11-28 stsp mode_t mode;
6735 1d13200f 2018-07-12 stsp
6736 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
6737 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
6738 56e0773d 2019-11-28 stsp
6739 d86d3b18 2020-12-01 naddy if (s->show_ids) {
6740 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
6741 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
6742 1d13200f 2018-07-12 stsp if (err)
6743 638f9024 2019-05-13 stsp return got_error_from_errno(
6744 230a42bd 2019-05-11 jcs "got_object_id_str");
6745 1d13200f 2018-07-12 stsp }
6746 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
6747 63c5ca5d 2019-08-24 stsp modestr = "$";
6748 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
6749 0d6c6ee3 2020-05-20 stsp int i;
6750 0d6c6ee3 2020-05-20 stsp
6751 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
6752 d86d3b18 2020-12-01 naddy te, s->repo);
6753 0d6c6ee3 2020-05-20 stsp if (err) {
6754 0d6c6ee3 2020-05-20 stsp free(id_str);
6755 0d6c6ee3 2020-05-20 stsp return err;
6756 0d6c6ee3 2020-05-20 stsp }
6757 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
6758 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
6759 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
6760 0d6c6ee3 2020-05-20 stsp }
6761 848d6979 2019-08-12 stsp modestr = "@";
6762 0d6c6ee3 2020-05-20 stsp }
6763 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
6764 848d6979 2019-08-12 stsp modestr = "/";
6765 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
6766 848d6979 2019-08-12 stsp modestr = "*";
6767 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6768 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
6769 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
6770 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
6771 1d13200f 2018-07-12 stsp free(id_str);
6772 0d6c6ee3 2020-05-20 stsp free(link_target);
6773 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
6774 1d13200f 2018-07-12 stsp }
6775 1d13200f 2018-07-12 stsp free(id_str);
6776 0d6c6ee3 2020-05-20 stsp free(link_target);
6777 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6778 f91a2b48 2022-06-23 thomas 0, 0);
6779 ffd1d5e5 2018-06-23 stsp if (err) {
6780 ffd1d5e5 2018-06-23 stsp free(line);
6781 ffd1d5e5 2018-06-23 stsp break;
6782 ffd1d5e5 2018-06-23 stsp }
6783 d86d3b18 2020-12-01 naddy if (n == s->selected) {
6784 0cf4efb1 2018-09-29 stsp if (view->focussed)
6785 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6786 d86d3b18 2020-12-01 naddy s->selected_entry = te;
6787 ffd1d5e5 2018-06-23 stsp }
6788 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
6789 f26dddb7 2019-11-08 stsp if (tc)
6790 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
6791 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6792 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6793 f26dddb7 2019-11-08 stsp if (tc)
6794 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
6795 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6796 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6797 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6798 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
6799 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6800 ffd1d5e5 2018-06-23 stsp free(line);
6801 2550e4c3 2018-07-13 stsp free(wline);
6802 2550e4c3 2018-07-13 stsp wline = NULL;
6803 ffd1d5e5 2018-06-23 stsp n++;
6804 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6805 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
6806 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6807 ffd1d5e5 2018-06-23 stsp break;
6808 ffd1d5e5 2018-06-23 stsp }
6809 ffd1d5e5 2018-06-23 stsp
6810 ffd1d5e5 2018-06-23 stsp return err;
6811 ffd1d5e5 2018-06-23 stsp }
6812 ffd1d5e5 2018-06-23 stsp
6813 ffd1d5e5 2018-06-23 stsp static void
6814 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6815 ffd1d5e5 2018-06-23 stsp {
6816 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6817 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
6818 fa86c4bf 2020-11-29 stsp int i = 0;
6819 ffd1d5e5 2018-06-23 stsp
6820 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
6821 ffd1d5e5 2018-06-23 stsp return;
6822 ffd1d5e5 2018-06-23 stsp
6823 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6824 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
6825 fa86c4bf 2020-11-29 stsp if (te == NULL) {
6826 fa86c4bf 2020-11-29 stsp if (!isroot)
6827 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
6828 fa86c4bf 2020-11-29 stsp break;
6829 fa86c4bf 2020-11-29 stsp }
6830 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
6831 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
6832 ffd1d5e5 2018-06-23 stsp }
6833 ffd1d5e5 2018-06-23 stsp }
6834 ffd1d5e5 2018-06-23 stsp
6835 a5d43cac 2022-07-01 thomas static const struct got_error *
6836 a5d43cac 2022-07-01 thomas tree_scroll_down(struct tog_view *view, int maxscroll)
6837 ffd1d5e5 2018-06-23 stsp {
6838 a5d43cac 2022-07-01 thomas struct tog_tree_view_state *s = &view->state.tree;
6839 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
6840 ffd1d5e5 2018-06-23 stsp int n = 0;
6841 ffd1d5e5 2018-06-23 stsp
6842 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
6843 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
6844 694d3271 2020-12-01 naddy s->first_displayed_entry);
6845 694d3271 2020-12-01 naddy else
6846 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
6847 56e0773d 2019-11-28 stsp
6848 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
6849 a5d43cac 2022-07-01 thomas while (next && n++ < maxscroll) {
6850 07dd3ed3 2022-08-06 thomas if (last) {
6851 07dd3ed3 2022-08-06 thomas s->last_displayed_entry = last;
6852 a5d43cac 2022-07-01 thomas last = got_tree_entry_get_next(s->tree, last);
6853 07dd3ed3 2022-08-06 thomas }
6854 a5d43cac 2022-07-01 thomas if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6855 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
6856 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
6857 768394f3 2019-01-24 stsp }
6858 ffd1d5e5 2018-06-23 stsp }
6859 a5d43cac 2022-07-01 thomas
6860 a5d43cac 2022-07-01 thomas return NULL;
6861 ffd1d5e5 2018-06-23 stsp }
6862 ffd1d5e5 2018-06-23 stsp
6863 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6864 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
6865 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
6866 ffd1d5e5 2018-06-23 stsp {
6867 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
6868 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
6869 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
6870 ffd1d5e5 2018-06-23 stsp
6871 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
6872 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
6873 56e0773d 2019-11-28 stsp + 1 /* slash */;
6874 ce52c690 2018-06-23 stsp if (te)
6875 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
6876 ce52c690 2018-06-23 stsp
6877 ce52c690 2018-06-23 stsp *path = calloc(1, len);
6878 ffd1d5e5 2018-06-23 stsp if (path == NULL)
6879 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
6880 ffd1d5e5 2018-06-23 stsp
6881 ce52c690 2018-06-23 stsp (*path)[0] = '/';
6882 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
6883 d9765a41 2018-06-23 stsp while (pt) {
6884 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
6885 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
6886 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6887 cb2ebc8a 2018-06-23 stsp goto done;
6888 cb2ebc8a 2018-06-23 stsp }
6889 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
6890 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6891 cb2ebc8a 2018-06-23 stsp goto done;
6892 cb2ebc8a 2018-06-23 stsp }
6893 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6894 ffd1d5e5 2018-06-23 stsp }
6895 ce52c690 2018-06-23 stsp if (te) {
6896 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6897 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6898 ce52c690 2018-06-23 stsp goto done;
6899 ce52c690 2018-06-23 stsp }
6900 cb2ebc8a 2018-06-23 stsp }
6901 ce52c690 2018-06-23 stsp done:
6902 ce52c690 2018-06-23 stsp if (err) {
6903 ce52c690 2018-06-23 stsp free(*path);
6904 ce52c690 2018-06-23 stsp *path = NULL;
6905 ce52c690 2018-06-23 stsp }
6906 ce52c690 2018-06-23 stsp return err;
6907 ce52c690 2018-06-23 stsp }
6908 ce52c690 2018-06-23 stsp
6909 ce52c690 2018-06-23 stsp static const struct got_error *
6910 a5d43cac 2022-07-01 thomas blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6911 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
6912 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6913 ce52c690 2018-06-23 stsp {
6914 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
6915 ce52c690 2018-06-23 stsp char *path;
6916 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
6917 a0de39f3 2019-08-09 stsp
6918 a0de39f3 2019-08-09 stsp *new_view = NULL;
6919 69efd4c4 2018-07-18 stsp
6920 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
6921 ce52c690 2018-06-23 stsp if (err)
6922 ce52c690 2018-06-23 stsp return err;
6923 ffd1d5e5 2018-06-23 stsp
6924 a5d43cac 2022-07-01 thomas blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
6925 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
6926 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
6927 83ce39e3 2019-08-12 stsp goto done;
6928 83ce39e3 2019-08-12 stsp }
6929 cdf1ee82 2018-08-01 stsp
6930 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
6931 e5a0f69f 2018-08-18 stsp if (err) {
6932 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
6933 fc06ba56 2019-08-22 stsp err = NULL;
6934 e5a0f69f 2018-08-18 stsp view_close(blame_view);
6935 e5a0f69f 2018-08-18 stsp } else
6936 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
6937 83ce39e3 2019-08-12 stsp done:
6938 83ce39e3 2019-08-12 stsp free(path);
6939 69efd4c4 2018-07-18 stsp return err;
6940 69efd4c4 2018-07-18 stsp }
6941 69efd4c4 2018-07-18 stsp
6942 69efd4c4 2018-07-18 stsp static const struct got_error *
6943 444d5325 2022-07-03 thomas log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6944 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
6945 69efd4c4 2018-07-18 stsp {
6946 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
6947 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
6948 69efd4c4 2018-07-18 stsp char *path;
6949 a0de39f3 2019-08-09 stsp
6950 a0de39f3 2019-08-09 stsp *new_view = NULL;
6951 69efd4c4 2018-07-18 stsp
6952 444d5325 2022-07-03 thomas log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6953 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
6954 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
6955 e5a0f69f 2018-08-18 stsp
6956 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
6957 69efd4c4 2018-07-18 stsp if (err)
6958 69efd4c4 2018-07-18 stsp return err;
6959 69efd4c4 2018-07-18 stsp
6960 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
6961 4e97c21c 2020-12-06 stsp path, 0);
6962 ba4f502b 2018-08-04 stsp if (err)
6963 e5a0f69f 2018-08-18 stsp view_close(log_view);
6964 e5a0f69f 2018-08-18 stsp else
6965 e5a0f69f 2018-08-18 stsp *new_view = log_view;
6966 cb2ebc8a 2018-06-23 stsp free(path);
6967 cb2ebc8a 2018-06-23 stsp return err;
6968 ffd1d5e5 2018-06-23 stsp }
6969 ffd1d5e5 2018-06-23 stsp
6970 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6971 bc573f3b 2021-07-10 stsp open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
6972 bc573f3b 2021-07-10 stsp const char *head_ref_name, struct got_repository *repo)
6973 ffd1d5e5 2018-06-23 stsp {
6974 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6975 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
6976 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6977 bc573f3b 2021-07-10 stsp struct got_commit_object *commit = NULL;
6978 ffd1d5e5 2018-06-23 stsp
6979 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
6980 bc573f3b 2021-07-10 stsp STAILQ_INIT(&s->colors);
6981 bc573f3b 2021-07-10 stsp
6982 bc573f3b 2021-07-10 stsp s->commit_id = got_object_id_dup(commit_id);
6983 bc573f3b 2021-07-10 stsp if (s->commit_id == NULL)
6984 bc573f3b 2021-07-10 stsp return got_error_from_errno("got_object_id_dup");
6985 ffd1d5e5 2018-06-23 stsp
6986 bc573f3b 2021-07-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6987 bc573f3b 2021-07-10 stsp if (err)
6988 bc573f3b 2021-07-10 stsp goto done;
6989 bc573f3b 2021-07-10 stsp
6990 bc573f3b 2021-07-10 stsp /*
6991 bc573f3b 2021-07-10 stsp * The root is opened here and will be closed when the view is closed.
6992 bc573f3b 2021-07-10 stsp * Any visited subtrees and their path-wise parents are opened and
6993 bc573f3b 2021-07-10 stsp * closed on demand.
6994 bc573f3b 2021-07-10 stsp */
6995 bc573f3b 2021-07-10 stsp err = got_object_open_as_tree(&s->root, repo,
6996 bc573f3b 2021-07-10 stsp got_object_commit_get_tree_id(commit));
6997 bc573f3b 2021-07-10 stsp if (err)
6998 bc573f3b 2021-07-10 stsp goto done;
6999 bc573f3b 2021-07-10 stsp s->tree = s->root;
7000 bc573f3b 2021-07-10 stsp
7001 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
7002 ffd1d5e5 2018-06-23 stsp if (err != NULL)
7003 ffd1d5e5 2018-06-23 stsp goto done;
7004 ffd1d5e5 2018-06-23 stsp
7005 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7006 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
7007 ffd1d5e5 2018-06-23 stsp goto done;
7008 ffd1d5e5 2018-06-23 stsp }
7009 ffd1d5e5 2018-06-23 stsp
7010 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7011 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7012 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
7013 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
7014 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
7015 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
7016 9cd7cbd1 2020-12-07 stsp goto done;
7017 9cd7cbd1 2020-12-07 stsp }
7018 9cd7cbd1 2020-12-07 stsp }
7019 fb2756b9 2018-08-04 stsp s->repo = repo;
7020 c0b01bdb 2019-11-08 stsp
7021 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7022 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
7023 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
7024 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7025 c0b01bdb 2019-11-08 stsp if (err)
7026 c0b01bdb 2019-11-08 stsp goto done;
7027 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7028 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
7029 bc573f3b 2021-07-10 stsp if (err)
7030 c0b01bdb 2019-11-08 stsp goto done;
7031 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
7032 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
7033 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7034 bc573f3b 2021-07-10 stsp if (err)
7035 c0b01bdb 2019-11-08 stsp goto done;
7036 e5a0f69f 2018-08-18 stsp
7037 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
7038 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
7039 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7040 bc573f3b 2021-07-10 stsp if (err)
7041 11b20872 2019-11-08 stsp goto done;
7042 11b20872 2019-11-08 stsp
7043 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7044 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
7045 bc573f3b 2021-07-10 stsp if (err)
7046 c0b01bdb 2019-11-08 stsp goto done;
7047 c0b01bdb 2019-11-08 stsp }
7048 c0b01bdb 2019-11-08 stsp
7049 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
7050 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
7051 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
7052 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
7053 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
7054 ad80ab7b 2018-08-04 stsp done:
7055 ad80ab7b 2018-08-04 stsp free(commit_id_str);
7056 bc573f3b 2021-07-10 stsp if (commit)
7057 bc573f3b 2021-07-10 stsp got_object_commit_close(commit);
7058 bc573f3b 2021-07-10 stsp if (err)
7059 bc573f3b 2021-07-10 stsp close_tree_view(view);
7060 ad80ab7b 2018-08-04 stsp return err;
7061 ad80ab7b 2018-08-04 stsp }
7062 ad80ab7b 2018-08-04 stsp
7063 e5a0f69f 2018-08-18 stsp static const struct got_error *
7064 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
7065 ad80ab7b 2018-08-04 stsp {
7066 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7067 ad80ab7b 2018-08-04 stsp
7068 bddb1296 2019-11-08 stsp free_colors(&s->colors);
7069 fb2756b9 2018-08-04 stsp free(s->tree_label);
7070 6484ec90 2018-09-29 stsp s->tree_label = NULL;
7071 6484ec90 2018-09-29 stsp free(s->commit_id);
7072 6484ec90 2018-09-29 stsp s->commit_id = NULL;
7073 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
7074 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
7075 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
7076 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
7077 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
7078 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
7079 bc573f3b 2021-07-10 stsp if (parent->tree != s->root)
7080 bc573f3b 2021-07-10 stsp got_object_tree_close(parent->tree);
7081 ad80ab7b 2018-08-04 stsp free(parent);
7082 ad80ab7b 2018-08-04 stsp
7083 ad80ab7b 2018-08-04 stsp }
7084 bc573f3b 2021-07-10 stsp if (s->tree != NULL && s->tree != s->root)
7085 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
7086 bc573f3b 2021-07-10 stsp if (s->root)
7087 bc573f3b 2021-07-10 stsp got_object_tree_close(s->root);
7088 7c32bd05 2019-06-22 stsp return NULL;
7089 7c32bd05 2019-06-22 stsp }
7090 7c32bd05 2019-06-22 stsp
7091 7c32bd05 2019-06-22 stsp static const struct got_error *
7092 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
7093 7c32bd05 2019-06-22 stsp {
7094 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7095 7c32bd05 2019-06-22 stsp
7096 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
7097 7c32bd05 2019-06-22 stsp return NULL;
7098 7c32bd05 2019-06-22 stsp }
7099 7c32bd05 2019-06-22 stsp
7100 7c32bd05 2019-06-22 stsp static int
7101 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7102 7c32bd05 2019-06-22 stsp {
7103 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
7104 7c32bd05 2019-06-22 stsp
7105 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7106 56e0773d 2019-11-28 stsp 0) == 0;
7107 7c32bd05 2019-06-22 stsp }
7108 7c32bd05 2019-06-22 stsp
7109 7c32bd05 2019-06-22 stsp static const struct got_error *
7110 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
7111 7c32bd05 2019-06-22 stsp {
7112 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7113 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
7114 7c32bd05 2019-06-22 stsp
7115 7c32bd05 2019-06-22 stsp if (!view->searching) {
7116 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7117 7c32bd05 2019-06-22 stsp return NULL;
7118 7c32bd05 2019-06-22 stsp }
7119 7c32bd05 2019-06-22 stsp
7120 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7121 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7122 7c32bd05 2019-06-22 stsp if (s->selected_entry)
7123 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
7124 56e0773d 2019-11-28 stsp s->selected_entry);
7125 7c32bd05 2019-06-22 stsp else
7126 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7127 56e0773d 2019-11-28 stsp } else {
7128 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
7129 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7130 56e0773d 2019-11-28 stsp else
7131 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
7132 56e0773d 2019-11-28 stsp s->selected_entry);
7133 7c32bd05 2019-06-22 stsp }
7134 7c32bd05 2019-06-22 stsp } else {
7135 4b3f9dac 2021-12-17 thomas if (s->selected_entry)
7136 4b3f9dac 2021-12-17 thomas te = s->selected_entry;
7137 4b3f9dac 2021-12-17 thomas else if (view->searching == TOG_SEARCH_FORWARD)
7138 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7139 56e0773d 2019-11-28 stsp else
7140 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7141 7c32bd05 2019-06-22 stsp }
7142 7c32bd05 2019-06-22 stsp
7143 7c32bd05 2019-06-22 stsp while (1) {
7144 56e0773d 2019-11-28 stsp if (te == NULL) {
7145 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
7146 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7147 ac66afb8 2019-06-24 stsp return NULL;
7148 ac66afb8 2019-06-24 stsp }
7149 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7150 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7151 56e0773d 2019-11-28 stsp else
7152 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7153 7c32bd05 2019-06-22 stsp }
7154 7c32bd05 2019-06-22 stsp
7155 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
7156 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7157 56e0773d 2019-11-28 stsp s->matched_entry = te;
7158 7c32bd05 2019-06-22 stsp break;
7159 7c32bd05 2019-06-22 stsp }
7160 7c32bd05 2019-06-22 stsp
7161 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7162 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
7163 56e0773d 2019-11-28 stsp else
7164 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
7165 7c32bd05 2019-06-22 stsp }
7166 e5a0f69f 2018-08-18 stsp
7167 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7168 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
7169 7c32bd05 2019-06-22 stsp s->selected = 0;
7170 7c32bd05 2019-06-22 stsp }
7171 7c32bd05 2019-06-22 stsp
7172 e5a0f69f 2018-08-18 stsp return NULL;
7173 ad80ab7b 2018-08-04 stsp }
7174 ad80ab7b 2018-08-04 stsp
7175 ad80ab7b 2018-08-04 stsp static const struct got_error *
7176 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
7177 ad80ab7b 2018-08-04 stsp {
7178 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
7179 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7180 e5a0f69f 2018-08-18 stsp char *parent_path;
7181 ad80ab7b 2018-08-04 stsp
7182 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
7183 e5a0f69f 2018-08-18 stsp if (err)
7184 e5a0f69f 2018-08-18 stsp return err;
7185 ffd1d5e5 2018-06-23 stsp
7186 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
7187 e5a0f69f 2018-08-18 stsp free(parent_path);
7188 669b5ffa 2018-10-07 stsp
7189 a5d43cac 2022-07-01 thomas view_border(view);
7190 e5a0f69f 2018-08-18 stsp return err;
7191 07dd3ed3 2022-08-06 thomas }
7192 07dd3ed3 2022-08-06 thomas
7193 07dd3ed3 2022-08-06 thomas static const struct got_error *
7194 07dd3ed3 2022-08-06 thomas tree_goto_line(struct tog_view *view, int nlines)
7195 07dd3ed3 2022-08-06 thomas {
7196 07dd3ed3 2022-08-06 thomas const struct got_error *err = NULL;
7197 07dd3ed3 2022-08-06 thomas struct tog_tree_view_state *s = &view->state.tree;
7198 07dd3ed3 2022-08-06 thomas struct got_tree_entry **fte, **lte, **ste;
7199 07dd3ed3 2022-08-06 thomas int g, last, first = 1, i = 1;
7200 07dd3ed3 2022-08-06 thomas int root = s->tree == s->root;
7201 07dd3ed3 2022-08-06 thomas int off = root ? 1 : 2;
7202 07dd3ed3 2022-08-06 thomas
7203 07dd3ed3 2022-08-06 thomas g = view->gline;
7204 07dd3ed3 2022-08-06 thomas view->gline = 0;
7205 07dd3ed3 2022-08-06 thomas
7206 07dd3ed3 2022-08-06 thomas if (g == 0)
7207 07dd3ed3 2022-08-06 thomas g = 1;
7208 07dd3ed3 2022-08-06 thomas else if (g > got_object_tree_get_nentries(s->tree))
7209 07dd3ed3 2022-08-06 thomas g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7210 07dd3ed3 2022-08-06 thomas
7211 07dd3ed3 2022-08-06 thomas fte = &s->first_displayed_entry;
7212 07dd3ed3 2022-08-06 thomas lte = &s->last_displayed_entry;
7213 07dd3ed3 2022-08-06 thomas ste = &s->selected_entry;
7214 07dd3ed3 2022-08-06 thomas
7215 07dd3ed3 2022-08-06 thomas if (*fte != NULL) {
7216 07dd3ed3 2022-08-06 thomas first = got_tree_entry_get_index(*fte);
7217 07dd3ed3 2022-08-06 thomas first += off; /* account for ".." */
7218 07dd3ed3 2022-08-06 thomas }
7219 07dd3ed3 2022-08-06 thomas last = got_tree_entry_get_index(*lte);
7220 07dd3ed3 2022-08-06 thomas last += off;
7221 07dd3ed3 2022-08-06 thomas
7222 07dd3ed3 2022-08-06 thomas if (g >= first && g <= last && g - first < nlines) {
7223 07dd3ed3 2022-08-06 thomas s->selected = g - first;
7224 07dd3ed3 2022-08-06 thomas return NULL; /* gline is on the current page */
7225 07dd3ed3 2022-08-06 thomas }
7226 07dd3ed3 2022-08-06 thomas
7227 07dd3ed3 2022-08-06 thomas if (*ste != NULL) {
7228 07dd3ed3 2022-08-06 thomas i = got_tree_entry_get_index(*ste);
7229 07dd3ed3 2022-08-06 thomas i += off;
7230 07dd3ed3 2022-08-06 thomas }
7231 07dd3ed3 2022-08-06 thomas
7232 07dd3ed3 2022-08-06 thomas if (i < g) {
7233 07dd3ed3 2022-08-06 thomas err = tree_scroll_down(view, g - i);
7234 07dd3ed3 2022-08-06 thomas if (err)
7235 07dd3ed3 2022-08-06 thomas return err;
7236 07dd3ed3 2022-08-06 thomas if (got_tree_entry_get_index(*lte) >=
7237 07dd3ed3 2022-08-06 thomas got_object_tree_get_nentries(s->tree) - 1 &&
7238 07dd3ed3 2022-08-06 thomas first + s->selected < g &&
7239 07dd3ed3 2022-08-06 thomas s->selected < s->ndisplayed - 1) {
7240 07dd3ed3 2022-08-06 thomas first = got_tree_entry_get_index(*fte);
7241 07dd3ed3 2022-08-06 thomas first += off;
7242 07dd3ed3 2022-08-06 thomas s->selected = g - first;
7243 07dd3ed3 2022-08-06 thomas }
7244 07dd3ed3 2022-08-06 thomas } else if (i > g)
7245 07dd3ed3 2022-08-06 thomas tree_scroll_up(s, i - g);
7246 07dd3ed3 2022-08-06 thomas
7247 07dd3ed3 2022-08-06 thomas if (g < nlines &&
7248 07dd3ed3 2022-08-06 thomas (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
7249 07dd3ed3 2022-08-06 thomas s->selected = g - 1;
7250 07dd3ed3 2022-08-06 thomas
7251 07dd3ed3 2022-08-06 thomas return NULL;
7252 e5a0f69f 2018-08-18 stsp }
7253 ce52c690 2018-06-23 stsp
7254 e5a0f69f 2018-08-18 stsp static const struct got_error *
7255 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
7256 e5a0f69f 2018-08-18 stsp {
7257 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
7258 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
7259 e4526bf5 2021-09-03 naddy struct got_tree_entry *te;
7260 2a31b33b 2022-07-23 thomas int n, nscroll = view->nlines - 3;
7261 ffd1d5e5 2018-06-23 stsp
7262 07dd3ed3 2022-08-06 thomas if (view->gline)
7263 07dd3ed3 2022-08-06 thomas return tree_goto_line(view, nscroll);
7264 07dd3ed3 2022-08-06 thomas
7265 e5a0f69f 2018-08-18 stsp switch (ch) {
7266 1e37a5c2 2019-05-12 jcs case 'i':
7267 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
7268 07b0611c 2022-06-23 thomas view->count = 0;
7269 1e37a5c2 2019-05-12 jcs break;
7270 1be4947a 2022-07-22 thomas case 'L':
7271 07b0611c 2022-06-23 thomas view->count = 0;
7272 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
7273 ffd1d5e5 2018-06-23 stsp break;
7274 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_LOG);
7275 152c1c93 2020-11-29 stsp break;
7276 1be4947a 2022-07-22 thomas case 'R':
7277 07b0611c 2022-06-23 thomas view->count = 0;
7278 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_REF);
7279 e4526bf5 2021-09-03 naddy break;
7280 e4526bf5 2021-09-03 naddy case 'g':
7281 e4526bf5 2021-09-03 naddy case KEY_HOME:
7282 e4526bf5 2021-09-03 naddy s->selected = 0;
7283 07b0611c 2022-06-23 thomas view->count = 0;
7284 e4526bf5 2021-09-03 naddy if (s->tree == s->root)
7285 e4526bf5 2021-09-03 naddy s->first_displayed_entry =
7286 e4526bf5 2021-09-03 naddy got_object_tree_get_first_entry(s->tree);
7287 e4526bf5 2021-09-03 naddy else
7288 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7289 1e37a5c2 2019-05-12 jcs break;
7290 e4526bf5 2021-09-03 naddy case 'G':
7291 a5d43cac 2022-07-01 thomas case KEY_END: {
7292 a5d43cac 2022-07-01 thomas int eos = view->nlines - 3;
7293 a5d43cac 2022-07-01 thomas
7294 a5d43cac 2022-07-01 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN)
7295 a5d43cac 2022-07-01 thomas --eos; /* border */
7296 e4526bf5 2021-09-03 naddy s->selected = 0;
7297 07b0611c 2022-06-23 thomas view->count = 0;
7298 e4526bf5 2021-09-03 naddy te = got_object_tree_get_last_entry(s->tree);
7299 a5d43cac 2022-07-01 thomas for (n = 0; n < eos; n++) {
7300 e4526bf5 2021-09-03 naddy if (te == NULL) {
7301 47f5fcf4 2022-07-16 thomas if (s->tree != s->root) {
7302 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7303 e4526bf5 2021-09-03 naddy n++;
7304 e4526bf5 2021-09-03 naddy }
7305 e4526bf5 2021-09-03 naddy break;
7306 e4526bf5 2021-09-03 naddy }
7307 e4526bf5 2021-09-03 naddy s->first_displayed_entry = te;
7308 e4526bf5 2021-09-03 naddy te = got_tree_entry_get_prev(s->tree, te);
7309 e4526bf5 2021-09-03 naddy }
7310 e4526bf5 2021-09-03 naddy if (n > 0)
7311 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7312 e4526bf5 2021-09-03 naddy break;
7313 a5d43cac 2022-07-01 thomas }
7314 1e37a5c2 2019-05-12 jcs case 'k':
7315 1e37a5c2 2019-05-12 jcs case KEY_UP:
7316 f7140bf5 2021-10-17 thomas case CTRL('p'):
7317 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
7318 1e37a5c2 2019-05-12 jcs s->selected--;
7319 fa86c4bf 2020-11-29 stsp break;
7320 1e37a5c2 2019-05-12 jcs }
7321 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
7322 07b0611c 2022-06-23 thomas if (s->selected_entry == NULL ||
7323 07b0611c 2022-06-23 thomas (s->tree == s->root && s->selected_entry ==
7324 07b0611c 2022-06-23 thomas got_object_tree_get_first_entry(s->tree)))
7325 07b0611c 2022-06-23 thomas view->count = 0;
7326 1e37a5c2 2019-05-12 jcs break;
7327 70f17a53 2022-06-13 thomas case CTRL('u'):
7328 23427b14 2022-06-23 thomas case 'u':
7329 70f17a53 2022-06-13 thomas nscroll /= 2;
7330 70f17a53 2022-06-13 thomas /* FALL THROUGH */
7331 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
7332 ea025d1d 2020-02-22 naddy case CTRL('b'):
7333 1c5e5faa 2022-06-23 thomas case 'b':
7334 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
7335 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
7336 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
7337 70f17a53 2022-06-13 thomas s->selected -= MIN(s->selected, nscroll);
7338 fa86c4bf 2020-11-29 stsp } else {
7339 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
7340 70f17a53 2022-06-13 thomas s->selected -= MIN(s->selected, nscroll);
7341 fa86c4bf 2020-11-29 stsp }
7342 70f17a53 2022-06-13 thomas tree_scroll_up(s, MAX(0, nscroll));
7343 07b0611c 2022-06-23 thomas if (s->selected_entry == NULL ||
7344 07b0611c 2022-06-23 thomas (s->tree == s->root && s->selected_entry ==
7345 07b0611c 2022-06-23 thomas got_object_tree_get_first_entry(s->tree)))
7346 07b0611c 2022-06-23 thomas view->count = 0;
7347 1e37a5c2 2019-05-12 jcs break;
7348 1e37a5c2 2019-05-12 jcs case 'j':
7349 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
7350 f7140bf5 2021-10-17 thomas case CTRL('n'):
7351 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
7352 1e37a5c2 2019-05-12 jcs s->selected++;
7353 1e37a5c2 2019-05-12 jcs break;
7354 1e37a5c2 2019-05-12 jcs }
7355 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7356 07b0611c 2022-06-23 thomas == NULL) {
7357 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
7358 07b0611c 2022-06-23 thomas view->count = 0;
7359 1e37a5c2 2019-05-12 jcs break;
7360 07b0611c 2022-06-23 thomas }
7361 a5d43cac 2022-07-01 thomas tree_scroll_down(view, 1);
7362 1e37a5c2 2019-05-12 jcs break;
7363 70f17a53 2022-06-13 thomas case CTRL('d'):
7364 23427b14 2022-06-23 thomas case 'd':
7365 70f17a53 2022-06-13 thomas nscroll /= 2;
7366 70f17a53 2022-06-13 thomas /* FALL THROUGH */
7367 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
7368 ea025d1d 2020-02-22 naddy case CTRL('f'):
7369 1c5e5faa 2022-06-23 thomas case 'f':
7370 4c2d69cb 2022-06-23 thomas case ' ':
7371 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7372 1e37a5c2 2019-05-12 jcs == NULL) {
7373 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
7374 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
7375 70f17a53 2022-06-13 thomas s->selected += MIN(nscroll,
7376 70f17a53 2022-06-13 thomas s->ndisplayed - s->selected - 1);
7377 07b0611c 2022-06-23 thomas else
7378 07b0611c 2022-06-23 thomas view->count = 0;
7379 1e37a5c2 2019-05-12 jcs break;
7380 1e37a5c2 2019-05-12 jcs }
7381 a5d43cac 2022-07-01 thomas tree_scroll_down(view, nscroll);
7382 1e37a5c2 2019-05-12 jcs break;
7383 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
7384 1e37a5c2 2019-05-12 jcs case '\r':
7385 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
7386 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7387 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
7388 1e37a5c2 2019-05-12 jcs /* user selected '..' */
7389 07b0611c 2022-06-23 thomas if (s->tree == s->root) {
7390 07b0611c 2022-06-23 thomas view->count = 0;
7391 1e37a5c2 2019-05-12 jcs break;
7392 07b0611c 2022-06-23 thomas }
7393 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
7394 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
7395 1e37a5c2 2019-05-12 jcs entry);
7396 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
7397 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
7398 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
7399 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
7400 1e37a5c2 2019-05-12 jcs s->selected_entry =
7401 1e37a5c2 2019-05-12 jcs parent->selected_entry;
7402 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
7403 a5d43cac 2022-07-01 thomas if (s->selected > view->nlines - 3) {
7404 a5d43cac 2022-07-01 thomas err = offset_selection_down(view);
7405 a5d43cac 2022-07-01 thomas if (err)
7406 a5d43cac 2022-07-01 thomas break;
7407 a5d43cac 2022-07-01 thomas }
7408 1e37a5c2 2019-05-12 jcs free(parent);
7409 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
7410 56e0773d 2019-11-28 stsp s->selected_entry))) {
7411 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
7412 07b0611c 2022-06-23 thomas view->count = 0;
7413 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
7414 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
7415 1e37a5c2 2019-05-12 jcs if (err)
7416 1e37a5c2 2019-05-12 jcs break;
7417 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
7418 941e9f74 2019-05-21 stsp if (err) {
7419 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
7420 1e37a5c2 2019-05-12 jcs break;
7421 1e37a5c2 2019-05-12 jcs }
7422 2a31b33b 2022-07-23 thomas } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7423 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7424 1e37a5c2 2019-05-12 jcs break;
7425 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
7426 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7427 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
7428 07b0611c 2022-06-23 thomas view->count = 0;
7429 1e37a5c2 2019-05-12 jcs break;
7430 1e37a5c2 2019-05-12 jcs default:
7431 07b0611c 2022-06-23 thomas view->count = 0;
7432 1e37a5c2 2019-05-12 jcs break;
7433 ffd1d5e5 2018-06-23 stsp }
7434 e5a0f69f 2018-08-18 stsp
7435 ffd1d5e5 2018-06-23 stsp return err;
7436 9f7d7167 2018-04-29 stsp }
7437 9f7d7167 2018-04-29 stsp
7438 ffd1d5e5 2018-06-23 stsp __dead static void
7439 ffd1d5e5 2018-06-23 stsp usage_tree(void)
7440 ffd1d5e5 2018-06-23 stsp {
7441 ffd1d5e5 2018-06-23 stsp endwin();
7442 91198554 2022-06-23 thomas fprintf(stderr,
7443 91198554 2022-06-23 thomas "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7444 ffd1d5e5 2018-06-23 stsp getprogname());
7445 ffd1d5e5 2018-06-23 stsp exit(1);
7446 ffd1d5e5 2018-06-23 stsp }
7447 ffd1d5e5 2018-06-23 stsp
7448 ffd1d5e5 2018-06-23 stsp static const struct got_error *
7449 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
7450 ffd1d5e5 2018-06-23 stsp {
7451 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
7452 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
7453 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
7454 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7455 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
7456 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
7457 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
7458 4e97c21c 2020-12-06 stsp char *label = NULL;
7459 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
7460 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
7461 ffd1d5e5 2018-06-23 stsp int ch;
7462 5221c383 2018-08-01 stsp struct tog_view *view;
7463 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
7464 70ac5f84 2019-03-28 stsp
7465 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7466 ffd1d5e5 2018-06-23 stsp switch (ch) {
7467 ffd1d5e5 2018-06-23 stsp case 'c':
7468 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
7469 74283ab8 2020-02-07 stsp break;
7470 74283ab8 2020-02-07 stsp case 'r':
7471 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
7472 74283ab8 2020-02-07 stsp if (repo_path == NULL)
7473 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
7474 74283ab8 2020-02-07 stsp optarg);
7475 ffd1d5e5 2018-06-23 stsp break;
7476 ffd1d5e5 2018-06-23 stsp default:
7477 e99e2d15 2020-11-24 naddy usage_tree();
7478 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
7479 ffd1d5e5 2018-06-23 stsp }
7480 ffd1d5e5 2018-06-23 stsp }
7481 ffd1d5e5 2018-06-23 stsp
7482 ffd1d5e5 2018-06-23 stsp argc -= optind;
7483 ffd1d5e5 2018-06-23 stsp argv += optind;
7484 ffd1d5e5 2018-06-23 stsp
7485 55cccc34 2020-02-20 stsp if (argc > 1)
7486 e99e2d15 2020-11-24 naddy usage_tree();
7487 7cd52833 2022-06-23 thomas
7488 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
7489 7cd52833 2022-06-23 thomas if (error != NULL)
7490 7cd52833 2022-06-23 thomas goto done;
7491 74283ab8 2020-02-07 stsp
7492 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
7493 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
7494 c156c7a4 2020-12-18 stsp if (cwd == NULL)
7495 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
7496 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
7497 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7498 c156c7a4 2020-12-18 stsp goto done;
7499 55cccc34 2020-02-20 stsp if (worktree)
7500 52185f70 2019-02-05 stsp repo_path =
7501 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
7502 55cccc34 2020-02-20 stsp else
7503 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
7504 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
7505 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
7506 c156c7a4 2020-12-18 stsp goto done;
7507 c156c7a4 2020-12-18 stsp }
7508 55cccc34 2020-02-20 stsp }
7509 a915003a 2019-02-05 stsp
7510 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7511 c02c541e 2019-03-29 stsp if (error != NULL)
7512 52185f70 2019-02-05 stsp goto done;
7513 d188b9a6 2019-01-04 stsp
7514 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7515 55cccc34 2020-02-20 stsp repo, worktree);
7516 55cccc34 2020-02-20 stsp if (error)
7517 55cccc34 2020-02-20 stsp goto done;
7518 55cccc34 2020-02-20 stsp
7519 55cccc34 2020-02-20 stsp init_curses();
7520 55cccc34 2020-02-20 stsp
7521 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
7522 c02c541e 2019-03-29 stsp if (error)
7523 52185f70 2019-02-05 stsp goto done;
7524 ffd1d5e5 2018-06-23 stsp
7525 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
7526 51a10b52 2020-12-26 stsp if (error)
7527 51a10b52 2020-12-26 stsp goto done;
7528 51a10b52 2020-12-26 stsp
7529 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
7530 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
7531 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
7532 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7533 4e97c21c 2020-12-06 stsp if (error)
7534 4e97c21c 2020-12-06 stsp goto done;
7535 4e97c21c 2020-12-06 stsp head_ref_name = label;
7536 4e97c21c 2020-12-06 stsp } else {
7537 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
7538 4e97c21c 2020-12-06 stsp if (error == NULL)
7539 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
7540 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
7541 4e97c21c 2020-12-06 stsp goto done;
7542 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
7543 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7544 4e97c21c 2020-12-06 stsp if (error)
7545 4e97c21c 2020-12-06 stsp goto done;
7546 4e97c21c 2020-12-06 stsp }
7547 ffd1d5e5 2018-06-23 stsp
7548 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
7549 945f9229 2022-04-16 thomas if (error)
7550 945f9229 2022-04-16 thomas goto done;
7551 945f9229 2022-04-16 thomas
7552 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7553 5221c383 2018-08-01 stsp if (view == NULL) {
7554 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
7555 5221c383 2018-08-01 stsp goto done;
7556 5221c383 2018-08-01 stsp }
7557 bc573f3b 2021-07-10 stsp error = open_tree_view(view, commit_id, head_ref_name, repo);
7558 ad80ab7b 2018-08-04 stsp if (error)
7559 ad80ab7b 2018-08-04 stsp goto done;
7560 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
7561 945f9229 2022-04-16 thomas error = tree_view_walk_path(&view->state.tree, commit,
7562 d91faf3b 2020-12-01 naddy in_repo_path);
7563 55cccc34 2020-02-20 stsp if (error)
7564 55cccc34 2020-02-20 stsp goto done;
7565 55cccc34 2020-02-20 stsp }
7566 55cccc34 2020-02-20 stsp
7567 55cccc34 2020-02-20 stsp if (worktree) {
7568 55cccc34 2020-02-20 stsp /* Release work tree lock. */
7569 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
7570 55cccc34 2020-02-20 stsp worktree = NULL;
7571 55cccc34 2020-02-20 stsp }
7572 e5a0f69f 2018-08-18 stsp error = view_loop(view);
7573 ffd1d5e5 2018-06-23 stsp done:
7574 52185f70 2019-02-05 stsp free(repo_path);
7575 e4a0e26d 2020-02-20 stsp free(cwd);
7576 ffd1d5e5 2018-06-23 stsp free(commit_id);
7577 4e97c21c 2020-12-06 stsp free(label);
7578 486cd271 2020-12-06 stsp if (ref)
7579 486cd271 2020-12-06 stsp got_ref_close(ref);
7580 1d0f4054 2021-06-17 stsp if (repo) {
7581 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7582 1d0f4054 2021-06-17 stsp if (error == NULL)
7583 1d0f4054 2021-06-17 stsp error = close_err;
7584 1d0f4054 2021-06-17 stsp }
7585 7cd52833 2022-06-23 thomas if (pack_fds) {
7586 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
7587 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
7588 7cd52833 2022-06-23 thomas if (error == NULL)
7589 7cd52833 2022-06-23 thomas error = pack_err;
7590 7cd52833 2022-06-23 thomas }
7591 51a10b52 2020-12-26 stsp tog_free_refs();
7592 ffd1d5e5 2018-06-23 stsp return error;
7593 6458efa5 2020-11-24 stsp }
7594 6458efa5 2020-11-24 stsp
7595 6458efa5 2020-11-24 stsp static const struct got_error *
7596 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
7597 6458efa5 2020-11-24 stsp {
7598 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
7599 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7600 6458efa5 2020-11-24 stsp
7601 6458efa5 2020-11-24 stsp s->nrefs = 0;
7602 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
7603 2183bbf6 2022-01-23 thomas if (strncmp(got_ref_get_name(sre->ref),
7604 2183bbf6 2022-01-23 thomas "refs/got/", 9) == 0 &&
7605 2183bbf6 2022-01-23 thomas strncmp(got_ref_get_name(sre->ref),
7606 2183bbf6 2022-01-23 thomas "refs/got/backup/", 16) != 0)
7607 6458efa5 2020-11-24 stsp continue;
7608 6458efa5 2020-11-24 stsp
7609 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
7610 6458efa5 2020-11-24 stsp if (re == NULL)
7611 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
7612 6458efa5 2020-11-24 stsp
7613 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
7614 8924d611 2020-12-26 stsp if (re->ref == NULL)
7615 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
7616 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
7617 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
7618 6458efa5 2020-11-24 stsp }
7619 6458efa5 2020-11-24 stsp
7620 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7621 6458efa5 2020-11-24 stsp return NULL;
7622 6458efa5 2020-11-24 stsp }
7623 6458efa5 2020-11-24 stsp
7624 ef20f542 2022-06-26 thomas static void
7625 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
7626 6458efa5 2020-11-24 stsp {
7627 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7628 6458efa5 2020-11-24 stsp
7629 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
7630 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7631 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
7632 8924d611 2020-12-26 stsp got_ref_close(re->ref);
7633 6458efa5 2020-11-24 stsp free(re);
7634 6458efa5 2020-11-24 stsp }
7635 6458efa5 2020-11-24 stsp }
7636 6458efa5 2020-11-24 stsp
7637 6458efa5 2020-11-24 stsp static const struct got_error *
7638 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
7639 6458efa5 2020-11-24 stsp {
7640 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7641 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7642 6458efa5 2020-11-24 stsp
7643 6458efa5 2020-11-24 stsp s->selected_entry = 0;
7644 6458efa5 2020-11-24 stsp s->repo = repo;
7645 6458efa5 2020-11-24 stsp
7646 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
7647 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
7648 6458efa5 2020-11-24 stsp
7649 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7650 6458efa5 2020-11-24 stsp if (err)
7651 6458efa5 2020-11-24 stsp return err;
7652 34ba6917 2020-11-30 stsp
7653 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7654 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
7655 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
7656 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
7657 6458efa5 2020-11-24 stsp if (err)
7658 6458efa5 2020-11-24 stsp goto done;
7659 6458efa5 2020-11-24 stsp
7660 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
7661 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
7662 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
7663 6458efa5 2020-11-24 stsp if (err)
7664 6458efa5 2020-11-24 stsp goto done;
7665 6458efa5 2020-11-24 stsp
7666 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
7667 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
7668 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
7669 2183bbf6 2022-01-23 thomas if (err)
7670 2183bbf6 2022-01-23 thomas goto done;
7671 2183bbf6 2022-01-23 thomas
7672 2183bbf6 2022-01-23 thomas err = add_color(&s->colors, "^refs/got/backup/",
7673 2183bbf6 2022-01-23 thomas TOG_COLOR_REFS_BACKUP,
7674 2183bbf6 2022-01-23 thomas get_color_value("TOG_COLOR_REFS_BACKUP"));
7675 6458efa5 2020-11-24 stsp if (err)
7676 6458efa5 2020-11-24 stsp goto done;
7677 6458efa5 2020-11-24 stsp }
7678 6458efa5 2020-11-24 stsp
7679 6458efa5 2020-11-24 stsp view->show = show_ref_view;
7680 6458efa5 2020-11-24 stsp view->input = input_ref_view;
7681 6458efa5 2020-11-24 stsp view->close = close_ref_view;
7682 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
7683 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
7684 6458efa5 2020-11-24 stsp done:
7685 6458efa5 2020-11-24 stsp if (err)
7686 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7687 6458efa5 2020-11-24 stsp return err;
7688 6458efa5 2020-11-24 stsp }
7689 6458efa5 2020-11-24 stsp
7690 6458efa5 2020-11-24 stsp static const struct got_error *
7691 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
7692 6458efa5 2020-11-24 stsp {
7693 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7694 6458efa5 2020-11-24 stsp
7695 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7696 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7697 6458efa5 2020-11-24 stsp
7698 6458efa5 2020-11-24 stsp return NULL;
7699 9f7d7167 2018-04-29 stsp }
7700 ce5b7c56 2019-07-09 stsp
7701 6458efa5 2020-11-24 stsp static const struct got_error *
7702 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
7703 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7704 6458efa5 2020-11-24 stsp {
7705 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7706 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
7707 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
7708 6458efa5 2020-11-24 stsp int obj_type;
7709 6458efa5 2020-11-24 stsp
7710 c42c9805 2020-11-24 stsp *commit_id = NULL;
7711 6458efa5 2020-11-24 stsp
7712 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
7713 6458efa5 2020-11-24 stsp if (err)
7714 6458efa5 2020-11-24 stsp return err;
7715 6458efa5 2020-11-24 stsp
7716 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
7717 6458efa5 2020-11-24 stsp if (err)
7718 6458efa5 2020-11-24 stsp goto done;
7719 6458efa5 2020-11-24 stsp
7720 6458efa5 2020-11-24 stsp switch (obj_type) {
7721 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
7722 c42c9805 2020-11-24 stsp *commit_id = obj_id;
7723 6458efa5 2020-11-24 stsp break;
7724 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
7725 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
7726 6458efa5 2020-11-24 stsp if (err)
7727 6458efa5 2020-11-24 stsp goto done;
7728 c42c9805 2020-11-24 stsp free(obj_id);
7729 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
7730 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7731 c42c9805 2020-11-24 stsp if (err)
7732 6458efa5 2020-11-24 stsp goto done;
7733 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7734 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7735 c42c9805 2020-11-24 stsp goto done;
7736 c42c9805 2020-11-24 stsp }
7737 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
7738 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7739 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
7740 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
7741 c42c9805 2020-11-24 stsp goto done;
7742 c42c9805 2020-11-24 stsp }
7743 6458efa5 2020-11-24 stsp break;
7744 6458efa5 2020-11-24 stsp default:
7745 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7746 c42c9805 2020-11-24 stsp break;
7747 6458efa5 2020-11-24 stsp }
7748 6458efa5 2020-11-24 stsp
7749 c42c9805 2020-11-24 stsp done:
7750 c42c9805 2020-11-24 stsp if (tag)
7751 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
7752 c42c9805 2020-11-24 stsp if (err) {
7753 c42c9805 2020-11-24 stsp free(*commit_id);
7754 c42c9805 2020-11-24 stsp *commit_id = NULL;
7755 c42c9805 2020-11-24 stsp }
7756 c42c9805 2020-11-24 stsp return err;
7757 c42c9805 2020-11-24 stsp }
7758 c42c9805 2020-11-24 stsp
7759 c42c9805 2020-11-24 stsp static const struct got_error *
7760 a5d43cac 2022-07-01 thomas log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7761 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7762 c42c9805 2020-11-24 stsp {
7763 c42c9805 2020-11-24 stsp struct tog_view *log_view;
7764 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7765 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
7766 c42c9805 2020-11-24 stsp
7767 c42c9805 2020-11-24 stsp *new_view = NULL;
7768 c42c9805 2020-11-24 stsp
7769 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7770 c42c9805 2020-11-24 stsp if (err) {
7771 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7772 c42c9805 2020-11-24 stsp return err;
7773 c42c9805 2020-11-24 stsp else
7774 c42c9805 2020-11-24 stsp return NULL;
7775 c42c9805 2020-11-24 stsp }
7776 c42c9805 2020-11-24 stsp
7777 a5d43cac 2022-07-01 thomas log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7778 6458efa5 2020-11-24 stsp if (log_view == NULL) {
7779 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
7780 6458efa5 2020-11-24 stsp goto done;
7781 6458efa5 2020-11-24 stsp }
7782 6458efa5 2020-11-24 stsp
7783 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
7784 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
7785 6458efa5 2020-11-24 stsp done:
7786 6458efa5 2020-11-24 stsp if (err)
7787 6458efa5 2020-11-24 stsp view_close(log_view);
7788 6458efa5 2020-11-24 stsp else
7789 6458efa5 2020-11-24 stsp *new_view = log_view;
7790 c42c9805 2020-11-24 stsp free(commit_id);
7791 6458efa5 2020-11-24 stsp return err;
7792 6458efa5 2020-11-24 stsp }
7793 6458efa5 2020-11-24 stsp
7794 ce5b7c56 2019-07-09 stsp static void
7795 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7796 6458efa5 2020-11-24 stsp {
7797 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
7798 34ba6917 2020-11-30 stsp int i = 0;
7799 6458efa5 2020-11-24 stsp
7800 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7801 6458efa5 2020-11-24 stsp return;
7802 6458efa5 2020-11-24 stsp
7803 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7804 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
7805 34ba6917 2020-11-30 stsp if (re == NULL)
7806 34ba6917 2020-11-30 stsp break;
7807 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
7808 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7809 6458efa5 2020-11-24 stsp }
7810 6458efa5 2020-11-24 stsp }
7811 6458efa5 2020-11-24 stsp
7812 a5d43cac 2022-07-01 thomas static const struct got_error *
7813 a5d43cac 2022-07-01 thomas ref_scroll_down(struct tog_view *view, int maxscroll)
7814 6458efa5 2020-11-24 stsp {
7815 a5d43cac 2022-07-01 thomas struct tog_ref_view_state *s = &view->state.ref;
7816 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
7817 6458efa5 2020-11-24 stsp int n = 0;
7818 6458efa5 2020-11-24 stsp
7819 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
7820 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
7821 6458efa5 2020-11-24 stsp else
7822 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
7823 6458efa5 2020-11-24 stsp
7824 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
7825 a5d43cac 2022-07-01 thomas while (next && n++ < maxscroll) {
7826 07dd3ed3 2022-08-06 thomas if (last) {
7827 07dd3ed3 2022-08-06 thomas s->last_displayed_entry = last;
7828 a5d43cac 2022-07-01 thomas last = TAILQ_NEXT(last, entry);
7829 07dd3ed3 2022-08-06 thomas }
7830 a5d43cac 2022-07-01 thomas if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7831 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
7832 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
7833 6458efa5 2020-11-24 stsp }
7834 6458efa5 2020-11-24 stsp }
7835 a5d43cac 2022-07-01 thomas
7836 a5d43cac 2022-07-01 thomas return NULL;
7837 6458efa5 2020-11-24 stsp }
7838 6458efa5 2020-11-24 stsp
7839 6458efa5 2020-11-24 stsp static const struct got_error *
7840 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
7841 6458efa5 2020-11-24 stsp {
7842 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7843 6458efa5 2020-11-24 stsp
7844 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
7845 6458efa5 2020-11-24 stsp return NULL;
7846 6458efa5 2020-11-24 stsp }
7847 6458efa5 2020-11-24 stsp
7848 6458efa5 2020-11-24 stsp static int
7849 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7850 6458efa5 2020-11-24 stsp {
7851 6458efa5 2020-11-24 stsp regmatch_t regmatch;
7852 6458efa5 2020-11-24 stsp
7853 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7854 6458efa5 2020-11-24 stsp 0) == 0;
7855 6458efa5 2020-11-24 stsp }
7856 6458efa5 2020-11-24 stsp
7857 6458efa5 2020-11-24 stsp static const struct got_error *
7858 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
7859 6458efa5 2020-11-24 stsp {
7860 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7861 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
7862 6458efa5 2020-11-24 stsp
7863 6458efa5 2020-11-24 stsp if (!view->searching) {
7864 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7865 6458efa5 2020-11-24 stsp return NULL;
7866 6458efa5 2020-11-24 stsp }
7867 6458efa5 2020-11-24 stsp
7868 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7869 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7870 6458efa5 2020-11-24 stsp if (s->selected_entry)
7871 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
7872 6458efa5 2020-11-24 stsp else
7873 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7874 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7875 6458efa5 2020-11-24 stsp } else {
7876 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
7877 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7878 6458efa5 2020-11-24 stsp else
7879 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7880 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7881 6458efa5 2020-11-24 stsp }
7882 6458efa5 2020-11-24 stsp } else {
7883 4b3f9dac 2021-12-17 thomas if (s->selected_entry)
7884 4b3f9dac 2021-12-17 thomas re = s->selected_entry;
7885 4b3f9dac 2021-12-17 thomas else if (view->searching == TOG_SEARCH_FORWARD)
7886 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7887 6458efa5 2020-11-24 stsp else
7888 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7889 6458efa5 2020-11-24 stsp }
7890 6458efa5 2020-11-24 stsp
7891 6458efa5 2020-11-24 stsp while (1) {
7892 6458efa5 2020-11-24 stsp if (re == NULL) {
7893 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
7894 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7895 6458efa5 2020-11-24 stsp return NULL;
7896 6458efa5 2020-11-24 stsp }
7897 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7898 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7899 6458efa5 2020-11-24 stsp else
7900 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7901 6458efa5 2020-11-24 stsp }
7902 6458efa5 2020-11-24 stsp
7903 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
7904 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7905 6458efa5 2020-11-24 stsp s->matched_entry = re;
7906 6458efa5 2020-11-24 stsp break;
7907 6458efa5 2020-11-24 stsp }
7908 6458efa5 2020-11-24 stsp
7909 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7910 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7911 6458efa5 2020-11-24 stsp else
7912 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7913 6458efa5 2020-11-24 stsp }
7914 6458efa5 2020-11-24 stsp
7915 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7916 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
7917 6458efa5 2020-11-24 stsp s->selected = 0;
7918 6458efa5 2020-11-24 stsp }
7919 6458efa5 2020-11-24 stsp
7920 6458efa5 2020-11-24 stsp return NULL;
7921 6458efa5 2020-11-24 stsp }
7922 6458efa5 2020-11-24 stsp
7923 6458efa5 2020-11-24 stsp static const struct got_error *
7924 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
7925 6458efa5 2020-11-24 stsp {
7926 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7927 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7928 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7929 6458efa5 2020-11-24 stsp char *line = NULL;
7930 6458efa5 2020-11-24 stsp wchar_t *wline;
7931 6458efa5 2020-11-24 stsp struct tog_color *tc;
7932 6458efa5 2020-11-24 stsp int width, n;
7933 6458efa5 2020-11-24 stsp int limit = view->nlines;
7934 6458efa5 2020-11-24 stsp
7935 6458efa5 2020-11-24 stsp werase(view->window);
7936 6458efa5 2020-11-24 stsp
7937 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
7938 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
7939 a5d43cac 2022-07-01 thomas --limit; /* border */
7940 6458efa5 2020-11-24 stsp
7941 6458efa5 2020-11-24 stsp if (limit == 0)
7942 6458efa5 2020-11-24 stsp return NULL;
7943 6458efa5 2020-11-24 stsp
7944 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
7945 6458efa5 2020-11-24 stsp
7946 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
7947 6458efa5 2020-11-24 stsp s->nrefs) == -1)
7948 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7949 6458efa5 2020-11-24 stsp
7950 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
7951 6458efa5 2020-11-24 stsp if (err) {
7952 6458efa5 2020-11-24 stsp free(line);
7953 6458efa5 2020-11-24 stsp return err;
7954 6458efa5 2020-11-24 stsp }
7955 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7956 6458efa5 2020-11-24 stsp wstandout(view->window);
7957 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7958 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
7959 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
7960 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7961 6458efa5 2020-11-24 stsp wstandend(view->window);
7962 6458efa5 2020-11-24 stsp free(wline);
7963 6458efa5 2020-11-24 stsp wline = NULL;
7964 6458efa5 2020-11-24 stsp free(line);
7965 6458efa5 2020-11-24 stsp line = NULL;
7966 6458efa5 2020-11-24 stsp if (--limit <= 0)
7967 6458efa5 2020-11-24 stsp return NULL;
7968 6458efa5 2020-11-24 stsp
7969 6458efa5 2020-11-24 stsp n = 0;
7970 6458efa5 2020-11-24 stsp while (re && limit > 0) {
7971 6458efa5 2020-11-24 stsp char *line = NULL;
7972 84227eb1 2022-06-23 thomas char ymd[13]; /* YYYY-MM-DD + " " + NUL */
7973 6458efa5 2020-11-24 stsp
7974 84227eb1 2022-06-23 thomas if (s->show_date) {
7975 84227eb1 2022-06-23 thomas struct got_commit_object *ci;
7976 84227eb1 2022-06-23 thomas struct got_tag_object *tag;
7977 84227eb1 2022-06-23 thomas struct got_object_id *id;
7978 84227eb1 2022-06-23 thomas struct tm tm;
7979 84227eb1 2022-06-23 thomas time_t t;
7980 84227eb1 2022-06-23 thomas
7981 84227eb1 2022-06-23 thomas err = got_ref_resolve(&id, s->repo, re->ref);
7982 84227eb1 2022-06-23 thomas if (err)
7983 84227eb1 2022-06-23 thomas return err;
7984 84227eb1 2022-06-23 thomas err = got_object_open_as_tag(&tag, s->repo, id);
7985 84227eb1 2022-06-23 thomas if (err) {
7986 84227eb1 2022-06-23 thomas if (err->code != GOT_ERR_OBJ_TYPE) {
7987 84227eb1 2022-06-23 thomas free(id);
7988 84227eb1 2022-06-23 thomas return err;
7989 84227eb1 2022-06-23 thomas }
7990 84227eb1 2022-06-23 thomas err = got_object_open_as_commit(&ci, s->repo,
7991 84227eb1 2022-06-23 thomas id);
7992 84227eb1 2022-06-23 thomas if (err) {
7993 84227eb1 2022-06-23 thomas free(id);
7994 84227eb1 2022-06-23 thomas return err;
7995 84227eb1 2022-06-23 thomas }
7996 84227eb1 2022-06-23 thomas t = got_object_commit_get_committer_time(ci);
7997 84227eb1 2022-06-23 thomas got_object_commit_close(ci);
7998 84227eb1 2022-06-23 thomas } else {
7999 84227eb1 2022-06-23 thomas t = got_object_tag_get_tagger_time(tag);
8000 84227eb1 2022-06-23 thomas got_object_tag_close(tag);
8001 84227eb1 2022-06-23 thomas }
8002 84227eb1 2022-06-23 thomas free(id);
8003 84227eb1 2022-06-23 thomas if (gmtime_r(&t, &tm) == NULL)
8004 84227eb1 2022-06-23 thomas return got_error_from_errno("gmtime_r");
8005 84227eb1 2022-06-23 thomas if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8006 84227eb1 2022-06-23 thomas return got_error(GOT_ERR_NO_SPACE);
8007 84227eb1 2022-06-23 thomas }
8008 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
8009 84227eb1 2022-06-23 thomas if (asprintf(&line, "%s%s -> %s", s->show_date ?
8010 84227eb1 2022-06-23 thomas ymd : "", got_ref_get_name(re->ref),
8011 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
8012 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
8013 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
8014 6458efa5 2020-11-24 stsp struct got_object_id *id;
8015 6458efa5 2020-11-24 stsp char *id_str;
8016 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
8017 6458efa5 2020-11-24 stsp if (err)
8018 6458efa5 2020-11-24 stsp return err;
8019 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
8020 6458efa5 2020-11-24 stsp if (err) {
8021 6458efa5 2020-11-24 stsp free(id);
8022 6458efa5 2020-11-24 stsp return err;
8023 6458efa5 2020-11-24 stsp }
8024 84227eb1 2022-06-23 thomas if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8025 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
8026 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
8027 6458efa5 2020-11-24 stsp free(id);
8028 6458efa5 2020-11-24 stsp free(id_str);
8029 6458efa5 2020-11-24 stsp return err;
8030 6458efa5 2020-11-24 stsp }
8031 6458efa5 2020-11-24 stsp free(id);
8032 6458efa5 2020-11-24 stsp free(id_str);
8033 84227eb1 2022-06-23 thomas } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8034 84227eb1 2022-06-23 thomas got_ref_get_name(re->ref)) == -1)
8035 84227eb1 2022-06-23 thomas return got_error_from_errno("asprintf");
8036 6458efa5 2020-11-24 stsp
8037 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols,
8038 f91a2b48 2022-06-23 thomas 0, 0);
8039 6458efa5 2020-11-24 stsp if (err) {
8040 6458efa5 2020-11-24 stsp free(line);
8041 6458efa5 2020-11-24 stsp return err;
8042 6458efa5 2020-11-24 stsp }
8043 6458efa5 2020-11-24 stsp if (n == s->selected) {
8044 6458efa5 2020-11-24 stsp if (view->focussed)
8045 6458efa5 2020-11-24 stsp wstandout(view->window);
8046 6458efa5 2020-11-24 stsp s->selected_entry = re;
8047 6458efa5 2020-11-24 stsp }
8048 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
8049 6458efa5 2020-11-24 stsp if (tc)
8050 6458efa5 2020-11-24 stsp wattr_on(view->window,
8051 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8052 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
8053 6458efa5 2020-11-24 stsp if (tc)
8054 6458efa5 2020-11-24 stsp wattr_off(view->window,
8055 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8056 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
8057 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
8058 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
8059 6458efa5 2020-11-24 stsp wstandend(view->window);
8060 6458efa5 2020-11-24 stsp free(line);
8061 6458efa5 2020-11-24 stsp free(wline);
8062 6458efa5 2020-11-24 stsp wline = NULL;
8063 6458efa5 2020-11-24 stsp n++;
8064 6458efa5 2020-11-24 stsp s->ndisplayed++;
8065 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
8066 6458efa5 2020-11-24 stsp
8067 6458efa5 2020-11-24 stsp limit--;
8068 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
8069 6458efa5 2020-11-24 stsp }
8070 6458efa5 2020-11-24 stsp
8071 a5d43cac 2022-07-01 thomas view_border(view);
8072 6458efa5 2020-11-24 stsp return err;
8073 6458efa5 2020-11-24 stsp }
8074 6458efa5 2020-11-24 stsp
8075 6458efa5 2020-11-24 stsp static const struct got_error *
8076 444d5325 2022-07-03 thomas browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8077 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
8078 c42c9805 2020-11-24 stsp {
8079 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
8080 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id = NULL;
8081 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
8082 c42c9805 2020-11-24 stsp
8083 c42c9805 2020-11-24 stsp *new_view = NULL;
8084 c42c9805 2020-11-24 stsp
8085 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
8086 c42c9805 2020-11-24 stsp if (err) {
8087 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
8088 c42c9805 2020-11-24 stsp return err;
8089 c42c9805 2020-11-24 stsp else
8090 c42c9805 2020-11-24 stsp return NULL;
8091 c42c9805 2020-11-24 stsp }
8092 c42c9805 2020-11-24 stsp
8093 c42c9805 2020-11-24 stsp
8094 444d5325 2022-07-03 thomas tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8095 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
8096 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
8097 c42c9805 2020-11-24 stsp goto done;
8098 c42c9805 2020-11-24 stsp }
8099 c42c9805 2020-11-24 stsp
8100 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, commit_id,
8101 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
8102 c42c9805 2020-11-24 stsp if (err)
8103 c42c9805 2020-11-24 stsp goto done;
8104 c42c9805 2020-11-24 stsp
8105 c42c9805 2020-11-24 stsp *new_view = tree_view;
8106 c42c9805 2020-11-24 stsp done:
8107 c42c9805 2020-11-24 stsp free(commit_id);
8108 c42c9805 2020-11-24 stsp return err;
8109 07dd3ed3 2022-08-06 thomas }
8110 07dd3ed3 2022-08-06 thomas
8111 07dd3ed3 2022-08-06 thomas static const struct got_error *
8112 07dd3ed3 2022-08-06 thomas ref_goto_line(struct tog_view *view, int nlines)
8113 07dd3ed3 2022-08-06 thomas {
8114 07dd3ed3 2022-08-06 thomas const struct got_error *err = NULL;
8115 07dd3ed3 2022-08-06 thomas struct tog_ref_view_state *s = &view->state.ref;
8116 07dd3ed3 2022-08-06 thomas int g, idx = s->selected_entry->idx;
8117 07dd3ed3 2022-08-06 thomas
8118 07dd3ed3 2022-08-06 thomas g = view->gline;
8119 07dd3ed3 2022-08-06 thomas view->gline = 0;
8120 07dd3ed3 2022-08-06 thomas
8121 07dd3ed3 2022-08-06 thomas if (g == 0)
8122 07dd3ed3 2022-08-06 thomas g = 1;
8123 07dd3ed3 2022-08-06 thomas else if (g > s->nrefs)
8124 07dd3ed3 2022-08-06 thomas g = s->nrefs;
8125 07dd3ed3 2022-08-06 thomas
8126 07dd3ed3 2022-08-06 thomas if (g >= s->first_displayed_entry->idx + 1 &&
8127 07dd3ed3 2022-08-06 thomas g <= s->last_displayed_entry->idx + 1 &&
8128 07dd3ed3 2022-08-06 thomas g - s->first_displayed_entry->idx - 1 < nlines) {
8129 07dd3ed3 2022-08-06 thomas s->selected = g - s->first_displayed_entry->idx - 1;
8130 07dd3ed3 2022-08-06 thomas return NULL;
8131 07dd3ed3 2022-08-06 thomas }
8132 07dd3ed3 2022-08-06 thomas
8133 07dd3ed3 2022-08-06 thomas if (idx + 1 < g) {
8134 07dd3ed3 2022-08-06 thomas err = ref_scroll_down(view, g - idx - 1);
8135 07dd3ed3 2022-08-06 thomas if (err)
8136 07dd3ed3 2022-08-06 thomas return err;
8137 07dd3ed3 2022-08-06 thomas if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8138 07dd3ed3 2022-08-06 thomas s->first_displayed_entry->idx + s->selected < g &&
8139 07dd3ed3 2022-08-06 thomas s->selected < s->ndisplayed - 1)
8140 07dd3ed3 2022-08-06 thomas s->selected = g - s->first_displayed_entry->idx - 1;
8141 07dd3ed3 2022-08-06 thomas } else if (idx + 1 > g)
8142 07dd3ed3 2022-08-06 thomas ref_scroll_up(s, idx - g + 1);
8143 07dd3ed3 2022-08-06 thomas
8144 07dd3ed3 2022-08-06 thomas if (g < nlines && s->first_displayed_entry->idx == 0)
8145 07dd3ed3 2022-08-06 thomas s->selected = g - 1;
8146 07dd3ed3 2022-08-06 thomas
8147 07dd3ed3 2022-08-06 thomas return NULL;
8148 07dd3ed3 2022-08-06 thomas
8149 c42c9805 2020-11-24 stsp }
8150 07dd3ed3 2022-08-06 thomas
8151 c42c9805 2020-11-24 stsp static const struct got_error *
8152 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8153 6458efa5 2020-11-24 stsp {
8154 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
8155 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
8156 e4526bf5 2021-09-03 naddy struct tog_reflist_entry *re;
8157 2a31b33b 2022-07-23 thomas int n, nscroll = view->nlines - 1;
8158 6458efa5 2020-11-24 stsp
8159 07dd3ed3 2022-08-06 thomas if (view->gline)
8160 07dd3ed3 2022-08-06 thomas return ref_goto_line(view, nscroll);
8161 07dd3ed3 2022-08-06 thomas
8162 6458efa5 2020-11-24 stsp switch (ch) {
8163 6458efa5 2020-11-24 stsp case 'i':
8164 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
8165 07b0611c 2022-06-23 thomas view->count = 0;
8166 3bfadbd4 2021-11-20 thomas break;
8167 84227eb1 2022-06-23 thomas case 'm':
8168 84227eb1 2022-06-23 thomas s->show_date = !s->show_date;
8169 07b0611c 2022-06-23 thomas view->count = 0;
8170 84227eb1 2022-06-23 thomas break;
8171 98182bd0 2021-11-20 thomas case 'o':
8172 3bfadbd4 2021-11-20 thomas s->sort_by_date = !s->sort_by_date;
8173 07b0611c 2022-06-23 thomas view->count = 0;
8174 c591440f 2021-11-20 thomas err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8175 c591440f 2021-11-20 thomas got_ref_cmp_by_commit_timestamp_descending :
8176 2183bbf6 2022-01-23 thomas tog_ref_cmp_by_name, s->repo);
8177 c591440f 2021-11-20 thomas if (err)
8178 c591440f 2021-11-20 thomas break;
8179 c591440f 2021-11-20 thomas got_reflist_object_id_map_free(tog_refs_idmap);
8180 c591440f 2021-11-20 thomas err = got_reflist_object_id_map_create(&tog_refs_idmap,
8181 c591440f 2021-11-20 thomas &tog_refs, s->repo);
8182 3bfadbd4 2021-11-20 thomas if (err)
8183 3bfadbd4 2021-11-20 thomas break;
8184 3bfadbd4 2021-11-20 thomas ref_view_free_refs(s);
8185 3bfadbd4 2021-11-20 thomas err = ref_view_load_refs(s);
8186 6458efa5 2020-11-24 stsp break;
8187 6458efa5 2020-11-24 stsp case KEY_ENTER:
8188 6458efa5 2020-11-24 stsp case '\r':
8189 07b0611c 2022-06-23 thomas view->count = 0;
8190 6458efa5 2020-11-24 stsp if (!s->selected_entry)
8191 a5d43cac 2022-07-01 thomas break;
8192 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_LOG);
8193 6458efa5 2020-11-24 stsp break;
8194 1be4947a 2022-07-22 thomas case 'T':
8195 07b0611c 2022-06-23 thomas view->count = 0;
8196 c42c9805 2020-11-24 stsp if (!s->selected_entry)
8197 c42c9805 2020-11-24 stsp break;
8198 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_TREE);
8199 c42c9805 2020-11-24 stsp break;
8200 e4526bf5 2021-09-03 naddy case 'g':
8201 e4526bf5 2021-09-03 naddy case KEY_HOME:
8202 e4526bf5 2021-09-03 naddy s->selected = 0;
8203 07b0611c 2022-06-23 thomas view->count = 0;
8204 e4526bf5 2021-09-03 naddy s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8205 e4526bf5 2021-09-03 naddy break;
8206 e4526bf5 2021-09-03 naddy case 'G':
8207 a5d43cac 2022-07-01 thomas case KEY_END: {
8208 a5d43cac 2022-07-01 thomas int eos = view->nlines - 1;
8209 a5d43cac 2022-07-01 thomas
8210 a5d43cac 2022-07-01 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN)
8211 a5d43cac 2022-07-01 thomas --eos; /* border */
8212 e4526bf5 2021-09-03 naddy s->selected = 0;
8213 07b0611c 2022-06-23 thomas view->count = 0;
8214 e4526bf5 2021-09-03 naddy re = TAILQ_LAST(&s->refs, tog_reflist_head);
8215 a5d43cac 2022-07-01 thomas for (n = 0; n < eos; n++) {
8216 e4526bf5 2021-09-03 naddy if (re == NULL)
8217 e4526bf5 2021-09-03 naddy break;
8218 e4526bf5 2021-09-03 naddy s->first_displayed_entry = re;
8219 e4526bf5 2021-09-03 naddy re = TAILQ_PREV(re, tog_reflist_head, entry);
8220 e4526bf5 2021-09-03 naddy }
8221 e4526bf5 2021-09-03 naddy if (n > 0)
8222 e4526bf5 2021-09-03 naddy s->selected = n - 1;
8223 e4526bf5 2021-09-03 naddy break;
8224 a5d43cac 2022-07-01 thomas }
8225 6458efa5 2020-11-24 stsp case 'k':
8226 6458efa5 2020-11-24 stsp case KEY_UP:
8227 f7140bf5 2021-10-17 thomas case CTRL('p'):
8228 6458efa5 2020-11-24 stsp if (s->selected > 0) {
8229 6458efa5 2020-11-24 stsp s->selected--;
8230 6458efa5 2020-11-24 stsp break;
8231 34ba6917 2020-11-30 stsp }
8232 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
8233 07b0611c 2022-06-23 thomas if (s->selected_entry == TAILQ_FIRST(&s->refs))
8234 07b0611c 2022-06-23 thomas view->count = 0;
8235 6458efa5 2020-11-24 stsp break;
8236 70f17a53 2022-06-13 thomas case CTRL('u'):
8237 23427b14 2022-06-23 thomas case 'u':
8238 70f17a53 2022-06-13 thomas nscroll /= 2;
8239 70f17a53 2022-06-13 thomas /* FALL THROUGH */
8240 6458efa5 2020-11-24 stsp case KEY_PPAGE:
8241 6458efa5 2020-11-24 stsp case CTRL('b'):
8242 1c5e5faa 2022-06-23 thomas case 'b':
8243 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8244 70f17a53 2022-06-13 thomas s->selected -= MIN(nscroll, s->selected);
8245 70f17a53 2022-06-13 thomas ref_scroll_up(s, MAX(0, nscroll));
8246 07b0611c 2022-06-23 thomas if (s->selected_entry == TAILQ_FIRST(&s->refs))
8247 07b0611c 2022-06-23 thomas view->count = 0;
8248 6458efa5 2020-11-24 stsp break;
8249 6458efa5 2020-11-24 stsp case 'j':
8250 6458efa5 2020-11-24 stsp case KEY_DOWN:
8251 f7140bf5 2021-10-17 thomas case CTRL('n'):
8252 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
8253 6458efa5 2020-11-24 stsp s->selected++;
8254 6458efa5 2020-11-24 stsp break;
8255 6458efa5 2020-11-24 stsp }
8256 07b0611c 2022-06-23 thomas if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8257 6458efa5 2020-11-24 stsp /* can't scroll any further */
8258 07b0611c 2022-06-23 thomas view->count = 0;
8259 6458efa5 2020-11-24 stsp break;
8260 07b0611c 2022-06-23 thomas }
8261 a5d43cac 2022-07-01 thomas ref_scroll_down(view, 1);
8262 6458efa5 2020-11-24 stsp break;
8263 70f17a53 2022-06-13 thomas case CTRL('d'):
8264 23427b14 2022-06-23 thomas case 'd':
8265 70f17a53 2022-06-13 thomas nscroll /= 2;
8266 70f17a53 2022-06-13 thomas /* FALL THROUGH */
8267 6458efa5 2020-11-24 stsp case KEY_NPAGE:
8268 6458efa5 2020-11-24 stsp case CTRL('f'):
8269 1c5e5faa 2022-06-23 thomas case 'f':
8270 4c2d69cb 2022-06-23 thomas case ' ':
8271 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8272 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
8273 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
8274 70f17a53 2022-06-13 thomas s->selected += MIN(nscroll,
8275 70f17a53 2022-06-13 thomas s->ndisplayed - s->selected - 1);
8276 07b0611c 2022-06-23 thomas if (view->count > 1 && s->selected < s->ndisplayed - 1)
8277 07b0611c 2022-06-23 thomas s->selected += s->ndisplayed - s->selected - 1;
8278 07b0611c 2022-06-23 thomas view->count = 0;
8279 6458efa5 2020-11-24 stsp break;
8280 6458efa5 2020-11-24 stsp }
8281 a5d43cac 2022-07-01 thomas ref_scroll_down(view, nscroll);
8282 6458efa5 2020-11-24 stsp break;
8283 6458efa5 2020-11-24 stsp case CTRL('l'):
8284 07b0611c 2022-06-23 thomas view->count = 0;
8285 8924d611 2020-12-26 stsp tog_free_refs();
8286 3bfadbd4 2021-11-20 thomas err = tog_load_refs(s->repo, s->sort_by_date);
8287 8924d611 2020-12-26 stsp if (err)
8288 8924d611 2020-12-26 stsp break;
8289 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
8290 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
8291 6458efa5 2020-11-24 stsp break;
8292 6458efa5 2020-11-24 stsp case KEY_RESIZE:
8293 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
8294 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
8295 6458efa5 2020-11-24 stsp break;
8296 6458efa5 2020-11-24 stsp default:
8297 07b0611c 2022-06-23 thomas view->count = 0;
8298 6458efa5 2020-11-24 stsp break;
8299 6458efa5 2020-11-24 stsp }
8300 6458efa5 2020-11-24 stsp
8301 6458efa5 2020-11-24 stsp return err;
8302 6458efa5 2020-11-24 stsp }
8303 6458efa5 2020-11-24 stsp
8304 6458efa5 2020-11-24 stsp __dead static void
8305 6458efa5 2020-11-24 stsp usage_ref(void)
8306 6458efa5 2020-11-24 stsp {
8307 6458efa5 2020-11-24 stsp endwin();
8308 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8309 6458efa5 2020-11-24 stsp getprogname());
8310 6458efa5 2020-11-24 stsp exit(1);
8311 6458efa5 2020-11-24 stsp }
8312 6458efa5 2020-11-24 stsp
8313 6458efa5 2020-11-24 stsp static const struct got_error *
8314 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
8315 6458efa5 2020-11-24 stsp {
8316 6458efa5 2020-11-24 stsp const struct got_error *error;
8317 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
8318 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
8319 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
8320 6458efa5 2020-11-24 stsp int ch;
8321 6458efa5 2020-11-24 stsp struct tog_view *view;
8322 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
8323 6458efa5 2020-11-24 stsp
8324 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
8325 6458efa5 2020-11-24 stsp switch (ch) {
8326 6458efa5 2020-11-24 stsp case 'r':
8327 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
8328 6458efa5 2020-11-24 stsp if (repo_path == NULL)
8329 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
8330 6458efa5 2020-11-24 stsp optarg);
8331 6458efa5 2020-11-24 stsp break;
8332 6458efa5 2020-11-24 stsp default:
8333 e99e2d15 2020-11-24 naddy usage_ref();
8334 6458efa5 2020-11-24 stsp /* NOTREACHED */
8335 6458efa5 2020-11-24 stsp }
8336 6458efa5 2020-11-24 stsp }
8337 6458efa5 2020-11-24 stsp
8338 6458efa5 2020-11-24 stsp argc -= optind;
8339 6458efa5 2020-11-24 stsp argv += optind;
8340 6458efa5 2020-11-24 stsp
8341 6458efa5 2020-11-24 stsp if (argc > 1)
8342 e99e2d15 2020-11-24 naddy usage_ref();
8343 7cd52833 2022-06-23 thomas
8344 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
8345 7cd52833 2022-06-23 thomas if (error != NULL)
8346 7cd52833 2022-06-23 thomas goto done;
8347 6458efa5 2020-11-24 stsp
8348 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
8349 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
8350 c156c7a4 2020-12-18 stsp if (cwd == NULL)
8351 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
8352 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
8353 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8354 c156c7a4 2020-12-18 stsp goto done;
8355 6458efa5 2020-11-24 stsp if (worktree)
8356 6458efa5 2020-11-24 stsp repo_path =
8357 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
8358 6458efa5 2020-11-24 stsp else
8359 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
8360 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
8361 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
8362 c156c7a4 2020-12-18 stsp goto done;
8363 c156c7a4 2020-12-18 stsp }
8364 6458efa5 2020-11-24 stsp }
8365 6458efa5 2020-11-24 stsp
8366 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8367 6458efa5 2020-11-24 stsp if (error != NULL)
8368 6458efa5 2020-11-24 stsp goto done;
8369 6458efa5 2020-11-24 stsp
8370 6458efa5 2020-11-24 stsp init_curses();
8371 6458efa5 2020-11-24 stsp
8372 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
8373 51a10b52 2020-12-26 stsp if (error)
8374 51a10b52 2020-12-26 stsp goto done;
8375 51a10b52 2020-12-26 stsp
8376 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
8377 6458efa5 2020-11-24 stsp if (error)
8378 6458efa5 2020-11-24 stsp goto done;
8379 6458efa5 2020-11-24 stsp
8380 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8381 6458efa5 2020-11-24 stsp if (view == NULL) {
8382 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
8383 6458efa5 2020-11-24 stsp goto done;
8384 6458efa5 2020-11-24 stsp }
8385 6458efa5 2020-11-24 stsp
8386 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
8387 6458efa5 2020-11-24 stsp if (error)
8388 6458efa5 2020-11-24 stsp goto done;
8389 6458efa5 2020-11-24 stsp
8390 6458efa5 2020-11-24 stsp if (worktree) {
8391 6458efa5 2020-11-24 stsp /* Release work tree lock. */
8392 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
8393 6458efa5 2020-11-24 stsp worktree = NULL;
8394 6458efa5 2020-11-24 stsp }
8395 6458efa5 2020-11-24 stsp error = view_loop(view);
8396 6458efa5 2020-11-24 stsp done:
8397 6458efa5 2020-11-24 stsp free(repo_path);
8398 6458efa5 2020-11-24 stsp free(cwd);
8399 1d0f4054 2021-06-17 stsp if (repo) {
8400 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8401 1d0f4054 2021-06-17 stsp if (close_err)
8402 1d0f4054 2021-06-17 stsp error = close_err;
8403 1d0f4054 2021-06-17 stsp }
8404 7cd52833 2022-06-23 thomas if (pack_fds) {
8405 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
8406 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
8407 7cd52833 2022-06-23 thomas if (error == NULL)
8408 7cd52833 2022-06-23 thomas error = pack_err;
8409 7cd52833 2022-06-23 thomas }
8410 51a10b52 2020-12-26 stsp tog_free_refs();
8411 6458efa5 2020-11-24 stsp return error;
8412 6458efa5 2020-11-24 stsp }
8413 6458efa5 2020-11-24 stsp
8414 fc2737d5 2022-09-15 thomas static const struct got_error*
8415 fc2737d5 2022-09-15 thomas win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
8416 fc2737d5 2022-09-15 thomas const char *str)
8417 fc2737d5 2022-09-15 thomas {
8418 fc2737d5 2022-09-15 thomas size_t len;
8419 fc2737d5 2022-09-15 thomas
8420 fc2737d5 2022-09-15 thomas if (win == NULL)
8421 fc2737d5 2022-09-15 thomas win = stdscr;
8422 fc2737d5 2022-09-15 thomas
8423 fc2737d5 2022-09-15 thomas len = strlen(str);
8424 fc2737d5 2022-09-15 thomas x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
8425 fc2737d5 2022-09-15 thomas
8426 fc2737d5 2022-09-15 thomas if (focus)
8427 fc2737d5 2022-09-15 thomas wstandout(win);
8428 fc2737d5 2022-09-15 thomas if (mvwprintw(win, y, x, "%s", str) == ERR)
8429 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
8430 fc2737d5 2022-09-15 thomas if (focus)
8431 fc2737d5 2022-09-15 thomas wstandend(win);
8432 fc2737d5 2022-09-15 thomas
8433 fc2737d5 2022-09-15 thomas return NULL;
8434 fc2737d5 2022-09-15 thomas }
8435 fc2737d5 2022-09-15 thomas
8436 2a31b33b 2022-07-23 thomas static const struct got_error *
8437 fc2737d5 2022-09-15 thomas add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
8438 fc2737d5 2022-09-15 thomas {
8439 fc2737d5 2022-09-15 thomas off_t *p;
8440 fc2737d5 2022-09-15 thomas
8441 fc2737d5 2022-09-15 thomas p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
8442 fc2737d5 2022-09-15 thomas if (p == NULL) {
8443 fc2737d5 2022-09-15 thomas free(*line_offsets);
8444 fc2737d5 2022-09-15 thomas *line_offsets = NULL;
8445 fc2737d5 2022-09-15 thomas return got_error_from_errno("reallocarray");
8446 fc2737d5 2022-09-15 thomas }
8447 fc2737d5 2022-09-15 thomas
8448 fc2737d5 2022-09-15 thomas *line_offsets = p;
8449 fc2737d5 2022-09-15 thomas (*line_offsets)[*nlines] = off;
8450 fc2737d5 2022-09-15 thomas ++(*nlines);
8451 fc2737d5 2022-09-15 thomas return NULL;
8452 fc2737d5 2022-09-15 thomas }
8453 fc2737d5 2022-09-15 thomas
8454 fc2737d5 2022-09-15 thomas static const struct got_error *
8455 fc2737d5 2022-09-15 thomas max_key_str(int *ret, const struct tog_key_map *km, size_t n)
8456 fc2737d5 2022-09-15 thomas {
8457 fc2737d5 2022-09-15 thomas *ret = 0;
8458 fc2737d5 2022-09-15 thomas
8459 fc2737d5 2022-09-15 thomas for (;n > 0; --n, ++km) {
8460 fc2737d5 2022-09-15 thomas char *t0, *t, *k;
8461 fc2737d5 2022-09-15 thomas size_t len = 1;
8462 fc2737d5 2022-09-15 thomas
8463 fc2737d5 2022-09-15 thomas if (km->keys == NULL)
8464 fc2737d5 2022-09-15 thomas continue;
8465 fc2737d5 2022-09-15 thomas
8466 fc2737d5 2022-09-15 thomas t = t0 = strdup(km->keys);
8467 fc2737d5 2022-09-15 thomas if (t0 == NULL)
8468 fc2737d5 2022-09-15 thomas return got_error_from_errno("strdup");
8469 fc2737d5 2022-09-15 thomas
8470 fc2737d5 2022-09-15 thomas len += strlen(t);
8471 fc2737d5 2022-09-15 thomas while ((k = strsep(&t, " ")) != NULL)
8472 fc2737d5 2022-09-15 thomas len += strlen(k) > 1 ? 2 : 0;
8473 fc2737d5 2022-09-15 thomas free(t0);
8474 fc2737d5 2022-09-15 thomas *ret = MAX(*ret, len);
8475 fc2737d5 2022-09-15 thomas }
8476 fc2737d5 2022-09-15 thomas
8477 fc2737d5 2022-09-15 thomas return NULL;
8478 fc2737d5 2022-09-15 thomas }
8479 fc2737d5 2022-09-15 thomas
8480 fc2737d5 2022-09-15 thomas /*
8481 fc2737d5 2022-09-15 thomas * Write keymap section headers, keys, and key info in km to f.
8482 fc2737d5 2022-09-15 thomas * Save line offset to *off. If terminal has UTF8 encoding enabled,
8483 fc2737d5 2022-09-15 thomas * wrap control and symbolic keys in guillemets, else use <>.
8484 fc2737d5 2022-09-15 thomas */
8485 fc2737d5 2022-09-15 thomas static const struct got_error *
8486 fc2737d5 2022-09-15 thomas format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
8487 fc2737d5 2022-09-15 thomas {
8488 fc2737d5 2022-09-15 thomas int n, len = width;
8489 fc2737d5 2022-09-15 thomas
8490 fc2737d5 2022-09-15 thomas if (km->keys) {
8491 30e77f6a 2022-09-18 thomas static const char *u8_glyph[] = {
8492 30e77f6a 2022-09-18 thomas "\xe2\x80\xb9", /* U+2039 (utf8 <) */
8493 30e77f6a 2022-09-18 thomas "\xe2\x80\xba" /* U+203A (utf8 >) */
8494 30e77f6a 2022-09-18 thomas };
8495 fc2737d5 2022-09-15 thomas char *t0, *t, *k;
8496 fc2737d5 2022-09-15 thomas int cs, s, first = 1;
8497 fc2737d5 2022-09-15 thomas
8498 fc2737d5 2022-09-15 thomas cs = got_locale_is_utf8();
8499 fc2737d5 2022-09-15 thomas
8500 fc2737d5 2022-09-15 thomas t = t0 = strdup(km->keys);
8501 fc2737d5 2022-09-15 thomas if (t0 == NULL)
8502 fc2737d5 2022-09-15 thomas return got_error_from_errno("strdup");
8503 fc2737d5 2022-09-15 thomas
8504 fc2737d5 2022-09-15 thomas len = strlen(km->keys);
8505 fc2737d5 2022-09-15 thomas while ((k = strsep(&t, " ")) != NULL) {
8506 fc2737d5 2022-09-15 thomas s = strlen(k) > 1; /* control or symbolic key */
8507 fc2737d5 2022-09-15 thomas n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
8508 30e77f6a 2022-09-18 thomas cs && s ? u8_glyph[0] : s ? "<" : "", k,
8509 30e77f6a 2022-09-18 thomas cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
8510 fc2737d5 2022-09-15 thomas if (n < 0) {
8511 fc2737d5 2022-09-15 thomas free(t0);
8512 fc2737d5 2022-09-15 thomas return got_error_from_errno("fprintf");
8513 fc2737d5 2022-09-15 thomas }
8514 fc2737d5 2022-09-15 thomas first = 0;
8515 fc2737d5 2022-09-15 thomas len += s ? 2 : 0;
8516 fc2737d5 2022-09-15 thomas *off += n;
8517 fc2737d5 2022-09-15 thomas }
8518 fc2737d5 2022-09-15 thomas free(t0);
8519 fc2737d5 2022-09-15 thomas }
8520 fc2737d5 2022-09-15 thomas n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
8521 fc2737d5 2022-09-15 thomas if (n < 0)
8522 fc2737d5 2022-09-15 thomas return got_error_from_errno("fprintf");
8523 fc2737d5 2022-09-15 thomas *off += n;
8524 fc2737d5 2022-09-15 thomas
8525 fc2737d5 2022-09-15 thomas return NULL;
8526 fc2737d5 2022-09-15 thomas }
8527 fc2737d5 2022-09-15 thomas
8528 fc2737d5 2022-09-15 thomas static const struct got_error *
8529 fc2737d5 2022-09-15 thomas format_help(struct tog_help_view_state *s)
8530 fc2737d5 2022-09-15 thomas {
8531 fc2737d5 2022-09-15 thomas const struct got_error *err = NULL;
8532 fc2737d5 2022-09-15 thomas off_t off = 0;
8533 fc2737d5 2022-09-15 thomas int i, max, n, show = s->all;
8534 fc2737d5 2022-09-15 thomas static const struct tog_key_map km[] = {
8535 fc2737d5 2022-09-15 thomas #define KEYMAP_(info, type) { NULL, (info), type }
8536 fc2737d5 2022-09-15 thomas #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
8537 fc2737d5 2022-09-15 thomas GENERATE_HELP
8538 fc2737d5 2022-09-15 thomas #undef KEYMAP_
8539 fc2737d5 2022-09-15 thomas #undef KEY_
8540 fc2737d5 2022-09-15 thomas };
8541 fc2737d5 2022-09-15 thomas
8542 fc2737d5 2022-09-15 thomas err = add_line_offset(&s->line_offsets, &s->nlines, 0);
8543 fc2737d5 2022-09-15 thomas if (err)
8544 fc2737d5 2022-09-15 thomas return err;
8545 fc2737d5 2022-09-15 thomas
8546 fc2737d5 2022-09-15 thomas n = nitems(km);
8547 fc2737d5 2022-09-15 thomas err = max_key_str(&max, km, n);
8548 fc2737d5 2022-09-15 thomas if (err)
8549 fc2737d5 2022-09-15 thomas return err;
8550 fc2737d5 2022-09-15 thomas
8551 fc2737d5 2022-09-15 thomas for (i = 0; i < n; ++i) {
8552 fc2737d5 2022-09-15 thomas if (km[i].keys == NULL) {
8553 fc2737d5 2022-09-15 thomas show = s->all;
8554 fc2737d5 2022-09-15 thomas if (km[i].type == TOG_KEYMAP_GLOBAL ||
8555 fc2737d5 2022-09-15 thomas km[i].type == s->type || s->all)
8556 fc2737d5 2022-09-15 thomas show = 1;
8557 fc2737d5 2022-09-15 thomas }
8558 fc2737d5 2022-09-15 thomas if (show) {
8559 fc2737d5 2022-09-15 thomas err = format_help_line(&off, s->f, &km[i], max);
8560 fc2737d5 2022-09-15 thomas if (err)
8561 fc2737d5 2022-09-15 thomas return err;
8562 fc2737d5 2022-09-15 thomas err = add_line_offset(&s->line_offsets, &s->nlines, off);
8563 fc2737d5 2022-09-15 thomas if (err)
8564 fc2737d5 2022-09-15 thomas return err;
8565 fc2737d5 2022-09-15 thomas }
8566 fc2737d5 2022-09-15 thomas }
8567 fc2737d5 2022-09-15 thomas fputc('\n', s->f);
8568 fc2737d5 2022-09-15 thomas ++off;
8569 fc2737d5 2022-09-15 thomas err = add_line_offset(&s->line_offsets, &s->nlines, off);
8570 fc2737d5 2022-09-15 thomas return err;
8571 fc2737d5 2022-09-15 thomas }
8572 fc2737d5 2022-09-15 thomas
8573 fc2737d5 2022-09-15 thomas static const struct got_error *
8574 fc2737d5 2022-09-15 thomas create_help(struct tog_help_view_state *s)
8575 fc2737d5 2022-09-15 thomas {
8576 fc2737d5 2022-09-15 thomas FILE *f;
8577 fc2737d5 2022-09-15 thomas const struct got_error *err;
8578 fc2737d5 2022-09-15 thomas
8579 fc2737d5 2022-09-15 thomas free(s->line_offsets);
8580 fc2737d5 2022-09-15 thomas s->line_offsets = NULL;
8581 fc2737d5 2022-09-15 thomas s->nlines = 0;
8582 fc2737d5 2022-09-15 thomas
8583 fc2737d5 2022-09-15 thomas f = got_opentemp();
8584 fc2737d5 2022-09-15 thomas if (f == NULL)
8585 fc2737d5 2022-09-15 thomas return got_error_from_errno("got_opentemp");
8586 fc2737d5 2022-09-15 thomas s->f = f;
8587 fc2737d5 2022-09-15 thomas
8588 fc2737d5 2022-09-15 thomas err = format_help(s);
8589 fc2737d5 2022-09-15 thomas if (err)
8590 fc2737d5 2022-09-15 thomas return err;
8591 fc2737d5 2022-09-15 thomas
8592 fc2737d5 2022-09-15 thomas if (s->f && fflush(s->f) != 0)
8593 fc2737d5 2022-09-15 thomas return got_error_from_errno("fflush");
8594 fc2737d5 2022-09-15 thomas
8595 fc2737d5 2022-09-15 thomas return NULL;
8596 fc2737d5 2022-09-15 thomas }
8597 fc2737d5 2022-09-15 thomas
8598 fc2737d5 2022-09-15 thomas static const struct got_error *
8599 fc2737d5 2022-09-15 thomas search_start_help_view(struct tog_view *view)
8600 fc2737d5 2022-09-15 thomas {
8601 fc2737d5 2022-09-15 thomas view->state.help.matched_line = 0;
8602 fc2737d5 2022-09-15 thomas return NULL;
8603 fc2737d5 2022-09-15 thomas }
8604 fc2737d5 2022-09-15 thomas
8605 2a7d3cd7 2022-09-17 thomas static void
8606 2a7d3cd7 2022-09-17 thomas search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
8607 2a7d3cd7 2022-09-17 thomas size_t *nlines, int **first, int **last, int **match, int **selected)
8608 2a7d3cd7 2022-09-17 thomas {
8609 2a7d3cd7 2022-09-17 thomas struct tog_help_view_state *s = &view->state.help;
8610 2a7d3cd7 2022-09-17 thomas
8611 2a7d3cd7 2022-09-17 thomas *f = s->f;
8612 2a7d3cd7 2022-09-17 thomas *nlines = s->nlines;
8613 2a7d3cd7 2022-09-17 thomas *line_offsets = s->line_offsets;
8614 2a7d3cd7 2022-09-17 thomas *match = &s->matched_line;
8615 2a7d3cd7 2022-09-17 thomas *first = &s->first_displayed_line;
8616 2a7d3cd7 2022-09-17 thomas *last = &s->last_displayed_line;
8617 2a7d3cd7 2022-09-17 thomas *selected = &s->selected_line;
8618 2a7d3cd7 2022-09-17 thomas }
8619 2a7d3cd7 2022-09-17 thomas
8620 fc2737d5 2022-09-15 thomas static const struct got_error *
8621 fc2737d5 2022-09-15 thomas show_help_view(struct tog_view *view)
8622 fc2737d5 2022-09-15 thomas {
8623 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8624 fc2737d5 2022-09-15 thomas const struct got_error *err;
8625 fc2737d5 2022-09-15 thomas regmatch_t *regmatch = &view->regmatch;
8626 fc2737d5 2022-09-15 thomas wchar_t *wline;
8627 fc2737d5 2022-09-15 thomas char *line;
8628 fc2737d5 2022-09-15 thomas ssize_t linelen;
8629 fc2737d5 2022-09-15 thomas size_t linesz = 0;
8630 fc2737d5 2022-09-15 thomas int width, nprinted = 0, rc = 0;
8631 fc2737d5 2022-09-15 thomas int eos = view->nlines;
8632 fc2737d5 2022-09-15 thomas
8633 fc2737d5 2022-09-15 thomas if (view_is_hsplit_top(view))
8634 fc2737d5 2022-09-15 thomas --eos; /* account for border */
8635 fc2737d5 2022-09-15 thomas
8636 fc2737d5 2022-09-15 thomas s->lineno = 0;
8637 fc2737d5 2022-09-15 thomas rewind(s->f);
8638 fc2737d5 2022-09-15 thomas werase(view->window);
8639 fc2737d5 2022-09-15 thomas
8640 fc2737d5 2022-09-15 thomas if (view->gline > s->nlines - 1)
8641 fc2737d5 2022-09-15 thomas view->gline = s->nlines - 1;
8642 fc2737d5 2022-09-15 thomas
8643 fc2737d5 2022-09-15 thomas err = win_draw_center(view->window, 0, 0, view->ncols,
8644 fc2737d5 2022-09-15 thomas view_needs_focus_indication(view), "tog help");
8645 fc2737d5 2022-09-15 thomas if (err)
8646 fc2737d5 2022-09-15 thomas return err;
8647 fc2737d5 2022-09-15 thomas if (eos <= 1)
8648 fc2737d5 2022-09-15 thomas return NULL;
8649 fc2737d5 2022-09-15 thomas waddstr(view->window, "\n\n");
8650 fc2737d5 2022-09-15 thomas eos -= 2;
8651 fc2737d5 2022-09-15 thomas
8652 fc2737d5 2022-09-15 thomas s->eof = 0;
8653 fc2737d5 2022-09-15 thomas view->maxx = 0;
8654 fc2737d5 2022-09-15 thomas line = NULL;
8655 fc2737d5 2022-09-15 thomas while (eos > 0 && nprinted < eos) {
8656 fc2737d5 2022-09-15 thomas attr_t attr = 0;
8657 fc2737d5 2022-09-15 thomas
8658 fc2737d5 2022-09-15 thomas linelen = getline(&line, &linesz, s->f);
8659 fc2737d5 2022-09-15 thomas if (linelen == -1) {
8660 fc2737d5 2022-09-15 thomas if (!feof(s->f)) {
8661 fc2737d5 2022-09-15 thomas free(line);
8662 fc2737d5 2022-09-15 thomas return got_ferror(s->f, GOT_ERR_IO);
8663 fc2737d5 2022-09-15 thomas }
8664 fc2737d5 2022-09-15 thomas s->eof = 1;
8665 fc2737d5 2022-09-15 thomas break;
8666 fc2737d5 2022-09-15 thomas }
8667 fc2737d5 2022-09-15 thomas if (++s->lineno < s->first_displayed_line)
8668 fc2737d5 2022-09-15 thomas continue;
8669 fc2737d5 2022-09-15 thomas if (view->gline && !gotoline(view, &s->lineno, &nprinted))
8670 fc2737d5 2022-09-15 thomas continue;
8671 fc2737d5 2022-09-15 thomas if (s->lineno == view->hiline)
8672 fc2737d5 2022-09-15 thomas attr = A_STANDOUT;
8673 fc2737d5 2022-09-15 thomas
8674 fc2737d5 2022-09-15 thomas err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
8675 fc2737d5 2022-09-15 thomas view->x ? 1 : 0);
8676 fc2737d5 2022-09-15 thomas if (err) {
8677 fc2737d5 2022-09-15 thomas free(line);
8678 fc2737d5 2022-09-15 thomas return err;
8679 fc2737d5 2022-09-15 thomas }
8680 fc2737d5 2022-09-15 thomas view->maxx = MAX(view->maxx, width);
8681 fc2737d5 2022-09-15 thomas free(wline);
8682 fc2737d5 2022-09-15 thomas wline = NULL;
8683 fc2737d5 2022-09-15 thomas
8684 fc2737d5 2022-09-15 thomas if (attr)
8685 fc2737d5 2022-09-15 thomas wattron(view->window, attr);
8686 fc2737d5 2022-09-15 thomas if (s->first_displayed_line + nprinted == s->matched_line &&
8687 fc2737d5 2022-09-15 thomas regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
8688 fc2737d5 2022-09-15 thomas err = add_matched_line(&width, line, view->ncols - 1, 0,
8689 fc2737d5 2022-09-15 thomas view->window, view->x, regmatch);
8690 fc2737d5 2022-09-15 thomas if (err) {
8691 fc2737d5 2022-09-15 thomas free(line);
8692 fc2737d5 2022-09-15 thomas return err;
8693 fc2737d5 2022-09-15 thomas }
8694 fc2737d5 2022-09-15 thomas } else {
8695 fc2737d5 2022-09-15 thomas int skip;
8696 fc2737d5 2022-09-15 thomas
8697 fc2737d5 2022-09-15 thomas err = format_line(&wline, &width, &skip, line,
8698 fc2737d5 2022-09-15 thomas view->x, view->ncols - 1, 0, view->x ? 1 : 0);
8699 fc2737d5 2022-09-15 thomas if (err) {
8700 fc2737d5 2022-09-15 thomas free(line);
8701 fc2737d5 2022-09-15 thomas return err;
8702 fc2737d5 2022-09-15 thomas }
8703 fc2737d5 2022-09-15 thomas rc = waddwstr(view->window, &wline[skip]);
8704 fc2737d5 2022-09-15 thomas free(wline);
8705 fc2737d5 2022-09-15 thomas wline = NULL;
8706 fc2737d5 2022-09-15 thomas if (rc == ERR)
8707 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_IO, "waddwstr");
8708 fc2737d5 2022-09-15 thomas }
8709 fc2737d5 2022-09-15 thomas if (s->lineno == view->hiline) {
8710 fc2737d5 2022-09-15 thomas while (width++ < view->ncols)
8711 fc2737d5 2022-09-15 thomas waddch(view->window, ' ');
8712 fc2737d5 2022-09-15 thomas } else {
8713 fc2737d5 2022-09-15 thomas if (width <= view->ncols)
8714 fc2737d5 2022-09-15 thomas waddch(view->window, '\n');
8715 fc2737d5 2022-09-15 thomas }
8716 fc2737d5 2022-09-15 thomas if (attr)
8717 fc2737d5 2022-09-15 thomas wattroff(view->window, attr);
8718 fc2737d5 2022-09-15 thomas if (++nprinted == 1)
8719 fc2737d5 2022-09-15 thomas s->first_displayed_line = s->lineno;
8720 fc2737d5 2022-09-15 thomas }
8721 fc2737d5 2022-09-15 thomas free(line);
8722 fc2737d5 2022-09-15 thomas if (nprinted > 0)
8723 fc2737d5 2022-09-15 thomas s->last_displayed_line = s->first_displayed_line + nprinted - 1;
8724 fc2737d5 2022-09-15 thomas else
8725 fc2737d5 2022-09-15 thomas s->last_displayed_line = s->first_displayed_line;
8726 fc2737d5 2022-09-15 thomas
8727 fc2737d5 2022-09-15 thomas view_border(view);
8728 fc2737d5 2022-09-15 thomas
8729 fc2737d5 2022-09-15 thomas if (s->eof) {
8730 fc2737d5 2022-09-15 thomas rc = waddnstr(view->window,
8731 fc2737d5 2022-09-15 thomas "See the tog(1) manual page for full documentation",
8732 fc2737d5 2022-09-15 thomas view->ncols - 1);
8733 fc2737d5 2022-09-15 thomas if (rc == ERR)
8734 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8735 fc2737d5 2022-09-15 thomas } else {
8736 fc2737d5 2022-09-15 thomas wmove(view->window, view->nlines - 1, 0);
8737 fc2737d5 2022-09-15 thomas wclrtoeol(view->window);
8738 fc2737d5 2022-09-15 thomas wstandout(view->window);
8739 fc2737d5 2022-09-15 thomas rc = waddnstr(view->window, "scroll down for more...",
8740 fc2737d5 2022-09-15 thomas view->ncols - 1);
8741 fc2737d5 2022-09-15 thomas if (rc == ERR)
8742 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8743 fc2737d5 2022-09-15 thomas if (getcurx(view->window) < view->ncols - 6) {
8744 fc2737d5 2022-09-15 thomas rc = wprintw(view->window, "[%.0f%%]",
8745 fc2737d5 2022-09-15 thomas 100.00 * s->last_displayed_line / s->nlines);
8746 fc2737d5 2022-09-15 thomas if (rc == ERR)
8747 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_IO, "wprintw");
8748 fc2737d5 2022-09-15 thomas }
8749 fc2737d5 2022-09-15 thomas wstandend(view->window);
8750 fc2737d5 2022-09-15 thomas }
8751 fc2737d5 2022-09-15 thomas
8752 fc2737d5 2022-09-15 thomas return NULL;
8753 fc2737d5 2022-09-15 thomas }
8754 fc2737d5 2022-09-15 thomas
8755 fc2737d5 2022-09-15 thomas static const struct got_error *
8756 fc2737d5 2022-09-15 thomas input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
8757 fc2737d5 2022-09-15 thomas {
8758 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8759 fc2737d5 2022-09-15 thomas const struct got_error *err = NULL;
8760 fc2737d5 2022-09-15 thomas char *line = NULL;
8761 fc2737d5 2022-09-15 thomas ssize_t linelen;
8762 fc2737d5 2022-09-15 thomas size_t linesz = 0;
8763 fc2737d5 2022-09-15 thomas int eos, nscroll;
8764 fc2737d5 2022-09-15 thomas
8765 fc2737d5 2022-09-15 thomas eos = nscroll = view->nlines;
8766 fc2737d5 2022-09-15 thomas if (view_is_hsplit_top(view))
8767 fc2737d5 2022-09-15 thomas --eos; /* border */
8768 fc2737d5 2022-09-15 thomas
8769 fc2737d5 2022-09-15 thomas s->lineno = s->first_displayed_line - 1 + s->selected_line;
8770 fc2737d5 2022-09-15 thomas
8771 fc2737d5 2022-09-15 thomas switch (ch) {
8772 fc2737d5 2022-09-15 thomas case '0':
8773 fc2737d5 2022-09-15 thomas view->x = 0;
8774 fc2737d5 2022-09-15 thomas break;
8775 fc2737d5 2022-09-15 thomas case '$':
8776 fc2737d5 2022-09-15 thomas view->x = MAX(view->maxx - view->ncols / 3, 0);
8777 fc2737d5 2022-09-15 thomas view->count = 0;
8778 fc2737d5 2022-09-15 thomas break;
8779 fc2737d5 2022-09-15 thomas case KEY_RIGHT:
8780 fc2737d5 2022-09-15 thomas case 'l':
8781 fc2737d5 2022-09-15 thomas if (view->x + view->ncols / 3 < view->maxx)
8782 fc2737d5 2022-09-15 thomas view->x += 2;
8783 fc2737d5 2022-09-15 thomas else
8784 fc2737d5 2022-09-15 thomas view->count = 0;
8785 fc2737d5 2022-09-15 thomas break;
8786 fc2737d5 2022-09-15 thomas case KEY_LEFT:
8787 fc2737d5 2022-09-15 thomas case 'h':
8788 fc2737d5 2022-09-15 thomas view->x -= MIN(view->x, 2);
8789 fc2737d5 2022-09-15 thomas if (view->x <= 0)
8790 fc2737d5 2022-09-15 thomas view->count = 0;
8791 fc2737d5 2022-09-15 thomas break;
8792 fc2737d5 2022-09-15 thomas case 'g':
8793 fc2737d5 2022-09-15 thomas case KEY_HOME:
8794 fc2737d5 2022-09-15 thomas s->first_displayed_line = 1;
8795 fc2737d5 2022-09-15 thomas view->count = 0;
8796 fc2737d5 2022-09-15 thomas break;
8797 fc2737d5 2022-09-15 thomas case 'G':
8798 fc2737d5 2022-09-15 thomas case KEY_END:
8799 fc2737d5 2022-09-15 thomas view->count = 0;
8800 fc2737d5 2022-09-15 thomas if (s->eof)
8801 fc2737d5 2022-09-15 thomas break;
8802 fc2737d5 2022-09-15 thomas s->first_displayed_line = (s->nlines - eos) + 3;
8803 fc2737d5 2022-09-15 thomas s->eof = 1;
8804 fc2737d5 2022-09-15 thomas break;
8805 fc2737d5 2022-09-15 thomas case 'k':
8806 fc2737d5 2022-09-15 thomas case KEY_UP:
8807 fc2737d5 2022-09-15 thomas if (s->first_displayed_line > 1)
8808 fc2737d5 2022-09-15 thomas --s->first_displayed_line;
8809 fc2737d5 2022-09-15 thomas else
8810 fc2737d5 2022-09-15 thomas view->count = 0;
8811 fc2737d5 2022-09-15 thomas break;
8812 fc2737d5 2022-09-15 thomas case CTRL('u'):
8813 fc2737d5 2022-09-15 thomas case 'u':
8814 fc2737d5 2022-09-15 thomas nscroll /= 2;
8815 fc2737d5 2022-09-15 thomas /* FALL THROUGH */
8816 fc2737d5 2022-09-15 thomas case KEY_PPAGE:
8817 fc2737d5 2022-09-15 thomas case CTRL('b'):
8818 fc2737d5 2022-09-15 thomas case 'b':
8819 fc2737d5 2022-09-15 thomas if (s->first_displayed_line == 1) {
8820 fc2737d5 2022-09-15 thomas view->count = 0;
8821 fc2737d5 2022-09-15 thomas break;
8822 fc2737d5 2022-09-15 thomas }
8823 fc2737d5 2022-09-15 thomas while (--nscroll > 0 && s->first_displayed_line > 1)
8824 fc2737d5 2022-09-15 thomas s->first_displayed_line--;
8825 fc2737d5 2022-09-15 thomas break;
8826 fc2737d5 2022-09-15 thomas case 'j':
8827 fc2737d5 2022-09-15 thomas case KEY_DOWN:
8828 fc2737d5 2022-09-15 thomas case CTRL('n'):
8829 fc2737d5 2022-09-15 thomas if (!s->eof)
8830 fc2737d5 2022-09-15 thomas ++s->first_displayed_line;
8831 fc2737d5 2022-09-15 thomas else
8832 fc2737d5 2022-09-15 thomas view->count = 0;
8833 fc2737d5 2022-09-15 thomas break;
8834 fc2737d5 2022-09-15 thomas case CTRL('d'):
8835 fc2737d5 2022-09-15 thomas case 'd':
8836 fc2737d5 2022-09-15 thomas nscroll /= 2;
8837 fc2737d5 2022-09-15 thomas /* FALL THROUGH */
8838 fc2737d5 2022-09-15 thomas case KEY_NPAGE:
8839 fc2737d5 2022-09-15 thomas case CTRL('f'):
8840 fc2737d5 2022-09-15 thomas case 'f':
8841 fc2737d5 2022-09-15 thomas case ' ':
8842 fc2737d5 2022-09-15 thomas if (s->eof) {
8843 fc2737d5 2022-09-15 thomas view->count = 0;
8844 fc2737d5 2022-09-15 thomas break;
8845 fc2737d5 2022-09-15 thomas }
8846 fc2737d5 2022-09-15 thomas while (!s->eof && --nscroll > 0) {
8847 fc2737d5 2022-09-15 thomas linelen = getline(&line, &linesz, s->f);
8848 fc2737d5 2022-09-15 thomas s->first_displayed_line++;
8849 fc2737d5 2022-09-15 thomas if (linelen == -1) {
8850 fc2737d5 2022-09-15 thomas if (feof(s->f))
8851 fc2737d5 2022-09-15 thomas s->eof = 1;
8852 fc2737d5 2022-09-15 thomas else
8853 fc2737d5 2022-09-15 thomas err = got_ferror(s->f, GOT_ERR_IO);
8854 fc2737d5 2022-09-15 thomas break;
8855 fc2737d5 2022-09-15 thomas }
8856 fc2737d5 2022-09-15 thomas }
8857 fc2737d5 2022-09-15 thomas free(line);
8858 fc2737d5 2022-09-15 thomas break;
8859 fc2737d5 2022-09-15 thomas default:
8860 fc2737d5 2022-09-15 thomas view->count = 0;
8861 fc2737d5 2022-09-15 thomas break;
8862 fc2737d5 2022-09-15 thomas }
8863 fc2737d5 2022-09-15 thomas
8864 fc2737d5 2022-09-15 thomas return err;
8865 fc2737d5 2022-09-15 thomas }
8866 fc2737d5 2022-09-15 thomas
8867 fc2737d5 2022-09-15 thomas static const struct got_error *
8868 fc2737d5 2022-09-15 thomas close_help_view(struct tog_view *view)
8869 fc2737d5 2022-09-15 thomas {
8870 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8871 fc2737d5 2022-09-15 thomas
8872 fc2737d5 2022-09-15 thomas free(s->line_offsets);
8873 fc2737d5 2022-09-15 thomas s->line_offsets = NULL;
8874 fc2737d5 2022-09-15 thomas if (fclose(s->f) == EOF)
8875 fc2737d5 2022-09-15 thomas return got_error_from_errno("fclose");
8876 fc2737d5 2022-09-15 thomas
8877 fc2737d5 2022-09-15 thomas return NULL;
8878 fc2737d5 2022-09-15 thomas }
8879 fc2737d5 2022-09-15 thomas
8880 fc2737d5 2022-09-15 thomas static const struct got_error *
8881 fc2737d5 2022-09-15 thomas reset_help_view(struct tog_view *view)
8882 fc2737d5 2022-09-15 thomas {
8883 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8884 fc2737d5 2022-09-15 thomas
8885 fc2737d5 2022-09-15 thomas
8886 fc2737d5 2022-09-15 thomas if (s->f && fclose(s->f) == EOF)
8887 fc2737d5 2022-09-15 thomas return got_error_from_errno("fclose");
8888 fc2737d5 2022-09-15 thomas
8889 fc2737d5 2022-09-15 thomas wclear(view->window);
8890 fc2737d5 2022-09-15 thomas view->count = 0;
8891 fc2737d5 2022-09-15 thomas view->x = 0;
8892 fc2737d5 2022-09-15 thomas s->all = !s->all;
8893 fc2737d5 2022-09-15 thomas s->first_displayed_line = 1;
8894 fc2737d5 2022-09-15 thomas s->last_displayed_line = view->nlines;
8895 fc2737d5 2022-09-15 thomas s->matched_line = 0;
8896 fc2737d5 2022-09-15 thomas
8897 fc2737d5 2022-09-15 thomas return create_help(s);
8898 fc2737d5 2022-09-15 thomas }
8899 fc2737d5 2022-09-15 thomas
8900 fc2737d5 2022-09-15 thomas static const struct got_error *
8901 fc2737d5 2022-09-15 thomas open_help_view(struct tog_view *view, struct tog_view *parent)
8902 fc2737d5 2022-09-15 thomas {
8903 fc2737d5 2022-09-15 thomas const struct got_error *err = NULL;
8904 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8905 fc2737d5 2022-09-15 thomas
8906 fc2737d5 2022-09-15 thomas s->type = (enum tog_keymap_type)parent->type;
8907 fc2737d5 2022-09-15 thomas s->first_displayed_line = 1;
8908 fc2737d5 2022-09-15 thomas s->last_displayed_line = view->nlines;
8909 fc2737d5 2022-09-15 thomas s->selected_line = 1;
8910 fc2737d5 2022-09-15 thomas
8911 fc2737d5 2022-09-15 thomas view->show = show_help_view;
8912 fc2737d5 2022-09-15 thomas view->input = input_help_view;
8913 fc2737d5 2022-09-15 thomas view->reset = reset_help_view;
8914 fc2737d5 2022-09-15 thomas view->close = close_help_view;
8915 fc2737d5 2022-09-15 thomas view->search_start = search_start_help_view;
8916 2a7d3cd7 2022-09-17 thomas view->search_setup = search_setup_help_view;
8917 fc2737d5 2022-09-15 thomas view->search_next = search_next_view_match;
8918 fc2737d5 2022-09-15 thomas
8919 fc2737d5 2022-09-15 thomas err = create_help(s);
8920 fc2737d5 2022-09-15 thomas return err;
8921 fc2737d5 2022-09-15 thomas }
8922 fc2737d5 2022-09-15 thomas
8923 fc2737d5 2022-09-15 thomas static const struct got_error *
8924 2a31b33b 2022-07-23 thomas view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
8925 2a31b33b 2022-07-23 thomas enum tog_view_type request, int y, int x)
8926 2a31b33b 2022-07-23 thomas {
8927 2a31b33b 2022-07-23 thomas const struct got_error *err = NULL;
8928 2a31b33b 2022-07-23 thomas
8929 2a31b33b 2022-07-23 thomas *new_view = NULL;
8930 2a31b33b 2022-07-23 thomas
8931 2a31b33b 2022-07-23 thomas switch (request) {
8932 2a31b33b 2022-07-23 thomas case TOG_VIEW_DIFF:
8933 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_LOG) {
8934 2a31b33b 2022-07-23 thomas struct tog_log_view_state *s = &view->state.log;
8935 2a31b33b 2022-07-23 thomas
8936 2a31b33b 2022-07-23 thomas err = open_diff_view_for_commit(new_view, y, x,
8937 2a31b33b 2022-07-23 thomas s->selected_entry->commit, s->selected_entry->id,
8938 2a31b33b 2022-07-23 thomas view, s->repo);
8939 2a31b33b 2022-07-23 thomas } else
8940 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8941 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8942 2a31b33b 2022-07-23 thomas break;
8943 2a31b33b 2022-07-23 thomas case TOG_VIEW_BLAME:
8944 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_TREE) {
8945 2a31b33b 2022-07-23 thomas struct tog_tree_view_state *s = &view->state.tree;
8946 2a31b33b 2022-07-23 thomas
8947 2a31b33b 2022-07-23 thomas err = blame_tree_entry(new_view, y, x,
8948 2a31b33b 2022-07-23 thomas s->selected_entry, &s->parents, s->commit_id,
8949 2a31b33b 2022-07-23 thomas s->repo);
8950 2a31b33b 2022-07-23 thomas } else
8951 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8952 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8953 2a31b33b 2022-07-23 thomas break;
8954 2a31b33b 2022-07-23 thomas case TOG_VIEW_LOG:
8955 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_BLAME)
8956 2a31b33b 2022-07-23 thomas err = log_annotated_line(new_view, y, x,
8957 2a31b33b 2022-07-23 thomas view->state.blame.repo, view->state.blame.id_to_log);
8958 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_TREE)
8959 2a31b33b 2022-07-23 thomas err = log_selected_tree_entry(new_view, y, x,
8960 2a31b33b 2022-07-23 thomas &view->state.tree);
8961 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_REF)
8962 2a31b33b 2022-07-23 thomas err = log_ref_entry(new_view, y, x,
8963 2a31b33b 2022-07-23 thomas view->state.ref.selected_entry,
8964 2a31b33b 2022-07-23 thomas view->state.ref.repo);
8965 2a31b33b 2022-07-23 thomas else
8966 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8967 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8968 2a31b33b 2022-07-23 thomas break;
8969 2a31b33b 2022-07-23 thomas case TOG_VIEW_TREE:
8970 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_LOG)
8971 2a31b33b 2022-07-23 thomas err = browse_commit_tree(new_view, y, x,
8972 2a31b33b 2022-07-23 thomas view->state.log.selected_entry,
8973 2a31b33b 2022-07-23 thomas view->state.log.in_repo_path,
8974 2a31b33b 2022-07-23 thomas view->state.log.head_ref_name,
8975 2a31b33b 2022-07-23 thomas view->state.log.repo);
8976 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_REF)
8977 2a31b33b 2022-07-23 thomas err = browse_ref_tree(new_view, y, x,
8978 2a31b33b 2022-07-23 thomas view->state.ref.selected_entry,
8979 2a31b33b 2022-07-23 thomas view->state.ref.repo);
8980 2a31b33b 2022-07-23 thomas else
8981 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8982 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8983 2a31b33b 2022-07-23 thomas break;
8984 2a31b33b 2022-07-23 thomas case TOG_VIEW_REF:
8985 2a31b33b 2022-07-23 thomas *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
8986 2a31b33b 2022-07-23 thomas if (*new_view == NULL)
8987 2a31b33b 2022-07-23 thomas return got_error_from_errno("view_open");
8988 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_LOG)
8989 2a31b33b 2022-07-23 thomas err = open_ref_view(*new_view, view->state.log.repo);
8990 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_TREE)
8991 2a31b33b 2022-07-23 thomas err = open_ref_view(*new_view, view->state.tree.repo);
8992 2a31b33b 2022-07-23 thomas else
8993 2a31b33b 2022-07-23 thomas err = got_error_msg(GOT_ERR_NOT_IMPL,
8994 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8995 2a31b33b 2022-07-23 thomas if (err)
8996 2a31b33b 2022-07-23 thomas view_close(*new_view);
8997 2a31b33b 2022-07-23 thomas break;
8998 fc2737d5 2022-09-15 thomas case TOG_VIEW_HELP:
8999 fc2737d5 2022-09-15 thomas *new_view = view_open(0, 0, y, x, TOG_VIEW_HELP);
9000 fc2737d5 2022-09-15 thomas if (*new_view == NULL)
9001 fc2737d5 2022-09-15 thomas return got_error_from_errno("view_open");
9002 fc2737d5 2022-09-15 thomas err = open_help_view(*new_view, view);
9003 fc2737d5 2022-09-15 thomas if (err)
9004 fc2737d5 2022-09-15 thomas view_close(*new_view);
9005 fc2737d5 2022-09-15 thomas break;
9006 2a31b33b 2022-07-23 thomas default:
9007 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9008 2a31b33b 2022-07-23 thomas }
9009 2a31b33b 2022-07-23 thomas
9010 2a31b33b 2022-07-23 thomas return err;
9011 2a31b33b 2022-07-23 thomas }
9012 2a31b33b 2022-07-23 thomas
9013 a5d43cac 2022-07-01 thomas /*
9014 a5d43cac 2022-07-01 thomas * If view was scrolled down to move the selected line into view when opening a
9015 a5d43cac 2022-07-01 thomas * horizontal split, scroll back up when closing the split/toggling fullscreen.
9016 a5d43cac 2022-07-01 thomas */
9017 6458efa5 2020-11-24 stsp static void
9018 a5d43cac 2022-07-01 thomas offset_selection_up(struct tog_view *view)
9019 a5d43cac 2022-07-01 thomas {
9020 a5d43cac 2022-07-01 thomas switch (view->type) {
9021 a5d43cac 2022-07-01 thomas case TOG_VIEW_BLAME: {
9022 a5d43cac 2022-07-01 thomas struct tog_blame_view_state *s = &view->state.blame;
9023 a5d43cac 2022-07-01 thomas if (s->first_displayed_line == 1) {
9024 a5d43cac 2022-07-01 thomas s->selected_line = MAX(s->selected_line - view->offset,
9025 a5d43cac 2022-07-01 thomas 1);
9026 a5d43cac 2022-07-01 thomas break;
9027 a5d43cac 2022-07-01 thomas }
9028 a5d43cac 2022-07-01 thomas if (s->first_displayed_line > view->offset)
9029 a5d43cac 2022-07-01 thomas s->first_displayed_line -= view->offset;
9030 a5d43cac 2022-07-01 thomas else
9031 a5d43cac 2022-07-01 thomas s->first_displayed_line = 1;
9032 a5d43cac 2022-07-01 thomas s->selected_line += view->offset;
9033 a5d43cac 2022-07-01 thomas break;
9034 a5d43cac 2022-07-01 thomas }
9035 a5d43cac 2022-07-01 thomas case TOG_VIEW_LOG:
9036 a5d43cac 2022-07-01 thomas log_scroll_up(&view->state.log, view->offset);
9037 a5d43cac 2022-07-01 thomas view->state.log.selected += view->offset;
9038 a5d43cac 2022-07-01 thomas break;
9039 a5d43cac 2022-07-01 thomas case TOG_VIEW_REF:
9040 a5d43cac 2022-07-01 thomas ref_scroll_up(&view->state.ref, view->offset);
9041 a5d43cac 2022-07-01 thomas view->state.ref.selected += view->offset;
9042 a5d43cac 2022-07-01 thomas break;
9043 a5d43cac 2022-07-01 thomas case TOG_VIEW_TREE:
9044 a5d43cac 2022-07-01 thomas tree_scroll_up(&view->state.tree, view->offset);
9045 a5d43cac 2022-07-01 thomas view->state.tree.selected += view->offset;
9046 a5d43cac 2022-07-01 thomas break;
9047 a5d43cac 2022-07-01 thomas default:
9048 a5d43cac 2022-07-01 thomas break;
9049 a5d43cac 2022-07-01 thomas }
9050 a5d43cac 2022-07-01 thomas
9051 a5d43cac 2022-07-01 thomas view->offset = 0;
9052 a5d43cac 2022-07-01 thomas }
9053 a5d43cac 2022-07-01 thomas
9054 a5d43cac 2022-07-01 thomas /*
9055 a5d43cac 2022-07-01 thomas * If the selected line is in the section of screen covered by the bottom split,
9056 a5d43cac 2022-07-01 thomas * scroll down offset lines to move it into view and index its new position.
9057 a5d43cac 2022-07-01 thomas */
9058 a5d43cac 2022-07-01 thomas static const struct got_error *
9059 a5d43cac 2022-07-01 thomas offset_selection_down(struct tog_view *view)
9060 a5d43cac 2022-07-01 thomas {
9061 a5d43cac 2022-07-01 thomas const struct got_error *err = NULL;
9062 a5d43cac 2022-07-01 thomas const struct got_error *(*scrolld)(struct tog_view *, int);
9063 a5d43cac 2022-07-01 thomas int *selected = NULL;
9064 a5d43cac 2022-07-01 thomas int header, offset;
9065 a5d43cac 2022-07-01 thomas
9066 a5d43cac 2022-07-01 thomas switch (view->type) {
9067 a5d43cac 2022-07-01 thomas case TOG_VIEW_BLAME: {
9068 a5d43cac 2022-07-01 thomas struct tog_blame_view_state *s = &view->state.blame;
9069 a5d43cac 2022-07-01 thomas header = 3;
9070 a5d43cac 2022-07-01 thomas scrolld = NULL;
9071 a5d43cac 2022-07-01 thomas if (s->selected_line > view->nlines - header) {
9072 a5d43cac 2022-07-01 thomas offset = abs(view->nlines - s->selected_line - header);
9073 a5d43cac 2022-07-01 thomas s->first_displayed_line += offset;
9074 a5d43cac 2022-07-01 thomas s->selected_line -= offset;
9075 a5d43cac 2022-07-01 thomas view->offset = offset;
9076 a5d43cac 2022-07-01 thomas }
9077 a5d43cac 2022-07-01 thomas break;
9078 a5d43cac 2022-07-01 thomas }
9079 a5d43cac 2022-07-01 thomas case TOG_VIEW_LOG: {
9080 a5d43cac 2022-07-01 thomas struct tog_log_view_state *s = &view->state.log;
9081 a5d43cac 2022-07-01 thomas scrolld = &log_scroll_down;
9082 64486692 2022-07-07 thomas header = view_is_parent_view(view) ? 3 : 2;
9083 a5d43cac 2022-07-01 thomas selected = &s->selected;
9084 a5d43cac 2022-07-01 thomas break;
9085 a5d43cac 2022-07-01 thomas }
9086 a5d43cac 2022-07-01 thomas case TOG_VIEW_REF: {
9087 a5d43cac 2022-07-01 thomas struct tog_ref_view_state *s = &view->state.ref;
9088 a5d43cac 2022-07-01 thomas scrolld = &ref_scroll_down;
9089 a5d43cac 2022-07-01 thomas header = 3;
9090 a5d43cac 2022-07-01 thomas selected = &s->selected;
9091 a5d43cac 2022-07-01 thomas break;
9092 a5d43cac 2022-07-01 thomas }
9093 a5d43cac 2022-07-01 thomas case TOG_VIEW_TREE: {
9094 a5d43cac 2022-07-01 thomas struct tog_tree_view_state *s = &view->state.tree;
9095 a5d43cac 2022-07-01 thomas scrolld = &tree_scroll_down;
9096 a5d43cac 2022-07-01 thomas header = 5;
9097 a5d43cac 2022-07-01 thomas selected = &s->selected;
9098 a5d43cac 2022-07-01 thomas break;
9099 a5d43cac 2022-07-01 thomas }
9100 a5d43cac 2022-07-01 thomas default:
9101 a5d43cac 2022-07-01 thomas selected = NULL;
9102 a5d43cac 2022-07-01 thomas scrolld = NULL;
9103 a5d43cac 2022-07-01 thomas header = 0;
9104 a5d43cac 2022-07-01 thomas break;
9105 a5d43cac 2022-07-01 thomas }
9106 a5d43cac 2022-07-01 thomas
9107 a5d43cac 2022-07-01 thomas if (selected && *selected > view->nlines - header) {
9108 a5d43cac 2022-07-01 thomas offset = abs(view->nlines - *selected - header);
9109 a5d43cac 2022-07-01 thomas view->offset = offset;
9110 a5d43cac 2022-07-01 thomas if (scrolld && offset) {
9111 a5d43cac 2022-07-01 thomas err = scrolld(view, offset);
9112 a5d43cac 2022-07-01 thomas *selected -= offset;
9113 a5d43cac 2022-07-01 thomas }
9114 a5d43cac 2022-07-01 thomas }
9115 a5d43cac 2022-07-01 thomas
9116 a5d43cac 2022-07-01 thomas return err;
9117 a5d43cac 2022-07-01 thomas }
9118 a5d43cac 2022-07-01 thomas
9119 a5d43cac 2022-07-01 thomas static void
9120 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
9121 ce5b7c56 2019-07-09 stsp {
9122 6059809a 2020-12-17 stsp size_t i;
9123 9f7d7167 2018-04-29 stsp
9124 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
9125 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
9126 641a8ee6 2022-02-16 thomas const struct tog_cmd *cmd = &tog_commands[i];
9127 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
9128 ce5b7c56 2019-07-09 stsp }
9129 6879ba42 2020-10-01 naddy fputc('\n', fp);
9130 ce5b7c56 2019-07-09 stsp }
9131 ce5b7c56 2019-07-09 stsp
9132 4ed7e80c 2018-05-20 stsp __dead static void
9133 6879ba42 2020-10-01 naddy usage(int hflag, int status)
9134 9f7d7167 2018-04-29 stsp {
9135 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
9136 6879ba42 2020-10-01 naddy
9137 6879ba42 2020-10-01 naddy fprintf(fp, "usage: %s [-h] [-V | --version] [command] [arg ...]\n",
9138 6879ba42 2020-10-01 naddy getprogname());
9139 6879ba42 2020-10-01 naddy if (hflag) {
9140 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
9141 6879ba42 2020-10-01 naddy list_commands(fp);
9142 ee85c5e8 2020-02-29 stsp }
9143 6879ba42 2020-10-01 naddy exit(status);
9144 9f7d7167 2018-04-29 stsp }
9145 9f7d7167 2018-04-29 stsp
9146 c2301be8 2018-04-30 stsp static char **
9147 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
9148 c2301be8 2018-04-30 stsp {
9149 ee85c5e8 2020-02-29 stsp va_list ap;
9150 c2301be8 2018-04-30 stsp char **argv;
9151 ee85c5e8 2020-02-29 stsp int i;
9152 c2301be8 2018-04-30 stsp
9153 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
9154 ee85c5e8 2020-02-29 stsp
9155 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
9156 c2301be8 2018-04-30 stsp if (argv == NULL)
9157 c2301be8 2018-04-30 stsp err(1, "calloc");
9158 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
9159 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
9160 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
9161 e10c916e 2019-09-15 hiltjo err(1, "strdup");
9162 c2301be8 2018-04-30 stsp }
9163 c2301be8 2018-04-30 stsp
9164 ee85c5e8 2020-02-29 stsp va_end(ap);
9165 c2301be8 2018-04-30 stsp return argv;
9166 ee85c5e8 2020-02-29 stsp }
9167 ee85c5e8 2020-02-29 stsp
9168 ee85c5e8 2020-02-29 stsp /*
9169 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
9170 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
9171 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
9172 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
9173 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
9174 ee85c5e8 2020-02-29 stsp */
9175 ee85c5e8 2020-02-29 stsp static const struct got_error *
9176 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
9177 ee85c5e8 2020-02-29 stsp {
9178 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
9179 641a8ee6 2022-02-16 thomas const struct tog_cmd *cmd = NULL;
9180 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
9181 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
9182 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
9183 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
9184 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9185 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
9186 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
9187 84de9106 2020-12-26 stsp
9188 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
9189 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
9190 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
9191 ee85c5e8 2020-02-29 stsp
9192 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
9193 7cd52833 2022-06-23 thomas if (error != NULL)
9194 7cd52833 2022-06-23 thomas goto done;
9195 7cd52833 2022-06-23 thomas
9196 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
9197 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
9198 ee85c5e8 2020-02-29 stsp goto done;
9199 ee85c5e8 2020-02-29 stsp
9200 ee85c5e8 2020-02-29 stsp if (worktree)
9201 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
9202 ee85c5e8 2020-02-29 stsp else
9203 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
9204 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
9205 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
9206 ee85c5e8 2020-02-29 stsp goto done;
9207 ee85c5e8 2020-02-29 stsp }
9208 ee85c5e8 2020-02-29 stsp
9209 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9210 ee85c5e8 2020-02-29 stsp if (error != NULL)
9211 ee85c5e8 2020-02-29 stsp goto done;
9212 ee85c5e8 2020-02-29 stsp
9213 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
9214 ee85c5e8 2020-02-29 stsp repo, worktree);
9215 ee85c5e8 2020-02-29 stsp if (error)
9216 ee85c5e8 2020-02-29 stsp goto done;
9217 ee85c5e8 2020-02-29 stsp
9218 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
9219 84de9106 2020-12-26 stsp if (error)
9220 84de9106 2020-12-26 stsp goto done;
9221 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
9222 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
9223 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
9224 ee85c5e8 2020-02-29 stsp if (error)
9225 ee85c5e8 2020-02-29 stsp goto done;
9226 ee85c5e8 2020-02-29 stsp
9227 ee85c5e8 2020-02-29 stsp if (worktree) {
9228 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9229 ee85c5e8 2020-02-29 stsp worktree = NULL;
9230 ee85c5e8 2020-02-29 stsp }
9231 ee85c5e8 2020-02-29 stsp
9232 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
9233 945f9229 2022-04-16 thomas if (error)
9234 945f9229 2022-04-16 thomas goto done;
9235 945f9229 2022-04-16 thomas
9236 945f9229 2022-04-16 thomas error = got_object_id_by_path(&id, repo, commit, in_repo_path);
9237 ee85c5e8 2020-02-29 stsp if (error) {
9238 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
9239 ee85c5e8 2020-02-29 stsp goto done;
9240 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
9241 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
9242 6879ba42 2020-10-01 naddy usage(1, 1);
9243 ee85c5e8 2020-02-29 stsp /* not reached */
9244 ee85c5e8 2020-02-29 stsp }
9245 ee85c5e8 2020-02-29 stsp
9246 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
9247 ee85c5e8 2020-02-29 stsp if (error)
9248 ee85c5e8 2020-02-29 stsp goto done;
9249 ee85c5e8 2020-02-29 stsp
9250 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
9251 ee85c5e8 2020-02-29 stsp argc = 4;
9252 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
9253 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
9254 ee85c5e8 2020-02-29 stsp done:
9255 1d0f4054 2021-06-17 stsp if (repo) {
9256 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
9257 1d0f4054 2021-06-17 stsp if (error == NULL)
9258 1d0f4054 2021-06-17 stsp error = close_err;
9259 1d0f4054 2021-06-17 stsp }
9260 945f9229 2022-04-16 thomas if (commit)
9261 945f9229 2022-04-16 thomas got_object_commit_close(commit);
9262 ee85c5e8 2020-02-29 stsp if (worktree)
9263 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9264 7cd52833 2022-06-23 thomas if (pack_fds) {
9265 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
9266 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
9267 7cd52833 2022-06-23 thomas if (error == NULL)
9268 7cd52833 2022-06-23 thomas error = pack_err;
9269 7cd52833 2022-06-23 thomas }
9270 ee85c5e8 2020-02-29 stsp free(id);
9271 ee85c5e8 2020-02-29 stsp free(commit_id_str);
9272 ee85c5e8 2020-02-29 stsp free(commit_id);
9273 ee85c5e8 2020-02-29 stsp free(cwd);
9274 ee85c5e8 2020-02-29 stsp free(repo_path);
9275 ee85c5e8 2020-02-29 stsp free(in_repo_path);
9276 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
9277 ee85c5e8 2020-02-29 stsp int i;
9278 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
9279 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
9280 ee85c5e8 2020-02-29 stsp free(cmd_argv);
9281 ee85c5e8 2020-02-29 stsp }
9282 87670572 2020-12-26 naddy tog_free_refs();
9283 ee85c5e8 2020-02-29 stsp return error;
9284 c2301be8 2018-04-30 stsp }
9285 c2301be8 2018-04-30 stsp
9286 9f7d7167 2018-04-29 stsp int
9287 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
9288 9f7d7167 2018-04-29 stsp {
9289 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
9290 641a8ee6 2022-02-16 thomas const struct tog_cmd *cmd = NULL;
9291 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
9292 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
9293 641a8ee6 2022-02-16 thomas static const struct option longopts[] = {
9294 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
9295 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
9296 83cd27f8 2020-01-13 stsp };
9297 adf4c9e0 2022-07-03 thomas char *diff_algo_str = NULL;
9298 9f7d7167 2018-04-29 stsp
9299 cacf1690 2022-09-06 thomas if (!isatty(STDIN_FILENO))
9300 cacf1690 2022-09-06 thomas errx(1, "standard input is not a tty");
9301 cacf1690 2022-09-06 thomas
9302 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
9303 9f7d7167 2018-04-29 stsp
9304 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
9305 9f7d7167 2018-04-29 stsp switch (ch) {
9306 9f7d7167 2018-04-29 stsp case 'h':
9307 9f7d7167 2018-04-29 stsp hflag = 1;
9308 9f7d7167 2018-04-29 stsp break;
9309 53ccebc2 2019-07-30 stsp case 'V':
9310 53ccebc2 2019-07-30 stsp Vflag = 1;
9311 53ccebc2 2019-07-30 stsp break;
9312 9f7d7167 2018-04-29 stsp default:
9313 6879ba42 2020-10-01 naddy usage(hflag, 1);
9314 9f7d7167 2018-04-29 stsp /* NOTREACHED */
9315 9f7d7167 2018-04-29 stsp }
9316 9f7d7167 2018-04-29 stsp }
9317 9f7d7167 2018-04-29 stsp
9318 9f7d7167 2018-04-29 stsp argc -= optind;
9319 9f7d7167 2018-04-29 stsp argv += optind;
9320 9814e6a3 2020-09-27 naddy optind = 1;
9321 c2301be8 2018-04-30 stsp optreset = 1;
9322 9f7d7167 2018-04-29 stsp
9323 53ccebc2 2019-07-30 stsp if (Vflag) {
9324 53ccebc2 2019-07-30 stsp got_version_print_str();
9325 6879ba42 2020-10-01 naddy return 0;
9326 53ccebc2 2019-07-30 stsp }
9327 4010e238 2020-12-04 stsp
9328 4010e238 2020-12-04 stsp #ifndef PROFILE
9329 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
9330 4010e238 2020-12-04 stsp NULL) == -1)
9331 4010e238 2020-12-04 stsp err(1, "pledge");
9332 4010e238 2020-12-04 stsp #endif
9333 53ccebc2 2019-07-30 stsp
9334 c2301be8 2018-04-30 stsp if (argc == 0) {
9335 f29d3e89 2018-06-23 stsp if (hflag)
9336 6879ba42 2020-10-01 naddy usage(hflag, 0);
9337 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
9338 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
9339 c2301be8 2018-04-30 stsp argc = 1;
9340 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
9341 c2301be8 2018-04-30 stsp } else {
9342 6059809a 2020-12-17 stsp size_t i;
9343 9f7d7167 2018-04-29 stsp
9344 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
9345 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
9346 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
9347 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
9348 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
9349 9f7d7167 2018-04-29 stsp break;
9350 9f7d7167 2018-04-29 stsp }
9351 9f7d7167 2018-04-29 stsp }
9352 ee85c5e8 2020-02-29 stsp }
9353 3642c4c6 2019-07-09 stsp
9354 adf4c9e0 2022-07-03 thomas diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
9355 adf4c9e0 2022-07-03 thomas if (diff_algo_str) {
9356 adf4c9e0 2022-07-03 thomas if (strcasecmp(diff_algo_str, "patience") == 0)
9357 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
9358 adf4c9e0 2022-07-03 thomas if (strcasecmp(diff_algo_str, "myers") == 0)
9359 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
9360 adf4c9e0 2022-07-03 thomas }
9361 adf4c9e0 2022-07-03 thomas
9362 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
9363 ee85c5e8 2020-02-29 stsp if (argc != 1)
9364 6879ba42 2020-10-01 naddy usage(0, 1);
9365 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
9366 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
9367 ee85c5e8 2020-02-29 stsp } else {
9368 ee85c5e8 2020-02-29 stsp if (hflag)
9369 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
9370 ee85c5e8 2020-02-29 stsp else
9371 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
9372 9f7d7167 2018-04-29 stsp }
9373 9f7d7167 2018-04-29 stsp
9374 9f7d7167 2018-04-29 stsp endwin();
9375 b46c1e04 2020-09-20 naddy putchar('\n');
9376 a2f4a359 2020-02-28 stsp if (cmd_argv) {
9377 a2f4a359 2020-02-28 stsp int i;
9378 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
9379 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
9380 a2f4a359 2020-02-28 stsp free(cmd_argv);
9381 a2f4a359 2020-02-28 stsp }
9382 a2f4a359 2020-02-28 stsp
9383 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
9384 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9385 9f7d7167 2018-04-29 stsp return 0;
9386 9f7d7167 2018-04-29 stsp }