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 06ff88bb 2022-09-19 thomas KEY_("q", "Quit the focussed view; Quit help screen"), \
555 fc2737d5 2022-09-15 thomas KEY_("Q", "Quit tog"), \
556 fc2737d5 2022-09-15 thomas \
557 d0d3e7a4 2022-09-23 thomas KEYMAP_("Log view", 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 d0d3e7a4 2022-09-23 thomas KEYMAP_("Diff view", 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 d0d3e7a4 2022-09-23 thomas KEYMAP_("Blame view", 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 d0d3e7a4 2022-09-23 thomas KEYMAP_("Tree view", 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 d0d3e7a4 2022-09-23 thomas KEYMAP_("Ref view", 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 47cc6e77 2022-10-24 thomas tog_sigint_received || tog_sigterm_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 a7dd23ad 2022-09-19 thomas if (view_is_parent_view(view) && request != TOG_VIEW_HELP)
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 a7dd23ad 2022-09-19 thomas if (view_is_parent_view(view) && view->mode == TOG_VIEW_SPLIT_HRZN &&
1249 a7dd23ad 2022-09-19 thomas request != TOG_VIEW_HELP) {
1250 2a31b33b 2022-07-23 thomas err = view_init_hsplit(view, y);
1251 2a31b33b 2022-07-23 thomas if (err)
1252 2a31b33b 2022-07-23 thomas return err;
1253 2a31b33b 2022-07-23 thomas }
1254 2a31b33b 2022-07-23 thomas
1255 2a31b33b 2022-07-23 thomas view->focussed = 0;
1256 2a31b33b 2022-07-23 thomas new_view->focussed = 1;
1257 2a31b33b 2022-07-23 thomas new_view->mode = view->mode;
1258 a7dd23ad 2022-09-19 thomas new_view->nlines = request == TOG_VIEW_HELP ?
1259 a7dd23ad 2022-09-19 thomas view->lines : view->lines - y;
1260 2a31b33b 2022-07-23 thomas
1261 a7dd23ad 2022-09-19 thomas if (view_is_parent_view(view) && request != TOG_VIEW_HELP) {
1262 2a31b33b 2022-07-23 thomas view_transfer_size(new_view, view);
1263 2a31b33b 2022-07-23 thomas err = view_close_child(view);
1264 2a31b33b 2022-07-23 thomas if (err)
1265 2a31b33b 2022-07-23 thomas return err;
1266 2a31b33b 2022-07-23 thomas err = view_set_child(view, new_view);
1267 2a31b33b 2022-07-23 thomas if (err)
1268 2a31b33b 2022-07-23 thomas return err;
1269 2a31b33b 2022-07-23 thomas view->focus_child = 1;
1270 2a31b33b 2022-07-23 thomas } else
1271 2a31b33b 2022-07-23 thomas *requested = new_view;
1272 2a31b33b 2022-07-23 thomas
1273 2a31b33b 2022-07-23 thomas return NULL;
1274 2a31b33b 2022-07-23 thomas }
1275 2a31b33b 2022-07-23 thomas
1276 34bc9ec9 2019-02-22 stsp static void
1277 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
1278 25791caa 2018-10-24 stsp {
1279 25791caa 2018-10-24 stsp int cols, lines;
1280 25791caa 2018-10-24 stsp struct winsize size;
1281 25791caa 2018-10-24 stsp
1282 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
1283 25791caa 2018-10-24 stsp cols = 80; /* Default */
1284 25791caa 2018-10-24 stsp lines = 24;
1285 25791caa 2018-10-24 stsp } else {
1286 25791caa 2018-10-24 stsp cols = size.ws_col;
1287 25791caa 2018-10-24 stsp lines = size.ws_row;
1288 25791caa 2018-10-24 stsp }
1289 25791caa 2018-10-24 stsp resize_term(lines, cols);
1290 2b49a8ae 2019-06-22 stsp }
1291 2b49a8ae 2019-06-22 stsp
1292 2b49a8ae 2019-06-22 stsp static const struct got_error *
1293 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
1294 2b49a8ae 2019-06-22 stsp {
1295 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
1296 a5d43cac 2022-07-01 thomas struct tog_view *v = view;
1297 2b49a8ae 2019-06-22 stsp char pattern[1024];
1298 2b49a8ae 2019-06-22 stsp int ret;
1299 c0c4acc8 2021-01-24 stsp
1300 c0c4acc8 2021-01-24 stsp if (view->search_started) {
1301 c0c4acc8 2021-01-24 stsp regfree(&view->regex);
1302 c0c4acc8 2021-01-24 stsp view->searching = 0;
1303 c0c4acc8 2021-01-24 stsp memset(&view->regmatch, 0, sizeof(view->regmatch));
1304 c0c4acc8 2021-01-24 stsp }
1305 c0c4acc8 2021-01-24 stsp view->search_started = 0;
1306 2b49a8ae 2019-06-22 stsp
1307 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
1308 2b49a8ae 2019-06-22 stsp return NULL;
1309 2b49a8ae 2019-06-22 stsp
1310 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
1311 a5d43cac 2022-07-01 thomas v = view->child;
1312 2b49a8ae 2019-06-22 stsp
1313 a5d43cac 2022-07-01 thomas mvwaddstr(v->window, v->nlines - 1, 0, "/");
1314 a5d43cac 2022-07-01 thomas wclrtoeol(v->window);
1315 a5d43cac 2022-07-01 thomas
1316 634cb454 2022-07-03 thomas nodelay(view->window, FALSE); /* block for search term input */
1317 2b49a8ae 2019-06-22 stsp nocbreak();
1318 2b49a8ae 2019-06-22 stsp echo();
1319 a5d43cac 2022-07-01 thomas ret = wgetnstr(v->window, pattern, sizeof(pattern));
1320 a5d43cac 2022-07-01 thomas wrefresh(v->window);
1321 2b49a8ae 2019-06-22 stsp cbreak();
1322 2b49a8ae 2019-06-22 stsp noecho();
1323 634cb454 2022-07-03 thomas nodelay(view->window, TRUE);
1324 2b49a8ae 2019-06-22 stsp if (ret == ERR)
1325 2b49a8ae 2019-06-22 stsp return NULL;
1326 2b49a8ae 2019-06-22 stsp
1327 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
1328 7c32bd05 2019-06-22 stsp err = view->search_start(view);
1329 7c32bd05 2019-06-22 stsp if (err) {
1330 7c32bd05 2019-06-22 stsp regfree(&view->regex);
1331 7c32bd05 2019-06-22 stsp return err;
1332 7c32bd05 2019-06-22 stsp }
1333 c0c4acc8 2021-01-24 stsp view->search_started = 1;
1334 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
1335 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
1336 2b49a8ae 2019-06-22 stsp view->search_next(view);
1337 2b49a8ae 2019-06-22 stsp }
1338 2b49a8ae 2019-06-22 stsp
1339 2b49a8ae 2019-06-22 stsp return NULL;
1340 64486692 2022-07-07 thomas }
1341 64486692 2022-07-07 thomas
1342 ddbc4d37 2022-07-12 thomas /* Switch split mode. If view is a parent or child, draw the new splitscreen. */
1343 64486692 2022-07-07 thomas static const struct got_error *
1344 64486692 2022-07-07 thomas switch_split(struct tog_view *view)
1345 64486692 2022-07-07 thomas {
1346 64486692 2022-07-07 thomas const struct got_error *err = NULL;
1347 64486692 2022-07-07 thomas struct tog_view *v = NULL;
1348 64486692 2022-07-07 thomas
1349 64486692 2022-07-07 thomas if (view->parent)
1350 64486692 2022-07-07 thomas v = view->parent;
1351 64486692 2022-07-07 thomas else
1352 64486692 2022-07-07 thomas v = view;
1353 64486692 2022-07-07 thomas
1354 ddbc4d37 2022-07-12 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN)
1355 ddbc4d37 2022-07-12 thomas v->mode = TOG_VIEW_SPLIT_VERT;
1356 ddbc4d37 2022-07-12 thomas else
1357 64486692 2022-07-07 thomas v->mode = TOG_VIEW_SPLIT_HRZN;
1358 64486692 2022-07-07 thomas
1359 ddbc4d37 2022-07-12 thomas if (!v->child)
1360 ddbc4d37 2022-07-12 thomas return NULL;
1361 ddbc4d37 2022-07-12 thomas else if (v->mode == TOG_VIEW_SPLIT_VERT && v->cols < 120)
1362 ddbc4d37 2022-07-12 thomas v->mode = TOG_VIEW_SPLIT_NONE;
1363 ddbc4d37 2022-07-12 thomas
1364 64486692 2022-07-07 thomas view_get_split(v, &v->child->begin_y, &v->child->begin_x);
1365 53d2bdd3 2022-07-10 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN && v->child->resized_y)
1366 53d2bdd3 2022-07-10 thomas v->child->begin_y = v->child->resized_y;
1367 ddbc4d37 2022-07-12 thomas else if (v->mode == TOG_VIEW_SPLIT_VERT && v->child->resized_x)
1368 53d2bdd3 2022-07-10 thomas v->child->begin_x = v->child->resized_x;
1369 64486692 2022-07-07 thomas
1370 ddbc4d37 2022-07-12 thomas
1371 64486692 2022-07-07 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1372 64486692 2022-07-07 thomas v->ncols = COLS;
1373 64486692 2022-07-07 thomas v->child->ncols = COLS;
1374 ddbc4d37 2022-07-12 thomas v->child->nscrolled = LINES - v->child->nlines;
1375 64486692 2022-07-07 thomas
1376 64486692 2022-07-07 thomas err = view_init_hsplit(v, v->child->begin_y);
1377 64486692 2022-07-07 thomas if (err)
1378 64486692 2022-07-07 thomas return err;
1379 64486692 2022-07-07 thomas }
1380 64486692 2022-07-07 thomas v->child->mode = v->mode;
1381 64486692 2022-07-07 thomas v->child->nlines = v->lines - v->child->begin_y;
1382 64486692 2022-07-07 thomas v->focus_child = 1;
1383 64486692 2022-07-07 thomas
1384 64486692 2022-07-07 thomas err = view_fullscreen(v);
1385 64486692 2022-07-07 thomas if (err)
1386 64486692 2022-07-07 thomas return err;
1387 64486692 2022-07-07 thomas err = view_splitscreen(v->child);
1388 64486692 2022-07-07 thomas if (err)
1389 64486692 2022-07-07 thomas return err;
1390 64486692 2022-07-07 thomas
1391 ddbc4d37 2022-07-12 thomas if (v->mode == TOG_VIEW_SPLIT_NONE)
1392 ddbc4d37 2022-07-12 thomas v->mode = TOG_VIEW_SPLIT_VERT;
1393 ddbc4d37 2022-07-12 thomas if (v->mode == TOG_VIEW_SPLIT_HRZN) {
1394 ddbc4d37 2022-07-12 thomas err = offset_selection_down(v);
1395 cf1fe301 2022-07-29 thomas if (err)
1396 cf1fe301 2022-07-29 thomas return err;
1397 64486692 2022-07-07 thomas err = offset_selection_down(v->child);
1398 cf1fe301 2022-07-29 thomas if (err)
1399 cf1fe301 2022-07-29 thomas return err;
1400 ddbc4d37 2022-07-12 thomas } else {
1401 ddbc4d37 2022-07-12 thomas offset_selection_up(v);
1402 ddbc4d37 2022-07-12 thomas offset_selection_up(v->child);
1403 64486692 2022-07-07 thomas }
1404 f4e6231a 2022-07-22 thomas if (v->resize)
1405 f4e6231a 2022-07-22 thomas err = v->resize(v, 0);
1406 f4e6231a 2022-07-22 thomas else if (v->child->resize)
1407 f4e6231a 2022-07-22 thomas err = v->child->resize(v->child, 0);
1408 64486692 2022-07-07 thomas
1409 64486692 2022-07-07 thomas return err;
1410 0cf4efb1 2018-09-29 stsp }
1411 6d0fee91 2018-08-01 stsp
1412 07b0611c 2022-06-23 thomas /*
1413 fa502711 2022-07-03 thomas * Compute view->count from numeric input. Assign total to view->count and
1414 fa502711 2022-07-03 thomas * return first non-numeric key entered.
1415 07b0611c 2022-06-23 thomas */
1416 07b0611c 2022-06-23 thomas static int
1417 07b0611c 2022-06-23 thomas get_compound_key(struct tog_view *view, int c)
1418 07b0611c 2022-06-23 thomas {
1419 a5d43cac 2022-07-01 thomas struct tog_view *v = view;
1420 a5d43cac 2022-07-01 thomas int x, n = 0;
1421 07b0611c 2022-06-23 thomas
1422 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
1423 a5d43cac 2022-07-01 thomas v = view->child;
1424 a5d43cac 2022-07-01 thomas else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
1425 a5d43cac 2022-07-01 thomas v = view->parent;
1426 a5d43cac 2022-07-01 thomas
1427 07b0611c 2022-06-23 thomas view->count = 0;
1428 fa502711 2022-07-03 thomas cbreak(); /* block for input */
1429 07dd3ed3 2022-08-06 thomas nodelay(view->window, FALSE);
1430 a5d43cac 2022-07-01 thomas wmove(v->window, v->nlines - 1, 0);
1431 a5d43cac 2022-07-01 thomas wclrtoeol(v->window);
1432 a5d43cac 2022-07-01 thomas waddch(v->window, ':');
1433 07b0611c 2022-06-23 thomas
1434 07b0611c 2022-06-23 thomas do {
1435 a5d43cac 2022-07-01 thomas x = getcurx(v->window);
1436 a5d43cac 2022-07-01 thomas if (x != ERR && x < view->ncols) {
1437 a5d43cac 2022-07-01 thomas waddch(v->window, c);
1438 a5d43cac 2022-07-01 thomas wrefresh(v->window);
1439 a5d43cac 2022-07-01 thomas }
1440 a5d43cac 2022-07-01 thomas
1441 07b0611c 2022-06-23 thomas /*
1442 07b0611c 2022-06-23 thomas * Don't overflow. Max valid request should be the greatest
1443 07b0611c 2022-06-23 thomas * between the longest and total lines; cap at 10 million.
1444 07b0611c 2022-06-23 thomas */
1445 07b0611c 2022-06-23 thomas if (n >= 9999999)
1446 07b0611c 2022-06-23 thomas n = 9999999;
1447 07b0611c 2022-06-23 thomas else
1448 07b0611c 2022-06-23 thomas n = n * 10 + (c - '0');
1449 07b0611c 2022-06-23 thomas } while (((c = wgetch(view->window))) >= '0' && c <= '9' && c != ERR);
1450 07b0611c 2022-06-23 thomas
1451 07dd3ed3 2022-08-06 thomas if (c == 'G' || c == 'g') { /* nG key map */
1452 07dd3ed3 2022-08-06 thomas view->gline = view->hiline = n;
1453 07dd3ed3 2022-08-06 thomas n = 0;
1454 07dd3ed3 2022-08-06 thomas c = 0;
1455 07dd3ed3 2022-08-06 thomas }
1456 07dd3ed3 2022-08-06 thomas
1457 07b0611c 2022-06-23 thomas /* Massage excessive or inapplicable values at the input handler. */
1458 07b0611c 2022-06-23 thomas view->count = n;
1459 07b0611c 2022-06-23 thomas
1460 07b0611c 2022-06-23 thomas return c;
1461 07b0611c 2022-06-23 thomas }
1462 07b0611c 2022-06-23 thomas
1463 0cf4efb1 2018-09-29 stsp static const struct got_error *
1464 e78dc838 2020-12-04 stsp view_input(struct tog_view **new, int *done, struct tog_view *view,
1465 e78dc838 2020-12-04 stsp struct tog_view_list_head *views)
1466 e5a0f69f 2018-08-18 stsp {
1467 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1468 669b5ffa 2018-10-07 stsp struct tog_view *v;
1469 1a76625f 2018-10-22 stsp int ch, errcode;
1470 e5a0f69f 2018-08-18 stsp
1471 e5a0f69f 2018-08-18 stsp *new = NULL;
1472 8f4ed634 2020-03-26 stsp
1473 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
1474 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
1475 07b0611c 2022-06-23 thomas view->search_next_done == TOG_SEARCH_HAVE_NONE) {
1476 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
1477 07b0611c 2022-06-23 thomas view->count = 0;
1478 07b0611c 2022-06-23 thomas }
1479 e5a0f69f 2018-08-18 stsp
1480 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
1481 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1482 82954512 2020-02-03 stsp if (errcode)
1483 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1484 82954512 2020-02-03 stsp "pthread_mutex_unlock");
1485 3da8ef85 2021-09-21 stsp sched_yield();
1486 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
1487 82954512 2020-02-03 stsp if (errcode)
1488 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1489 82954512 2020-02-03 stsp "pthread_mutex_lock");
1490 60493ae3 2019-06-20 stsp view->search_next(view);
1491 60493ae3 2019-06-20 stsp return NULL;
1492 60493ae3 2019-06-20 stsp }
1493 60493ae3 2019-06-20 stsp
1494 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
1495 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1496 1a76625f 2018-10-22 stsp if (errcode)
1497 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
1498 634cb454 2022-07-03 thomas /* If we have an unfinished count, let C-g or backspace abort. */
1499 634cb454 2022-07-03 thomas if (view->count && --view->count) {
1500 634cb454 2022-07-03 thomas cbreak();
1501 634cb454 2022-07-03 thomas nodelay(view->window, TRUE);
1502 07b0611c 2022-06-23 thomas ch = wgetch(view->window);
1503 634cb454 2022-07-03 thomas if (ch == CTRL('g') || ch == KEY_BACKSPACE)
1504 634cb454 2022-07-03 thomas view->count = 0;
1505 634cb454 2022-07-03 thomas else
1506 634cb454 2022-07-03 thomas ch = view->ch;
1507 634cb454 2022-07-03 thomas } else {
1508 634cb454 2022-07-03 thomas ch = wgetch(view->window);
1509 07b0611c 2022-06-23 thomas if (ch >= '1' && ch <= '9')
1510 07b0611c 2022-06-23 thomas view->ch = ch = get_compound_key(view, ch);
1511 07b0611c 2022-06-23 thomas }
1512 07dd3ed3 2022-08-06 thomas if (view->hiline && ch != ERR && ch != 0)
1513 07dd3ed3 2022-08-06 thomas view->hiline = 0; /* key pressed, clear line highlight */
1514 07dd3ed3 2022-08-06 thomas nodelay(view->window, TRUE);
1515 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1516 1a76625f 2018-10-22 stsp if (errcode)
1517 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1518 25791caa 2018-10-24 stsp
1519 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
1520 25791caa 2018-10-24 stsp tog_resizeterm();
1521 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
1522 61266923 2020-01-14 stsp tog_sigcont_received = 0;
1523 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
1524 25791caa 2018-10-24 stsp err = view_resize(v);
1525 25791caa 2018-10-24 stsp if (err)
1526 25791caa 2018-10-24 stsp return err;
1527 e78dc838 2020-12-04 stsp err = v->input(new, v, KEY_RESIZE);
1528 25791caa 2018-10-24 stsp if (err)
1529 25791caa 2018-10-24 stsp return err;
1530 cdfcfb03 2020-12-06 stsp if (v->child) {
1531 cdfcfb03 2020-12-06 stsp err = view_resize(v->child);
1532 cdfcfb03 2020-12-06 stsp if (err)
1533 cdfcfb03 2020-12-06 stsp return err;
1534 cdfcfb03 2020-12-06 stsp err = v->child->input(new, v->child,
1535 cdfcfb03 2020-12-06 stsp KEY_RESIZE);
1536 cdfcfb03 2020-12-06 stsp if (err)
1537 cdfcfb03 2020-12-06 stsp return err;
1538 53d2bdd3 2022-07-10 thomas if (v->child->resized_x || v->child->resized_y) {
1539 53d2bdd3 2022-07-10 thomas err = view_resize_split(v, 0);
1540 53d2bdd3 2022-07-10 thomas if (err)
1541 53d2bdd3 2022-07-10 thomas return err;
1542 53d2bdd3 2022-07-10 thomas }
1543 cdfcfb03 2020-12-06 stsp }
1544 25791caa 2018-10-24 stsp }
1545 25791caa 2018-10-24 stsp }
1546 25791caa 2018-10-24 stsp
1547 e5a0f69f 2018-08-18 stsp switch (ch) {
1548 fc2737d5 2022-09-15 thomas case '?':
1549 fc2737d5 2022-09-15 thomas case 'H':
1550 fc2737d5 2022-09-15 thomas case KEY_F(1):
1551 fc2737d5 2022-09-15 thomas if (view->type == TOG_VIEW_HELP)
1552 fc2737d5 2022-09-15 thomas err = view->reset(view);
1553 fc2737d5 2022-09-15 thomas else
1554 fc2737d5 2022-09-15 thomas err = view_request_new(new, view, TOG_VIEW_HELP);
1555 fc2737d5 2022-09-15 thomas break;
1556 1e37a5c2 2019-05-12 jcs case '\t':
1557 07b0611c 2022-06-23 thomas view->count = 0;
1558 1e37a5c2 2019-05-12 jcs if (view->child) {
1559 e78dc838 2020-12-04 stsp view->focussed = 0;
1560 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1561 e78dc838 2020-12-04 stsp view->focus_child = 1;
1562 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
1563 e78dc838 2020-12-04 stsp view->focussed = 0;
1564 e78dc838 2020-12-04 stsp view->parent->focussed = 1;
1565 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1566 a5d43cac 2022-07-01 thomas if (!view_is_splitscreen(view)) {
1567 3a0139e8 2022-07-22 thomas if (view->parent->resize) {
1568 3a0139e8 2022-07-22 thomas err = view->parent->resize(view->parent,
1569 3a0139e8 2022-07-22 thomas 0);
1570 a5d43cac 2022-07-01 thomas if (err)
1571 a5d43cac 2022-07-01 thomas return err;
1572 a5d43cac 2022-07-01 thomas }
1573 a5d43cac 2022-07-01 thomas offset_selection_up(view->parent);
1574 b65b3ea0 2022-06-23 thomas err = view_fullscreen(view->parent);
1575 a5d43cac 2022-07-01 thomas if (err)
1576 a5d43cac 2022-07-01 thomas return err;
1577 a5d43cac 2022-07-01 thomas }
1578 1e37a5c2 2019-05-12 jcs }
1579 1e37a5c2 2019-05-12 jcs break;
1580 1e37a5c2 2019-05-12 jcs case 'q':
1581 a5d43cac 2022-07-01 thomas if (view->parent && view->mode == TOG_VIEW_SPLIT_HRZN) {
1582 3a0139e8 2022-07-22 thomas if (view->parent->resize) {
1583 a5d43cac 2022-07-01 thomas /* might need more commits to fill fullscreen */
1584 3a0139e8 2022-07-22 thomas err = view->parent->resize(view->parent, 0);
1585 a5d43cac 2022-07-01 thomas if (err)
1586 a5d43cac 2022-07-01 thomas break;
1587 a5d43cac 2022-07-01 thomas }
1588 a5d43cac 2022-07-01 thomas offset_selection_up(view->parent);
1589 a5d43cac 2022-07-01 thomas }
1590 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1591 9970f7fc 2020-12-03 stsp view->dying = 1;
1592 1e37a5c2 2019-05-12 jcs break;
1593 1e37a5c2 2019-05-12 jcs case 'Q':
1594 1e37a5c2 2019-05-12 jcs *done = 1;
1595 1e37a5c2 2019-05-12 jcs break;
1596 1c5e5faa 2022-06-23 thomas case 'F':
1597 07b0611c 2022-06-23 thomas view->count = 0;
1598 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
1599 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
1600 1e37a5c2 2019-05-12 jcs break;
1601 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
1602 e78dc838 2020-12-04 stsp view->focussed = 0;
1603 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1604 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
1605 53d2bdd3 2022-07-10 thomas } else {
1606 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
1607 53d2bdd3 2022-07-10 thomas if (!err)
1608 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, 0);
1609 53d2bdd3 2022-07-10 thomas }
1610 1e37a5c2 2019-05-12 jcs if (err)
1611 1e37a5c2 2019-05-12 jcs break;
1612 e78dc838 2020-12-04 stsp err = view->child->input(new, view->child,
1613 9970f7fc 2020-12-03 stsp KEY_RESIZE);
1614 1e37a5c2 2019-05-12 jcs } else {
1615 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
1616 e78dc838 2020-12-04 stsp view->parent->focussed = 0;
1617 e78dc838 2020-12-04 stsp view->focussed = 1;
1618 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
1619 1e37a5c2 2019-05-12 jcs } else {
1620 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
1621 a5d43cac 2022-07-01 thomas if (!err && view->mode != TOG_VIEW_SPLIT_HRZN)
1622 b65b3ea0 2022-06-23 thomas err = view_resize(view->parent);
1623 53d2bdd3 2022-07-10 thomas if (!err)
1624 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, 0);
1625 669b5ffa 2018-10-07 stsp }
1626 1e37a5c2 2019-05-12 jcs if (err)
1627 1e37a5c2 2019-05-12 jcs break;
1628 e78dc838 2020-12-04 stsp err = view->input(new, view, KEY_RESIZE);
1629 a5d43cac 2022-07-01 thomas }
1630 a5d43cac 2022-07-01 thomas if (err)
1631 a5d43cac 2022-07-01 thomas break;
1632 3a0139e8 2022-07-22 thomas if (view->resize) {
1633 3a0139e8 2022-07-22 thomas err = view->resize(view, 0);
1634 a5d43cac 2022-07-01 thomas if (err)
1635 a5d43cac 2022-07-01 thomas break;
1636 1e37a5c2 2019-05-12 jcs }
1637 a5d43cac 2022-07-01 thomas if (view->parent)
1638 a5d43cac 2022-07-01 thomas err = offset_selection_down(view->parent);
1639 a5d43cac 2022-07-01 thomas if (!err)
1640 a5d43cac 2022-07-01 thomas err = offset_selection_down(view);
1641 1e37a5c2 2019-05-12 jcs break;
1642 64486692 2022-07-07 thomas case 'S':
1643 53d2bdd3 2022-07-10 thomas view->count = 0;
1644 64486692 2022-07-07 thomas err = switch_split(view);
1645 53d2bdd3 2022-07-10 thomas break;
1646 53d2bdd3 2022-07-10 thomas case '-':
1647 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, -1);
1648 64486692 2022-07-07 thomas break;
1649 53d2bdd3 2022-07-10 thomas case '+':
1650 53d2bdd3 2022-07-10 thomas err = view_resize_split(view, 1);
1651 53d2bdd3 2022-07-10 thomas break;
1652 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
1653 60493ae3 2019-06-20 stsp break;
1654 60493ae3 2019-06-20 stsp case '/':
1655 07b0611c 2022-06-23 thomas view->count = 0;
1656 60493ae3 2019-06-20 stsp if (view->search_start)
1657 2b49a8ae 2019-06-22 stsp view_search_start(view);
1658 60493ae3 2019-06-20 stsp else
1659 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1660 1e37a5c2 2019-05-12 jcs break;
1661 b1bf1435 2019-06-21 stsp case 'N':
1662 60493ae3 2019-06-20 stsp case 'n':
1663 c0c4acc8 2021-01-24 stsp if (view->search_started && view->search_next) {
1664 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
1665 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
1666 60493ae3 2019-06-20 stsp view->search_next_done = 0;
1667 60493ae3 2019-06-20 stsp view->search_next(view);
1668 60493ae3 2019-06-20 stsp } else
1669 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1670 adf4c9e0 2022-07-03 thomas break;
1671 adf4c9e0 2022-07-03 thomas case 'A':
1672 adf4c9e0 2022-07-03 thomas if (tog_diff_algo == GOT_DIFF_ALGORITHM_MYERS)
1673 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
1674 adf4c9e0 2022-07-03 thomas else
1675 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
1676 adf4c9e0 2022-07-03 thomas TAILQ_FOREACH(v, views, entry) {
1677 adf4c9e0 2022-07-03 thomas if (v->reset) {
1678 adf4c9e0 2022-07-03 thomas err = v->reset(v);
1679 adf4c9e0 2022-07-03 thomas if (err)
1680 adf4c9e0 2022-07-03 thomas return err;
1681 adf4c9e0 2022-07-03 thomas }
1682 adf4c9e0 2022-07-03 thomas if (v->child && v->child->reset) {
1683 adf4c9e0 2022-07-03 thomas err = v->child->reset(v->child);
1684 adf4c9e0 2022-07-03 thomas if (err)
1685 adf4c9e0 2022-07-03 thomas return err;
1686 adf4c9e0 2022-07-03 thomas }
1687 adf4c9e0 2022-07-03 thomas }
1688 60493ae3 2019-06-20 stsp break;
1689 1e37a5c2 2019-05-12 jcs default:
1690 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
1691 1e37a5c2 2019-05-12 jcs break;
1692 e5a0f69f 2018-08-18 stsp }
1693 e5a0f69f 2018-08-18 stsp
1694 e5a0f69f 2018-08-18 stsp return err;
1695 bcbd79e2 2018-08-19 stsp }
1696 bcbd79e2 2018-08-19 stsp
1697 ef20f542 2022-06-26 thomas static int
1698 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
1699 a3404814 2018-09-02 stsp {
1700 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
1701 acdafe9c 2020-12-03 stsp if (view->child == NULL || view->child->focussed)
1702 669b5ffa 2018-10-07 stsp return 0;
1703 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
1704 669b5ffa 2018-10-07 stsp return 0;
1705 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
1706 a3404814 2018-09-02 stsp return 0;
1707 a3404814 2018-09-02 stsp
1708 669b5ffa 2018-10-07 stsp return view->focussed;
1709 a3404814 2018-09-02 stsp }
1710 a3404814 2018-09-02 stsp
1711 bcbd79e2 2018-08-19 stsp static const struct got_error *
1712 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
1713 e5a0f69f 2018-08-18 stsp {
1714 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1715 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
1716 fb59748f 2020-12-05 stsp struct tog_view *new_view;
1717 64486692 2022-07-07 thomas char *mode;
1718 fd823528 2018-10-22 stsp int fast_refresh = 10;
1719 1a76625f 2018-10-22 stsp int done = 0, errcode;
1720 e5a0f69f 2018-08-18 stsp
1721 64486692 2022-07-07 thomas mode = getenv("TOG_VIEW_SPLIT_MODE");
1722 64486692 2022-07-07 thomas if (!mode || !(*mode == 'h' || *mode == 'H'))
1723 64486692 2022-07-07 thomas view->mode = TOG_VIEW_SPLIT_VERT;
1724 64486692 2022-07-07 thomas else
1725 64486692 2022-07-07 thomas view->mode = TOG_VIEW_SPLIT_HRZN;
1726 64486692 2022-07-07 thomas
1727 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1728 1a76625f 2018-10-22 stsp if (errcode)
1729 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1730 1a76625f 2018-10-22 stsp
1731 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
1732 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
1733 e5a0f69f 2018-08-18 stsp
1734 1004088d 2018-09-29 stsp view->focussed = 1;
1735 878940b7 2018-09-29 stsp err = view->show(view);
1736 0cf4efb1 2018-09-29 stsp if (err)
1737 0cf4efb1 2018-09-29 stsp return err;
1738 0cf4efb1 2018-09-29 stsp update_panels();
1739 0cf4efb1 2018-09-29 stsp doupdate();
1740 f2d749db 2022-07-12 thomas while (!TAILQ_EMPTY(&views) && !done && !tog_thread_error &&
1741 f2d749db 2022-07-12 thomas !tog_fatal_signal_received()) {
1742 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
1743 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
1744 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
1745 fd823528 2018-10-22 stsp
1746 e78dc838 2020-12-04 stsp err = view_input(&new_view, &done, view, &views);
1747 e5a0f69f 2018-08-18 stsp if (err)
1748 e5a0f69f 2018-08-18 stsp break;
1749 9970f7fc 2020-12-03 stsp if (view->dying) {
1750 e78dc838 2020-12-04 stsp struct tog_view *v, *prev = NULL;
1751 669b5ffa 2018-10-07 stsp
1752 9970f7fc 2020-12-03 stsp if (view_is_parent_view(view))
1753 9970f7fc 2020-12-03 stsp prev = TAILQ_PREV(view, tog_view_list_head,
1754 9970f7fc 2020-12-03 stsp entry);
1755 e78dc838 2020-12-04 stsp else if (view->parent)
1756 669b5ffa 2018-10-07 stsp prev = view->parent;
1757 669b5ffa 2018-10-07 stsp
1758 e78dc838 2020-12-04 stsp if (view->parent) {
1759 9970f7fc 2020-12-03 stsp view->parent->child = NULL;
1760 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1761 a5d43cac 2022-07-01 thomas /* Restore fullscreen line height. */
1762 a5d43cac 2022-07-01 thomas view->parent->nlines = view->parent->lines;
1763 40236d76 2022-06-23 thomas err = view_resize(view->parent);
1764 40236d76 2022-06-23 thomas if (err)
1765 40236d76 2022-06-23 thomas break;
1766 53d2bdd3 2022-07-10 thomas /* Make resized splits persist. */
1767 53d2bdd3 2022-07-10 thomas view_transfer_size(view->parent, view);
1768 e78dc838 2020-12-04 stsp } else
1769 9970f7fc 2020-12-03 stsp TAILQ_REMOVE(&views, view, entry);
1770 669b5ffa 2018-10-07 stsp
1771 9970f7fc 2020-12-03 stsp err = view_close(view);
1772 fb59748f 2020-12-05 stsp if (err)
1773 e5a0f69f 2018-08-18 stsp goto done;
1774 669b5ffa 2018-10-07 stsp
1775 e78dc838 2020-12-04 stsp view = NULL;
1776 e78dc838 2020-12-04 stsp TAILQ_FOREACH(v, &views, entry) {
1777 e78dc838 2020-12-04 stsp if (v->focussed)
1778 e78dc838 2020-12-04 stsp break;
1779 0cf4efb1 2018-09-29 stsp }
1780 e78dc838 2020-12-04 stsp if (view == NULL && new_view == NULL) {
1781 e78dc838 2020-12-04 stsp /* No view has focus. Try to pick one. */
1782 e78dc838 2020-12-04 stsp if (prev)
1783 e78dc838 2020-12-04 stsp view = prev;
1784 e78dc838 2020-12-04 stsp else if (!TAILQ_EMPTY(&views)) {
1785 e78dc838 2020-12-04 stsp view = TAILQ_LAST(&views,
1786 e78dc838 2020-12-04 stsp tog_view_list_head);
1787 e78dc838 2020-12-04 stsp }
1788 e78dc838 2020-12-04 stsp if (view) {
1789 e78dc838 2020-12-04 stsp if (view->focus_child) {
1790 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1791 e78dc838 2020-12-04 stsp view = view->child;
1792 e78dc838 2020-12-04 stsp } else
1793 e78dc838 2020-12-04 stsp view->focussed = 1;
1794 e78dc838 2020-12-04 stsp }
1795 e78dc838 2020-12-04 stsp }
1796 e5a0f69f 2018-08-18 stsp }
1797 bcbd79e2 2018-08-19 stsp if (new_view) {
1798 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1799 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1800 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1801 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1802 86c66b02 2018-10-18 stsp continue;
1803 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1804 86c66b02 2018-10-18 stsp err = view_close(v);
1805 86c66b02 2018-10-18 stsp if (err)
1806 86c66b02 2018-10-18 stsp goto done;
1807 86c66b02 2018-10-18 stsp break;
1808 86c66b02 2018-10-18 stsp }
1809 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1810 fed7eaa8 2018-10-24 stsp view = new_view;
1811 7cd52833 2022-06-23 thomas }
1812 669b5ffa 2018-10-07 stsp if (view) {
1813 e78dc838 2020-12-04 stsp if (view_is_parent_view(view)) {
1814 e78dc838 2020-12-04 stsp if (view->child && view->child->focussed)
1815 e78dc838 2020-12-04 stsp view = view->child;
1816 e78dc838 2020-12-04 stsp } else {
1817 e78dc838 2020-12-04 stsp if (view->parent && view->parent->focussed)
1818 e78dc838 2020-12-04 stsp view = view->parent;
1819 1a76625f 2018-10-22 stsp }
1820 e78dc838 2020-12-04 stsp show_panel(view->panel);
1821 e78dc838 2020-12-04 stsp if (view->child && view_is_splitscreen(view->child))
1822 e78dc838 2020-12-04 stsp show_panel(view->child->panel);
1823 e78dc838 2020-12-04 stsp if (view->parent && view_is_splitscreen(view)) {
1824 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1825 669b5ffa 2018-10-07 stsp if (err)
1826 1a76625f 2018-10-22 stsp goto done;
1827 669b5ffa 2018-10-07 stsp }
1828 669b5ffa 2018-10-07 stsp err = view->show(view);
1829 0cf4efb1 2018-09-29 stsp if (err)
1830 1a76625f 2018-10-22 stsp goto done;
1831 669b5ffa 2018-10-07 stsp if (view->child) {
1832 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1833 669b5ffa 2018-10-07 stsp if (err)
1834 1a76625f 2018-10-22 stsp goto done;
1835 669b5ffa 2018-10-07 stsp }
1836 1a76625f 2018-10-22 stsp update_panels();
1837 1a76625f 2018-10-22 stsp doupdate();
1838 0cf4efb1 2018-09-29 stsp }
1839 e5a0f69f 2018-08-18 stsp }
1840 e5a0f69f 2018-08-18 stsp done:
1841 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1842 f2d749db 2022-07-12 thomas const struct got_error *close_err;
1843 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1844 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1845 f2d749db 2022-07-12 thomas close_err = view_close(view);
1846 f2d749db 2022-07-12 thomas if (close_err && err == NULL)
1847 f2d749db 2022-07-12 thomas err = close_err;
1848 e5a0f69f 2018-08-18 stsp }
1849 1a76625f 2018-10-22 stsp
1850 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1851 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1852 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1853 1a76625f 2018-10-22 stsp
1854 e5a0f69f 2018-08-18 stsp return err;
1855 ea5e7bb5 2018-08-01 stsp }
1856 ea5e7bb5 2018-08-01 stsp
1857 4ed7e80c 2018-05-20 stsp __dead static void
1858 9f7d7167 2018-04-29 stsp usage_log(void)
1859 9f7d7167 2018-04-29 stsp {
1860 80ddbec8 2018-04-29 stsp endwin();
1861 c70c5802 2018-08-01 stsp fprintf(stderr,
1862 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1863 9f7d7167 2018-04-29 stsp getprogname());
1864 9f7d7167 2018-04-29 stsp exit(1);
1865 80ddbec8 2018-04-29 stsp }
1866 80ddbec8 2018-04-29 stsp
1867 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1868 80ddbec8 2018-04-29 stsp static const struct got_error *
1869 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1870 963b370f 2018-05-20 stsp {
1871 00dfcb92 2018-06-11 stsp char *vis = NULL;
1872 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1873 963b370f 2018-05-20 stsp
1874 963b370f 2018-05-20 stsp *ws = NULL;
1875 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1876 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1877 00dfcb92 2018-06-11 stsp int vislen;
1878 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1879 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1880 00dfcb92 2018-06-11 stsp
1881 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1882 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1883 00dfcb92 2018-06-11 stsp if (err)
1884 00dfcb92 2018-06-11 stsp return err;
1885 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1886 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1887 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1888 a7f50699 2018-06-11 stsp goto done;
1889 a7f50699 2018-06-11 stsp }
1890 00dfcb92 2018-06-11 stsp }
1891 963b370f 2018-05-20 stsp
1892 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1893 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1894 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1895 a7f50699 2018-06-11 stsp goto done;
1896 a7f50699 2018-06-11 stsp }
1897 963b370f 2018-05-20 stsp
1898 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1899 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1900 a7f50699 2018-06-11 stsp done:
1901 00dfcb92 2018-06-11 stsp free(vis);
1902 963b370f 2018-05-20 stsp if (err) {
1903 963b370f 2018-05-20 stsp free(*ws);
1904 963b370f 2018-05-20 stsp *ws = NULL;
1905 963b370f 2018-05-20 stsp *wlen = 0;
1906 963b370f 2018-05-20 stsp }
1907 963b370f 2018-05-20 stsp return err;
1908 05171be4 2022-06-23 thomas }
1909 05171be4 2022-06-23 thomas
1910 05171be4 2022-06-23 thomas static const struct got_error *
1911 05171be4 2022-06-23 thomas expand_tab(char **ptr, const char *src)
1912 05171be4 2022-06-23 thomas {
1913 05171be4 2022-06-23 thomas char *dst;
1914 05171be4 2022-06-23 thomas size_t len, n, idx = 0, sz = 0;
1915 05171be4 2022-06-23 thomas
1916 05171be4 2022-06-23 thomas *ptr = NULL;
1917 05171be4 2022-06-23 thomas n = len = strlen(src);
1918 83316834 2022-06-23 thomas dst = malloc(n + 1);
1919 05171be4 2022-06-23 thomas if (dst == NULL)
1920 05171be4 2022-06-23 thomas return got_error_from_errno("malloc");
1921 05171be4 2022-06-23 thomas
1922 05171be4 2022-06-23 thomas while (idx < len && src[idx]) {
1923 05171be4 2022-06-23 thomas const char c = src[idx];
1924 05171be4 2022-06-23 thomas
1925 05171be4 2022-06-23 thomas if (c == '\t') {
1926 05171be4 2022-06-23 thomas size_t nb = TABSIZE - sz % TABSIZE;
1927 b235ad5d 2022-06-23 thomas char *p;
1928 b235ad5d 2022-06-23 thomas
1929 b235ad5d 2022-06-23 thomas p = realloc(dst, n + nb);
1930 83316834 2022-06-23 thomas if (p == NULL) {
1931 83316834 2022-06-23 thomas free(dst);
1932 83316834 2022-06-23 thomas return got_error_from_errno("realloc");
1933 83316834 2022-06-23 thomas
1934 83316834 2022-06-23 thomas }
1935 83316834 2022-06-23 thomas dst = p;
1936 05171be4 2022-06-23 thomas n += nb;
1937 83316834 2022-06-23 thomas memset(dst + sz, ' ', nb);
1938 05171be4 2022-06-23 thomas sz += nb;
1939 05171be4 2022-06-23 thomas } else
1940 05171be4 2022-06-23 thomas dst[sz++] = src[idx];
1941 05171be4 2022-06-23 thomas ++idx;
1942 05171be4 2022-06-23 thomas }
1943 05171be4 2022-06-23 thomas
1944 05171be4 2022-06-23 thomas dst[sz] = '\0';
1945 05171be4 2022-06-23 thomas *ptr = dst;
1946 05171be4 2022-06-23 thomas return NULL;
1947 963b370f 2018-05-20 stsp }
1948 963b370f 2018-05-20 stsp
1949 8d208d34 2022-06-23 thomas /*
1950 8d208d34 2022-06-23 thomas * Advance at most n columns from wline starting at offset off.
1951 8d208d34 2022-06-23 thomas * Return the index to the first character after the span operation.
1952 8d208d34 2022-06-23 thomas * Return the combined column width of all spanned wide character in
1953 8d208d34 2022-06-23 thomas * *rcol.
1954 f91a2b48 2022-06-23 thomas */
1955 8d208d34 2022-06-23 thomas static int
1956 8d208d34 2022-06-23 thomas span_wline(int *rcol, int off, wchar_t *wline, int n, int col_tab_align)
1957 8d208d34 2022-06-23 thomas {
1958 8d208d34 2022-06-23 thomas int width, i, cols = 0;
1959 f91a2b48 2022-06-23 thomas
1960 8d208d34 2022-06-23 thomas if (n == 0) {
1961 8d208d34 2022-06-23 thomas *rcol = cols;
1962 8d208d34 2022-06-23 thomas return off;
1963 8d208d34 2022-06-23 thomas }
1964 f91a2b48 2022-06-23 thomas
1965 8d208d34 2022-06-23 thomas for (i = off; wline[i] != L'\0'; ++i) {
1966 8d208d34 2022-06-23 thomas if (wline[i] == L'\t')
1967 8d208d34 2022-06-23 thomas width = TABSIZE - ((cols + col_tab_align) % TABSIZE);
1968 8d208d34 2022-06-23 thomas else
1969 8d208d34 2022-06-23 thomas width = wcwidth(wline[i]);
1970 f91a2b48 2022-06-23 thomas
1971 8d208d34 2022-06-23 thomas if (width == -1) {
1972 8d208d34 2022-06-23 thomas width = 1;
1973 8d208d34 2022-06-23 thomas wline[i] = L'.';
1974 f91a2b48 2022-06-23 thomas }
1975 f91a2b48 2022-06-23 thomas
1976 8d208d34 2022-06-23 thomas if (cols + width > n)
1977 8d208d34 2022-06-23 thomas break;
1978 8d208d34 2022-06-23 thomas cols += width;
1979 f91a2b48 2022-06-23 thomas }
1980 f91a2b48 2022-06-23 thomas
1981 8d208d34 2022-06-23 thomas *rcol = cols;
1982 8d208d34 2022-06-23 thomas return i;
1983 f91a2b48 2022-06-23 thomas }
1984 f91a2b48 2022-06-23 thomas
1985 f91a2b48 2022-06-23 thomas /*
1986 f91a2b48 2022-06-23 thomas * Format a line for display, ensuring that it won't overflow a width limit.
1987 f91a2b48 2022-06-23 thomas * With scrolling, the width returned refers to the scrolled version of the
1988 f91a2b48 2022-06-23 thomas * line, which starts at (*wlinep)[*scrollxp]. The caller must free *wlinep.
1989 f91a2b48 2022-06-23 thomas */
1990 f91a2b48 2022-06-23 thomas static const struct got_error *
1991 f91a2b48 2022-06-23 thomas format_line(wchar_t **wlinep, int *widthp, int *scrollxp,
1992 f91a2b48 2022-06-23 thomas const char *line, int nscroll, int wlimit, int col_tab_align, int expand)
1993 f91a2b48 2022-06-23 thomas {
1994 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1995 8d208d34 2022-06-23 thomas int cols;
1996 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1997 05171be4 2022-06-23 thomas char *exstr = NULL;
1998 963b370f 2018-05-20 stsp size_t wlen;
1999 8d208d34 2022-06-23 thomas int i, scrollx;
2000 963b370f 2018-05-20 stsp
2001 963b370f 2018-05-20 stsp *wlinep = NULL;
2002 b700b5d6 2018-07-10 stsp *widthp = 0;
2003 963b370f 2018-05-20 stsp
2004 05171be4 2022-06-23 thomas if (expand) {
2005 05171be4 2022-06-23 thomas err = expand_tab(&exstr, line);
2006 05171be4 2022-06-23 thomas if (err)
2007 05171be4 2022-06-23 thomas return err;
2008 05171be4 2022-06-23 thomas }
2009 05171be4 2022-06-23 thomas
2010 05171be4 2022-06-23 thomas err = mbs2ws(&wline, &wlen, expand ? exstr : line);
2011 05171be4 2022-06-23 thomas free(exstr);
2012 963b370f 2018-05-20 stsp if (err)
2013 963b370f 2018-05-20 stsp return err;
2014 963b370f 2018-05-20 stsp
2015 8d208d34 2022-06-23 thomas scrollx = span_wline(&cols, 0, wline, nscroll, col_tab_align);
2016 f91a2b48 2022-06-23 thomas
2017 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\n') {
2018 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2019 3f670bfb 2020-12-10 stsp wlen--;
2020 3f670bfb 2020-12-10 stsp }
2021 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\r') {
2022 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
2023 3f670bfb 2020-12-10 stsp wlen--;
2024 3f670bfb 2020-12-10 stsp }
2025 3f670bfb 2020-12-10 stsp
2026 8d208d34 2022-06-23 thomas i = span_wline(&cols, scrollx, wline, wlimit, col_tab_align);
2027 8d208d34 2022-06-23 thomas wline[i] = L'\0';
2028 27a741e5 2019-09-11 stsp
2029 b700b5d6 2018-07-10 stsp if (widthp)
2030 b700b5d6 2018-07-10 stsp *widthp = cols;
2031 f91a2b48 2022-06-23 thomas if (scrollxp)
2032 f91a2b48 2022-06-23 thomas *scrollxp = scrollx;
2033 963b370f 2018-05-20 stsp if (err)
2034 963b370f 2018-05-20 stsp free(wline);
2035 963b370f 2018-05-20 stsp else
2036 963b370f 2018-05-20 stsp *wlinep = wline;
2037 963b370f 2018-05-20 stsp return err;
2038 963b370f 2018-05-20 stsp }
2039 963b370f 2018-05-20 stsp
2040 8b473291 2019-02-21 stsp static const struct got_error*
2041 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
2042 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
2043 8b473291 2019-02-21 stsp {
2044 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
2045 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
2046 8b473291 2019-02-21 stsp char *s;
2047 8b473291 2019-02-21 stsp const char *name;
2048 8b473291 2019-02-21 stsp
2049 8b473291 2019-02-21 stsp *refs_str = NULL;
2050 8b473291 2019-02-21 stsp
2051 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
2052 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
2053 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
2054 52b5abe1 2019-08-13 stsp int cmp;
2055 52b5abe1 2019-08-13 stsp
2056 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
2057 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
2058 8b473291 2019-02-21 stsp continue;
2059 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
2060 8b473291 2019-02-21 stsp name += 5;
2061 2183bbf6 2022-01-23 thomas if (strncmp(name, "got/", 4) == 0 &&
2062 2183bbf6 2022-01-23 thomas strncmp(name, "got/backup/", 11) != 0)
2063 7143d404 2019-03-12 stsp continue;
2064 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
2065 8b473291 2019-02-21 stsp name += 6;
2066 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
2067 8b473291 2019-02-21 stsp name += 8;
2068 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
2069 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
2070 79cc719f 2020-04-24 stsp continue;
2071 79cc719f 2020-04-24 stsp }
2072 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
2073 48cae60d 2020-09-22 stsp if (err)
2074 48cae60d 2020-09-22 stsp break;
2075 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
2076 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
2077 5d844a1e 2019-08-13 stsp if (err) {
2078 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
2079 48cae60d 2020-09-22 stsp free(ref_id);
2080 5d844a1e 2019-08-13 stsp break;
2081 48cae60d 2020-09-22 stsp }
2082 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
2083 5d844a1e 2019-08-13 stsp err = NULL;
2084 5d844a1e 2019-08-13 stsp tag = NULL;
2085 5d844a1e 2019-08-13 stsp }
2086 52b5abe1 2019-08-13 stsp }
2087 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
2088 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
2089 48cae60d 2020-09-22 stsp free(ref_id);
2090 52b5abe1 2019-08-13 stsp if (tag)
2091 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
2092 52b5abe1 2019-08-13 stsp if (cmp != 0)
2093 52b5abe1 2019-08-13 stsp continue;
2094 8b473291 2019-02-21 stsp s = *refs_str;
2095 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
2096 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
2097 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2098 8b473291 2019-02-21 stsp free(s);
2099 8b473291 2019-02-21 stsp *refs_str = NULL;
2100 8b473291 2019-02-21 stsp break;
2101 8b473291 2019-02-21 stsp }
2102 8b473291 2019-02-21 stsp free(s);
2103 8b473291 2019-02-21 stsp }
2104 8b473291 2019-02-21 stsp
2105 8b473291 2019-02-21 stsp return err;
2106 8b473291 2019-02-21 stsp }
2107 8b473291 2019-02-21 stsp
2108 963b370f 2018-05-20 stsp static const struct got_error *
2109 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
2110 27a741e5 2019-09-11 stsp int col_tab_align)
2111 5813d178 2019-03-09 stsp {
2112 e6b8b890 2020-12-29 naddy char *smallerthan;
2113 5813d178 2019-03-09 stsp
2114 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
2115 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
2116 5813d178 2019-03-09 stsp author = smallerthan + 1;
2117 e6b8b890 2020-12-29 naddy author[strcspn(author, "@>")] = '\0';
2118 f91a2b48 2022-06-23 thomas return format_line(wauthor, author_width, NULL, author, 0, limit,
2119 f91a2b48 2022-06-23 thomas col_tab_align, 0);
2120 5813d178 2019-03-09 stsp }
2121 5813d178 2019-03-09 stsp
2122 5813d178 2019-03-09 stsp static const struct got_error *
2123 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
2124 8fdc79fe 2020-12-01 naddy struct got_object_id *id, const size_t date_display_cols,
2125 8fdc79fe 2020-12-01 naddy int author_display_cols)
2126 80ddbec8 2018-04-29 stsp {
2127 8fdc79fe 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2128 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
2129 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
2130 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
2131 5813d178 2019-03-09 stsp char *author = NULL;
2132 f91a2b48 2022-06-23 thomas wchar_t *wlogmsg = NULL, *wauthor = NULL;
2133 bb737323 2018-05-20 stsp int author_width, logmsg_width;
2134 5813d178 2019-03-09 stsp char *newline, *line = NULL;
2135 f91a2b48 2022-06-23 thomas int col, limit, scrollx;
2136 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
2137 ccb26ccd 2018-11-05 stsp struct tm tm;
2138 45d799e2 2018-12-23 stsp time_t committer_time;
2139 11b20872 2019-11-08 stsp struct tog_color *tc;
2140 80ddbec8 2018-04-29 stsp
2141 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
2142 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
2143 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
2144 ec6d1a36 2021-03-21 jrick if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm) == 0)
2145 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
2146 b39d25c7 2018-07-10 stsp
2147 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
2148 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
2149 b39d25c7 2018-07-10 stsp else
2150 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
2151 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_DATE);
2152 11b20872 2019-11-08 stsp if (tc)
2153 11b20872 2019-11-08 stsp wattr_on(view->window,
2154 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2155 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
2156 11b20872 2019-11-08 stsp if (tc)
2157 11b20872 2019-11-08 stsp wattr_off(view->window,
2158 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2159 27a741e5 2019-09-11 stsp col = limit;
2160 b39d25c7 2018-07-10 stsp if (col > avail)
2161 b39d25c7 2018-07-10 stsp goto done;
2162 6570a66d 2019-11-08 stsp
2163 6570a66d 2019-11-08 stsp if (avail >= 120) {
2164 6570a66d 2019-11-08 stsp char *id_str;
2165 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
2166 6570a66d 2019-11-08 stsp if (err)
2167 6570a66d 2019-11-08 stsp goto done;
2168 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2169 11b20872 2019-11-08 stsp if (tc)
2170 11b20872 2019-11-08 stsp wattr_on(view->window,
2171 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2172 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
2173 11b20872 2019-11-08 stsp if (tc)
2174 11b20872 2019-11-08 stsp wattr_off(view->window,
2175 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2176 6570a66d 2019-11-08 stsp free(id_str);
2177 6570a66d 2019-11-08 stsp col += 9;
2178 6570a66d 2019-11-08 stsp if (col > avail)
2179 6570a66d 2019-11-08 stsp goto done;
2180 6570a66d 2019-11-08 stsp }
2181 b39d25c7 2018-07-10 stsp
2182 f69c5a46 2022-07-19 thomas if (s->use_committer)
2183 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_committer(commit));
2184 f69c5a46 2022-07-19 thomas else
2185 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_author(commit));
2186 5813d178 2019-03-09 stsp if (author == NULL) {
2187 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2188 80ddbec8 2018-04-29 stsp goto done;
2189 80ddbec8 2018-04-29 stsp }
2190 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
2191 bb737323 2018-05-20 stsp if (err)
2192 bb737323 2018-05-20 stsp goto done;
2193 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
2194 11b20872 2019-11-08 stsp if (tc)
2195 11b20872 2019-11-08 stsp wattr_on(view->window,
2196 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2197 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
2198 bb737323 2018-05-20 stsp col += author_width;
2199 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
2200 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2201 bb737323 2018-05-20 stsp col++;
2202 bb737323 2018-05-20 stsp author_width++;
2203 bb737323 2018-05-20 stsp }
2204 f31d6c3b 2022-09-09 thomas if (tc)
2205 f31d6c3b 2022-09-09 thomas wattr_off(view->window,
2206 f31d6c3b 2022-09-09 thomas COLOR_PAIR(tc->colorpair), NULL);
2207 9c2eaf34 2018-05-20 stsp if (col > avail)
2208 9c2eaf34 2018-05-20 stsp goto done;
2209 80ddbec8 2018-04-29 stsp
2210 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
2211 5943eee2 2019-08-13 stsp if (err)
2212 6d9fbc00 2018-04-29 stsp goto done;
2213 bb737323 2018-05-20 stsp logmsg = logmsg0;
2214 bb737323 2018-05-20 stsp while (*logmsg == '\n')
2215 bb737323 2018-05-20 stsp logmsg++;
2216 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
2217 bb737323 2018-05-20 stsp if (newline)
2218 bb737323 2018-05-20 stsp *newline = '\0';
2219 f91a2b48 2022-06-23 thomas limit = avail - col;
2220 444d5325 2022-07-03 thomas if (view->child && !view_is_hsplit_top(view) && limit > 0)
2221 5c6cacf5 2022-06-23 thomas limit--; /* for the border */
2222 f91a2b48 2022-06-23 thomas err = format_line(&wlogmsg, &logmsg_width, &scrollx, logmsg, view->x,
2223 f91a2b48 2022-06-23 thomas limit, col, 1);
2224 331b1a16 2022-06-23 thomas if (err)
2225 331b1a16 2022-06-23 thomas goto done;
2226 f91a2b48 2022-06-23 thomas waddwstr(view->window, &wlogmsg[scrollx]);
2227 331b1a16 2022-06-23 thomas col += MAX(logmsg_width, 0);
2228 27a741e5 2019-09-11 stsp while (col < avail) {
2229 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
2230 bb737323 2018-05-20 stsp col++;
2231 881b2d3e 2018-04-30 stsp }
2232 80ddbec8 2018-04-29 stsp done:
2233 80ddbec8 2018-04-29 stsp free(logmsg0);
2234 bb737323 2018-05-20 stsp free(wlogmsg);
2235 5813d178 2019-03-09 stsp free(author);
2236 bb737323 2018-05-20 stsp free(wauthor);
2237 80ddbec8 2018-04-29 stsp free(line);
2238 80ddbec8 2018-04-29 stsp return err;
2239 80ddbec8 2018-04-29 stsp }
2240 26ed57b2 2018-05-19 stsp
2241 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
2242 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
2243 899d86c2 2018-05-10 stsp struct got_object_id *id)
2244 80ddbec8 2018-04-29 stsp {
2245 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
2246 d68b9737 2022-09-05 thomas struct got_object_id *dup;
2247 80ddbec8 2018-04-29 stsp
2248 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
2249 80ddbec8 2018-04-29 stsp if (entry == NULL)
2250 899d86c2 2018-05-10 stsp return NULL;
2251 99db9666 2018-05-07 stsp
2252 d68b9737 2022-09-05 thomas dup = got_object_id_dup(id);
2253 d68b9737 2022-09-05 thomas if (dup == NULL) {
2254 d68b9737 2022-09-05 thomas free(entry);
2255 d68b9737 2022-09-05 thomas return NULL;
2256 d68b9737 2022-09-05 thomas }
2257 d68b9737 2022-09-05 thomas
2258 d68b9737 2022-09-05 thomas entry->id = dup;
2259 99db9666 2018-05-07 stsp entry->commit = commit;
2260 899d86c2 2018-05-10 stsp return entry;
2261 99db9666 2018-05-07 stsp }
2262 80ddbec8 2018-04-29 stsp
2263 99db9666 2018-05-07 stsp static void
2264 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
2265 99db9666 2018-05-07 stsp {
2266 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
2267 99db9666 2018-05-07 stsp
2268 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
2269 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
2270 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
2271 ecb28ae0 2018-07-16 stsp commits->ncommits--;
2272 d68b9737 2022-09-05 thomas free(entry->id);
2273 99db9666 2018-05-07 stsp free(entry);
2274 99db9666 2018-05-07 stsp }
2275 99db9666 2018-05-07 stsp
2276 99db9666 2018-05-07 stsp static void
2277 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
2278 99db9666 2018-05-07 stsp {
2279 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
2280 99db9666 2018-05-07 stsp pop_commit(commits);
2281 c4972b91 2018-05-07 stsp }
2282 c4972b91 2018-05-07 stsp
2283 c4972b91 2018-05-07 stsp static const struct got_error *
2284 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
2285 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
2286 13add988 2019-10-15 stsp {
2287 13add988 2019-10-15 stsp const struct got_error *err = NULL;
2288 13add988 2019-10-15 stsp regmatch_t regmatch;
2289 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
2290 13add988 2019-10-15 stsp
2291 13add988 2019-10-15 stsp *have_match = 0;
2292 13add988 2019-10-15 stsp
2293 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
2294 13add988 2019-10-15 stsp if (err)
2295 13add988 2019-10-15 stsp return err;
2296 13add988 2019-10-15 stsp
2297 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2298 13add988 2019-10-15 stsp if (err)
2299 13add988 2019-10-15 stsp goto done;
2300 13add988 2019-10-15 stsp
2301 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
2302 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2303 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
2304 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
2305 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
2306 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2307 13add988 2019-10-15 stsp *have_match = 1;
2308 13add988 2019-10-15 stsp done:
2309 13add988 2019-10-15 stsp free(id_str);
2310 13add988 2019-10-15 stsp free(logmsg);
2311 13add988 2019-10-15 stsp return err;
2312 13add988 2019-10-15 stsp }
2313 13add988 2019-10-15 stsp
2314 13add988 2019-10-15 stsp static const struct got_error *
2315 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
2316 c4972b91 2018-05-07 stsp {
2317 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
2318 9ba79e04 2018-06-11 stsp
2319 1a76625f 2018-10-22 stsp /*
2320 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
2321 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
2322 1a76625f 2018-10-22 stsp * while updating the display.
2323 1a76625f 2018-10-22 stsp */
2324 4e0d2870 2020-12-07 naddy do {
2325 7210b715 2022-09-11 thomas struct got_object_id id;
2326 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
2327 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
2328 7e8004ba 2022-09-11 thomas int limit_match = 0;
2329 1a76625f 2018-10-22 stsp int errcode;
2330 899d86c2 2018-05-10 stsp
2331 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
2332 4e0d2870 2020-12-07 naddy NULL, NULL);
2333 7210b715 2022-09-11 thomas if (err)
2334 ecb28ae0 2018-07-16 stsp break;
2335 899d86c2 2018-05-10 stsp
2336 7210b715 2022-09-11 thomas err = got_object_open_as_commit(&commit, a->repo, &id);
2337 9ba79e04 2018-06-11 stsp if (err)
2338 9ba79e04 2018-06-11 stsp break;
2339 7210b715 2022-09-11 thomas entry = alloc_commit_queue_entry(commit, &id);
2340 9ba79e04 2018-06-11 stsp if (entry == NULL) {
2341 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
2342 9ba79e04 2018-06-11 stsp break;
2343 9ba79e04 2018-06-11 stsp }
2344 93e45b7c 2018-09-24 stsp
2345 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2346 1a76625f 2018-10-22 stsp if (errcode) {
2347 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
2348 13add988 2019-10-15 stsp "pthread_mutex_lock");
2349 1a76625f 2018-10-22 stsp break;
2350 1a76625f 2018-10-22 stsp }
2351 1a76625f 2018-10-22 stsp
2352 7e8004ba 2022-09-11 thomas entry->idx = a->real_commits->ncommits;
2353 7e8004ba 2022-09-11 thomas TAILQ_INSERT_TAIL(&a->real_commits->head, entry, entry);
2354 7e8004ba 2022-09-11 thomas a->real_commits->ncommits++;
2355 1a76625f 2018-10-22 stsp
2356 7e8004ba 2022-09-11 thomas if (*a->limiting) {
2357 7e8004ba 2022-09-11 thomas err = match_commit(&limit_match, &id, commit,
2358 7e8004ba 2022-09-11 thomas a->limit_regex);
2359 7e8004ba 2022-09-11 thomas if (err)
2360 7e8004ba 2022-09-11 thomas break;
2361 7e8004ba 2022-09-11 thomas
2362 7e8004ba 2022-09-11 thomas if (limit_match) {
2363 7e8004ba 2022-09-11 thomas struct commit_queue_entry *matched;
2364 7e8004ba 2022-09-11 thomas
2365 7e8004ba 2022-09-11 thomas matched = alloc_commit_queue_entry(
2366 7e8004ba 2022-09-11 thomas entry->commit, entry->id);
2367 7e8004ba 2022-09-11 thomas if (matched == NULL) {
2368 7e8004ba 2022-09-11 thomas err = got_error_from_errno(
2369 7e8004ba 2022-09-11 thomas "alloc_commit_queue_entry");
2370 7e8004ba 2022-09-11 thomas break;
2371 7e8004ba 2022-09-11 thomas }
2372 6f6c25d6 2022-09-18 thomas matched->commit = entry->commit;
2373 6f6c25d6 2022-09-18 thomas got_object_commit_retain(entry->commit);
2374 7e8004ba 2022-09-11 thomas
2375 7e8004ba 2022-09-11 thomas matched->idx = a->limit_commits->ncommits;
2376 7e8004ba 2022-09-11 thomas TAILQ_INSERT_TAIL(&a->limit_commits->head,
2377 7e8004ba 2022-09-11 thomas matched, entry);
2378 7e8004ba 2022-09-11 thomas a->limit_commits->ncommits++;
2379 7e8004ba 2022-09-11 thomas }
2380 7e8004ba 2022-09-11 thomas
2381 7e8004ba 2022-09-11 thomas /*
2382 7e8004ba 2022-09-11 thomas * This is how we signal log_thread() that we
2383 7e8004ba 2022-09-11 thomas * have found a match, and that it should be
2384 7e8004ba 2022-09-11 thomas * counted as a new entry for the view.
2385 7e8004ba 2022-09-11 thomas */
2386 7e8004ba 2022-09-11 thomas a->limit_match = limit_match;
2387 7e8004ba 2022-09-11 thomas }
2388 7e8004ba 2022-09-11 thomas
2389 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
2390 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
2391 7c1452c1 2020-03-26 stsp int have_match;
2392 7210b715 2022-09-11 thomas err = match_commit(&have_match, &id, commit, a->regex);
2393 7c1452c1 2020-03-26 stsp if (err)
2394 7c1452c1 2020-03-26 stsp break;
2395 7e8004ba 2022-09-11 thomas
2396 7e8004ba 2022-09-11 thomas if (*a->limiting) {
2397 7e8004ba 2022-09-11 thomas if (limit_match && have_match)
2398 7e8004ba 2022-09-11 thomas *a->search_next_done =
2399 7e8004ba 2022-09-11 thomas TOG_SEARCH_HAVE_MORE;
2400 7e8004ba 2022-09-11 thomas } else if (have_match)
2401 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
2402 13add988 2019-10-15 stsp }
2403 13add988 2019-10-15 stsp
2404 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2405 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2406 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2407 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2408 7c1452c1 2020-03-26 stsp if (err)
2409 13add988 2019-10-15 stsp break;
2410 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
2411 899d86c2 2018-05-10 stsp
2412 9ba79e04 2018-06-11 stsp return err;
2413 0553a4e3 2018-04-30 stsp }
2414 0553a4e3 2018-04-30 stsp
2415 2b779855 2020-12-05 naddy static void
2416 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
2417 2b779855 2020-12-05 naddy {
2418 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
2419 2b779855 2020-12-05 naddy int ncommits = 0;
2420 2b779855 2020-12-05 naddy
2421 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
2422 2b779855 2020-12-05 naddy while (entry) {
2423 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
2424 2b779855 2020-12-05 naddy s->selected_entry = entry;
2425 2b779855 2020-12-05 naddy break;
2426 2b779855 2020-12-05 naddy }
2427 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
2428 2b779855 2020-12-05 naddy ncommits++;
2429 2b779855 2020-12-05 naddy }
2430 2b779855 2020-12-05 naddy }
2431 2b779855 2020-12-05 naddy
2432 0553a4e3 2018-04-30 stsp static const struct got_error *
2433 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
2434 0553a4e3 2018-04-30 stsp {
2435 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
2436 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
2437 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
2438 bd3f8225 2022-08-12 thomas int limit = view->nlines;
2439 60493ae3 2019-06-20 stsp int width;
2440 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
2441 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
2442 8b473291 2019-02-21 stsp char *refs_str = NULL;
2443 ecb28ae0 2018-07-16 stsp wchar_t *wline;
2444 11b20872 2019-11-08 stsp struct tog_color *tc;
2445 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
2446 bd3f8225 2022-08-12 thomas
2447 bd3f8225 2022-08-12 thomas if (view_is_hsplit_top(view))
2448 bd3f8225 2022-08-12 thomas --limit; /* account for border */
2449 0553a4e3 2018-04-30 stsp
2450 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
2451 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
2452 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
2453 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
2454 1a76625f 2018-10-22 stsp if (err)
2455 ecb28ae0 2018-07-16 stsp return err;
2456 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
2457 d2075bf3 2020-12-25 stsp s->selected_entry->id);
2458 d2075bf3 2020-12-25 stsp if (refs) {
2459 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
2460 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
2461 d2075bf3 2020-12-25 stsp if (err)
2462 d2075bf3 2020-12-25 stsp goto done;
2463 d2075bf3 2020-12-25 stsp }
2464 867c6645 2018-07-10 stsp }
2465 359bfafd 2019-02-22 stsp
2466 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
2467 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
2468 1a76625f 2018-10-22 stsp
2469 fb280deb 2021-08-30 stsp if (s->thread_args.commits_needed > 0 || s->thread_args.load_all) {
2470 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
2471 7e8004ba 2022-09-11 thomas entry ? entry->idx + 1 : 0, s->commits->ncommits,
2472 ba5cc5fa 2022-09-23 thomas (view->searching && !view->search_next_done) ?
2473 ba5cc5fa 2022-09-23 thomas "searching..." : "loading...") == -1) {
2474 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2475 8f4ed634 2020-03-26 stsp goto done;
2476 8f4ed634 2020-03-26 stsp }
2477 8f4ed634 2020-03-26 stsp } else {
2478 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
2479 7e8004ba 2022-09-11 thomas const char *limit_str = NULL;
2480 f9686aa5 2020-03-27 stsp
2481 f9686aa5 2020-03-27 stsp if (view->searching) {
2482 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
2483 f9686aa5 2020-03-27 stsp search_str = "no more matches";
2484 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
2485 f9686aa5 2020-03-27 stsp search_str = "no matches found";
2486 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
2487 f9686aa5 2020-03-27 stsp search_str = "searching...";
2488 f9686aa5 2020-03-27 stsp }
2489 f9686aa5 2020-03-27 stsp
2490 7e8004ba 2022-09-11 thomas if (s->limit_view && s->commits->ncommits == 0)
2491 7e8004ba 2022-09-11 thomas limit_str = "no matches found";
2492 7e8004ba 2022-09-11 thomas
2493 7e8004ba 2022-09-11 thomas if (asprintf(&ncommits_str, " [%d/%d] %s %s",
2494 7e8004ba 2022-09-11 thomas entry ? entry->idx + 1 : 0, s->commits->ncommits,
2495 7e8004ba 2022-09-11 thomas search_str ? search_str : (refs_str ? refs_str : ""),
2496 7e8004ba 2022-09-11 thomas limit_str ? limit_str : "") == -1) {
2497 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
2498 8f4ed634 2020-03-26 stsp goto done;
2499 8f4ed634 2020-03-26 stsp }
2500 8b473291 2019-02-21 stsp }
2501 1a76625f 2018-10-22 stsp
2502 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
2503 91198554 2022-06-23 thomas if (asprintf(&header, "commit %s %s%s", id_str ? id_str :
2504 91198554 2022-06-23 thomas "........................................",
2505 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
2506 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2507 1a76625f 2018-10-22 stsp header = NULL;
2508 1a76625f 2018-10-22 stsp goto done;
2509 1a76625f 2018-10-22 stsp }
2510 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
2511 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
2512 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
2513 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2514 1a76625f 2018-10-22 stsp header = NULL;
2515 1a76625f 2018-10-22 stsp goto done;
2516 ecb28ae0 2018-07-16 stsp }
2517 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, header, 0, view->ncols, 0, 0);
2518 1a76625f 2018-10-22 stsp if (err)
2519 1a76625f 2018-10-22 stsp goto done;
2520 867c6645 2018-07-10 stsp
2521 2814baeb 2018-08-01 stsp werase(view->window);
2522 867c6645 2018-07-10 stsp
2523 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2524 a3404814 2018-09-02 stsp wstandout(view->window);
2525 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
2526 11b20872 2019-11-08 stsp if (tc)
2527 86f4aab9 2022-09-09 thomas wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
2528 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
2529 1a76625f 2018-10-22 stsp while (width < view->ncols) {
2530 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
2531 1a76625f 2018-10-22 stsp width++;
2532 1a76625f 2018-10-22 stsp }
2533 86f4aab9 2022-09-09 thomas if (tc)
2534 86f4aab9 2022-09-09 thomas wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
2535 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2536 a3404814 2018-09-02 stsp wstandend(view->window);
2537 ecb28ae0 2018-07-16 stsp free(wline);
2538 ecb28ae0 2018-07-16 stsp if (limit <= 1)
2539 1a76625f 2018-10-22 stsp goto done;
2540 0553a4e3 2018-04-30 stsp
2541 331b1a16 2022-06-23 thomas /* Grow author column size if necessary, and set view->maxx. */
2542 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2543 5813d178 2019-03-09 stsp ncommits = 0;
2544 05171be4 2022-06-23 thomas view->maxx = 0;
2545 5813d178 2019-03-09 stsp while (entry) {
2546 f69c5a46 2022-07-19 thomas struct got_commit_object *c = entry->commit;
2547 05171be4 2022-06-23 thomas char *author, *eol, *msg, *msg0;
2548 331b1a16 2022-06-23 thomas wchar_t *wauthor, *wmsg;
2549 5813d178 2019-03-09 stsp int width;
2550 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
2551 5813d178 2019-03-09 stsp break;
2552 f69c5a46 2022-07-19 thomas if (s->use_committer)
2553 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_committer(c));
2554 f69c5a46 2022-07-19 thomas else
2555 f69c5a46 2022-07-19 thomas author = strdup(got_object_commit_get_author(c));
2556 5813d178 2019-03-09 stsp if (author == NULL) {
2557 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
2558 5813d178 2019-03-09 stsp goto done;
2559 5813d178 2019-03-09 stsp }
2560 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
2561 27a741e5 2019-09-11 stsp date_display_cols);
2562 5813d178 2019-03-09 stsp if (author_cols < width)
2563 5813d178 2019-03-09 stsp author_cols = width;
2564 5813d178 2019-03-09 stsp free(wauthor);
2565 5813d178 2019-03-09 stsp free(author);
2566 ef944b8b 2022-07-21 thomas if (err)
2567 ef944b8b 2022-07-21 thomas goto done;
2568 f69c5a46 2022-07-19 thomas err = got_object_commit_get_logmsg(&msg0, c);
2569 05171be4 2022-06-23 thomas if (err)
2570 05171be4 2022-06-23 thomas goto done;
2571 05171be4 2022-06-23 thomas msg = msg0;
2572 05171be4 2022-06-23 thomas while (*msg == '\n')
2573 05171be4 2022-06-23 thomas ++msg;
2574 05171be4 2022-06-23 thomas if ((eol = strchr(msg, '\n')))
2575 331b1a16 2022-06-23 thomas *eol = '\0';
2576 f91a2b48 2022-06-23 thomas err = format_line(&wmsg, &width, NULL, msg, 0, INT_MAX,
2577 331b1a16 2022-06-23 thomas date_display_cols + author_cols, 0);
2578 331b1a16 2022-06-23 thomas if (err)
2579 331b1a16 2022-06-23 thomas goto done;
2580 331b1a16 2022-06-23 thomas view->maxx = MAX(view->maxx, width);
2581 05171be4 2022-06-23 thomas free(msg0);
2582 331b1a16 2022-06-23 thomas free(wmsg);
2583 7ca04879 2019-10-19 stsp ncommits++;
2584 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
2585 5813d178 2019-03-09 stsp }
2586 5813d178 2019-03-09 stsp
2587 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
2588 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
2589 867c6645 2018-07-10 stsp ncommits = 0;
2590 899d86c2 2018-05-10 stsp while (entry) {
2591 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
2592 899d86c2 2018-05-10 stsp break;
2593 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2594 2814baeb 2018-08-01 stsp wstandout(view->window);
2595 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
2596 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
2597 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
2598 2814baeb 2018-08-01 stsp wstandend(view->window);
2599 0553a4e3 2018-04-30 stsp if (err)
2600 60493ae3 2019-06-20 stsp goto done;
2601 0553a4e3 2018-04-30 stsp ncommits++;
2602 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
2603 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
2604 80ddbec8 2018-04-29 stsp }
2605 80ddbec8 2018-04-29 stsp
2606 a5d43cac 2022-07-01 thomas view_border(view);
2607 1a76625f 2018-10-22 stsp done:
2608 1a76625f 2018-10-22 stsp free(id_str);
2609 8b473291 2019-02-21 stsp free(refs_str);
2610 1a76625f 2018-10-22 stsp free(ncommits_str);
2611 1a76625f 2018-10-22 stsp free(header);
2612 80ddbec8 2018-04-29 stsp return err;
2613 9f7d7167 2018-04-29 stsp }
2614 07b55e75 2018-05-10 stsp
2615 07b55e75 2018-05-10 stsp static void
2616 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
2617 07b55e75 2018-05-10 stsp {
2618 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
2619 07b55e75 2018-05-10 stsp int nscrolled = 0;
2620 07b55e75 2018-05-10 stsp
2621 7e8004ba 2022-09-11 thomas entry = TAILQ_FIRST(&s->commits->head);
2622 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
2623 07b55e75 2018-05-10 stsp return;
2624 9f7d7167 2018-04-29 stsp
2625 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
2626 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
2627 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2628 07b55e75 2018-05-10 stsp if (entry) {
2629 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
2630 07b55e75 2018-05-10 stsp nscrolled++;
2631 07b55e75 2018-05-10 stsp }
2632 07b55e75 2018-05-10 stsp }
2633 aa075928 2018-05-10 stsp }
2634 aa075928 2018-05-10 stsp
2635 aa075928 2018-05-10 stsp static const struct got_error *
2636 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
2637 aa075928 2018-05-10 stsp {
2638 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
2639 5e224a3e 2019-02-22 stsp int errcode;
2640 8a42fca8 2019-02-22 stsp
2641 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
2642 aa075928 2018-05-10 stsp
2643 f2d749db 2022-07-12 thomas while (!ta->log_complete && !tog_thread_error &&
2644 f2d749db 2022-07-12 thomas (ta->commits_needed > 0 || ta->load_all)) {
2645 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
2646 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
2647 7aafa0d1 2019-02-22 stsp if (errcode)
2648 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2649 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2650 7c1452c1 2020-03-26 stsp
2651 7c1452c1 2020-03-26 stsp /*
2652 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
2653 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
2654 7c1452c1 2020-03-26 stsp */
2655 7c1452c1 2020-03-26 stsp if (!wait)
2656 7c1452c1 2020-03-26 stsp break;
2657 7c1452c1 2020-03-26 stsp
2658 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2659 ffe38506 2020-12-01 naddy show_log_view(view);
2660 7c1452c1 2020-03-26 stsp update_panels();
2661 7c1452c1 2020-03-26 stsp doupdate();
2662 7c1452c1 2020-03-26 stsp
2663 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
2664 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
2665 82954512 2020-02-03 stsp if (errcode)
2666 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
2667 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2668 82954512 2020-02-03 stsp
2669 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
2670 ffe38506 2020-12-01 naddy show_log_view(view);
2671 7c1452c1 2020-03-26 stsp update_panels();
2672 7c1452c1 2020-03-26 stsp doupdate();
2673 5e224a3e 2019-02-22 stsp }
2674 5e224a3e 2019-02-22 stsp
2675 5e224a3e 2019-02-22 stsp return NULL;
2676 a5d43cac 2022-07-01 thomas }
2677 a5d43cac 2022-07-01 thomas
2678 a5d43cac 2022-07-01 thomas static const struct got_error *
2679 a5d43cac 2022-07-01 thomas request_log_commits(struct tog_view *view)
2680 a5d43cac 2022-07-01 thomas {
2681 a5d43cac 2022-07-01 thomas struct tog_log_view_state *state = &view->state.log;
2682 a5d43cac 2022-07-01 thomas const struct got_error *err = NULL;
2683 fe731b51 2022-07-14 thomas
2684 fe731b51 2022-07-14 thomas if (state->thread_args.log_complete)
2685 fe731b51 2022-07-14 thomas return NULL;
2686 a5d43cac 2022-07-01 thomas
2687 ae98518f 2022-07-12 thomas state->thread_args.commits_needed += view->nscrolled;
2688 a5d43cac 2022-07-01 thomas err = trigger_log_thread(view, 1);
2689 a5d43cac 2022-07-01 thomas view->nscrolled = 0;
2690 a5d43cac 2022-07-01 thomas
2691 a5d43cac 2022-07-01 thomas return err;
2692 5e224a3e 2019-02-22 stsp }
2693 5e224a3e 2019-02-22 stsp
2694 5e224a3e 2019-02-22 stsp static const struct got_error *
2695 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
2696 5e224a3e 2019-02-22 stsp {
2697 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
2698 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
2699 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
2700 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
2701 5e224a3e 2019-02-22 stsp
2702 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
2703 5e224a3e 2019-02-22 stsp return NULL;
2704 5e224a3e 2019-02-22 stsp
2705 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
2706 7e8004ba 2022-09-11 thomas if (s->commits->ncommits < ncommits_needed &&
2707 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
2708 08ebd0a9 2019-02-22 stsp /*
2709 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
2710 08ebd0a9 2019-02-22 stsp */
2711 07dd3ed3 2022-08-06 thomas s->thread_args.commits_needed +=
2712 7e8004ba 2022-09-11 thomas ncommits_needed - s->commits->ncommits;
2713 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2714 5e224a3e 2019-02-22 stsp if (err)
2715 5e224a3e 2019-02-22 stsp return err;
2716 7aafa0d1 2019-02-22 stsp }
2717 b295e71b 2019-02-22 stsp
2718 7aafa0d1 2019-02-22 stsp do {
2719 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
2720 a5d43cac 2022-07-01 thomas if (pentry == NULL && view->mode != TOG_VIEW_SPLIT_HRZN)
2721 88048b54 2019-02-21 stsp break;
2722 88048b54 2019-02-21 stsp
2723 a5d43cac 2022-07-01 thomas s->last_displayed_entry = pentry ?
2724 a5d43cac 2022-07-01 thomas pentry : s->last_displayed_entry;;
2725 aa075928 2018-05-10 stsp
2726 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
2727 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
2728 dd0a52c1 2018-05-20 stsp break;
2729 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
2730 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
2731 aa075928 2018-05-10 stsp
2732 fe731b51 2022-07-14 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN && !s->thread_args.log_complete)
2733 a5d43cac 2022-07-01 thomas view->nscrolled += nscrolled;
2734 a5d43cac 2022-07-01 thomas else
2735 a5d43cac 2022-07-01 thomas view->nscrolled = 0;
2736 a5d43cac 2022-07-01 thomas
2737 dd0a52c1 2018-05-20 stsp return err;
2738 07b55e75 2018-05-10 stsp }
2739 4a7f7875 2018-05-10 stsp
2740 cd0acaa7 2018-05-20 stsp static const struct got_error *
2741 a5d43cac 2022-07-01 thomas open_diff_view_for_commit(struct tog_view **new_view, int begin_y, int begin_x,
2742 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
2743 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
2744 cd0acaa7 2018-05-20 stsp {
2745 cd0acaa7 2018-05-20 stsp const struct got_error *err;
2746 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
2747 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
2748 cd0acaa7 2018-05-20 stsp
2749 a5d43cac 2022-07-01 thomas diff_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_DIFF);
2750 15a94983 2018-12-23 stsp if (diff_view == NULL)
2751 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
2752 ea5e7bb5 2018-08-01 stsp
2753 dbdddfee 2021-06-23 naddy parent_id = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
2754 ec242592 2022-04-22 thomas err = open_diff_view(diff_view, parent_id ? &parent_id->id : NULL,
2755 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
2756 e5a0f69f 2018-08-18 stsp if (err == NULL)
2757 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
2758 cd0acaa7 2018-05-20 stsp return err;
2759 4a7f7875 2018-05-10 stsp }
2760 4a7f7875 2018-05-10 stsp
2761 80ddbec8 2018-04-29 stsp static const struct got_error *
2762 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
2763 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
2764 9343a5fb 2018-06-23 stsp {
2765 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
2766 941e9f74 2019-05-21 stsp
2767 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
2768 941e9f74 2019-05-21 stsp if (parent == NULL)
2769 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
2770 941e9f74 2019-05-21 stsp
2771 941e9f74 2019-05-21 stsp parent->tree = s->tree;
2772 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
2773 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
2774 941e9f74 2019-05-21 stsp parent->selected = s->selected;
2775 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
2776 941e9f74 2019-05-21 stsp s->tree = subtree;
2777 941e9f74 2019-05-21 stsp s->selected = 0;
2778 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
2779 941e9f74 2019-05-21 stsp return NULL;
2780 941e9f74 2019-05-21 stsp }
2781 941e9f74 2019-05-21 stsp
2782 941e9f74 2019-05-21 stsp static const struct got_error *
2783 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
2784 945f9229 2022-04-16 thomas struct got_commit_object *commit, const char *path)
2785 941e9f74 2019-05-21 stsp {
2786 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
2787 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
2788 941e9f74 2019-05-21 stsp const char *p;
2789 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
2790 9343a5fb 2018-06-23 stsp
2791 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
2792 941e9f74 2019-05-21 stsp p = path;
2793 941e9f74 2019-05-21 stsp while (*p) {
2794 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2795 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
2796 56e0773d 2019-11-28 stsp char *te_name;
2797 33cbf02b 2020-01-12 stsp
2798 33cbf02b 2020-01-12 stsp while (p[0] == '/')
2799 33cbf02b 2020-01-12 stsp p++;
2800 941e9f74 2019-05-21 stsp
2801 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
2802 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2803 941e9f74 2019-05-21 stsp if (slash == NULL)
2804 33cbf02b 2020-01-12 stsp te_name = strdup(p);
2805 33cbf02b 2020-01-12 stsp else
2806 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
2807 56e0773d 2019-11-28 stsp if (te_name == NULL) {
2808 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
2809 56e0773d 2019-11-28 stsp break;
2810 941e9f74 2019-05-21 stsp }
2811 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
2812 56e0773d 2019-11-28 stsp if (te == NULL) {
2813 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
2814 56e0773d 2019-11-28 stsp free(te_name);
2815 941e9f74 2019-05-21 stsp break;
2816 941e9f74 2019-05-21 stsp }
2817 56e0773d 2019-11-28 stsp free(te_name);
2818 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
2819 941e9f74 2019-05-21 stsp
2820 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
2821 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
2822 b03c880f 2019-05-21 stsp
2823 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
2824 941e9f74 2019-05-21 stsp if (slash)
2825 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
2826 941e9f74 2019-05-21 stsp else
2827 941e9f74 2019-05-21 stsp subpath = strdup(path);
2828 941e9f74 2019-05-21 stsp if (subpath == NULL) {
2829 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
2830 941e9f74 2019-05-21 stsp break;
2831 941e9f74 2019-05-21 stsp }
2832 941e9f74 2019-05-21 stsp
2833 945f9229 2022-04-16 thomas err = got_object_id_by_path(&tree_id, s->repo, commit,
2834 941e9f74 2019-05-21 stsp subpath);
2835 941e9f74 2019-05-21 stsp if (err)
2836 941e9f74 2019-05-21 stsp break;
2837 941e9f74 2019-05-21 stsp
2838 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
2839 941e9f74 2019-05-21 stsp free(tree_id);
2840 941e9f74 2019-05-21 stsp if (err)
2841 941e9f74 2019-05-21 stsp break;
2842 941e9f74 2019-05-21 stsp
2843 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
2844 941e9f74 2019-05-21 stsp if (err) {
2845 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
2846 941e9f74 2019-05-21 stsp break;
2847 941e9f74 2019-05-21 stsp }
2848 941e9f74 2019-05-21 stsp if (slash == NULL)
2849 941e9f74 2019-05-21 stsp break;
2850 941e9f74 2019-05-21 stsp free(subpath);
2851 941e9f74 2019-05-21 stsp subpath = NULL;
2852 941e9f74 2019-05-21 stsp p = slash;
2853 941e9f74 2019-05-21 stsp }
2854 941e9f74 2019-05-21 stsp
2855 941e9f74 2019-05-21 stsp free(subpath);
2856 1a76625f 2018-10-22 stsp return err;
2857 61266923 2020-01-14 stsp }
2858 61266923 2020-01-14 stsp
2859 61266923 2020-01-14 stsp static const struct got_error *
2860 444d5325 2022-07-03 thomas browse_commit_tree(struct tog_view **new_view, int begin_y, int begin_x,
2861 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
2862 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
2863 55cccc34 2020-02-20 stsp {
2864 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
2865 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
2866 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
2867 55cccc34 2020-02-20 stsp
2868 444d5325 2022-07-03 thomas tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
2869 55cccc34 2020-02-20 stsp if (tree_view == NULL)
2870 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
2871 55cccc34 2020-02-20 stsp
2872 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, entry->id, head_ref_name, repo);
2873 bc573f3b 2021-07-10 stsp if (err)
2874 55cccc34 2020-02-20 stsp return err;
2875 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
2876 55cccc34 2020-02-20 stsp
2877 55cccc34 2020-02-20 stsp *new_view = tree_view;
2878 55cccc34 2020-02-20 stsp
2879 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
2880 55cccc34 2020-02-20 stsp return NULL;
2881 55cccc34 2020-02-20 stsp
2882 945f9229 2022-04-16 thomas return tree_view_walk_path(s, entry->commit, path);
2883 55cccc34 2020-02-20 stsp }
2884 55cccc34 2020-02-20 stsp
2885 55cccc34 2020-02-20 stsp static const struct got_error *
2886 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
2887 61266923 2020-01-14 stsp {
2888 61266923 2020-01-14 stsp sigset_t sigset;
2889 61266923 2020-01-14 stsp int errcode;
2890 61266923 2020-01-14 stsp
2891 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
2892 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2893 61266923 2020-01-14 stsp
2894 296152d1 2022-05-31 thomas /* tog handles SIGWINCH, SIGCONT, SIGINT, SIGTERM */
2895 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2896 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2897 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2898 296152d1 2022-05-31 thomas return got_error_from_errno("sigaddset");
2899 296152d1 2022-05-31 thomas if (sigaddset(&sigset, SIGINT) == -1)
2900 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2901 296152d1 2022-05-31 thomas if (sigaddset(&sigset, SIGTERM) == -1)
2902 296152d1 2022-05-31 thomas return got_error_from_errno("sigaddset");
2903 61266923 2020-01-14 stsp
2904 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2905 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2906 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2907 61266923 2020-01-14 stsp
2908 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2909 61266923 2020-01-14 stsp if (errcode)
2910 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2911 61266923 2020-01-14 stsp
2912 61266923 2020-01-14 stsp return NULL;
2913 1a76625f 2018-10-22 stsp }
2914 1a76625f 2018-10-22 stsp
2915 1a76625f 2018-10-22 stsp static void *
2916 1a76625f 2018-10-22 stsp log_thread(void *arg)
2917 1a76625f 2018-10-22 stsp {
2918 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2919 1a76625f 2018-10-22 stsp int errcode = 0;
2920 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2921 1a76625f 2018-10-22 stsp int done = 0;
2922 61266923 2020-01-14 stsp
2923 f2d749db 2022-07-12 thomas /*
2924 f2d749db 2022-07-12 thomas * Sync startup with main thread such that we begin our
2925 f2d749db 2022-07-12 thomas * work once view_input() has released the mutex.
2926 f2d749db 2022-07-12 thomas */
2927 f2d749db 2022-07-12 thomas errcode = pthread_mutex_lock(&tog_mutex);
2928 f2d749db 2022-07-12 thomas if (errcode) {
2929 f2d749db 2022-07-12 thomas err = got_error_set_errno(errcode, "pthread_mutex_lock");
2930 61266923 2020-01-14 stsp return (void *)err;
2931 f2d749db 2022-07-12 thomas }
2932 1a76625f 2018-10-22 stsp
2933 f2d749db 2022-07-12 thomas err = block_signals_used_by_main_thread();
2934 f2d749db 2022-07-12 thomas if (err) {
2935 f2d749db 2022-07-12 thomas pthread_mutex_unlock(&tog_mutex);
2936 f2d749db 2022-07-12 thomas goto done;
2937 f2d749db 2022-07-12 thomas }
2938 f2d749db 2022-07-12 thomas
2939 296152d1 2022-05-31 thomas while (!done && !err && !tog_fatal_signal_received()) {
2940 f2d749db 2022-07-12 thomas errcode = pthread_mutex_unlock(&tog_mutex);
2941 f2d749db 2022-07-12 thomas if (errcode) {
2942 f2d749db 2022-07-12 thomas err = got_error_set_errno(errcode,
2943 f2d749db 2022-07-12 thomas "pthread_mutex_unlock");
2944 f2d749db 2022-07-12 thomas goto done;
2945 f2d749db 2022-07-12 thomas }
2946 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2947 1a76625f 2018-10-22 stsp if (err) {
2948 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2949 f2d749db 2022-07-12 thomas goto done;
2950 1a76625f 2018-10-22 stsp err = NULL;
2951 1a76625f 2018-10-22 stsp done = 1;
2952 7e8004ba 2022-09-11 thomas } else if (a->commits_needed > 0 && !a->load_all) {
2953 7e8004ba 2022-09-11 thomas if (*a->limiting) {
2954 7e8004ba 2022-09-11 thomas if (a->limit_match)
2955 7e8004ba 2022-09-11 thomas a->commits_needed--;
2956 7e8004ba 2022-09-11 thomas } else
2957 7e8004ba 2022-09-11 thomas a->commits_needed--;
2958 7e8004ba 2022-09-11 thomas }
2959 1a76625f 2018-10-22 stsp
2960 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2961 3abe8080 2019-04-10 stsp if (errcode) {
2962 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2963 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2964 f2d749db 2022-07-12 thomas goto done;
2965 3abe8080 2019-04-10 stsp } else if (*a->quit)
2966 1a76625f 2018-10-22 stsp done = 1;
2967 7e8004ba 2022-09-11 thomas else if (*a->limiting && *a->first_displayed_entry == NULL) {
2968 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2969 7e8004ba 2022-09-11 thomas TAILQ_FIRST(&a->limit_commits->head);
2970 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2971 7e8004ba 2022-09-11 thomas } else if (*a->first_displayed_entry == NULL) {
2972 7e8004ba 2022-09-11 thomas *a->first_displayed_entry =
2973 7e8004ba 2022-09-11 thomas TAILQ_FIRST(&a->real_commits->head);
2974 7e8004ba 2022-09-11 thomas *a->selected_entry = *a->first_displayed_entry;
2975 1a76625f 2018-10-22 stsp }
2976 1a76625f 2018-10-22 stsp
2977 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2978 7c1452c1 2020-03-26 stsp if (errcode) {
2979 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2980 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2981 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2982 f2d749db 2022-07-12 thomas goto done;
2983 7c1452c1 2020-03-26 stsp }
2984 7c1452c1 2020-03-26 stsp
2985 1a76625f 2018-10-22 stsp if (done)
2986 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2987 7c1452c1 2020-03-26 stsp else {
2988 fb280deb 2021-08-30 stsp if (a->commits_needed == 0 && !a->load_all) {
2989 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2990 7c1452c1 2020-03-26 stsp &tog_mutex);
2991 f2d749db 2022-07-12 thomas if (errcode) {
2992 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2993 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2994 f2d749db 2022-07-12 thomas pthread_mutex_unlock(&tog_mutex);
2995 f2d749db 2022-07-12 thomas goto done;
2996 f2d749db 2022-07-12 thomas }
2997 21355643 2020-12-06 stsp if (*a->quit)
2998 21355643 2020-12-06 stsp done = 1;
2999 7c1452c1 2020-03-26 stsp }
3000 1a76625f 2018-10-22 stsp }
3001 1a76625f 2018-10-22 stsp }
3002 3abe8080 2019-04-10 stsp a->log_complete = 1;
3003 f2d749db 2022-07-12 thomas errcode = pthread_mutex_unlock(&tog_mutex);
3004 f2d749db 2022-07-12 thomas if (errcode)
3005 f2d749db 2022-07-12 thomas err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3006 f2d749db 2022-07-12 thomas done:
3007 f2d749db 2022-07-12 thomas if (err) {
3008 f2d749db 2022-07-12 thomas tog_thread_error = 1;
3009 f2d749db 2022-07-12 thomas pthread_cond_signal(&a->commit_loaded);
3010 f2d749db 2022-07-12 thomas }
3011 1a76625f 2018-10-22 stsp return (void *)err;
3012 1a76625f 2018-10-22 stsp }
3013 1a76625f 2018-10-22 stsp
3014 1a76625f 2018-10-22 stsp static const struct got_error *
3015 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
3016 1a76625f 2018-10-22 stsp {
3017 f2d749db 2022-07-12 thomas const struct got_error *err = NULL, *thread_err = NULL;
3018 1a76625f 2018-10-22 stsp int errcode;
3019 1a76625f 2018-10-22 stsp
3020 1a76625f 2018-10-22 stsp if (s->thread) {
3021 1a76625f 2018-10-22 stsp s->quit = 1;
3022 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
3023 1a76625f 2018-10-22 stsp if (errcode)
3024 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3025 2af4a041 2019-05-11 jcs "pthread_cond_signal");
3026 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3027 1a76625f 2018-10-22 stsp if (errcode)
3028 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3029 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
3030 f2d749db 2022-07-12 thomas errcode = pthread_join(s->thread, (void **)&thread_err);
3031 1a76625f 2018-10-22 stsp if (errcode)
3032 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
3033 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3034 1a76625f 2018-10-22 stsp if (errcode)
3035 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3036 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3037 dd038bc6 2021-09-21 thomas.ad s->thread = 0; //NULL;
3038 1a76625f 2018-10-22 stsp }
3039 1a76625f 2018-10-22 stsp
3040 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
3041 1d0f4054 2021-06-17 stsp err = got_repo_close(s->thread_args.repo);
3042 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
3043 1af5eddf 2022-06-23 thomas }
3044 1af5eddf 2022-06-23 thomas
3045 1af5eddf 2022-06-23 thomas if (s->thread_args.pack_fds) {
3046 1af5eddf 2022-06-23 thomas const struct got_error *pack_err =
3047 1af5eddf 2022-06-23 thomas got_repo_pack_fds_close(s->thread_args.pack_fds);
3048 1af5eddf 2022-06-23 thomas if (err == NULL)
3049 1af5eddf 2022-06-23 thomas err = pack_err;
3050 1af5eddf 2022-06-23 thomas s->thread_args.pack_fds = NULL;
3051 1a76625f 2018-10-22 stsp }
3052 1a76625f 2018-10-22 stsp
3053 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
3054 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
3055 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
3056 1a76625f 2018-10-22 stsp }
3057 1a76625f 2018-10-22 stsp
3058 f2d749db 2022-07-12 thomas return err ? err : thread_err;
3059 9343a5fb 2018-06-23 stsp }
3060 9343a5fb 2018-06-23 stsp
3061 9343a5fb 2018-06-23 stsp static const struct got_error *
3062 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
3063 1a76625f 2018-10-22 stsp {
3064 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
3065 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
3066 276b94a1 2020-11-13 naddy int errcode;
3067 1a76625f 2018-10-22 stsp
3068 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
3069 276b94a1 2020-11-13 naddy
3070 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
3071 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3072 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3073 276b94a1 2020-11-13 naddy
3074 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
3075 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
3076 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
3077 276b94a1 2020-11-13 naddy
3078 7e8004ba 2022-09-11 thomas free_commits(&s->limit_commits);
3079 7e8004ba 2022-09-11 thomas free_commits(&s->real_commits);
3080 1a76625f 2018-10-22 stsp free(s->in_repo_path);
3081 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
3082 1a76625f 2018-10-22 stsp free(s->start_id);
3083 797bc7b9 2018-10-22 stsp s->start_id = NULL;
3084 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
3085 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
3086 1a76625f 2018-10-22 stsp return err;
3087 1a76625f 2018-10-22 stsp }
3088 1a76625f 2018-10-22 stsp
3089 7e8004ba 2022-09-11 thomas /*
3090 7e8004ba 2022-09-11 thomas * We use two queues to implement the limit feature: first consists of
3091 7e8004ba 2022-09-11 thomas * commits matching the current limit_regex; second is the real queue
3092 7e8004ba 2022-09-11 thomas * of all known commits (real_commits). When the user starts limiting,
3093 7e8004ba 2022-09-11 thomas * we swap queues such that all movement and displaying functionality
3094 7e8004ba 2022-09-11 thomas * works with very slight change.
3095 7e8004ba 2022-09-11 thomas */
3096 1a76625f 2018-10-22 stsp static const struct got_error *
3097 7e8004ba 2022-09-11 thomas limit_log_view(struct tog_view *view)
3098 7e8004ba 2022-09-11 thomas {
3099 7e8004ba 2022-09-11 thomas struct tog_log_view_state *s = &view->state.log;
3100 7e8004ba 2022-09-11 thomas struct commit_queue_entry *entry;
3101 7e8004ba 2022-09-11 thomas struct tog_view *v = view;
3102 7e8004ba 2022-09-11 thomas const struct got_error *err = NULL;
3103 7e8004ba 2022-09-11 thomas char pattern[1024];
3104 7e8004ba 2022-09-11 thomas int ret;
3105 7e8004ba 2022-09-11 thomas
3106 7e8004ba 2022-09-11 thomas if (view_is_hsplit_top(view))
3107 7e8004ba 2022-09-11 thomas v = view->child;
3108 7e8004ba 2022-09-11 thomas else if (view->mode == TOG_VIEW_SPLIT_VERT && view->parent)
3109 7e8004ba 2022-09-11 thomas v = view->parent;
3110 7e8004ba 2022-09-11 thomas
3111 7e8004ba 2022-09-11 thomas /* Get the pattern */
3112 7e8004ba 2022-09-11 thomas wmove(v->window, v->nlines - 1, 0);
3113 7e8004ba 2022-09-11 thomas wclrtoeol(v->window);
3114 7e8004ba 2022-09-11 thomas mvwaddstr(v->window, v->nlines - 1, 0, "&/");
3115 7e8004ba 2022-09-11 thomas nodelay(v->window, FALSE);
3116 7e8004ba 2022-09-11 thomas nocbreak();
3117 7e8004ba 2022-09-11 thomas echo();
3118 7e8004ba 2022-09-11 thomas ret = wgetnstr(v->window, pattern, sizeof(pattern));
3119 7e8004ba 2022-09-11 thomas cbreak();
3120 7e8004ba 2022-09-11 thomas noecho();
3121 7e8004ba 2022-09-11 thomas nodelay(v->window, TRUE);
3122 7e8004ba 2022-09-11 thomas if (ret == ERR)
3123 7e8004ba 2022-09-11 thomas return NULL;
3124 7e8004ba 2022-09-11 thomas
3125 7e8004ba 2022-09-11 thomas if (*pattern == '\0') {
3126 7e8004ba 2022-09-11 thomas /*
3127 7e8004ba 2022-09-11 thomas * Safety measure for the situation where the user
3128 7e8004ba 2022-09-11 thomas * resets limit without previously limiting anything.
3129 7e8004ba 2022-09-11 thomas */
3130 7e8004ba 2022-09-11 thomas if (!s->limit_view)
3131 7e8004ba 2022-09-11 thomas return NULL;
3132 7e8004ba 2022-09-11 thomas
3133 7e8004ba 2022-09-11 thomas /*
3134 7e8004ba 2022-09-11 thomas * User could have pressed Ctrl+L, which refreshed the
3135 7e8004ba 2022-09-11 thomas * commit queues, it means we can't save previously
3136 7e8004ba 2022-09-11 thomas * (before limit took place) displayed entries,
3137 7e8004ba 2022-09-11 thomas * because they would point to already free'ed memory,
3138 7e8004ba 2022-09-11 thomas * so we are forced to always select first entry of
3139 7e8004ba 2022-09-11 thomas * the queue.
3140 7e8004ba 2022-09-11 thomas */
3141 7e8004ba 2022-09-11 thomas s->commits = &s->real_commits;
3142 7e8004ba 2022-09-11 thomas s->first_displayed_entry = TAILQ_FIRST(&s->real_commits.head);
3143 7e8004ba 2022-09-11 thomas s->selected_entry = s->first_displayed_entry;
3144 7e8004ba 2022-09-11 thomas s->selected = 0;
3145 7e8004ba 2022-09-11 thomas s->limit_view = 0;
3146 7e8004ba 2022-09-11 thomas
3147 7e8004ba 2022-09-11 thomas return NULL;
3148 7e8004ba 2022-09-11 thomas }
3149 7e8004ba 2022-09-11 thomas
3150 7e8004ba 2022-09-11 thomas if (regcomp(&s->limit_regex, pattern, REG_EXTENDED | REG_NEWLINE))
3151 7e8004ba 2022-09-11 thomas return NULL;
3152 7e8004ba 2022-09-11 thomas
3153 7e8004ba 2022-09-11 thomas s->limit_view = 1;
3154 7e8004ba 2022-09-11 thomas
3155 7e8004ba 2022-09-11 thomas /* Clear the screen while loading limit view */
3156 7e8004ba 2022-09-11 thomas s->first_displayed_entry = NULL;
3157 7e8004ba 2022-09-11 thomas s->last_displayed_entry = NULL;
3158 7e8004ba 2022-09-11 thomas s->selected_entry = NULL;
3159 7e8004ba 2022-09-11 thomas s->commits = &s->limit_commits;
3160 7e8004ba 2022-09-11 thomas
3161 7e8004ba 2022-09-11 thomas /* Prepare limit queue for new search */
3162 7e8004ba 2022-09-11 thomas free_commits(&s->limit_commits);
3163 7e8004ba 2022-09-11 thomas s->limit_commits.ncommits = 0;
3164 7e8004ba 2022-09-11 thomas
3165 7e8004ba 2022-09-11 thomas /* First process commits, which are in queue already */
3166 7e8004ba 2022-09-11 thomas TAILQ_FOREACH(entry, &s->real_commits.head, entry) {
3167 7e8004ba 2022-09-11 thomas int have_match = 0;
3168 7e8004ba 2022-09-11 thomas
3169 7e8004ba 2022-09-11 thomas err = match_commit(&have_match, entry->id,
3170 7e8004ba 2022-09-11 thomas entry->commit, &s->limit_regex);
3171 7e8004ba 2022-09-11 thomas if (err)
3172 7e8004ba 2022-09-11 thomas return err;
3173 7e8004ba 2022-09-11 thomas
3174 7e8004ba 2022-09-11 thomas if (have_match) {
3175 7e8004ba 2022-09-11 thomas struct commit_queue_entry *matched;
3176 7e8004ba 2022-09-11 thomas
3177 7e8004ba 2022-09-11 thomas matched = alloc_commit_queue_entry(entry->commit,
3178 7e8004ba 2022-09-11 thomas entry->id);
3179 7e8004ba 2022-09-11 thomas if (matched == NULL) {
3180 7e8004ba 2022-09-11 thomas err = got_error_from_errno(
3181 7e8004ba 2022-09-11 thomas "alloc_commit_queue_entry");
3182 7e8004ba 2022-09-11 thomas break;
3183 7e8004ba 2022-09-11 thomas }
3184 6f6c25d6 2022-09-18 thomas matched->commit = entry->commit;
3185 6f6c25d6 2022-09-18 thomas got_object_commit_retain(entry->commit);
3186 7e8004ba 2022-09-11 thomas
3187 7e8004ba 2022-09-11 thomas matched->idx = s->limit_commits.ncommits;
3188 7e8004ba 2022-09-11 thomas TAILQ_INSERT_TAIL(&s->limit_commits.head,
3189 7e8004ba 2022-09-11 thomas matched, entry);
3190 7e8004ba 2022-09-11 thomas s->limit_commits.ncommits++;
3191 7e8004ba 2022-09-11 thomas }
3192 7e8004ba 2022-09-11 thomas }
3193 7e8004ba 2022-09-11 thomas
3194 7e8004ba 2022-09-11 thomas /* Second process all the commits, until we fill the screen */
3195 7e8004ba 2022-09-11 thomas if (s->limit_commits.ncommits < view->nlines - 1 &&
3196 7e8004ba 2022-09-11 thomas !s->thread_args.log_complete) {
3197 7e8004ba 2022-09-11 thomas s->thread_args.commits_needed +=
3198 7e8004ba 2022-09-11 thomas view->nlines - s->limit_commits.ncommits - 1;
3199 7e8004ba 2022-09-11 thomas err = trigger_log_thread(view, 1);
3200 7e8004ba 2022-09-11 thomas if (err)
3201 7e8004ba 2022-09-11 thomas return err;
3202 7e8004ba 2022-09-11 thomas }
3203 7e8004ba 2022-09-11 thomas
3204 7e8004ba 2022-09-11 thomas s->first_displayed_entry = TAILQ_FIRST(&s->commits->head);
3205 7e8004ba 2022-09-11 thomas s->selected_entry = TAILQ_FIRST(&s->commits->head);
3206 7e8004ba 2022-09-11 thomas s->selected = 0;
3207 7e8004ba 2022-09-11 thomas
3208 7e8004ba 2022-09-11 thomas return NULL;
3209 7e8004ba 2022-09-11 thomas }
3210 7e8004ba 2022-09-11 thomas
3211 7e8004ba 2022-09-11 thomas static const struct got_error *
3212 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
3213 60493ae3 2019-06-20 stsp {
3214 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3215 60493ae3 2019-06-20 stsp
3216 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
3217 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3218 60493ae3 2019-06-20 stsp return NULL;
3219 60493ae3 2019-06-20 stsp }
3220 60493ae3 2019-06-20 stsp
3221 60493ae3 2019-06-20 stsp static const struct got_error *
3222 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
3223 60493ae3 2019-06-20 stsp {
3224 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
3225 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
3226 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
3227 60493ae3 2019-06-20 stsp
3228 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
3229 f9686aa5 2020-03-27 stsp show_log_view(view);
3230 f9686aa5 2020-03-27 stsp update_panels();
3231 f9686aa5 2020-03-27 stsp doupdate();
3232 f9686aa5 2020-03-27 stsp
3233 96e2b566 2019-07-08 stsp if (s->search_entry) {
3234 13add988 2019-10-15 stsp int errcode, ch;
3235 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3236 13add988 2019-10-15 stsp if (errcode)
3237 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3238 13add988 2019-10-15 stsp "pthread_mutex_unlock");
3239 13add988 2019-10-15 stsp ch = wgetch(view->window);
3240 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
3241 13add988 2019-10-15 stsp if (errcode)
3242 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
3243 13add988 2019-10-15 stsp "pthread_mutex_lock");
3244 634cb454 2022-07-03 thomas if (ch == CTRL('g') || ch == KEY_BACKSPACE) {
3245 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3246 678cbce5 2019-07-28 stsp return NULL;
3247 678cbce5 2019-07-28 stsp }
3248 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
3249 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
3250 96e2b566 2019-07-08 stsp else
3251 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
3252 96e2b566 2019-07-08 stsp commit_queue_head, entry);
3253 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
3254 df5e841d 2022-06-23 thomas /*
3255 1f4d5162 2022-06-23 thomas * If the user has moved the cursor after we hit a match,
3256 1f4d5162 2022-06-23 thomas * the position from where we should continue searching
3257 1f4d5162 2022-06-23 thomas * might have changed.
3258 df5e841d 2022-06-23 thomas */
3259 e7baaec8 2022-09-13 thomas if (view->searching == TOG_SEARCH_FORWARD)
3260 e7baaec8 2022-09-13 thomas entry = TAILQ_NEXT(s->selected_entry, entry);
3261 e7baaec8 2022-09-13 thomas else
3262 e7baaec8 2022-09-13 thomas entry = TAILQ_PREV(s->selected_entry, commit_queue_head,
3263 e7baaec8 2022-09-13 thomas entry);
3264 20be8d96 2019-06-21 stsp } else {
3265 de0d3ad4 2021-12-10 thomas entry = s->selected_entry;
3266 20be8d96 2019-06-21 stsp }
3267 60493ae3 2019-06-20 stsp
3268 60493ae3 2019-06-20 stsp while (1) {
3269 13add988 2019-10-15 stsp int have_match = 0;
3270 13add988 2019-10-15 stsp
3271 60493ae3 2019-06-20 stsp if (entry == NULL) {
3272 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
3273 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
3274 f9967bca 2020-03-27 stsp view->search_next_done =
3275 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
3276 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
3277 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
3278 f801134a 2019-06-25 stsp return NULL;
3279 60493ae3 2019-06-20 stsp }
3280 96e2b566 2019-07-08 stsp /*
3281 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
3282 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
3283 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
3284 96e2b566 2019-07-08 stsp */
3285 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
3286 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
3287 60493ae3 2019-06-20 stsp }
3288 60493ae3 2019-06-20 stsp
3289 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
3290 13add988 2019-10-15 stsp &view->regex);
3291 5943eee2 2019-08-13 stsp if (err)
3292 13add988 2019-10-15 stsp break;
3293 13add988 2019-10-15 stsp if (have_match) {
3294 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3295 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
3296 60493ae3 2019-06-20 stsp break;
3297 60493ae3 2019-06-20 stsp }
3298 13add988 2019-10-15 stsp
3299 96e2b566 2019-07-08 stsp s->search_entry = entry;
3300 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
3301 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
3302 b1bf1435 2019-06-21 stsp else
3303 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
3304 60493ae3 2019-06-20 stsp }
3305 60493ae3 2019-06-20 stsp
3306 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
3307 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
3308 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
3309 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
3310 60493ae3 2019-06-20 stsp if (err)
3311 60493ae3 2019-06-20 stsp return err;
3312 ead14cbe 2019-06-21 stsp cur++;
3313 ead14cbe 2019-06-21 stsp }
3314 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
3315 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
3316 60493ae3 2019-06-20 stsp if (err)
3317 60493ae3 2019-06-20 stsp return err;
3318 ead14cbe 2019-06-21 stsp cur--;
3319 60493ae3 2019-06-20 stsp }
3320 60493ae3 2019-06-20 stsp }
3321 60493ae3 2019-06-20 stsp
3322 96e2b566 2019-07-08 stsp s->search_entry = NULL;
3323 96e2b566 2019-07-08 stsp
3324 60493ae3 2019-06-20 stsp return NULL;
3325 60493ae3 2019-06-20 stsp }
3326 60493ae3 2019-06-20 stsp
3327 60493ae3 2019-06-20 stsp static const struct got_error *
3328 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
3329 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
3330 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
3331 80ddbec8 2018-04-29 stsp {
3332 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
3333 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3334 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
3335 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
3336 1a76625f 2018-10-22 stsp int errcode;
3337 80ddbec8 2018-04-29 stsp
3338 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
3339 f135c941 2020-02-20 stsp free(s->in_repo_path);
3340 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
3341 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
3342 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3343 f135c941 2020-02-20 stsp }
3344 ecb28ae0 2018-07-16 stsp
3345 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
3346 7e8004ba 2022-09-11 thomas TAILQ_INIT(&s->real_commits.head);
3347 7e8004ba 2022-09-11 thomas s->real_commits.ncommits = 0;
3348 7e8004ba 2022-09-11 thomas s->commits = &s->real_commits;
3349 78756c87 2020-11-24 stsp
3350 7e8004ba 2022-09-11 thomas TAILQ_INIT(&s->limit_commits.head);
3351 7e8004ba 2022-09-11 thomas s->limit_view = 0;
3352 7e8004ba 2022-09-11 thomas s->limit_commits.ncommits = 0;
3353 7e8004ba 2022-09-11 thomas
3354 fb2756b9 2018-08-04 stsp s->repo = repo;
3355 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
3356 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
3357 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
3358 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
3359 9cd7cbd1 2020-12-07 stsp goto done;
3360 9cd7cbd1 2020-12-07 stsp }
3361 9cd7cbd1 2020-12-07 stsp }
3362 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
3363 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
3364 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3365 5036bf37 2018-09-24 stsp goto done;
3366 5036bf37 2018-09-24 stsp }
3367 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
3368 e5a0f69f 2018-08-18 stsp
3369 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
3370 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3371 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
3372 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
3373 11b20872 2019-11-08 stsp if (err)
3374 11b20872 2019-11-08 stsp goto done;
3375 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
3376 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3377 11b20872 2019-11-08 stsp if (err) {
3378 11b20872 2019-11-08 stsp free_colors(&s->colors);
3379 11b20872 2019-11-08 stsp goto done;
3380 11b20872 2019-11-08 stsp }
3381 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
3382 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3383 11b20872 2019-11-08 stsp if (err) {
3384 11b20872 2019-11-08 stsp free_colors(&s->colors);
3385 11b20872 2019-11-08 stsp goto done;
3386 11b20872 2019-11-08 stsp }
3387 11b20872 2019-11-08 stsp }
3388 11b20872 2019-11-08 stsp
3389 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
3390 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
3391 ea0bff04 2022-07-19 thomas view->resize = resize_log_view;
3392 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
3393 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
3394 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
3395 1a76625f 2018-10-22 stsp
3396 1af5eddf 2022-06-23 thomas if (s->thread_args.pack_fds == NULL) {
3397 1af5eddf 2022-06-23 thomas err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3398 1af5eddf 2022-06-23 thomas if (err)
3399 1af5eddf 2022-06-23 thomas goto done;
3400 1af5eddf 2022-06-23 thomas }
3401 7cd52833 2022-06-23 thomas err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL,
3402 1af5eddf 2022-06-23 thomas s->thread_args.pack_fds);
3403 7cd52833 2022-06-23 thomas if (err)
3404 7cd52833 2022-06-23 thomas goto done;
3405 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
3406 b672a97a 2020-01-27 stsp !s->log_branches);
3407 1a76625f 2018-10-22 stsp if (err)
3408 1a76625f 2018-10-22 stsp goto done;
3409 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
3410 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
3411 c5b78334 2020-01-12 stsp if (err)
3412 c5b78334 2020-01-12 stsp goto done;
3413 1a76625f 2018-10-22 stsp
3414 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
3415 1a76625f 2018-10-22 stsp if (errcode) {
3416 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
3417 1a76625f 2018-10-22 stsp goto done;
3418 1a76625f 2018-10-22 stsp }
3419 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
3420 7c1452c1 2020-03-26 stsp if (errcode) {
3421 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
3422 7c1452c1 2020-03-26 stsp goto done;
3423 7c1452c1 2020-03-26 stsp }
3424 1a76625f 2018-10-22 stsp
3425 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
3426 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
3427 7e8004ba 2022-09-11 thomas s->thread_args.real_commits = &s->real_commits;
3428 7e8004ba 2022-09-11 thomas s->thread_args.limit_commits = &s->limit_commits;
3429 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
3430 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
3431 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
3432 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
3433 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
3434 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
3435 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
3436 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
3437 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
3438 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
3439 7e8004ba 2022-09-11 thomas s->thread_args.limiting = &s->limit_view;
3440 7e8004ba 2022-09-11 thomas s->thread_args.limit_regex = &s->limit_regex;
3441 7e8004ba 2022-09-11 thomas s->thread_args.limit_commits = &s->limit_commits;
3442 ba4f502b 2018-08-04 stsp done:
3443 1a76625f 2018-10-22 stsp if (err)
3444 1a76625f 2018-10-22 stsp close_log_view(view);
3445 ba4f502b 2018-08-04 stsp return err;
3446 ba4f502b 2018-08-04 stsp }
3447 ba4f502b 2018-08-04 stsp
3448 e5a0f69f 2018-08-18 stsp static const struct got_error *
3449 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
3450 ba4f502b 2018-08-04 stsp {
3451 f2f6d207 2020-11-24 stsp const struct got_error *err;
3452 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
3453 ba4f502b 2018-08-04 stsp
3454 dd038bc6 2021-09-21 thomas.ad if (s->thread == 0) { //NULL) {
3455 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
3456 2b380cc8 2018-10-24 stsp &s->thread_args);
3457 2b380cc8 2018-10-24 stsp if (errcode)
3458 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3459 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
3460 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
3461 f2f6d207 2020-11-24 stsp if (err)
3462 f2f6d207 2020-11-24 stsp return err;
3463 f2f6d207 2020-11-24 stsp }
3464 2b380cc8 2018-10-24 stsp }
3465 2b380cc8 2018-10-24 stsp
3466 8fdc79fe 2020-12-01 naddy return draw_commits(view);
3467 b31f89ff 2022-07-01 thomas }
3468 b31f89ff 2022-07-01 thomas
3469 b31f89ff 2022-07-01 thomas static void
3470 b31f89ff 2022-07-01 thomas log_move_cursor_up(struct tog_view *view, int page, int home)
3471 b31f89ff 2022-07-01 thomas {
3472 b31f89ff 2022-07-01 thomas struct tog_log_view_state *s = &view->state.log;
3473 b31f89ff 2022-07-01 thomas
3474 b31f89ff 2022-07-01 thomas if (s->first_displayed_entry == NULL)
3475 b31f89ff 2022-07-01 thomas return;
3476 7e8004ba 2022-09-11 thomas if (s->selected_entry->idx == 0)
3477 7e8004ba 2022-09-11 thomas view->count = 0;
3478 b31f89ff 2022-07-01 thomas
3479 7e8004ba 2022-09-11 thomas if ((page && TAILQ_FIRST(&s->commits->head) == s->first_displayed_entry)
3480 b31f89ff 2022-07-01 thomas || home)
3481 b31f89ff 2022-07-01 thomas s->selected = home ? 0 : MAX(0, s->selected - page - 1);
3482 b31f89ff 2022-07-01 thomas
3483 b31f89ff 2022-07-01 thomas if (!page && !home && s->selected > 0)
3484 b31f89ff 2022-07-01 thomas --s->selected;
3485 b31f89ff 2022-07-01 thomas else
3486 7e8004ba 2022-09-11 thomas log_scroll_up(s, home ? s->commits->ncommits : MAX(page, 1));
3487 b31f89ff 2022-07-01 thomas
3488 b31f89ff 2022-07-01 thomas select_commit(s);
3489 b31f89ff 2022-07-01 thomas return;
3490 b31f89ff 2022-07-01 thomas }
3491 b31f89ff 2022-07-01 thomas
3492 b31f89ff 2022-07-01 thomas static const struct got_error *
3493 b31f89ff 2022-07-01 thomas log_move_cursor_down(struct tog_view *view, int page)
3494 b31f89ff 2022-07-01 thomas {
3495 b31f89ff 2022-07-01 thomas struct tog_log_view_state *s = &view->state.log;
3496 b31f89ff 2022-07-01 thomas const struct got_error *err = NULL;
3497 7ed048bd 2022-08-12 thomas int eos = view->nlines - 2;
3498 b31f89ff 2022-07-01 thomas
3499 7e8004ba 2022-09-11 thomas if (s->first_displayed_entry == NULL)
3500 7e8004ba 2022-09-11 thomas return NULL;
3501 7e8004ba 2022-09-11 thomas
3502 b31f89ff 2022-07-01 thomas if (s->thread_args.log_complete &&
3503 7e8004ba 2022-09-11 thomas s->selected_entry->idx >= s->commits->ncommits - 1)
3504 b31f89ff 2022-07-01 thomas return NULL;
3505 b31f89ff 2022-07-01 thomas
3506 7ed048bd 2022-08-12 thomas if (view_is_hsplit_top(view))
3507 7ed048bd 2022-08-12 thomas --eos; /* border consumes the last line */
3508 b31f89ff 2022-07-01 thomas
3509 7ed048bd 2022-08-12 thomas if (!page) {
3510 7e8004ba 2022-09-11 thomas if (s->selected < MIN(eos, s->commits->ncommits - 1))
3511 b31f89ff 2022-07-01 thomas ++s->selected;
3512 b31f89ff 2022-07-01 thomas else
3513 b31f89ff 2022-07-01 thomas err = log_scroll_down(view, 1);
3514 c0be8933 2022-08-12 thomas } else if (s->thread_args.load_all && s->thread_args.log_complete) {
3515 7ed048bd 2022-08-12 thomas struct commit_queue_entry *entry;
3516 7ed048bd 2022-08-12 thomas int n;
3517 7ed048bd 2022-08-12 thomas
3518 7ed048bd 2022-08-12 thomas s->selected = 0;
3519 7e8004ba 2022-09-11 thomas entry = TAILQ_LAST(&s->commits->head, commit_queue_head);
3520 7ed048bd 2022-08-12 thomas s->last_displayed_entry = entry;
3521 7ed048bd 2022-08-12 thomas for (n = 0; n <= eos; n++) {
3522 7ed048bd 2022-08-12 thomas if (entry == NULL)
3523 7ed048bd 2022-08-12 thomas break;
3524 7ed048bd 2022-08-12 thomas s->first_displayed_entry = entry;
3525 7ed048bd 2022-08-12 thomas entry = TAILQ_PREV(entry, commit_queue_head, entry);
3526 7ed048bd 2022-08-12 thomas }
3527 7ed048bd 2022-08-12 thomas if (n > 0)
3528 7ed048bd 2022-08-12 thomas s->selected = n - 1;
3529 b31f89ff 2022-07-01 thomas } else {
3530 7e8004ba 2022-09-11 thomas if (s->last_displayed_entry->idx == s->commits->ncommits - 1 &&
3531 bd3f8225 2022-08-12 thomas s->thread_args.log_complete)
3532 bd3f8225 2022-08-12 thomas s->selected += MIN(page,
3533 7e8004ba 2022-09-11 thomas s->commits->ncommits - s->selected_entry->idx - 1);
3534 bd3f8225 2022-08-12 thomas else
3535 bd3f8225 2022-08-12 thomas err = log_scroll_down(view, page);
3536 b31f89ff 2022-07-01 thomas }
3537 b31f89ff 2022-07-01 thomas if (err)
3538 b31f89ff 2022-07-01 thomas return err;
3539 b31f89ff 2022-07-01 thomas
3540 a5d43cac 2022-07-01 thomas /*
3541 a5d43cac 2022-07-01 thomas * We might necessarily overshoot in horizontal
3542 a5d43cac 2022-07-01 thomas * splits; if so, select the last displayed commit.
3543 a5d43cac 2022-07-01 thomas */
3544 25100026 2022-08-13 thomas if (s->first_displayed_entry && s->last_displayed_entry) {
3545 25100026 2022-08-13 thomas s->selected = MIN(s->selected,
3546 25100026 2022-08-13 thomas s->last_displayed_entry->idx -
3547 25100026 2022-08-13 thomas s->first_displayed_entry->idx);
3548 25100026 2022-08-13 thomas }
3549 a5d43cac 2022-07-01 thomas
3550 b31f89ff 2022-07-01 thomas select_commit(s);
3551 b31f89ff 2022-07-01 thomas
3552 b31f89ff 2022-07-01 thomas if (s->thread_args.log_complete &&
3553 7e8004ba 2022-09-11 thomas s->selected_entry->idx == s->commits->ncommits - 1)
3554 b31f89ff 2022-07-01 thomas view->count = 0;
3555 b31f89ff 2022-07-01 thomas
3556 b31f89ff 2022-07-01 thomas return NULL;
3557 e5a0f69f 2018-08-18 stsp }
3558 04cc582a 2018-08-01 stsp
3559 a5d43cac 2022-07-01 thomas static void
3560 a5d43cac 2022-07-01 thomas view_get_split(struct tog_view *view, int *y, int *x)
3561 a5d43cac 2022-07-01 thomas {
3562 24415785 2022-07-03 thomas *x = 0;
3563 24415785 2022-07-03 thomas *y = 0;
3564 24415785 2022-07-03 thomas
3565 53d2bdd3 2022-07-10 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN) {
3566 53d2bdd3 2022-07-10 thomas if (view->child && view->child->resized_y)
3567 53d2bdd3 2022-07-10 thomas *y = view->child->resized_y;
3568 ddbc4d37 2022-07-12 thomas else if (view->resized_y)
3569 ddbc4d37 2022-07-12 thomas *y = view->resized_y;
3570 53d2bdd3 2022-07-10 thomas else
3571 53d2bdd3 2022-07-10 thomas *y = view_split_begin_y(view->lines);
3572 ddbc4d37 2022-07-12 thomas } else if (view->mode == TOG_VIEW_SPLIT_VERT) {
3573 53d2bdd3 2022-07-10 thomas if (view->child && view->child->resized_x)
3574 53d2bdd3 2022-07-10 thomas *x = view->child->resized_x;
3575 ddbc4d37 2022-07-12 thomas else if (view->resized_x)
3576 ddbc4d37 2022-07-12 thomas *x = view->resized_x;
3577 53d2bdd3 2022-07-10 thomas else
3578 53d2bdd3 2022-07-10 thomas *x = view_split_begin_x(view->begin_x);
3579 53d2bdd3 2022-07-10 thomas }
3580 a5d43cac 2022-07-01 thomas }
3581 a5d43cac 2022-07-01 thomas
3582 a5d43cac 2022-07-01 thomas /* Split view horizontally at y and offset view->state->selected line. */
3583 e5a0f69f 2018-08-18 stsp static const struct got_error *
3584 a5d43cac 2022-07-01 thomas view_init_hsplit(struct tog_view *view, int y)
3585 a5d43cac 2022-07-01 thomas {
3586 a5d43cac 2022-07-01 thomas const struct got_error *err = NULL;
3587 a5d43cac 2022-07-01 thomas
3588 a5d43cac 2022-07-01 thomas view->nlines = y;
3589 64486692 2022-07-07 thomas view->ncols = COLS;
3590 a5d43cac 2022-07-01 thomas err = view_resize(view);
3591 a5d43cac 2022-07-01 thomas if (err)
3592 a5d43cac 2022-07-01 thomas return err;
3593 a5d43cac 2022-07-01 thomas
3594 a5d43cac 2022-07-01 thomas err = offset_selection_down(view);
3595 a5d43cac 2022-07-01 thomas
3596 a5d43cac 2022-07-01 thomas return err;
3597 07dd3ed3 2022-08-06 thomas }
3598 07dd3ed3 2022-08-06 thomas
3599 07dd3ed3 2022-08-06 thomas static const struct got_error *
3600 07dd3ed3 2022-08-06 thomas log_goto_line(struct tog_view *view, int nlines)
3601 07dd3ed3 2022-08-06 thomas {
3602 07dd3ed3 2022-08-06 thomas const struct got_error *err = NULL;
3603 07dd3ed3 2022-08-06 thomas struct tog_log_view_state *s = &view->state.log;
3604 07dd3ed3 2022-08-06 thomas int g, idx = s->selected_entry->idx;
3605 25100026 2022-08-13 thomas
3606 25100026 2022-08-13 thomas if (s->first_displayed_entry == NULL || s->last_displayed_entry == NULL)
3607 25100026 2022-08-13 thomas return NULL;
3608 07dd3ed3 2022-08-06 thomas
3609 07dd3ed3 2022-08-06 thomas g = view->gline;
3610 07dd3ed3 2022-08-06 thomas view->gline = 0;
3611 07dd3ed3 2022-08-06 thomas
3612 07dd3ed3 2022-08-06 thomas if (g >= s->first_displayed_entry->idx + 1 &&
3613 07dd3ed3 2022-08-06 thomas g <= s->last_displayed_entry->idx + 1 &&
3614 07dd3ed3 2022-08-06 thomas g - s->first_displayed_entry->idx - 1 < nlines) {
3615 07dd3ed3 2022-08-06 thomas s->selected = g - s->first_displayed_entry->idx - 1;
3616 07dd3ed3 2022-08-06 thomas select_commit(s);
3617 07dd3ed3 2022-08-06 thomas return NULL;
3618 07dd3ed3 2022-08-06 thomas }
3619 07dd3ed3 2022-08-06 thomas
3620 07dd3ed3 2022-08-06 thomas if (idx + 1 < g) {
3621 07dd3ed3 2022-08-06 thomas err = log_move_cursor_down(view, g - idx - 1);
3622 07dd3ed3 2022-08-06 thomas if (!err && g > s->selected_entry->idx + 1)
3623 07dd3ed3 2022-08-06 thomas err = log_move_cursor_down(view,
3624 07dd3ed3 2022-08-06 thomas g - s->first_displayed_entry->idx - 1);
3625 07dd3ed3 2022-08-06 thomas if (err)
3626 07dd3ed3 2022-08-06 thomas return err;
3627 07dd3ed3 2022-08-06 thomas } else if (idx + 1 > g)
3628 07dd3ed3 2022-08-06 thomas log_move_cursor_up(view, idx - g + 1, 0);
3629 07dd3ed3 2022-08-06 thomas
3630 07dd3ed3 2022-08-06 thomas if (g < nlines && s->first_displayed_entry->idx == 0)
3631 07dd3ed3 2022-08-06 thomas s->selected = g - 1;
3632 07dd3ed3 2022-08-06 thomas
3633 07dd3ed3 2022-08-06 thomas select_commit(s);
3634 07dd3ed3 2022-08-06 thomas return NULL;
3635 07dd3ed3 2022-08-06 thomas
3636 a5d43cac 2022-07-01 thomas }
3637 a5d43cac 2022-07-01 thomas
3638 a5d43cac 2022-07-01 thomas static const struct got_error *
3639 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
3640 e5a0f69f 2018-08-18 stsp {
3641 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3642 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
3643 7ed048bd 2022-08-12 thomas int eos, nscroll;
3644 80ddbec8 2018-04-29 stsp
3645 528dedf3 2021-08-30 stsp if (s->thread_args.load_all) {
3646 634cb454 2022-07-03 thomas if (ch == CTRL('g') || ch == KEY_BACKSPACE)
3647 fb280deb 2021-08-30 stsp s->thread_args.load_all = 0;
3648 528dedf3 2021-08-30 stsp else if (s->thread_args.log_complete) {
3649 7e8004ba 2022-09-11 thomas err = log_move_cursor_down(view, s->commits->ncommits);
3650 068ab281 2022-07-01 thomas s->thread_args.load_all = 0;
3651 fb280deb 2021-08-30 stsp }
3652 c0be8933 2022-08-12 thomas if (err)
3653 c0be8933 2022-08-12 thomas return err;
3654 528dedf3 2021-08-30 stsp }
3655 068ab281 2022-07-01 thomas
3656 068ab281 2022-07-01 thomas eos = nscroll = view->nlines - 1;
3657 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
3658 068ab281 2022-07-01 thomas --eos; /* border */
3659 07dd3ed3 2022-08-06 thomas
3660 07dd3ed3 2022-08-06 thomas if (view->gline)
3661 07dd3ed3 2022-08-06 thomas return log_goto_line(view, eos);
3662 068ab281 2022-07-01 thomas
3663 528dedf3 2021-08-30 stsp switch (ch) {
3664 7e8004ba 2022-09-11 thomas case '&':
3665 7e8004ba 2022-09-11 thomas err = limit_log_view(view);
3666 7e8004ba 2022-09-11 thomas break;
3667 1e37a5c2 2019-05-12 jcs case 'q':
3668 1e37a5c2 2019-05-12 jcs s->quit = 1;
3669 05171be4 2022-06-23 thomas break;
3670 05171be4 2022-06-23 thomas case '0':
3671 05171be4 2022-06-23 thomas view->x = 0;
3672 05171be4 2022-06-23 thomas break;
3673 05171be4 2022-06-23 thomas case '$':
3674 05171be4 2022-06-23 thomas view->x = MAX(view->maxx - view->ncols / 2, 0);
3675 07b0611c 2022-06-23 thomas view->count = 0;
3676 05171be4 2022-06-23 thomas break;
3677 05171be4 2022-06-23 thomas case KEY_RIGHT:
3678 05171be4 2022-06-23 thomas case 'l':
3679 05171be4 2022-06-23 thomas if (view->x + view->ncols / 2 < view->maxx)
3680 05171be4 2022-06-23 thomas view->x += 2; /* move two columns right */
3681 07b0611c 2022-06-23 thomas else
3682 07b0611c 2022-06-23 thomas view->count = 0;
3683 1e37a5c2 2019-05-12 jcs break;
3684 05171be4 2022-06-23 thomas case KEY_LEFT:
3685 05171be4 2022-06-23 thomas case 'h':
3686 05171be4 2022-06-23 thomas view->x -= MIN(view->x, 2); /* move two columns back */
3687 07b0611c 2022-06-23 thomas if (view->x <= 0)
3688 07b0611c 2022-06-23 thomas view->count = 0;
3689 05171be4 2022-06-23 thomas break;
3690 1e37a5c2 2019-05-12 jcs case 'k':
3691 1e37a5c2 2019-05-12 jcs case KEY_UP:
3692 1e37a5c2 2019-05-12 jcs case '<':
3693 1e37a5c2 2019-05-12 jcs case ',':
3694 f7140bf5 2021-10-17 thomas case CTRL('p'):
3695 b31f89ff 2022-07-01 thomas log_move_cursor_up(view, 0, 0);
3696 912a3f79 2021-08-30 j break;
3697 912a3f79 2021-08-30 j case 'g':
3698 912a3f79 2021-08-30 j case KEY_HOME:
3699 b31f89ff 2022-07-01 thomas log_move_cursor_up(view, 0, 1);
3700 07b0611c 2022-06-23 thomas view->count = 0;
3701 1e37a5c2 2019-05-12 jcs break;
3702 70f17a53 2022-06-13 thomas case CTRL('u'):
3703 23427b14 2022-06-23 thomas case 'u':
3704 70f17a53 2022-06-13 thomas nscroll /= 2;
3705 70f17a53 2022-06-13 thomas /* FALL THROUGH */
3706 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3707 a4292ac5 2019-05-12 jcs case CTRL('b'):
3708 1c5e5faa 2022-06-23 thomas case 'b':
3709 b31f89ff 2022-07-01 thomas log_move_cursor_up(view, nscroll, 0);
3710 1e37a5c2 2019-05-12 jcs break;
3711 1e37a5c2 2019-05-12 jcs case 'j':
3712 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3713 1e37a5c2 2019-05-12 jcs case '>':
3714 1e37a5c2 2019-05-12 jcs case '.':
3715 f7140bf5 2021-10-17 thomas case CTRL('n'):
3716 b31f89ff 2022-07-01 thomas err = log_move_cursor_down(view, 0);
3717 912a3f79 2021-08-30 j break;
3718 f69c5a46 2022-07-19 thomas case '@':
3719 f69c5a46 2022-07-19 thomas s->use_committer = !s->use_committer;
3720 f69c5a46 2022-07-19 thomas break;
3721 912a3f79 2021-08-30 j case 'G':
3722 912a3f79 2021-08-30 j case KEY_END: {
3723 912a3f79 2021-08-30 j /* We don't know yet how many commits, so we're forced to
3724 912a3f79 2021-08-30 j * traverse them all. */
3725 07b0611c 2022-06-23 thomas view->count = 0;
3726 7ed048bd 2022-08-12 thomas s->thread_args.load_all = 1;
3727 7ed048bd 2022-08-12 thomas if (!s->thread_args.log_complete)
3728 fb280deb 2021-08-30 stsp return trigger_log_thread(view, 0);
3729 7e8004ba 2022-09-11 thomas err = log_move_cursor_down(view, s->commits->ncommits);
3730 7ed048bd 2022-08-12 thomas s->thread_args.load_all = 0;
3731 1e37a5c2 2019-05-12 jcs break;
3732 912a3f79 2021-08-30 j }
3733 bccd1d5d 2022-06-13 thomas case CTRL('d'):
3734 23427b14 2022-06-23 thomas case 'd':
3735 70f17a53 2022-06-13 thomas nscroll /= 2;
3736 70f17a53 2022-06-13 thomas /* FALL THROUGH */
3737 70f17a53 2022-06-13 thomas case KEY_NPAGE:
3738 1c5e5faa 2022-06-23 thomas case CTRL('f'):
3739 4c2d69cb 2022-06-23 thomas case 'f':
3740 b31f89ff 2022-07-01 thomas case ' ':
3741 b31f89ff 2022-07-01 thomas err = log_move_cursor_down(view, nscroll);
3742 1e37a5c2 2019-05-12 jcs break;
3743 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3744 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
3745 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
3746 7e8004ba 2022-09-11 thomas if (s->selected > s->commits->ncommits - 1)
3747 7e8004ba 2022-09-11 thomas s->selected = s->commits->ncommits - 1;
3748 2b779855 2020-12-05 naddy select_commit(s);
3749 7e8004ba 2022-09-11 thomas if (s->commits->ncommits < view->nlines - 1 &&
3750 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
3751 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
3752 7e8004ba 2022-09-11 thomas s->commits->ncommits;
3753 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
3754 0bf7f153 2020-12-02 naddy }
3755 1e37a5c2 2019-05-12 jcs break;
3756 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3757 444d5325 2022-07-03 thomas case '\r':
3758 07b0611c 2022-06-23 thomas view->count = 0;
3759 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3760 e5a0f69f 2018-08-18 stsp break;
3761 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_DIFF);
3762 1e37a5c2 2019-05-12 jcs break;
3763 1be4947a 2022-07-22 thomas case 'T':
3764 07b0611c 2022-06-23 thomas view->count = 0;
3765 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
3766 5036bf37 2018-09-24 stsp break;
3767 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_TREE);
3768 1e37a5c2 2019-05-12 jcs break;
3769 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
3770 21355643 2020-12-06 stsp case CTRL('l'):
3771 21355643 2020-12-06 stsp case 'B':
3772 07b0611c 2022-06-23 thomas view->count = 0;
3773 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
3774 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
3775 1e37a5c2 2019-05-12 jcs break;
3776 21355643 2020-12-06 stsp err = stop_log_thread(s);
3777 74cfe85e 2020-10-20 stsp if (err)
3778 74cfe85e 2020-10-20 stsp return err;
3779 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
3780 21355643 2020-12-06 stsp char *parent_path;
3781 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
3782 21355643 2020-12-06 stsp if (err)
3783 21355643 2020-12-06 stsp return err;
3784 21355643 2020-12-06 stsp free(s->in_repo_path);
3785 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
3786 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
3787 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
3788 21355643 2020-12-06 stsp struct got_object_id *start_id;
3789 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
3790 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
3791 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
3792 466429a1 2022-11-17 thomas if (err) {
3793 466429a1 2022-11-17 thomas if (s->head_ref_name == NULL ||
3794 466429a1 2022-11-17 thomas err->code != GOT_ERR_NOT_REF)
3795 466429a1 2022-11-17 thomas return err;
3796 466429a1 2022-11-17 thomas /* Try to cope with deleted references. */
3797 466429a1 2022-11-17 thomas free(s->head_ref_name);
3798 466429a1 2022-11-17 thomas s->head_ref_name = NULL;
3799 466429a1 2022-11-17 thomas err = got_repo_match_object_id(&start_id,
3800 466429a1 2022-11-17 thomas NULL, GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT,
3801 466429a1 2022-11-17 thomas &tog_refs, s->repo);
3802 466429a1 2022-11-17 thomas if (err)
3803 466429a1 2022-11-17 thomas return err;
3804 466429a1 2022-11-17 thomas }
3805 21355643 2020-12-06 stsp free(s->start_id);
3806 21355643 2020-12-06 stsp s->start_id = start_id;
3807 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
3808 21355643 2020-12-06 stsp } else /* 'B' */
3809 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
3810 21355643 2020-12-06 stsp
3811 bf7e79b3 2022-06-23 thomas if (s->thread_args.pack_fds == NULL) {
3812 bf7e79b3 2022-06-23 thomas err = got_repo_pack_fds_open(&s->thread_args.pack_fds);
3813 bf7e79b3 2022-06-23 thomas if (err)
3814 bf7e79b3 2022-06-23 thomas return err;
3815 bf7e79b3 2022-06-23 thomas }
3816 1af5eddf 2022-06-23 thomas err = got_repo_open(&s->thread_args.repo,
3817 1af5eddf 2022-06-23 thomas got_repo_get_path(s->repo), NULL,
3818 1af5eddf 2022-06-23 thomas s->thread_args.pack_fds);
3819 74cfe85e 2020-10-20 stsp if (err)
3820 21355643 2020-12-06 stsp return err;
3821 51a10b52 2020-12-26 stsp tog_free_refs();
3822 3bfadbd4 2021-11-20 thomas err = tog_load_refs(s->repo, 0);
3823 ca51c541 2020-12-07 stsp if (err)
3824 ca51c541 2020-12-07 stsp return err;
3825 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
3826 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
3827 d01904d4 2019-06-25 stsp if (err)
3828 d01904d4 2019-06-25 stsp return err;
3829 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
3830 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
3831 b672a97a 2020-01-27 stsp if (err)
3832 b672a97a 2020-01-27 stsp return err;
3833 7e8004ba 2022-09-11 thomas free_commits(&s->real_commits);
3834 7e8004ba 2022-09-11 thomas free_commits(&s->limit_commits);
3835 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
3836 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
3837 21355643 2020-12-06 stsp s->selected_entry = NULL;
3838 21355643 2020-12-06 stsp s->selected = 0;
3839 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
3840 21355643 2020-12-06 stsp s->quit = 0;
3841 a5d43cac 2022-07-01 thomas s->thread_args.commits_needed = view->lines;
3842 e24d0f15 2022-06-23 thomas s->matched_entry = NULL;
3843 e24d0f15 2022-06-23 thomas s->search_entry = NULL;
3844 94ecf40d 2022-07-22 thomas view->offset = 0;
3845 d01904d4 2019-06-25 stsp break;
3846 1be4947a 2022-07-22 thomas case 'R':
3847 07b0611c 2022-06-23 thomas view->count = 0;
3848 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_REF);
3849 6458efa5 2020-11-24 stsp break;
3850 1e37a5c2 2019-05-12 jcs default:
3851 07b0611c 2022-06-23 thomas view->count = 0;
3852 1e37a5c2 2019-05-12 jcs break;
3853 899d86c2 2018-05-10 stsp }
3854 e5a0f69f 2018-08-18 stsp
3855 80ddbec8 2018-04-29 stsp return err;
3856 80ddbec8 2018-04-29 stsp }
3857 80ddbec8 2018-04-29 stsp
3858 4ed7e80c 2018-05-20 stsp static const struct got_error *
3859 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
3860 c2db6724 2019-01-04 stsp {
3861 c2db6724 2019-01-04 stsp const struct got_error *error;
3862 c2db6724 2019-01-04 stsp
3863 37c06ea4 2019-07-15 stsp #ifdef PROFILE
3864 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
3865 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
3866 37c06ea4 2019-07-15 stsp #endif
3867 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
3868 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
3869 c2db6724 2019-01-04 stsp
3870 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
3871 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
3872 c2db6724 2019-01-04 stsp
3873 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
3874 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
3875 c2db6724 2019-01-04 stsp
3876 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
3877 c2db6724 2019-01-04 stsp if (error != NULL)
3878 c2db6724 2019-01-04 stsp return error;
3879 c2db6724 2019-01-04 stsp
3880 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
3881 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
3882 c2db6724 2019-01-04 stsp
3883 c2db6724 2019-01-04 stsp return NULL;
3884 c2db6724 2019-01-04 stsp }
3885 c2db6724 2019-01-04 stsp
3886 a915003a 2019-02-05 stsp static void
3887 a915003a 2019-02-05 stsp init_curses(void)
3888 a915003a 2019-02-05 stsp {
3889 296152d1 2022-05-31 thomas /*
3890 296152d1 2022-05-31 thomas * Override default signal handlers before starting ncurses.
3891 296152d1 2022-05-31 thomas * This should prevent ncurses from installing its own
3892 296152d1 2022-05-31 thomas * broken cleanup() signal handler.
3893 296152d1 2022-05-31 thomas */
3894 296152d1 2022-05-31 thomas signal(SIGWINCH, tog_sigwinch);
3895 296152d1 2022-05-31 thomas signal(SIGPIPE, tog_sigpipe);
3896 296152d1 2022-05-31 thomas signal(SIGCONT, tog_sigcont);
3897 296152d1 2022-05-31 thomas signal(SIGINT, tog_sigint);
3898 296152d1 2022-05-31 thomas signal(SIGTERM, tog_sigterm);
3899 296152d1 2022-05-31 thomas
3900 a915003a 2019-02-05 stsp initscr();
3901 a915003a 2019-02-05 stsp cbreak();
3902 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
3903 a915003a 2019-02-05 stsp noecho();
3904 a915003a 2019-02-05 stsp nonl();
3905 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
3906 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
3907 a915003a 2019-02-05 stsp curs_set(0);
3908 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
3909 6d17833f 2019-11-08 stsp start_color();
3910 6d17833f 2019-11-08 stsp use_default_colors();
3911 6d17833f 2019-11-08 stsp }
3912 a915003a 2019-02-05 stsp }
3913 a915003a 2019-02-05 stsp
3914 c2db6724 2019-01-04 stsp static const struct got_error *
3915 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
3916 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
3917 f135c941 2020-02-20 stsp {
3918 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
3919 f135c941 2020-02-20 stsp
3920 f135c941 2020-02-20 stsp if (argc == 0) {
3921 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
3922 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
3923 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
3924 f135c941 2020-02-20 stsp return NULL;
3925 f135c941 2020-02-20 stsp }
3926 f135c941 2020-02-20 stsp
3927 f135c941 2020-02-20 stsp if (worktree) {
3928 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3929 bfd61697 2020-11-14 stsp char *p;
3930 f135c941 2020-02-20 stsp
3931 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
3932 f135c941 2020-02-20 stsp if (err)
3933 f135c941 2020-02-20 stsp return err;
3934 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
3935 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
3936 bfd61697 2020-11-14 stsp p) == -1) {
3937 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
3938 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
3939 f135c941 2020-02-20 stsp }
3940 f135c941 2020-02-20 stsp free(p);
3941 f135c941 2020-02-20 stsp } else
3942 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
3943 f135c941 2020-02-20 stsp
3944 f135c941 2020-02-20 stsp return err;
3945 f135c941 2020-02-20 stsp }
3946 f135c941 2020-02-20 stsp
3947 f135c941 2020-02-20 stsp static const struct got_error *
3948 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
3949 9f7d7167 2018-04-29 stsp {
3950 80ddbec8 2018-04-29 stsp const struct got_error *error;
3951 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
3952 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
3953 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
3954 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
3955 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
3956 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
3957 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
3958 f135c941 2020-02-20 stsp int ch, log_branches = 0;
3959 04cc582a 2018-08-01 stsp struct tog_view *view;
3960 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
3961 80ddbec8 2018-04-29 stsp
3962 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
3963 80ddbec8 2018-04-29 stsp switch (ch) {
3964 b672a97a 2020-01-27 stsp case 'b':
3965 b672a97a 2020-01-27 stsp log_branches = 1;
3966 b672a97a 2020-01-27 stsp break;
3967 80ddbec8 2018-04-29 stsp case 'c':
3968 80ddbec8 2018-04-29 stsp start_commit = optarg;
3969 80ddbec8 2018-04-29 stsp break;
3970 ecb28ae0 2018-07-16 stsp case 'r':
3971 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3972 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
3973 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3974 9ba1d308 2019-10-21 stsp optarg);
3975 ecb28ae0 2018-07-16 stsp break;
3976 80ddbec8 2018-04-29 stsp default:
3977 17020d27 2019-03-07 stsp usage_log();
3978 80ddbec8 2018-04-29 stsp /* NOTREACHED */
3979 80ddbec8 2018-04-29 stsp }
3980 80ddbec8 2018-04-29 stsp }
3981 80ddbec8 2018-04-29 stsp
3982 80ddbec8 2018-04-29 stsp argc -= optind;
3983 80ddbec8 2018-04-29 stsp argv += optind;
3984 80ddbec8 2018-04-29 stsp
3985 f135c941 2020-02-20 stsp if (argc > 1)
3986 f135c941 2020-02-20 stsp usage_log();
3987 963f97a1 2019-03-18 stsp
3988 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
3989 7cd52833 2022-06-23 thomas if (error != NULL)
3990 7cd52833 2022-06-23 thomas goto done;
3991 7cd52833 2022-06-23 thomas
3992 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
3993 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3994 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3995 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3996 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3997 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3998 c156c7a4 2020-12-18 stsp goto done;
3999 a1fbf39a 2019-08-11 stsp if (worktree)
4000 6962eb72 2020-02-20 stsp repo_path =
4001 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
4002 a1fbf39a 2019-08-11 stsp else
4003 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
4004 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
4005 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
4006 c156c7a4 2020-12-18 stsp goto done;
4007 c156c7a4 2020-12-18 stsp }
4008 ecb28ae0 2018-07-16 stsp }
4009 ecb28ae0 2018-07-16 stsp
4010 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
4011 80ddbec8 2018-04-29 stsp if (error != NULL)
4012 ecb28ae0 2018-07-16 stsp goto done;
4013 80ddbec8 2018-04-29 stsp
4014 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
4015 f135c941 2020-02-20 stsp repo, worktree);
4016 f135c941 2020-02-20 stsp if (error)
4017 f135c941 2020-02-20 stsp goto done;
4018 f135c941 2020-02-20 stsp
4019 f135c941 2020-02-20 stsp init_curses();
4020 f135c941 2020-02-20 stsp
4021 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
4022 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4023 c02c541e 2019-03-29 stsp if (error)
4024 c02c541e 2019-03-29 stsp goto done;
4025 c02c541e 2019-03-29 stsp
4026 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
4027 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
4028 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
4029 87670572 2020-12-26 naddy if (error)
4030 87670572 2020-12-26 naddy goto done;
4031 87670572 2020-12-26 naddy }
4032 51a10b52 2020-12-26 stsp
4033 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
4034 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
4035 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
4036 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4037 d8f38dc4 2020-12-05 stsp if (error)
4038 d8f38dc4 2020-12-05 stsp goto done;
4039 d8f38dc4 2020-12-05 stsp head_ref_name = label;
4040 d8f38dc4 2020-12-05 stsp } else {
4041 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
4042 d8f38dc4 2020-12-05 stsp if (error == NULL)
4043 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
4044 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
4045 d8f38dc4 2020-12-05 stsp goto done;
4046 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
4047 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4048 d8f38dc4 2020-12-05 stsp if (error)
4049 d8f38dc4 2020-12-05 stsp goto done;
4050 d8f38dc4 2020-12-05 stsp }
4051 8b473291 2019-02-21 stsp
4052 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
4053 04cc582a 2018-08-01 stsp if (view == NULL) {
4054 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4055 04cc582a 2018-08-01 stsp goto done;
4056 04cc582a 2018-08-01 stsp }
4057 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
4058 f135c941 2020-02-20 stsp in_repo_path, log_branches);
4059 ba4f502b 2018-08-04 stsp if (error)
4060 ba4f502b 2018-08-04 stsp goto done;
4061 2fc00ff4 2019-08-31 stsp if (worktree) {
4062 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
4063 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
4064 2fc00ff4 2019-08-31 stsp worktree = NULL;
4065 2fc00ff4 2019-08-31 stsp }
4066 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4067 ecb28ae0 2018-07-16 stsp done:
4068 f135c941 2020-02-20 stsp free(in_repo_path);
4069 ecb28ae0 2018-07-16 stsp free(repo_path);
4070 ecb28ae0 2018-07-16 stsp free(cwd);
4071 899d86c2 2018-05-10 stsp free(start_id);
4072 d8f38dc4 2020-12-05 stsp free(label);
4073 d8f38dc4 2020-12-05 stsp if (ref)
4074 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
4075 1d0f4054 2021-06-17 stsp if (repo) {
4076 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
4077 1d0f4054 2021-06-17 stsp if (error == NULL)
4078 1d0f4054 2021-06-17 stsp error = close_err;
4079 1d0f4054 2021-06-17 stsp }
4080 ec142235 2019-03-07 stsp if (worktree)
4081 ec142235 2019-03-07 stsp got_worktree_close(worktree);
4082 7cd52833 2022-06-23 thomas if (pack_fds) {
4083 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
4084 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
4085 7cd52833 2022-06-23 thomas if (error == NULL)
4086 7cd52833 2022-06-23 thomas error = pack_err;
4087 7cd52833 2022-06-23 thomas }
4088 51a10b52 2020-12-26 stsp tog_free_refs();
4089 80ddbec8 2018-04-29 stsp return error;
4090 9f7d7167 2018-04-29 stsp }
4091 9f7d7167 2018-04-29 stsp
4092 4ed7e80c 2018-05-20 stsp __dead static void
4093 9f7d7167 2018-04-29 stsp usage_diff(void)
4094 9f7d7167 2018-04-29 stsp {
4095 80ddbec8 2018-04-29 stsp endwin();
4096 d6506a3d 2022-08-16 thomas fprintf(stderr, "usage: %s diff [-aw] [-C number] [-r repository-path] "
4097 d6506a3d 2022-08-16 thomas "object1 object2\n", getprogname());
4098 9f7d7167 2018-04-29 stsp exit(1);
4099 b304db33 2018-05-20 stsp }
4100 b304db33 2018-05-20 stsp
4101 6d17833f 2019-11-08 stsp static int
4102 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
4103 41605754 2020-11-12 stsp regmatch_t *regmatch)
4104 6d17833f 2019-11-08 stsp {
4105 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
4106 6d17833f 2019-11-08 stsp }
4107 6d17833f 2019-11-08 stsp
4108 ef20f542 2022-06-26 thomas static struct tog_color *
4109 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
4110 6d17833f 2019-11-08 stsp {
4111 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
4112 6d17833f 2019-11-08 stsp
4113 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(tc, colors, entry) {
4114 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
4115 6d17833f 2019-11-08 stsp return tc;
4116 6d17833f 2019-11-08 stsp }
4117 6d17833f 2019-11-08 stsp
4118 6d17833f 2019-11-08 stsp return NULL;
4119 6d17833f 2019-11-08 stsp }
4120 6d17833f 2019-11-08 stsp
4121 4ed7e80c 2018-05-20 stsp static const struct got_error *
4122 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
4123 cbea3800 2022-06-23 thomas WINDOW *window, int skipcol, regmatch_t *regmatch)
4124 41605754 2020-11-12 stsp {
4125 41605754 2020-11-12 stsp const struct got_error *err = NULL;
4126 666f7b10 2022-06-23 thomas char *exstr = NULL;
4127 cbea3800 2022-06-23 thomas wchar_t *wline = NULL;
4128 cbea3800 2022-06-23 thomas int rme, rms, n, width, scrollx;
4129 cbea3800 2022-06-23 thomas int width0 = 0, width1 = 0, width2 = 0;
4130 cbea3800 2022-06-23 thomas char *seg0 = NULL, *seg1 = NULL, *seg2 = NULL;
4131 41605754 2020-11-12 stsp
4132 41605754 2020-11-12 stsp *wtotal = 0;
4133 cbea3800 2022-06-23 thomas
4134 05171be4 2022-06-23 thomas rms = regmatch->rm_so;
4135 05171be4 2022-06-23 thomas rme = regmatch->rm_eo;
4136 41605754 2020-11-12 stsp
4137 666f7b10 2022-06-23 thomas err = expand_tab(&exstr, line);
4138 666f7b10 2022-06-23 thomas if (err)
4139 666f7b10 2022-06-23 thomas return err;
4140 666f7b10 2022-06-23 thomas
4141 cbea3800 2022-06-23 thomas /* Split the line into 3 segments, according to match offsets. */
4142 666f7b10 2022-06-23 thomas seg0 = strndup(exstr, rms);
4143 666f7b10 2022-06-23 thomas if (seg0 == NULL) {
4144 666f7b10 2022-06-23 thomas err = got_error_from_errno("strndup");
4145 666f7b10 2022-06-23 thomas goto done;
4146 666f7b10 2022-06-23 thomas }
4147 666f7b10 2022-06-23 thomas seg1 = strndup(exstr + rms, rme - rms);
4148 cbea3800 2022-06-23 thomas if (seg1 == NULL) {
4149 cbea3800 2022-06-23 thomas err = got_error_from_errno("strndup");
4150 cbea3800 2022-06-23 thomas goto done;
4151 cbea3800 2022-06-23 thomas }
4152 666f7b10 2022-06-23 thomas seg2 = strdup(exstr + rme);
4153 1065461d 2022-06-23 thomas if (seg2 == NULL) {
4154 cbea3800 2022-06-23 thomas err = got_error_from_errno("strndup");
4155 cbea3800 2022-06-23 thomas goto done;
4156 cbea3800 2022-06-23 thomas }
4157 05171be4 2022-06-23 thomas
4158 05171be4 2022-06-23 thomas /* draw up to matched token if we haven't scrolled past it */
4159 cbea3800 2022-06-23 thomas err = format_line(&wline, &width0, NULL, seg0, 0, wlimit,
4160 cbea3800 2022-06-23 thomas col_tab_align, 1);
4161 cbea3800 2022-06-23 thomas if (err)
4162 cbea3800 2022-06-23 thomas goto done;
4163 cbea3800 2022-06-23 thomas n = MAX(width0 - skipcol, 0);
4164 05171be4 2022-06-23 thomas if (n) {
4165 cbea3800 2022-06-23 thomas free(wline);
4166 cbea3800 2022-06-23 thomas err = format_line(&wline, &width, &scrollx, seg0, skipcol,
4167 cbea3800 2022-06-23 thomas wlimit, col_tab_align, 1);
4168 cbea3800 2022-06-23 thomas if (err)
4169 cbea3800 2022-06-23 thomas goto done;
4170 cbea3800 2022-06-23 thomas waddwstr(window, &wline[scrollx]);
4171 cbea3800 2022-06-23 thomas wlimit -= width;
4172 cbea3800 2022-06-23 thomas *wtotal += width;
4173 41605754 2020-11-12 stsp }
4174 41605754 2020-11-12 stsp
4175 41605754 2020-11-12 stsp if (wlimit > 0) {
4176 cbea3800 2022-06-23 thomas int i = 0, w = 0;
4177 cbea3800 2022-06-23 thomas size_t wlen;
4178 cbea3800 2022-06-23 thomas
4179 cbea3800 2022-06-23 thomas free(wline);
4180 cbea3800 2022-06-23 thomas err = format_line(&wline, &width1, NULL, seg1, 0, wlimit,
4181 cbea3800 2022-06-23 thomas col_tab_align, 1);
4182 cbea3800 2022-06-23 thomas if (err)
4183 cbea3800 2022-06-23 thomas goto done;
4184 cbea3800 2022-06-23 thomas wlen = wcslen(wline);
4185 cbea3800 2022-06-23 thomas while (i < wlen) {
4186 cbea3800 2022-06-23 thomas width = wcwidth(wline[i]);
4187 cbea3800 2022-06-23 thomas if (width == -1) {
4188 cbea3800 2022-06-23 thomas /* should not happen, tabs are expanded */
4189 cbea3800 2022-06-23 thomas err = got_error(GOT_ERR_RANGE);
4190 cbea3800 2022-06-23 thomas goto done;
4191 cbea3800 2022-06-23 thomas }
4192 cbea3800 2022-06-23 thomas if (width0 + w + width > skipcol)
4193 cbea3800 2022-06-23 thomas break;
4194 1c5e5faa 2022-06-23 thomas w += width;
4195 cbea3800 2022-06-23 thomas i++;
4196 41605754 2020-11-12 stsp }
4197 05171be4 2022-06-23 thomas /* draw (visible part of) matched token (if scrolled into it) */
4198 cbea3800 2022-06-23 thomas if (width1 - w > 0) {
4199 05171be4 2022-06-23 thomas wattron(window, A_STANDOUT);
4200 cbea3800 2022-06-23 thomas waddwstr(window, &wline[i]);
4201 05171be4 2022-06-23 thomas wattroff(window, A_STANDOUT);
4202 cbea3800 2022-06-23 thomas wlimit -= (width1 - w);
4203 cbea3800 2022-06-23 thomas *wtotal += (width1 - w);
4204 41605754 2020-11-12 stsp }
4205 41605754 2020-11-12 stsp }
4206 41605754 2020-11-12 stsp
4207 cbea3800 2022-06-23 thomas if (wlimit > 0) { /* draw rest of line */
4208 cbea3800 2022-06-23 thomas free(wline);
4209 cbea3800 2022-06-23 thomas if (skipcol > width0 + width1) {
4210 cbea3800 2022-06-23 thomas err = format_line(&wline, &width2, &scrollx, seg2,
4211 cbea3800 2022-06-23 thomas skipcol - (width0 + width1), wlimit,
4212 cbea3800 2022-06-23 thomas col_tab_align, 1);
4213 cbea3800 2022-06-23 thomas if (err)
4214 cbea3800 2022-06-23 thomas goto done;
4215 cbea3800 2022-06-23 thomas waddwstr(window, &wline[scrollx]);
4216 cbea3800 2022-06-23 thomas } else {
4217 cbea3800 2022-06-23 thomas err = format_line(&wline, &width2, NULL, seg2, 0,
4218 cbea3800 2022-06-23 thomas wlimit, col_tab_align, 1);
4219 cbea3800 2022-06-23 thomas if (err)
4220 cbea3800 2022-06-23 thomas goto done;
4221 cbea3800 2022-06-23 thomas waddwstr(window, wline);
4222 cbea3800 2022-06-23 thomas }
4223 cbea3800 2022-06-23 thomas *wtotal += width2;
4224 41605754 2020-11-12 stsp }
4225 cbea3800 2022-06-23 thomas done:
4226 05171be4 2022-06-23 thomas free(wline);
4227 666f7b10 2022-06-23 thomas free(exstr);
4228 cbea3800 2022-06-23 thomas free(seg0);
4229 cbea3800 2022-06-23 thomas free(seg1);
4230 cbea3800 2022-06-23 thomas free(seg2);
4231 cbea3800 2022-06-23 thomas return err;
4232 41605754 2020-11-12 stsp }
4233 07dd3ed3 2022-08-06 thomas
4234 07dd3ed3 2022-08-06 thomas static int
4235 07dd3ed3 2022-08-06 thomas gotoline(struct tog_view *view, int *lineno, int *nprinted)
4236 07dd3ed3 2022-08-06 thomas {
4237 07dd3ed3 2022-08-06 thomas FILE *f = NULL;
4238 07dd3ed3 2022-08-06 thomas int *eof, *first, *selected;
4239 07dd3ed3 2022-08-06 thomas
4240 07dd3ed3 2022-08-06 thomas if (view->type == TOG_VIEW_DIFF) {
4241 07dd3ed3 2022-08-06 thomas struct tog_diff_view_state *s = &view->state.diff;
4242 fc2737d5 2022-09-15 thomas
4243 fc2737d5 2022-09-15 thomas first = &s->first_displayed_line;
4244 fc2737d5 2022-09-15 thomas selected = first;
4245 fc2737d5 2022-09-15 thomas eof = &s->eof;
4246 fc2737d5 2022-09-15 thomas f = s->f;
4247 fc2737d5 2022-09-15 thomas } else if (view->type == TOG_VIEW_HELP) {
4248 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
4249 41605754 2020-11-12 stsp
4250 07dd3ed3 2022-08-06 thomas first = &s->first_displayed_line;
4251 07dd3ed3 2022-08-06 thomas selected = first;
4252 07dd3ed3 2022-08-06 thomas eof = &s->eof;
4253 07dd3ed3 2022-08-06 thomas f = s->f;
4254 07dd3ed3 2022-08-06 thomas } else if (view->type == TOG_VIEW_BLAME) {
4255 07dd3ed3 2022-08-06 thomas struct tog_blame_view_state *s = &view->state.blame;
4256 07dd3ed3 2022-08-06 thomas
4257 07dd3ed3 2022-08-06 thomas first = &s->first_displayed_line;
4258 07dd3ed3 2022-08-06 thomas selected = &s->selected_line;
4259 07dd3ed3 2022-08-06 thomas eof = &s->eof;
4260 07dd3ed3 2022-08-06 thomas f = s->blame.f;
4261 07dd3ed3 2022-08-06 thomas } else
4262 07dd3ed3 2022-08-06 thomas return 0;
4263 07dd3ed3 2022-08-06 thomas
4264 07dd3ed3 2022-08-06 thomas /* Center gline in the middle of the page like vi(1). */
4265 07dd3ed3 2022-08-06 thomas if (*lineno < view->gline - (view->nlines - 3) / 2)
4266 07dd3ed3 2022-08-06 thomas return 0;
4267 07dd3ed3 2022-08-06 thomas if (*first != 1 && (*lineno > view->gline - (view->nlines - 3) / 2)) {
4268 07dd3ed3 2022-08-06 thomas rewind(f);
4269 07dd3ed3 2022-08-06 thomas *eof = 0;
4270 07dd3ed3 2022-08-06 thomas *first = 1;
4271 07dd3ed3 2022-08-06 thomas *lineno = 0;
4272 07dd3ed3 2022-08-06 thomas *nprinted = 0;
4273 07dd3ed3 2022-08-06 thomas return 0;
4274 07dd3ed3 2022-08-06 thomas }
4275 07dd3ed3 2022-08-06 thomas
4276 07dd3ed3 2022-08-06 thomas *selected = view->gline <= (view->nlines - 3) / 2 ?
4277 07dd3ed3 2022-08-06 thomas view->gline : (view->nlines - 3) / 2 + 1;
4278 07dd3ed3 2022-08-06 thomas view->gline = 0;
4279 07dd3ed3 2022-08-06 thomas
4280 07dd3ed3 2022-08-06 thomas return 1;
4281 07dd3ed3 2022-08-06 thomas }
4282 07dd3ed3 2022-08-06 thomas
4283 41605754 2020-11-12 stsp static const struct got_error *
4284 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
4285 26ed57b2 2018-05-19 stsp {
4286 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
4287 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
4288 61e69b96 2018-05-20 stsp const struct got_error *err;
4289 82c78e96 2022-08-06 thomas int nprinted = 0;
4290 b304db33 2018-05-20 stsp char *line;
4291 826082fe 2020-12-10 stsp size_t linesize = 0;
4292 826082fe 2020-12-10 stsp ssize_t linelen;
4293 61e69b96 2018-05-20 stsp wchar_t *wline;
4294 e0b650dd 2018-05-20 stsp int width;
4295 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
4296 89f1a395 2020-12-01 naddy int nlines = s->nlines;
4297 fe621944 2020-11-10 stsp off_t line_offset;
4298 26ed57b2 2018-05-19 stsp
4299 82c78e96 2022-08-06 thomas s->lineno = s->first_displayed_line - 1;
4300 82c78e96 2022-08-06 thomas line_offset = s->lines[s->first_displayed_line - 1].offset;
4301 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
4302 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
4303 fe621944 2020-11-10 stsp
4304 f7d12f7e 2018-08-01 stsp werase(view->window);
4305 a3404814 2018-09-02 stsp
4306 07dd3ed3 2022-08-06 thomas if (view->gline > s->nlines - 1)
4307 07dd3ed3 2022-08-06 thomas view->gline = s->nlines - 1;
4308 07dd3ed3 2022-08-06 thomas
4309 a3404814 2018-09-02 stsp if (header) {
4310 07dd3ed3 2022-08-06 thomas int ln = view->gline ? view->gline <= (view->nlines - 3) / 2 ?
4311 07dd3ed3 2022-08-06 thomas 1 : view->gline - (view->nlines - 3) / 2 :
4312 82c78e96 2022-08-06 thomas s->lineno + s->selected_line;
4313 07dd3ed3 2022-08-06 thomas
4314 07dd3ed3 2022-08-06 thomas if (asprintf(&line, "[%d/%d] %s", ln, nlines, header) == -1)
4315 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
4316 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols,
4317 f91a2b48 2022-06-23 thomas 0, 0);
4318 135a2da0 2020-11-11 stsp free(line);
4319 135a2da0 2020-11-11 stsp if (err)
4320 a3404814 2018-09-02 stsp return err;
4321 a3404814 2018-09-02 stsp
4322 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4323 a3404814 2018-09-02 stsp wstandout(view->window);
4324 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
4325 e54cc94a 2020-11-11 stsp free(wline);
4326 e54cc94a 2020-11-11 stsp wline = NULL;
4327 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
4328 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
4329 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4330 a3404814 2018-09-02 stsp wstandend(view->window);
4331 26ed57b2 2018-05-19 stsp
4332 a3404814 2018-09-02 stsp if (max_lines <= 1)
4333 a3404814 2018-09-02 stsp return NULL;
4334 a3404814 2018-09-02 stsp max_lines--;
4335 a3404814 2018-09-02 stsp }
4336 a3404814 2018-09-02 stsp
4337 89f1a395 2020-12-01 naddy s->eof = 0;
4338 05171be4 2022-06-23 thomas view->maxx = 0;
4339 826082fe 2020-12-10 stsp line = NULL;
4340 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
4341 6568f0aa 2022-08-06 thomas enum got_diff_line_type linetype;
4342 6568f0aa 2022-08-06 thomas attr_t attr = 0;
4343 6568f0aa 2022-08-06 thomas
4344 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
4345 826082fe 2020-12-10 stsp if (linelen == -1) {
4346 826082fe 2020-12-10 stsp if (feof(s->f)) {
4347 826082fe 2020-12-10 stsp s->eof = 1;
4348 826082fe 2020-12-10 stsp break;
4349 826082fe 2020-12-10 stsp }
4350 826082fe 2020-12-10 stsp free(line);
4351 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
4352 61e69b96 2018-05-20 stsp }
4353 05171be4 2022-06-23 thomas
4354 82c78e96 2022-08-06 thomas if (++s->lineno < s->first_displayed_line)
4355 07dd3ed3 2022-08-06 thomas continue;
4356 82c78e96 2022-08-06 thomas if (view->gline && !gotoline(view, &s->lineno, &nprinted))
4357 07dd3ed3 2022-08-06 thomas continue;
4358 82c78e96 2022-08-06 thomas if (s->lineno == view->hiline)
4359 07dd3ed3 2022-08-06 thomas attr = A_STANDOUT;
4360 07dd3ed3 2022-08-06 thomas
4361 cbea3800 2022-06-23 thomas /* Set view->maxx based on full line length. */
4362 cbea3800 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
4363 cbea3800 2022-06-23 thomas view->x ? 1 : 0);
4364 cbea3800 2022-06-23 thomas if (err) {
4365 cbea3800 2022-06-23 thomas free(line);
4366 cbea3800 2022-06-23 thomas return err;
4367 cbea3800 2022-06-23 thomas }
4368 cbea3800 2022-06-23 thomas view->maxx = MAX(view->maxx, width);
4369 cbea3800 2022-06-23 thomas free(wline);
4370 cbea3800 2022-06-23 thomas wline = NULL;
4371 cbea3800 2022-06-23 thomas
4372 6568f0aa 2022-08-06 thomas linetype = s->lines[s->lineno].type;
4373 6568f0aa 2022-08-06 thomas if (linetype > GOT_DIFF_LINE_LOGMSG &&
4374 6568f0aa 2022-08-06 thomas linetype < GOT_DIFF_LINE_CONTEXT)
4375 6568f0aa 2022-08-06 thomas attr |= COLOR_PAIR(linetype);
4376 07dd3ed3 2022-08-06 thomas if (attr)
4377 07dd3ed3 2022-08-06 thomas wattron(view->window, attr);
4378 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
4379 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4380 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
4381 05171be4 2022-06-23 thomas view->window, view->x, regmatch);
4382 41605754 2020-11-12 stsp if (err) {
4383 41605754 2020-11-12 stsp free(line);
4384 41605754 2020-11-12 stsp return err;
4385 41605754 2020-11-12 stsp }
4386 41605754 2020-11-12 stsp } else {
4387 f1c0ec19 2022-06-23 thomas int skip;
4388 f1c0ec19 2022-06-23 thomas err = format_line(&wline, &width, &skip, line,
4389 f1c0ec19 2022-06-23 thomas view->x, view->ncols, 0, view->x ? 1 : 0);
4390 f1c0ec19 2022-06-23 thomas if (err) {
4391 f1c0ec19 2022-06-23 thomas free(line);
4392 f1c0ec19 2022-06-23 thomas return err;
4393 f1c0ec19 2022-06-23 thomas }
4394 f1c0ec19 2022-06-23 thomas waddwstr(view->window, &wline[skip]);
4395 f1c0ec19 2022-06-23 thomas free(wline);
4396 41605754 2020-11-12 stsp wline = NULL;
4397 41605754 2020-11-12 stsp }
4398 82c78e96 2022-08-06 thomas if (s->lineno == view->hiline) {
4399 07dd3ed3 2022-08-06 thomas /* highlight full gline length */
4400 07dd3ed3 2022-08-06 thomas while (width++ < view->ncols)
4401 07dd3ed3 2022-08-06 thomas waddch(view->window, ' ');
4402 07dd3ed3 2022-08-06 thomas } else {
4403 07dd3ed3 2022-08-06 thomas if (width <= view->ncols - 1)
4404 07dd3ed3 2022-08-06 thomas waddch(view->window, '\n');
4405 07dd3ed3 2022-08-06 thomas }
4406 07dd3ed3 2022-08-06 thomas if (attr)
4407 07dd3ed3 2022-08-06 thomas wattroff(view->window, attr);
4408 07dd3ed3 2022-08-06 thomas if (++nprinted == 1)
4409 82c78e96 2022-08-06 thomas s->first_displayed_line = s->lineno;
4410 826082fe 2020-12-10 stsp }
4411 826082fe 2020-12-10 stsp free(line);
4412 fe621944 2020-11-10 stsp if (nprinted >= 1)
4413 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
4414 89f1a395 2020-12-01 naddy (nprinted - 1);
4415 fe621944 2020-11-10 stsp else
4416 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
4417 26ed57b2 2018-05-19 stsp
4418 a5d43cac 2022-07-01 thomas view_border(view);
4419 c3e9aa98 2019-05-13 jcs
4420 89f1a395 2020-12-01 naddy if (s->eof) {
4421 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
4422 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
4423 c3e9aa98 2019-05-13 jcs nprinted++;
4424 c3e9aa98 2019-05-13 jcs }
4425 c3e9aa98 2019-05-13 jcs
4426 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, TOG_EOF_STRING, 0,
4427 f91a2b48 2022-06-23 thomas view->ncols, 0, 0);
4428 c3e9aa98 2019-05-13 jcs if (err) {
4429 c3e9aa98 2019-05-13 jcs return err;
4430 c3e9aa98 2019-05-13 jcs }
4431 26ed57b2 2018-05-19 stsp
4432 c3e9aa98 2019-05-13 jcs wstandout(view->window);
4433 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
4434 e54cc94a 2020-11-11 stsp free(wline);
4435 e54cc94a 2020-11-11 stsp wline = NULL;
4436 c3e9aa98 2019-05-13 jcs wstandend(view->window);
4437 c3e9aa98 2019-05-13 jcs }
4438 c3e9aa98 2019-05-13 jcs
4439 26ed57b2 2018-05-19 stsp return NULL;
4440 abd2672a 2018-12-23 stsp }
4441 abd2672a 2018-12-23 stsp
4442 abd2672a 2018-12-23 stsp static char *
4443 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
4444 abd2672a 2018-12-23 stsp {
4445 09867e48 2019-08-13 stsp struct tm mytm, *tm;
4446 09867e48 2019-08-13 stsp char *p, *s;
4447 09867e48 2019-08-13 stsp
4448 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
4449 09867e48 2019-08-13 stsp if (tm == NULL)
4450 09867e48 2019-08-13 stsp return NULL;
4451 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
4452 09867e48 2019-08-13 stsp if (s == NULL)
4453 09867e48 2019-08-13 stsp return NULL;
4454 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
4455 abd2672a 2018-12-23 stsp if (p)
4456 abd2672a 2018-12-23 stsp *p = '\0';
4457 abd2672a 2018-12-23 stsp return s;
4458 9f7d7167 2018-04-29 stsp }
4459 9f7d7167 2018-04-29 stsp
4460 4ed7e80c 2018-05-20 stsp static const struct got_error *
4461 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
4462 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
4463 0208f208 2020-05-05 stsp {
4464 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
4465 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
4466 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
4467 0208f208 2020-05-05 stsp struct got_object_qid *qid;
4468 0208f208 2020-05-05 stsp
4469 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
4470 0208f208 2020-05-05 stsp if (qid != NULL) {
4471 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
4472 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
4473 ec242592 2022-04-22 thomas &qid->id);
4474 0208f208 2020-05-05 stsp if (err)
4475 0208f208 2020-05-05 stsp return err;
4476 0208f208 2020-05-05 stsp
4477 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
4478 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
4479 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
4480 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
4481 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
4482 aa8b5dd0 2021-08-01 stsp }
4483 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
4484 0208f208 2020-05-05 stsp
4485 0208f208 2020-05-05 stsp }
4486 0208f208 2020-05-05 stsp
4487 0208f208 2020-05-05 stsp if (tree_id1) {
4488 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
4489 0208f208 2020-05-05 stsp if (err)
4490 0208f208 2020-05-05 stsp goto done;
4491 0208f208 2020-05-05 stsp }
4492 0208f208 2020-05-05 stsp
4493 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
4494 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
4495 0208f208 2020-05-05 stsp if (err)
4496 0208f208 2020-05-05 stsp goto done;
4497 0208f208 2020-05-05 stsp
4498 19a6a6b5 2022-07-01 thomas err = got_diff_tree(tree1, tree2, NULL, NULL, -1, -1, "", "", repo,
4499 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
4500 0208f208 2020-05-05 stsp done:
4501 0208f208 2020-05-05 stsp if (tree1)
4502 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
4503 0208f208 2020-05-05 stsp if (tree2)
4504 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
4505 aa8b5dd0 2021-08-01 stsp free(tree_id1);
4506 0208f208 2020-05-05 stsp return err;
4507 0208f208 2020-05-05 stsp }
4508 0208f208 2020-05-05 stsp
4509 0208f208 2020-05-05 stsp static const struct got_error *
4510 82c78e96 2022-08-06 thomas add_line_metadata(struct got_diff_line **lines, size_t *nlines,
4511 82c78e96 2022-08-06 thomas off_t off, uint8_t type)
4512 abd2672a 2018-12-23 stsp {
4513 82c78e96 2022-08-06 thomas struct got_diff_line *p;
4514 fe621944 2020-11-10 stsp
4515 82c78e96 2022-08-06 thomas p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
4516 fe621944 2020-11-10 stsp if (p == NULL)
4517 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
4518 82c78e96 2022-08-06 thomas *lines = p;
4519 82c78e96 2022-08-06 thomas (*lines)[*nlines].offset = off;
4520 82c78e96 2022-08-06 thomas (*lines)[*nlines].type = type;
4521 fe621944 2020-11-10 stsp (*nlines)++;
4522 82c78e96 2022-08-06 thomas
4523 fe621944 2020-11-10 stsp return NULL;
4524 fe621944 2020-11-10 stsp }
4525 fe621944 2020-11-10 stsp
4526 fe621944 2020-11-10 stsp static const struct got_error *
4527 82c78e96 2022-08-06 thomas write_commit_info(struct got_diff_line **lines, size_t *nlines,
4528 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4529 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
4530 fe621944 2020-11-10 stsp {
4531 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
4532 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
4533 15a94983 2018-12-23 stsp struct got_commit_object *commit;
4534 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
4535 45d799e2 2018-12-23 stsp time_t committer_time;
4536 45d799e2 2018-12-23 stsp const char *author, *committer;
4537 8b473291 2019-02-21 stsp char *refs_str = NULL;
4538 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
4539 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
4540 fe621944 2020-11-10 stsp off_t outoff = 0;
4541 fe621944 2020-11-10 stsp int n;
4542 abd2672a 2018-12-23 stsp
4543 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
4544 0208f208 2020-05-05 stsp
4545 8b473291 2019-02-21 stsp if (refs) {
4546 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
4547 8b473291 2019-02-21 stsp if (err)
4548 8b473291 2019-02-21 stsp return err;
4549 8b473291 2019-02-21 stsp }
4550 8b473291 2019-02-21 stsp
4551 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
4552 abd2672a 2018-12-23 stsp if (err)
4553 abd2672a 2018-12-23 stsp return err;
4554 abd2672a 2018-12-23 stsp
4555 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
4556 15a94983 2018-12-23 stsp if (err) {
4557 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
4558 15a94983 2018-12-23 stsp goto done;
4559 15a94983 2018-12-23 stsp }
4560 abd2672a 2018-12-23 stsp
4561 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
4562 fe621944 2020-11-10 stsp if (err)
4563 fe621944 2020-11-10 stsp goto done;
4564 fe621944 2020-11-10 stsp
4565 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
4566 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
4567 fe621944 2020-11-10 stsp if (n < 0) {
4568 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4569 abd2672a 2018-12-23 stsp goto done;
4570 abd2672a 2018-12-23 stsp }
4571 fe621944 2020-11-10 stsp outoff += n;
4572 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_META);
4573 fe621944 2020-11-10 stsp if (err)
4574 fe621944 2020-11-10 stsp goto done;
4575 fe621944 2020-11-10 stsp
4576 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
4577 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
4578 fe621944 2020-11-10 stsp if (n < 0) {
4579 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
4580 abd2672a 2018-12-23 stsp goto done;
4581 abd2672a 2018-12-23 stsp }
4582 fe621944 2020-11-10 stsp outoff += n;
4583 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_AUTHOR);
4584 fe621944 2020-11-10 stsp if (err)
4585 fe621944 2020-11-10 stsp goto done;
4586 fe621944 2020-11-10 stsp
4587 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
4588 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
4589 fe621944 2020-11-10 stsp if (datestr) {
4590 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
4591 fe621944 2020-11-10 stsp if (n < 0) {
4592 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4593 fe621944 2020-11-10 stsp goto done;
4594 fe621944 2020-11-10 stsp }
4595 fe621944 2020-11-10 stsp outoff += n;
4596 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4597 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_DATE);
4598 fe621944 2020-11-10 stsp if (err)
4599 fe621944 2020-11-10 stsp goto done;
4600 abd2672a 2018-12-23 stsp }
4601 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
4602 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
4603 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
4604 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
4605 fe621944 2020-11-10 stsp if (n < 0) {
4606 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4607 fe621944 2020-11-10 stsp goto done;
4608 fe621944 2020-11-10 stsp }
4609 fe621944 2020-11-10 stsp outoff += n;
4610 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4611 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_AUTHOR);
4612 fe621944 2020-11-10 stsp if (err)
4613 fe621944 2020-11-10 stsp goto done;
4614 abd2672a 2018-12-23 stsp }
4615 ac4dc263 2021-09-24 thomas if (got_object_commit_get_nparents(commit) > 1) {
4616 ac4dc263 2021-09-24 thomas const struct got_object_id_queue *parent_ids;
4617 ac4dc263 2021-09-24 thomas struct got_object_qid *qid;
4618 ac4dc263 2021-09-24 thomas int pn = 1;
4619 ac4dc263 2021-09-24 thomas parent_ids = got_object_commit_get_parent_ids(commit);
4620 ac4dc263 2021-09-24 thomas STAILQ_FOREACH(qid, parent_ids, entry) {
4621 ec242592 2022-04-22 thomas err = got_object_id_str(&id_str, &qid->id);
4622 ac4dc263 2021-09-24 thomas if (err)
4623 ac4dc263 2021-09-24 thomas goto done;
4624 ac4dc263 2021-09-24 thomas n = fprintf(outfile, "parent %d: %s\n", pn++, id_str);
4625 ac4dc263 2021-09-24 thomas if (n < 0) {
4626 ac4dc263 2021-09-24 thomas err = got_error_from_errno("fprintf");
4627 ac4dc263 2021-09-24 thomas goto done;
4628 ac4dc263 2021-09-24 thomas }
4629 ac4dc263 2021-09-24 thomas outoff += n;
4630 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4631 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_META);
4632 ac4dc263 2021-09-24 thomas if (err)
4633 ac4dc263 2021-09-24 thomas goto done;
4634 ac4dc263 2021-09-24 thomas free(id_str);
4635 ac4dc263 2021-09-24 thomas id_str = NULL;
4636 ac4dc263 2021-09-24 thomas }
4637 ac4dc263 2021-09-24 thomas }
4638 ac4dc263 2021-09-24 thomas
4639 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
4640 5943eee2 2019-08-13 stsp if (err)
4641 5943eee2 2019-08-13 stsp goto done;
4642 fe621944 2020-11-10 stsp s = logmsg;
4643 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
4644 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
4645 fe621944 2020-11-10 stsp if (n < 0) {
4646 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4647 fe621944 2020-11-10 stsp goto done;
4648 fe621944 2020-11-10 stsp }
4649 fe621944 2020-11-10 stsp outoff += n;
4650 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4651 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_LOGMSG);
4652 fe621944 2020-11-10 stsp if (err)
4653 fe621944 2020-11-10 stsp goto done;
4654 abd2672a 2018-12-23 stsp }
4655 fe621944 2020-11-10 stsp
4656 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
4657 0208f208 2020-05-05 stsp if (err)
4658 0208f208 2020-05-05 stsp goto done;
4659 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4660 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
4661 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
4662 fe621944 2020-11-10 stsp if (n < 0) {
4663 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
4664 fe621944 2020-11-10 stsp goto done;
4665 fe621944 2020-11-10 stsp }
4666 fe621944 2020-11-10 stsp outoff += n;
4667 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff,
4668 82c78e96 2022-08-06 thomas GOT_DIFF_LINE_CHANGES);
4669 fe621944 2020-11-10 stsp if (err)
4670 fe621944 2020-11-10 stsp goto done;
4671 0208f208 2020-05-05 stsp free((char *)pe->path);
4672 0208f208 2020-05-05 stsp free(pe->data);
4673 0208f208 2020-05-05 stsp }
4674 fe621944 2020-11-10 stsp
4675 0208f208 2020-05-05 stsp fputc('\n', outfile);
4676 fe621944 2020-11-10 stsp outoff++;
4677 82c78e96 2022-08-06 thomas err = add_line_metadata(lines, nlines, outoff, GOT_DIFF_LINE_NONE);
4678 abd2672a 2018-12-23 stsp done:
4679 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4680 abd2672a 2018-12-23 stsp free(id_str);
4681 5943eee2 2019-08-13 stsp free(logmsg);
4682 8b473291 2019-02-21 stsp free(refs_str);
4683 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4684 7510f233 2020-08-09 stsp if (err) {
4685 82c78e96 2022-08-06 thomas free(*lines);
4686 82c78e96 2022-08-06 thomas *lines = NULL;
4687 ae6a6978 2020-08-09 stsp *nlines = 0;
4688 7510f233 2020-08-09 stsp }
4689 fe621944 2020-11-10 stsp return err;
4690 abd2672a 2018-12-23 stsp }
4691 abd2672a 2018-12-23 stsp
4692 abd2672a 2018-12-23 stsp static const struct got_error *
4693 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
4694 26ed57b2 2018-05-19 stsp {
4695 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
4696 48ae06ee 2018-10-18 stsp FILE *f = NULL;
4697 15a94983 2018-12-23 stsp int obj_type;
4698 fe621944 2020-11-10 stsp
4699 82c78e96 2022-08-06 thomas free(s->lines);
4700 82c78e96 2022-08-06 thomas s->lines = malloc(sizeof(*s->lines));
4701 82c78e96 2022-08-06 thomas if (s->lines == NULL)
4702 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
4703 fe621944 2020-11-10 stsp s->nlines = 0;
4704 26ed57b2 2018-05-19 stsp
4705 511a516b 2018-05-19 stsp f = got_opentemp();
4706 48ae06ee 2018-10-18 stsp if (f == NULL) {
4707 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4708 48ae06ee 2018-10-18 stsp goto done;
4709 48ae06ee 2018-10-18 stsp }
4710 56b63ca4 2021-01-22 stsp if (s->f && fclose(s->f) == EOF) {
4711 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4712 fb43ecf1 2019-02-11 stsp goto done;
4713 fb43ecf1 2019-02-11 stsp }
4714 48ae06ee 2018-10-18 stsp s->f = f;
4715 26ed57b2 2018-05-19 stsp
4716 15a94983 2018-12-23 stsp if (s->id1)
4717 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
4718 15a94983 2018-12-23 stsp else
4719 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
4720 15a94983 2018-12-23 stsp if (err)
4721 15a94983 2018-12-23 stsp goto done;
4722 15a94983 2018-12-23 stsp
4723 15a94983 2018-12-23 stsp switch (obj_type) {
4724 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
4725 82c78e96 2022-08-06 thomas err = got_diff_objects_as_blobs(&s->lines, &s->nlines,
4726 19a6a6b5 2022-07-01 thomas s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2,
4727 adf4c9e0 2022-07-03 thomas s->label1, s->label2, tog_diff_algo, s->diff_context,
4728 19a6a6b5 2022-07-01 thomas s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
4729 26ed57b2 2018-05-19 stsp break;
4730 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
4731 82c78e96 2022-08-06 thomas err = got_diff_objects_as_trees(&s->lines, &s->nlines,
4732 19a6a6b5 2022-07-01 thomas s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL, "", "",
4733 adf4c9e0 2022-07-03 thomas tog_diff_algo, s->diff_context, s->ignore_whitespace,
4734 25ec7006 2022-07-01 thomas s->force_text_diff, s->repo, s->f);
4735 26ed57b2 2018-05-19 stsp break;
4736 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
4737 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
4738 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
4739 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
4740 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
4741 abd2672a 2018-12-23 stsp
4742 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
4743 abd2672a 2018-12-23 stsp if (err)
4744 3ffacbe1 2020-02-02 tracey goto done;
4745 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
4746 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
4747 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
4748 82c78e96 2022-08-06 thomas err = write_commit_info(&s->lines, &s->nlines, s->id2,
4749 82c78e96 2022-08-06 thomas refs, s->repo, s->f);
4750 f44b1f58 2020-02-02 tracey if (err)
4751 f44b1f58 2020-02-02 tracey goto done;
4752 f44b1f58 2020-02-02 tracey } else {
4753 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
4754 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
4755 ec242592 2022-04-22 thomas if (got_object_id_cmp(s->id1, &pid->id) == 0) {
4756 82c78e96 2022-08-06 thomas err = write_commit_info(&s->lines,
4757 82c78e96 2022-08-06 thomas &s->nlines, s->id2, refs, s->repo,
4758 82c78e96 2022-08-06 thomas s->f);
4759 f44b1f58 2020-02-02 tracey if (err)
4760 f44b1f58 2020-02-02 tracey goto done;
4761 f5404e4e 2020-02-02 tracey break;
4762 15a087fe 2019-02-21 stsp }
4763 abd2672a 2018-12-23 stsp }
4764 abd2672a 2018-12-23 stsp }
4765 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
4766 abd2672a 2018-12-23 stsp
4767 82c78e96 2022-08-06 thomas err = got_diff_objects_as_commits(&s->lines, &s->nlines,
4768 19a6a6b5 2022-07-01 thomas s->f1, s->f2, s->fd1, s->fd2, s->id1, s->id2, NULL,
4769 adf4c9e0 2022-07-03 thomas tog_diff_algo, s->diff_context, s->ignore_whitespace,
4770 25ec7006 2022-07-01 thomas s->force_text_diff, s->repo, s->f);
4771 26ed57b2 2018-05-19 stsp break;
4772 abd2672a 2018-12-23 stsp }
4773 26ed57b2 2018-05-19 stsp default:
4774 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4775 48ae06ee 2018-10-18 stsp break;
4776 26ed57b2 2018-05-19 stsp }
4777 48ae06ee 2018-10-18 stsp done:
4778 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
4779 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
4780 48ae06ee 2018-10-18 stsp return err;
4781 48ae06ee 2018-10-18 stsp }
4782 26ed57b2 2018-05-19 stsp
4783 f5215bb9 2019-02-22 stsp static void
4784 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
4785 f5215bb9 2019-02-22 stsp {
4786 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
4787 f5215bb9 2019-02-22 stsp update_panels();
4788 f5215bb9 2019-02-22 stsp doupdate();
4789 f44b1f58 2020-02-02 tracey }
4790 f44b1f58 2020-02-02 tracey
4791 f44b1f58 2020-02-02 tracey static const struct got_error *
4792 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
4793 f44b1f58 2020-02-02 tracey {
4794 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
4795 f44b1f58 2020-02-02 tracey
4796 f44b1f58 2020-02-02 tracey s->matched_line = 0;
4797 f44b1f58 2020-02-02 tracey return NULL;
4798 f44b1f58 2020-02-02 tracey }
4799 f44b1f58 2020-02-02 tracey
4800 2a7d3cd7 2022-09-17 thomas static void
4801 2a7d3cd7 2022-09-17 thomas search_setup_diff_view(struct tog_view *view, FILE **f, off_t **line_offsets,
4802 fc2737d5 2022-09-15 thomas size_t *nlines, int **first, int **last, int **match, int **selected)
4803 f44b1f58 2020-02-02 tracey {
4804 2a7d3cd7 2022-09-17 thomas struct tog_diff_view_state *s = &view->state.diff;
4805 fc2737d5 2022-09-15 thomas
4806 2a7d3cd7 2022-09-17 thomas *f = s->f;
4807 2a7d3cd7 2022-09-17 thomas *nlines = s->nlines;
4808 2a7d3cd7 2022-09-17 thomas *line_offsets = NULL;
4809 2a7d3cd7 2022-09-17 thomas *match = &s->matched_line;
4810 2a7d3cd7 2022-09-17 thomas *first = &s->first_displayed_line;
4811 2a7d3cd7 2022-09-17 thomas *last = &s->last_displayed_line;
4812 2a7d3cd7 2022-09-17 thomas *selected = &s->selected_line;
4813 fc2737d5 2022-09-15 thomas }
4814 fc2737d5 2022-09-15 thomas
4815 fc2737d5 2022-09-15 thomas static const struct got_error *
4816 fc2737d5 2022-09-15 thomas search_next_view_match(struct tog_view *view)
4817 fc2737d5 2022-09-15 thomas {
4818 05171be4 2022-06-23 thomas const struct got_error *err = NULL;
4819 fc2737d5 2022-09-15 thomas FILE *f;
4820 f44b1f58 2020-02-02 tracey int lineno;
4821 78eecffc 2022-06-23 thomas char *line = NULL;
4822 826082fe 2020-12-10 stsp size_t linesize = 0;
4823 826082fe 2020-12-10 stsp ssize_t linelen;
4824 fc2737d5 2022-09-15 thomas off_t *line_offsets;
4825 fc2737d5 2022-09-15 thomas size_t nlines = 0;
4826 fc2737d5 2022-09-15 thomas int *first, *last, *match, *selected;
4827 f44b1f58 2020-02-02 tracey
4828 2a7d3cd7 2022-09-17 thomas if (!view->search_setup)
4829 2a7d3cd7 2022-09-17 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
4830 2a7d3cd7 2022-09-17 thomas "view search not supported");
4831 2a7d3cd7 2022-09-17 thomas view->search_setup(view, &f, &line_offsets, &nlines, &first, &last,
4832 fc2737d5 2022-09-15 thomas &match, &selected);
4833 fc2737d5 2022-09-15 thomas
4834 f44b1f58 2020-02-02 tracey if (!view->searching) {
4835 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4836 f44b1f58 2020-02-02 tracey return NULL;
4837 f44b1f58 2020-02-02 tracey }
4838 f44b1f58 2020-02-02 tracey
4839 fc2737d5 2022-09-15 thomas if (*match) {
4840 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4841 fc2737d5 2022-09-15 thomas lineno = *match + 1;
4842 f44b1f58 2020-02-02 tracey else
4843 fc2737d5 2022-09-15 thomas lineno = *match - 1;
4844 4b3f9dac 2021-12-17 thomas } else
4845 fc2737d5 2022-09-15 thomas lineno = *first - 1 + *selected;
4846 f44b1f58 2020-02-02 tracey
4847 f44b1f58 2020-02-02 tracey while (1) {
4848 f44b1f58 2020-02-02 tracey off_t offset;
4849 f44b1f58 2020-02-02 tracey
4850 fc2737d5 2022-09-15 thomas if (lineno <= 0 || lineno > nlines) {
4851 fc2737d5 2022-09-15 thomas if (*match == 0) {
4852 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4853 f44b1f58 2020-02-02 tracey break;
4854 f44b1f58 2020-02-02 tracey }
4855 f44b1f58 2020-02-02 tracey
4856 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4857 f44b1f58 2020-02-02 tracey lineno = 1;
4858 f44b1f58 2020-02-02 tracey else
4859 fc2737d5 2022-09-15 thomas lineno = nlines;
4860 f44b1f58 2020-02-02 tracey }
4861 f44b1f58 2020-02-02 tracey
4862 fc2737d5 2022-09-15 thomas offset = view->type == TOG_VIEW_DIFF ?
4863 fc2737d5 2022-09-15 thomas view->state.diff.lines[lineno - 1].offset :
4864 fc2737d5 2022-09-15 thomas line_offsets[lineno - 1];
4865 fc2737d5 2022-09-15 thomas if (fseeko(f, offset, SEEK_SET) != 0) {
4866 f44b1f58 2020-02-02 tracey free(line);
4867 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
4868 f44b1f58 2020-02-02 tracey }
4869 fc2737d5 2022-09-15 thomas linelen = getline(&line, &linesize, f);
4870 78eecffc 2022-06-23 thomas if (linelen != -1) {
4871 78eecffc 2022-06-23 thomas char *exstr;
4872 78eecffc 2022-06-23 thomas err = expand_tab(&exstr, line);
4873 78eecffc 2022-06-23 thomas if (err)
4874 78eecffc 2022-06-23 thomas break;
4875 78eecffc 2022-06-23 thomas if (match_line(exstr, &view->regex, 1,
4876 78eecffc 2022-06-23 thomas &view->regmatch)) {
4877 78eecffc 2022-06-23 thomas view->search_next_done = TOG_SEARCH_HAVE_MORE;
4878 fc2737d5 2022-09-15 thomas *match = lineno;
4879 78eecffc 2022-06-23 thomas free(exstr);
4880 78eecffc 2022-06-23 thomas break;
4881 78eecffc 2022-06-23 thomas }
4882 78eecffc 2022-06-23 thomas free(exstr);
4883 f44b1f58 2020-02-02 tracey }
4884 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
4885 f44b1f58 2020-02-02 tracey lineno++;
4886 f44b1f58 2020-02-02 tracey else
4887 f44b1f58 2020-02-02 tracey lineno--;
4888 f44b1f58 2020-02-02 tracey }
4889 826082fe 2020-12-10 stsp free(line);
4890 f44b1f58 2020-02-02 tracey
4891 fc2737d5 2022-09-15 thomas if (*match) {
4892 fc2737d5 2022-09-15 thomas *first = *match;
4893 fc2737d5 2022-09-15 thomas *selected = 1;
4894 f44b1f58 2020-02-02 tracey }
4895 f44b1f58 2020-02-02 tracey
4896 05171be4 2022-06-23 thomas return err;
4897 f5215bb9 2019-02-22 stsp }
4898 f5215bb9 2019-02-22 stsp
4899 48ae06ee 2018-10-18 stsp static const struct got_error *
4900 a0f32f33 2022-06-13 thomas close_diff_view(struct tog_view *view)
4901 a0f32f33 2022-06-13 thomas {
4902 a0f32f33 2022-06-13 thomas const struct got_error *err = NULL;
4903 a0f32f33 2022-06-13 thomas struct tog_diff_view_state *s = &view->state.diff;
4904 a0f32f33 2022-06-13 thomas
4905 a0f32f33 2022-06-13 thomas free(s->id1);
4906 a0f32f33 2022-06-13 thomas s->id1 = NULL;
4907 a0f32f33 2022-06-13 thomas free(s->id2);
4908 a0f32f33 2022-06-13 thomas s->id2 = NULL;
4909 a0f32f33 2022-06-13 thomas if (s->f && fclose(s->f) == EOF)
4910 a0f32f33 2022-06-13 thomas err = got_error_from_errno("fclose");
4911 a0f32f33 2022-06-13 thomas s->f = NULL;
4912 19a6a6b5 2022-07-01 thomas if (s->f1 && fclose(s->f1) == EOF && err == NULL)
4913 a0f32f33 2022-06-13 thomas err = got_error_from_errno("fclose");
4914 a0f32f33 2022-06-13 thomas s->f1 = NULL;
4915 19a6a6b5 2022-07-01 thomas if (s->f2 && fclose(s->f2) == EOF && err == NULL)
4916 a0f32f33 2022-06-13 thomas err = got_error_from_errno("fclose");
4917 a0f32f33 2022-06-13 thomas s->f2 = NULL;
4918 19a6a6b5 2022-07-01 thomas if (s->fd1 != -1 && close(s->fd1) == -1 && err == NULL)
4919 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("close");
4920 19a6a6b5 2022-07-01 thomas s->fd1 = -1;
4921 19a6a6b5 2022-07-01 thomas if (s->fd2 != -1 && close(s->fd2) == -1 && err == NULL)
4922 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("close");
4923 19a6a6b5 2022-07-01 thomas s->fd2 = -1;
4924 82c78e96 2022-08-06 thomas free(s->lines);
4925 82c78e96 2022-08-06 thomas s->lines = NULL;
4926 a0f32f33 2022-06-13 thomas s->nlines = 0;
4927 a0f32f33 2022-06-13 thomas return err;
4928 a0f32f33 2022-06-13 thomas }
4929 a0f32f33 2022-06-13 thomas
4930 a0f32f33 2022-06-13 thomas static const struct got_error *
4931 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
4932 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
4933 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
4934 4fc71f3b 2022-07-12 thomas struct tog_view *parent_view, struct got_repository *repo)
4935 48ae06ee 2018-10-18 stsp {
4936 48ae06ee 2018-10-18 stsp const struct got_error *err;
4937 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
4938 5dc9f4bc 2018-08-04 stsp
4939 a0f32f33 2022-06-13 thomas memset(s, 0, sizeof(*s));
4940 19a6a6b5 2022-07-01 thomas s->fd1 = -1;
4941 19a6a6b5 2022-07-01 thomas s->fd2 = -1;
4942 a0f32f33 2022-06-13 thomas
4943 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
4944 15a94983 2018-12-23 stsp int type1, type2;
4945 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
4946 15a94983 2018-12-23 stsp if (err)
4947 15a94983 2018-12-23 stsp return err;
4948 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
4949 15a94983 2018-12-23 stsp if (err)
4950 15a94983 2018-12-23 stsp return err;
4951 15a94983 2018-12-23 stsp
4952 15a94983 2018-12-23 stsp if (type1 != type2)
4953 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
4954 15a94983 2018-12-23 stsp }
4955 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
4956 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
4957 f44b1f58 2020-02-02 tracey s->selected_line = 1;
4958 f44b1f58 2020-02-02 tracey s->repo = repo;
4959 f44b1f58 2020-02-02 tracey s->id1 = id1;
4960 f44b1f58 2020-02-02 tracey s->id2 = id2;
4961 3dbaef42 2020-11-24 stsp s->label1 = label1;
4962 3dbaef42 2020-11-24 stsp s->label2 = label2;
4963 48ae06ee 2018-10-18 stsp
4964 15a94983 2018-12-23 stsp if (id1) {
4965 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
4966 5465d566 2020-02-01 tracey if (s->id1 == NULL)
4967 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
4968 48ae06ee 2018-10-18 stsp } else
4969 5465d566 2020-02-01 tracey s->id1 = NULL;
4970 48ae06ee 2018-10-18 stsp
4971 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
4972 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
4973 a0f32f33 2022-06-13 thomas err = got_error_from_errno("got_object_id_dup");
4974 a0f32f33 2022-06-13 thomas goto done;
4975 48ae06ee 2018-10-18 stsp }
4976 a0f32f33 2022-06-13 thomas
4977 9a1d7435 2022-06-23 thomas s->f1 = got_opentemp();
4978 9a1d7435 2022-06-23 thomas if (s->f1 == NULL) {
4979 9a1d7435 2022-06-23 thomas err = got_error_from_errno("got_opentemp");
4980 9a1d7435 2022-06-23 thomas goto done;
4981 9a1d7435 2022-06-23 thomas }
4982 9a1d7435 2022-06-23 thomas
4983 a0f32f33 2022-06-13 thomas s->f2 = got_opentemp();
4984 a0f32f33 2022-06-13 thomas if (s->f2 == NULL) {
4985 a0f32f33 2022-06-13 thomas err = got_error_from_errno("got_opentemp");
4986 a0f32f33 2022-06-13 thomas goto done;
4987 a0f32f33 2022-06-13 thomas }
4988 a0f32f33 2022-06-13 thomas
4989 19a6a6b5 2022-07-01 thomas s->fd1 = got_opentempfd();
4990 19a6a6b5 2022-07-01 thomas if (s->fd1 == -1) {
4991 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
4992 19a6a6b5 2022-07-01 thomas goto done;
4993 19a6a6b5 2022-07-01 thomas }
4994 19a6a6b5 2022-07-01 thomas
4995 19a6a6b5 2022-07-01 thomas s->fd2 = got_opentempfd();
4996 19a6a6b5 2022-07-01 thomas if (s->fd2 == -1) {
4997 19a6a6b5 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
4998 19a6a6b5 2022-07-01 thomas goto done;
4999 19a6a6b5 2022-07-01 thomas }
5000 19a6a6b5 2022-07-01 thomas
5001 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
5002 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
5003 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
5004 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
5005 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
5006 4fc71f3b 2022-07-12 thomas s->parent_view = parent_view;
5007 5465d566 2020-02-01 tracey s->repo = repo;
5008 6d17833f 2019-11-08 stsp
5009 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5010 6568f0aa 2022-08-06 thomas int rc;
5011 6d17833f 2019-11-08 stsp
5012 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_MINUS,
5013 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_MINUS"), -1);
5014 6568f0aa 2022-08-06 thomas if (rc != ERR)
5015 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_PLUS,
5016 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_PLUS"), -1);
5017 6568f0aa 2022-08-06 thomas if (rc != ERR)
5018 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_HUNK,
5019 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"), -1);
5020 6568f0aa 2022-08-06 thomas if (rc != ERR)
5021 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_META,
5022 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5023 6568f0aa 2022-08-06 thomas if (rc != ERR)
5024 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_CHANGES,
5025 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5026 6568f0aa 2022-08-06 thomas if (rc != ERR)
5027 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_BLOB_MIN,
5028 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5029 6568f0aa 2022-08-06 thomas if (rc != ERR)
5030 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_BLOB_PLUS,
5031 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DIFF_META"), -1);
5032 6568f0aa 2022-08-06 thomas if (rc != ERR)
5033 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_AUTHOR,
5034 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_AUTHOR"), -1);
5035 6568f0aa 2022-08-06 thomas if (rc != ERR)
5036 6568f0aa 2022-08-06 thomas rc = init_pair(GOT_DIFF_LINE_DATE,
5037 6568f0aa 2022-08-06 thomas get_color_value("TOG_COLOR_DATE"), -1);
5038 6568f0aa 2022-08-06 thomas if (rc == ERR) {
5039 6568f0aa 2022-08-06 thomas err = got_error(GOT_ERR_RANGE);
5040 a0f32f33 2022-06-13 thomas goto done;
5041 6568f0aa 2022-08-06 thomas }
5042 6d17833f 2019-11-08 stsp }
5043 5dc9f4bc 2018-08-04 stsp
5044 4fc71f3b 2022-07-12 thomas if (parent_view && parent_view->type == TOG_VIEW_LOG &&
5045 4fc71f3b 2022-07-12 thomas view_is_splitscreen(view))
5046 4fc71f3b 2022-07-12 thomas show_log_view(parent_view); /* draw border */
5047 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
5048 f5215bb9 2019-02-22 stsp
5049 5465d566 2020-02-01 tracey err = create_diff(s);
5050 48ae06ee 2018-10-18 stsp
5051 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
5052 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
5053 adf4c9e0 2022-07-03 thomas view->reset = reset_diff_view;
5054 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
5055 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
5056 2a7d3cd7 2022-09-17 thomas view->search_setup = search_setup_diff_view;
5057 fc2737d5 2022-09-15 thomas view->search_next = search_next_view_match;
5058 a0f32f33 2022-06-13 thomas done:
5059 a0f32f33 2022-06-13 thomas if (err)
5060 a0f32f33 2022-06-13 thomas close_diff_view(view);
5061 e5a0f69f 2018-08-18 stsp return err;
5062 5dc9f4bc 2018-08-04 stsp }
5063 5dc9f4bc 2018-08-04 stsp
5064 5dc9f4bc 2018-08-04 stsp static const struct got_error *
5065 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
5066 5dc9f4bc 2018-08-04 stsp {
5067 a3404814 2018-09-02 stsp const struct got_error *err;
5068 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
5069 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
5070 3dbaef42 2020-11-24 stsp const char *label1, *label2;
5071 a3404814 2018-09-02 stsp
5072 a3404814 2018-09-02 stsp if (s->id1) {
5073 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
5074 a3404814 2018-09-02 stsp if (err)
5075 a3404814 2018-09-02 stsp return err;
5076 d3f8b1f9 2022-08-31 thomas label1 = s->label1 ? s->label1 : id_str1;
5077 3dbaef42 2020-11-24 stsp } else
5078 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
5079 3dbaef42 2020-11-24 stsp
5080 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
5081 a3404814 2018-09-02 stsp if (err)
5082 a3404814 2018-09-02 stsp return err;
5083 d3f8b1f9 2022-08-31 thomas label2 = s->label2 ? s->label2 : id_str2;
5084 26ed57b2 2018-05-19 stsp
5085 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
5086 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5087 a3404814 2018-09-02 stsp free(id_str1);
5088 a3404814 2018-09-02 stsp free(id_str2);
5089 a3404814 2018-09-02 stsp return err;
5090 a3404814 2018-09-02 stsp }
5091 a3404814 2018-09-02 stsp free(id_str1);
5092 a3404814 2018-09-02 stsp free(id_str2);
5093 a3404814 2018-09-02 stsp
5094 267bb3b8 2021-08-01 stsp err = draw_file(view, header);
5095 267bb3b8 2021-08-01 stsp free(header);
5096 267bb3b8 2021-08-01 stsp return err;
5097 15a087fe 2019-02-21 stsp }
5098 15a087fe 2019-02-21 stsp
5099 15a087fe 2019-02-21 stsp static const struct got_error *
5100 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
5101 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
5102 15a087fe 2019-02-21 stsp {
5103 d7a04538 2019-02-21 stsp const struct got_error *err;
5104 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
5105 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
5106 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
5107 15a087fe 2019-02-21 stsp
5108 15a087fe 2019-02-21 stsp free(s->id2);
5109 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
5110 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
5111 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
5112 15a087fe 2019-02-21 stsp
5113 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
5114 d7a04538 2019-02-21 stsp if (err)
5115 d7a04538 2019-02-21 stsp return err;
5116 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
5117 15a087fe 2019-02-21 stsp free(s->id1);
5118 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
5119 ec242592 2022-04-22 thomas s->id1 = pid ? got_object_id_dup(&pid->id) : NULL;
5120 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
5121 15a087fe 2019-02-21 stsp return NULL;
5122 0cf4efb1 2018-09-29 stsp }
5123 0cf4efb1 2018-09-29 stsp
5124 0cf4efb1 2018-09-29 stsp static const struct got_error *
5125 adf4c9e0 2022-07-03 thomas reset_diff_view(struct tog_view *view)
5126 adf4c9e0 2022-07-03 thomas {
5127 adf4c9e0 2022-07-03 thomas struct tog_diff_view_state *s = &view->state.diff;
5128 adf4c9e0 2022-07-03 thomas
5129 adf4c9e0 2022-07-03 thomas view->count = 0;
5130 adf4c9e0 2022-07-03 thomas wclear(view->window);
5131 adf4c9e0 2022-07-03 thomas s->first_displayed_line = 1;
5132 adf4c9e0 2022-07-03 thomas s->last_displayed_line = view->nlines;
5133 adf4c9e0 2022-07-03 thomas s->matched_line = 0;
5134 adf4c9e0 2022-07-03 thomas diff_view_indicate_progress(view);
5135 adf4c9e0 2022-07-03 thomas return create_diff(s);
5136 82c78e96 2022-08-06 thomas }
5137 82c78e96 2022-08-06 thomas
5138 82c78e96 2022-08-06 thomas static void
5139 82c78e96 2022-08-06 thomas diff_prev_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5140 82c78e96 2022-08-06 thomas {
5141 82c78e96 2022-08-06 thomas int start, i;
5142 82c78e96 2022-08-06 thomas
5143 82c78e96 2022-08-06 thomas i = start = s->first_displayed_line - 1;
5144 82c78e96 2022-08-06 thomas
5145 82c78e96 2022-08-06 thomas while (s->lines[i].type != type) {
5146 82c78e96 2022-08-06 thomas if (i == 0)
5147 82c78e96 2022-08-06 thomas i = s->nlines - 1;
5148 82c78e96 2022-08-06 thomas if (--i == start)
5149 82c78e96 2022-08-06 thomas return; /* do nothing, requested type not in file */
5150 82c78e96 2022-08-06 thomas }
5151 82c78e96 2022-08-06 thomas
5152 82c78e96 2022-08-06 thomas s->selected_line = 1;
5153 82c78e96 2022-08-06 thomas s->first_displayed_line = i;
5154 adf4c9e0 2022-07-03 thomas }
5155 adf4c9e0 2022-07-03 thomas
5156 82c78e96 2022-08-06 thomas static void
5157 82c78e96 2022-08-06 thomas diff_next_index(struct tog_diff_view_state *s, enum got_diff_line_type type)
5158 82c78e96 2022-08-06 thomas {
5159 82c78e96 2022-08-06 thomas int start, i;
5160 82c78e96 2022-08-06 thomas
5161 82c78e96 2022-08-06 thomas i = start = s->first_displayed_line + 1;
5162 82c78e96 2022-08-06 thomas
5163 82c78e96 2022-08-06 thomas while (s->lines[i].type != type) {
5164 82c78e96 2022-08-06 thomas if (i == s->nlines - 1)
5165 82c78e96 2022-08-06 thomas i = 0;
5166 82c78e96 2022-08-06 thomas if (++i == start)
5167 82c78e96 2022-08-06 thomas return; /* do nothing, requested type not in file */
5168 82c78e96 2022-08-06 thomas }
5169 82c78e96 2022-08-06 thomas
5170 82c78e96 2022-08-06 thomas s->selected_line = 1;
5171 82c78e96 2022-08-06 thomas s->first_displayed_line = i;
5172 82c78e96 2022-08-06 thomas }
5173 82c78e96 2022-08-06 thomas
5174 4fc71f3b 2022-07-12 thomas static struct got_object_id *get_selected_commit_id(struct tog_blame_line *,
5175 4fc71f3b 2022-07-12 thomas int, int, int);
5176 4fc71f3b 2022-07-12 thomas static struct got_object_id *get_annotation_for_line(struct tog_blame_line *,
5177 4fc71f3b 2022-07-12 thomas int, int);
5178 4fc71f3b 2022-07-12 thomas
5179 adf4c9e0 2022-07-03 thomas static const struct got_error *
5180 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
5181 e5a0f69f 2018-08-18 stsp {
5182 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
5183 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
5184 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
5185 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
5186 826082fe 2020-12-10 stsp char *line = NULL;
5187 826082fe 2020-12-10 stsp size_t linesize = 0;
5188 826082fe 2020-12-10 stsp ssize_t linelen;
5189 4fc71f3b 2022-07-12 thomas int i, nscroll = view->nlines - 1, up = 0;
5190 e5a0f69f 2018-08-18 stsp
5191 82c78e96 2022-08-06 thomas s->lineno = s->first_displayed_line - 1 + s->selected_line;
5192 82c78e96 2022-08-06 thomas
5193 e5a0f69f 2018-08-18 stsp switch (ch) {
5194 05171be4 2022-06-23 thomas case '0':
5195 05171be4 2022-06-23 thomas view->x = 0;
5196 05171be4 2022-06-23 thomas break;
5197 05171be4 2022-06-23 thomas case '$':
5198 05171be4 2022-06-23 thomas view->x = MAX(view->maxx - view->ncols / 3, 0);
5199 07b0611c 2022-06-23 thomas view->count = 0;
5200 05171be4 2022-06-23 thomas break;
5201 05171be4 2022-06-23 thomas case KEY_RIGHT:
5202 05171be4 2022-06-23 thomas case 'l':
5203 05171be4 2022-06-23 thomas if (view->x + view->ncols / 3 < view->maxx)
5204 05171be4 2022-06-23 thomas view->x += 2; /* move two columns right */
5205 07b0611c 2022-06-23 thomas else
5206 07b0611c 2022-06-23 thomas view->count = 0;
5207 05171be4 2022-06-23 thomas break;
5208 05171be4 2022-06-23 thomas case KEY_LEFT:
5209 05171be4 2022-06-23 thomas case 'h':
5210 05171be4 2022-06-23 thomas view->x -= MIN(view->x, 2); /* move two columns back */
5211 07b0611c 2022-06-23 thomas if (view->x <= 0)
5212 07b0611c 2022-06-23 thomas view->count = 0;
5213 05171be4 2022-06-23 thomas break;
5214 64453f7e 2020-11-21 stsp case 'a':
5215 3dbaef42 2020-11-24 stsp case 'w':
5216 3dbaef42 2020-11-24 stsp if (ch == 'a')
5217 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
5218 3dbaef42 2020-11-24 stsp if (ch == 'w')
5219 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
5220 adf4c9e0 2022-07-03 thomas err = reset_diff_view(view);
5221 912a3f79 2021-08-30 j break;
5222 912a3f79 2021-08-30 j case 'g':
5223 912a3f79 2021-08-30 j case KEY_HOME:
5224 912a3f79 2021-08-30 j s->first_displayed_line = 1;
5225 07b0611c 2022-06-23 thomas view->count = 0;
5226 64453f7e 2020-11-21 stsp break;
5227 912a3f79 2021-08-30 j case 'G':
5228 912a3f79 2021-08-30 j case KEY_END:
5229 07b0611c 2022-06-23 thomas view->count = 0;
5230 912a3f79 2021-08-30 j if (s->eof)
5231 912a3f79 2021-08-30 j break;
5232 912a3f79 2021-08-30 j
5233 912a3f79 2021-08-30 j s->first_displayed_line = (s->nlines - view->nlines) + 2;
5234 912a3f79 2021-08-30 j s->eof = 1;
5235 912a3f79 2021-08-30 j break;
5236 1e37a5c2 2019-05-12 jcs case 'k':
5237 1e37a5c2 2019-05-12 jcs case KEY_UP:
5238 f7140bf5 2021-10-17 thomas case CTRL('p'):
5239 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
5240 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5241 07b0611c 2022-06-23 thomas else
5242 07b0611c 2022-06-23 thomas view->count = 0;
5243 1e37a5c2 2019-05-12 jcs break;
5244 70f17a53 2022-06-13 thomas case CTRL('u'):
5245 23427b14 2022-06-23 thomas case 'u':
5246 70f17a53 2022-06-13 thomas nscroll /= 2;
5247 70f17a53 2022-06-13 thomas /* FALL THROUGH */
5248 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5249 a60a9dc4 2019-05-13 jcs case CTRL('b'):
5250 1c5e5faa 2022-06-23 thomas case 'b':
5251 07b0611c 2022-06-23 thomas if (s->first_displayed_line == 1) {
5252 07b0611c 2022-06-23 thomas view->count = 0;
5253 26ed57b2 2018-05-19 stsp break;
5254 07b0611c 2022-06-23 thomas }
5255 1e37a5c2 2019-05-12 jcs i = 0;
5256 70f17a53 2022-06-13 thomas while (i++ < nscroll && s->first_displayed_line > 1)
5257 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
5258 1e37a5c2 2019-05-12 jcs break;
5259 1e37a5c2 2019-05-12 jcs case 'j':
5260 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5261 f7140bf5 2021-10-17 thomas case CTRL('n'):
5262 1e37a5c2 2019-05-12 jcs if (!s->eof)
5263 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5264 07b0611c 2022-06-23 thomas else
5265 07b0611c 2022-06-23 thomas view->count = 0;
5266 1e37a5c2 2019-05-12 jcs break;
5267 70f17a53 2022-06-13 thomas case CTRL('d'):
5268 23427b14 2022-06-23 thomas case 'd':
5269 70f17a53 2022-06-13 thomas nscroll /= 2;
5270 70f17a53 2022-06-13 thomas /* FALL THROUGH */
5271 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
5272 a60a9dc4 2019-05-13 jcs case CTRL('f'):
5273 1c5e5faa 2022-06-23 thomas case 'f':
5274 1e37a5c2 2019-05-12 jcs case ' ':
5275 07b0611c 2022-06-23 thomas if (s->eof) {
5276 07b0611c 2022-06-23 thomas view->count = 0;
5277 1e37a5c2 2019-05-12 jcs break;
5278 07b0611c 2022-06-23 thomas }
5279 1e37a5c2 2019-05-12 jcs i = 0;
5280 70f17a53 2022-06-13 thomas while (!s->eof && i++ < nscroll) {
5281 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
5282 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
5283 826082fe 2020-12-10 stsp if (linelen == -1) {
5284 826082fe 2020-12-10 stsp if (feof(s->f)) {
5285 826082fe 2020-12-10 stsp s->eof = 1;
5286 826082fe 2020-12-10 stsp } else
5287 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
5288 34bc9ec9 2019-02-22 stsp break;
5289 826082fe 2020-12-10 stsp }
5290 1e37a5c2 2019-05-12 jcs }
5291 826082fe 2020-12-10 stsp free(line);
5292 1e37a5c2 2019-05-12 jcs break;
5293 82c78e96 2022-08-06 thomas case '(':
5294 82c78e96 2022-08-06 thomas diff_prev_index(s, GOT_DIFF_LINE_BLOB_MIN);
5295 82c78e96 2022-08-06 thomas break;
5296 82c78e96 2022-08-06 thomas case ')':
5297 82c78e96 2022-08-06 thomas diff_next_index(s, GOT_DIFF_LINE_BLOB_MIN);
5298 82c78e96 2022-08-06 thomas break;
5299 82c78e96 2022-08-06 thomas case '{':
5300 82c78e96 2022-08-06 thomas diff_prev_index(s, GOT_DIFF_LINE_HUNK);
5301 82c78e96 2022-08-06 thomas break;
5302 82c78e96 2022-08-06 thomas case '}':
5303 82c78e96 2022-08-06 thomas diff_next_index(s, GOT_DIFF_LINE_HUNK);
5304 82c78e96 2022-08-06 thomas break;
5305 1e37a5c2 2019-05-12 jcs case '[':
5306 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
5307 1e37a5c2 2019-05-12 jcs s->diff_context--;
5308 aa61903a 2021-12-31 thomas s->matched_line = 0;
5309 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5310 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5311 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
5312 27829c9e 2020-11-21 stsp s->nlines) {
5313 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
5314 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
5315 27829c9e 2020-11-21 stsp }
5316 07b0611c 2022-06-23 thomas } else
5317 07b0611c 2022-06-23 thomas view->count = 0;
5318 1e37a5c2 2019-05-12 jcs break;
5319 1e37a5c2 2019-05-12 jcs case ']':
5320 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
5321 1e37a5c2 2019-05-12 jcs s->diff_context++;
5322 aa61903a 2021-12-31 thomas s->matched_line = 0;
5323 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5324 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5325 07b0611c 2022-06-23 thomas } else
5326 07b0611c 2022-06-23 thomas view->count = 0;
5327 1e37a5c2 2019-05-12 jcs break;
5328 1e37a5c2 2019-05-12 jcs case '<':
5329 1e37a5c2 2019-05-12 jcs case ',':
5330 777aae21 2022-07-20 thomas case 'K':
5331 4fc71f3b 2022-07-12 thomas up = 1;
5332 4fc71f3b 2022-07-12 thomas /* FALL THROUGH */
5333 4fc71f3b 2022-07-12 thomas case '>':
5334 4fc71f3b 2022-07-12 thomas case '.':
5335 777aae21 2022-07-20 thomas case 'J':
5336 4fc71f3b 2022-07-12 thomas if (s->parent_view == NULL) {
5337 07b0611c 2022-06-23 thomas view->count = 0;
5338 48ae06ee 2018-10-18 stsp break;
5339 07b0611c 2022-06-23 thomas }
5340 4fc71f3b 2022-07-12 thomas s->parent_view->count = view->count;
5341 6524637e 2019-02-21 stsp
5342 4fc71f3b 2022-07-12 thomas if (s->parent_view->type == TOG_VIEW_LOG) {
5343 4fc71f3b 2022-07-12 thomas ls = &s->parent_view->state.log;
5344 4fc71f3b 2022-07-12 thomas old_selected_entry = ls->selected_entry;
5345 15a087fe 2019-02-21 stsp
5346 4fc71f3b 2022-07-12 thomas err = input_log_view(NULL, s->parent_view,
5347 4fc71f3b 2022-07-12 thomas up ? KEY_UP : KEY_DOWN);
5348 4fc71f3b 2022-07-12 thomas if (err)
5349 4fc71f3b 2022-07-12 thomas break;
5350 4fc71f3b 2022-07-12 thomas view->count = s->parent_view->count;
5351 15a087fe 2019-02-21 stsp
5352 4fc71f3b 2022-07-12 thomas if (old_selected_entry == ls->selected_entry)
5353 4fc71f3b 2022-07-12 thomas break;
5354 15a087fe 2019-02-21 stsp
5355 4fc71f3b 2022-07-12 thomas err = set_selected_commit(s, ls->selected_entry);
5356 4fc71f3b 2022-07-12 thomas if (err)
5357 4fc71f3b 2022-07-12 thomas break;
5358 4fc71f3b 2022-07-12 thomas } else if (s->parent_view->type == TOG_VIEW_BLAME) {
5359 4fc71f3b 2022-07-12 thomas struct tog_blame_view_state *bs;
5360 4fc71f3b 2022-07-12 thomas struct got_object_id *id, *prev_id;
5361 5e224a3e 2019-02-22 stsp
5362 4fc71f3b 2022-07-12 thomas bs = &s->parent_view->state.blame;
5363 4fc71f3b 2022-07-12 thomas prev_id = get_annotation_for_line(bs->blame.lines,
5364 4fc71f3b 2022-07-12 thomas bs->blame.nlines, bs->last_diffed_line);
5365 4fc71f3b 2022-07-12 thomas
5366 4fc71f3b 2022-07-12 thomas err = input_blame_view(&view, s->parent_view,
5367 4fc71f3b 2022-07-12 thomas up ? KEY_UP : KEY_DOWN);
5368 4fc71f3b 2022-07-12 thomas if (err)
5369 4fc71f3b 2022-07-12 thomas break;
5370 4fc71f3b 2022-07-12 thomas view->count = s->parent_view->count;
5371 5a8b5076 2020-12-05 stsp
5372 4fc71f3b 2022-07-12 thomas if (prev_id == NULL)
5373 4fc71f3b 2022-07-12 thomas break;
5374 4fc71f3b 2022-07-12 thomas id = get_selected_commit_id(bs->blame.lines,
5375 4fc71f3b 2022-07-12 thomas bs->blame.nlines, bs->first_displayed_line,
5376 4fc71f3b 2022-07-12 thomas bs->selected_line);
5377 4fc71f3b 2022-07-12 thomas if (id == NULL)
5378 4fc71f3b 2022-07-12 thomas break;
5379 15a087fe 2019-02-21 stsp
5380 4fc71f3b 2022-07-12 thomas if (!got_object_id_cmp(prev_id, id))
5381 4fc71f3b 2022-07-12 thomas break;
5382 15a087fe 2019-02-21 stsp
5383 4fc71f3b 2022-07-12 thomas err = input_blame_view(&view, s->parent_view, KEY_ENTER);
5384 4fc71f3b 2022-07-12 thomas if (err)
5385 4fc71f3b 2022-07-12 thomas break;
5386 4fc71f3b 2022-07-12 thomas }
5387 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
5388 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
5389 aa61903a 2021-12-31 thomas s->matched_line = 0;
5390 05171be4 2022-06-23 thomas view->x = 0;
5391 1e37a5c2 2019-05-12 jcs
5392 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
5393 1e37a5c2 2019-05-12 jcs err = create_diff(s);
5394 1e37a5c2 2019-05-12 jcs break;
5395 1e37a5c2 2019-05-12 jcs default:
5396 07b0611c 2022-06-23 thomas view->count = 0;
5397 1e37a5c2 2019-05-12 jcs break;
5398 26ed57b2 2018-05-19 stsp }
5399 e5a0f69f 2018-08-18 stsp
5400 bcbd79e2 2018-08-19 stsp return err;
5401 26ed57b2 2018-05-19 stsp }
5402 26ed57b2 2018-05-19 stsp
5403 4ed7e80c 2018-05-20 stsp static const struct got_error *
5404 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
5405 9f7d7167 2018-04-29 stsp {
5406 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
5407 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
5408 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
5409 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
5410 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
5411 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
5412 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
5413 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
5414 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
5415 3dbaef42 2020-11-24 stsp const char *errstr;
5416 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
5417 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
5418 70ac5f84 2019-03-28 stsp
5419 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
5420 26ed57b2 2018-05-19 stsp switch (ch) {
5421 64453f7e 2020-11-21 stsp case 'a':
5422 64453f7e 2020-11-21 stsp force_text_diff = 1;
5423 3dbaef42 2020-11-24 stsp break;
5424 3dbaef42 2020-11-24 stsp case 'C':
5425 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
5426 3dbaef42 2020-11-24 stsp &errstr);
5427 3dbaef42 2020-11-24 stsp if (errstr != NULL)
5428 8f666e67 2022-02-12 thomas errx(1, "number of context lines is %s: %s",
5429 8f666e67 2022-02-12 thomas errstr, errstr);
5430 64453f7e 2020-11-21 stsp break;
5431 09b5bff8 2020-02-23 naddy case 'r':
5432 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
5433 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
5434 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
5435 09b5bff8 2020-02-23 naddy optarg);
5436 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
5437 09b5bff8 2020-02-23 naddy break;
5438 3dbaef42 2020-11-24 stsp case 'w':
5439 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
5440 3dbaef42 2020-11-24 stsp break;
5441 26ed57b2 2018-05-19 stsp default:
5442 17020d27 2019-03-07 stsp usage_diff();
5443 26ed57b2 2018-05-19 stsp /* NOTREACHED */
5444 26ed57b2 2018-05-19 stsp }
5445 26ed57b2 2018-05-19 stsp }
5446 26ed57b2 2018-05-19 stsp
5447 26ed57b2 2018-05-19 stsp argc -= optind;
5448 26ed57b2 2018-05-19 stsp argv += optind;
5449 26ed57b2 2018-05-19 stsp
5450 26ed57b2 2018-05-19 stsp if (argc == 0) {
5451 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
5452 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
5453 15a94983 2018-12-23 stsp id_str1 = argv[0];
5454 15a94983 2018-12-23 stsp id_str2 = argv[1];
5455 26ed57b2 2018-05-19 stsp } else
5456 26ed57b2 2018-05-19 stsp usage_diff();
5457 eb6600df 2019-01-04 stsp
5458 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
5459 7cd52833 2022-06-23 thomas if (error)
5460 7cd52833 2022-06-23 thomas goto done;
5461 7cd52833 2022-06-23 thomas
5462 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
5463 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5464 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5465 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5466 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5467 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5468 c156c7a4 2020-12-18 stsp goto done;
5469 a273ac94 2020-02-23 naddy if (worktree)
5470 a273ac94 2020-02-23 naddy repo_path =
5471 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
5472 a273ac94 2020-02-23 naddy else
5473 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
5474 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5475 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5476 c156c7a4 2020-12-18 stsp goto done;
5477 c156c7a4 2020-12-18 stsp }
5478 a273ac94 2020-02-23 naddy }
5479 a273ac94 2020-02-23 naddy
5480 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
5481 eb6600df 2019-01-04 stsp if (error)
5482 eb6600df 2019-01-04 stsp goto done;
5483 26ed57b2 2018-05-19 stsp
5484 a273ac94 2020-02-23 naddy init_curses();
5485 a273ac94 2020-02-23 naddy
5486 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5487 51a10b52 2020-12-26 stsp if (error)
5488 51a10b52 2020-12-26 stsp goto done;
5489 51a10b52 2020-12-26 stsp
5490 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
5491 26ed57b2 2018-05-19 stsp if (error)
5492 26ed57b2 2018-05-19 stsp goto done;
5493 26ed57b2 2018-05-19 stsp
5494 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
5495 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5496 26ed57b2 2018-05-19 stsp if (error)
5497 26ed57b2 2018-05-19 stsp goto done;
5498 26ed57b2 2018-05-19 stsp
5499 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
5500 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
5501 26ed57b2 2018-05-19 stsp if (error)
5502 26ed57b2 2018-05-19 stsp goto done;
5503 26ed57b2 2018-05-19 stsp
5504 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
5505 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
5506 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5507 ea5e7bb5 2018-08-01 stsp goto done;
5508 ea5e7bb5 2018-08-01 stsp }
5509 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
5510 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
5511 5dc9f4bc 2018-08-04 stsp if (error)
5512 5dc9f4bc 2018-08-04 stsp goto done;
5513 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5514 26ed57b2 2018-05-19 stsp done:
5515 3dbaef42 2020-11-24 stsp free(label1);
5516 3dbaef42 2020-11-24 stsp free(label2);
5517 c02c541e 2019-03-29 stsp free(repo_path);
5518 a273ac94 2020-02-23 naddy free(cwd);
5519 1d0f4054 2021-06-17 stsp if (repo) {
5520 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5521 1d0f4054 2021-06-17 stsp if (error == NULL)
5522 1d0f4054 2021-06-17 stsp error = close_err;
5523 1d0f4054 2021-06-17 stsp }
5524 a273ac94 2020-02-23 naddy if (worktree)
5525 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
5526 7cd52833 2022-06-23 thomas if (pack_fds) {
5527 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
5528 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
5529 7cd52833 2022-06-23 thomas if (error == NULL)
5530 7cd52833 2022-06-23 thomas error = pack_err;
5531 7cd52833 2022-06-23 thomas }
5532 51a10b52 2020-12-26 stsp tog_free_refs();
5533 26ed57b2 2018-05-19 stsp return error;
5534 9f7d7167 2018-04-29 stsp }
5535 9f7d7167 2018-04-29 stsp
5536 4ed7e80c 2018-05-20 stsp __dead static void
5537 9f7d7167 2018-04-29 stsp usage_blame(void)
5538 9f7d7167 2018-04-29 stsp {
5539 80ddbec8 2018-04-29 stsp endwin();
5540 91198554 2022-06-23 thomas fprintf(stderr,
5541 91198554 2022-06-23 thomas "usage: %s blame [-c commit] [-r repository-path] path\n",
5542 9f7d7167 2018-04-29 stsp getprogname());
5543 9f7d7167 2018-04-29 stsp exit(1);
5544 9f7d7167 2018-04-29 stsp }
5545 84451b3e 2018-07-10 stsp
5546 84451b3e 2018-07-10 stsp struct tog_blame_line {
5547 84451b3e 2018-07-10 stsp int annotated;
5548 84451b3e 2018-07-10 stsp struct got_object_id *id;
5549 84451b3e 2018-07-10 stsp };
5550 9f7d7167 2018-04-29 stsp
5551 4ed7e80c 2018-05-20 stsp static const struct got_error *
5552 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
5553 84451b3e 2018-07-10 stsp {
5554 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5555 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5556 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
5557 84451b3e 2018-07-10 stsp const struct got_error *err;
5558 923086fd 2022-06-23 thomas int lineno = 0, nprinted = 0;
5559 826082fe 2020-12-10 stsp char *line = NULL;
5560 826082fe 2020-12-10 stsp size_t linesize = 0;
5561 826082fe 2020-12-10 stsp ssize_t linelen;
5562 84451b3e 2018-07-10 stsp wchar_t *wline;
5563 27a741e5 2019-09-11 stsp int width;
5564 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
5565 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
5566 ab089a2a 2018-07-12 stsp char *id_str;
5567 11b20872 2019-11-08 stsp struct tog_color *tc;
5568 ab089a2a 2018-07-12 stsp
5569 ec242592 2022-04-22 thomas err = got_object_id_str(&id_str, &s->blamed_commit->id);
5570 ab089a2a 2018-07-12 stsp if (err)
5571 ab089a2a 2018-07-12 stsp return err;
5572 84451b3e 2018-07-10 stsp
5573 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
5574 f7d12f7e 2018-08-01 stsp werase(view->window);
5575 84451b3e 2018-07-10 stsp
5576 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
5577 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5578 ab089a2a 2018-07-12 stsp free(id_str);
5579 ab089a2a 2018-07-12 stsp return err;
5580 ab089a2a 2018-07-12 stsp }
5581 ab089a2a 2018-07-12 stsp
5582 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5583 ab089a2a 2018-07-12 stsp free(line);
5584 2550e4c3 2018-07-13 stsp line = NULL;
5585 1cae65b4 2019-09-22 stsp if (err)
5586 1cae65b4 2019-09-22 stsp return err;
5587 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5588 a3404814 2018-09-02 stsp wstandout(view->window);
5589 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5590 11b20872 2019-11-08 stsp if (tc)
5591 86f4aab9 2022-09-09 thomas wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
5592 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5593 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
5594 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
5595 11b20872 2019-11-08 stsp if (tc)
5596 86f4aab9 2022-09-09 thomas wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
5597 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
5598 a3404814 2018-09-02 stsp wstandend(view->window);
5599 2550e4c3 2018-07-13 stsp free(wline);
5600 2550e4c3 2018-07-13 stsp wline = NULL;
5601 ab089a2a 2018-07-12 stsp
5602 07dd3ed3 2022-08-06 thomas if (view->gline > blame->nlines)
5603 07dd3ed3 2022-08-06 thomas view->gline = blame->nlines;
5604 07dd3ed3 2022-08-06 thomas
5605 07dd3ed3 2022-08-06 thomas if (asprintf(&line, "[%d/%d] %s%s", view->gline ? view->gline :
5606 4f7c3e5e 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, blame->nlines,
5607 4f7c3e5e 2020-12-01 naddy s->blame_complete ? "" : "annotating... ", s->path) == -1) {
5608 ab089a2a 2018-07-12 stsp free(id_str);
5609 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5610 ab089a2a 2018-07-12 stsp }
5611 ab089a2a 2018-07-12 stsp free(id_str);
5612 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
5613 3f60a8ef 2018-07-10 stsp free(line);
5614 2550e4c3 2018-07-13 stsp line = NULL;
5615 3f60a8ef 2018-07-10 stsp if (err)
5616 3f60a8ef 2018-07-10 stsp return err;
5617 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
5618 2550e4c3 2018-07-13 stsp free(wline);
5619 2550e4c3 2018-07-13 stsp wline = NULL;
5620 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
5621 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
5622 3f60a8ef 2018-07-10 stsp
5623 4f7c3e5e 2020-12-01 naddy s->eof = 0;
5624 05171be4 2022-06-23 thomas view->maxx = 0;
5625 4f7c3e5e 2020-12-01 naddy while (nprinted < view->nlines - 2) {
5626 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, blame->f);
5627 826082fe 2020-12-10 stsp if (linelen == -1) {
5628 826082fe 2020-12-10 stsp if (feof(blame->f)) {
5629 826082fe 2020-12-10 stsp s->eof = 1;
5630 826082fe 2020-12-10 stsp break;
5631 826082fe 2020-12-10 stsp }
5632 84451b3e 2018-07-10 stsp free(line);
5633 826082fe 2020-12-10 stsp return got_ferror(blame->f, GOT_ERR_IO);
5634 84451b3e 2018-07-10 stsp }
5635 826082fe 2020-12-10 stsp if (++lineno < s->first_displayed_line)
5636 07dd3ed3 2022-08-06 thomas continue;
5637 07dd3ed3 2022-08-06 thomas if (view->gline && !gotoline(view, &lineno, &nprinted))
5638 826082fe 2020-12-10 stsp continue;
5639 cbea3800 2022-06-23 thomas
5640 cbea3800 2022-06-23 thomas /* Set view->maxx based on full line length. */
5641 cbea3800 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 9, 1);
5642 cbea3800 2022-06-23 thomas if (err) {
5643 cbea3800 2022-06-23 thomas free(line);
5644 cbea3800 2022-06-23 thomas return err;
5645 cbea3800 2022-06-23 thomas }
5646 cbea3800 2022-06-23 thomas free(wline);
5647 cbea3800 2022-06-23 thomas wline = NULL;
5648 cbea3800 2022-06-23 thomas view->maxx = MAX(view->maxx, width);
5649 84451b3e 2018-07-10 stsp
5650 4fc71f3b 2022-07-12 thomas if (nprinted == s->selected_line - 1)
5651 f7d12f7e 2018-08-01 stsp wstandout(view->window);
5652 b700b5d6 2018-07-10 stsp
5653 4f7c3e5e 2020-12-01 naddy if (blame->nlines > 0) {
5654 4f7c3e5e 2020-12-01 naddy blame_line = &blame->lines[lineno - 1];
5655 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
5656 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
5657 4fc71f3b 2022-07-12 thomas !(nprinted == s->selected_line - 1)) {
5658 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5659 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
5660 8d0fe45a 2019-08-12 stsp char *id_str;
5661 91198554 2022-06-23 thomas err = got_object_id_str(&id_str,
5662 91198554 2022-06-23 thomas blame_line->id);
5663 8d0fe45a 2019-08-12 stsp if (err) {
5664 8d0fe45a 2019-08-12 stsp free(line);
5665 8d0fe45a 2019-08-12 stsp return err;
5666 8d0fe45a 2019-08-12 stsp }
5667 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
5668 11b20872 2019-11-08 stsp if (tc)
5669 11b20872 2019-11-08 stsp wattr_on(view->window,
5670 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5671 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
5672 11b20872 2019-11-08 stsp if (tc)
5673 11b20872 2019-11-08 stsp wattr_off(view->window,
5674 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
5675 8d0fe45a 2019-08-12 stsp free(id_str);
5676 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
5677 8d0fe45a 2019-08-12 stsp } else {
5678 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5679 8d0fe45a 2019-08-12 stsp prev_id = NULL;
5680 84451b3e 2018-07-10 stsp }
5681 ee41ec32 2018-07-10 stsp } else {
5682 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
5683 ee41ec32 2018-07-10 stsp prev_id = NULL;
5684 ee41ec32 2018-07-10 stsp }
5685 84451b3e 2018-07-10 stsp
5686 4fc71f3b 2022-07-12 thomas if (nprinted == s->selected_line - 1)
5687 f7d12f7e 2018-08-01 stsp wstandend(view->window);
5688 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
5689 27a741e5 2019-09-11 stsp
5690 41605754 2020-11-12 stsp if (view->ncols <= 9) {
5691 41605754 2020-11-12 stsp width = 9;
5692 4f7c3e5e 2020-12-01 naddy } else if (s->first_displayed_line + nprinted ==
5693 4f7c3e5e 2020-12-01 naddy s->matched_line &&
5694 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
5695 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
5696 05171be4 2022-06-23 thomas view->window, view->x, regmatch);
5697 41605754 2020-11-12 stsp if (err) {
5698 41605754 2020-11-12 stsp free(line);
5699 41605754 2020-11-12 stsp return err;
5700 41605754 2020-11-12 stsp }
5701 41605754 2020-11-12 stsp width += 9;
5702 41605754 2020-11-12 stsp } else {
5703 923086fd 2022-06-23 thomas int skip;
5704 923086fd 2022-06-23 thomas err = format_line(&wline, &width, &skip, line,
5705 923086fd 2022-06-23 thomas view->x, view->ncols - 9, 9, 1);
5706 923086fd 2022-06-23 thomas if (err) {
5707 923086fd 2022-06-23 thomas free(line);
5708 923086fd 2022-06-23 thomas return err;
5709 05171be4 2022-06-23 thomas }
5710 923086fd 2022-06-23 thomas waddwstr(view->window, &wline[skip]);
5711 02bce7e2 2022-06-23 thomas width += 9;
5712 41605754 2020-11-12 stsp free(wline);
5713 41605754 2020-11-12 stsp wline = NULL;
5714 41605754 2020-11-12 stsp }
5715 41605754 2020-11-12 stsp
5716 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
5717 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
5718 84451b3e 2018-07-10 stsp if (++nprinted == 1)
5719 4f7c3e5e 2020-12-01 naddy s->first_displayed_line = lineno;
5720 84451b3e 2018-07-10 stsp }
5721 826082fe 2020-12-10 stsp free(line);
5722 4f7c3e5e 2020-12-01 naddy s->last_displayed_line = lineno;
5723 84451b3e 2018-07-10 stsp
5724 a5d43cac 2022-07-01 thomas view_border(view);
5725 84451b3e 2018-07-10 stsp
5726 84451b3e 2018-07-10 stsp return NULL;
5727 84451b3e 2018-07-10 stsp }
5728 84451b3e 2018-07-10 stsp
5729 84451b3e 2018-07-10 stsp static const struct got_error *
5730 10f173fe 2022-04-16 thomas blame_cb(void *arg, int nlines, int lineno,
5731 10f173fe 2022-04-16 thomas struct got_commit_object *commit, struct got_object_id *id)
5732 84451b3e 2018-07-10 stsp {
5733 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
5734 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
5735 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
5736 1a76625f 2018-10-22 stsp int errcode;
5737 84451b3e 2018-07-10 stsp
5738 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
5739 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
5740 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
5741 84451b3e 2018-07-10 stsp
5742 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5743 1a76625f 2018-10-22 stsp if (errcode)
5744 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
5745 84451b3e 2018-07-10 stsp
5746 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
5747 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
5748 d68a0a7d 2018-07-10 stsp goto done;
5749 d68a0a7d 2018-07-10 stsp }
5750 d68a0a7d 2018-07-10 stsp
5751 d68a0a7d 2018-07-10 stsp if (lineno == -1)
5752 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
5753 d68a0a7d 2018-07-10 stsp
5754 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
5755 d68a0a7d 2018-07-10 stsp if (line->annotated)
5756 d68a0a7d 2018-07-10 stsp goto done;
5757 d68a0a7d 2018-07-10 stsp
5758 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
5759 84451b3e 2018-07-10 stsp if (line->id == NULL) {
5760 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5761 84451b3e 2018-07-10 stsp goto done;
5762 84451b3e 2018-07-10 stsp }
5763 84451b3e 2018-07-10 stsp line->annotated = 1;
5764 84451b3e 2018-07-10 stsp done:
5765 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5766 1a76625f 2018-10-22 stsp if (errcode)
5767 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5768 84451b3e 2018-07-10 stsp return err;
5769 84451b3e 2018-07-10 stsp }
5770 84451b3e 2018-07-10 stsp
5771 84451b3e 2018-07-10 stsp static void *
5772 84451b3e 2018-07-10 stsp blame_thread(void *arg)
5773 84451b3e 2018-07-10 stsp {
5774 1d0f4054 2021-06-17 stsp const struct got_error *err, *close_err;
5775 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
5776 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
5777 9117a7b7 2022-07-01 thomas int errcode, fd1 = -1, fd2 = -1;
5778 9117a7b7 2022-07-01 thomas FILE *f1 = NULL, *f2 = NULL;
5779 00a8878e 2022-07-01 thomas
5780 9117a7b7 2022-07-01 thomas fd1 = got_opentempfd();
5781 9117a7b7 2022-07-01 thomas if (fd1 == -1)
5782 00a8878e 2022-07-01 thomas return (void *)got_error_from_errno("got_opentempfd");
5783 9117a7b7 2022-07-01 thomas
5784 9117a7b7 2022-07-01 thomas fd2 = got_opentempfd();
5785 9117a7b7 2022-07-01 thomas if (fd2 == -1) {
5786 9117a7b7 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
5787 9117a7b7 2022-07-01 thomas goto done;
5788 9117a7b7 2022-07-01 thomas }
5789 18430de3 2018-07-10 stsp
5790 9117a7b7 2022-07-01 thomas f1 = got_opentemp();
5791 9117a7b7 2022-07-01 thomas if (f1 == NULL) {
5792 9117a7b7 2022-07-01 thomas err = (void *)got_error_from_errno("got_opentemp");
5793 9117a7b7 2022-07-01 thomas goto done;
5794 9117a7b7 2022-07-01 thomas }
5795 9117a7b7 2022-07-01 thomas f2 = got_opentemp();
5796 9117a7b7 2022-07-01 thomas if (f2 == NULL) {
5797 9117a7b7 2022-07-01 thomas err = (void *)got_error_from_errno("got_opentemp");
5798 9117a7b7 2022-07-01 thomas goto done;
5799 9117a7b7 2022-07-01 thomas }
5800 9117a7b7 2022-07-01 thomas
5801 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
5802 61266923 2020-01-14 stsp if (err)
5803 9117a7b7 2022-07-01 thomas goto done;
5804 61266923 2020-01-14 stsp
5805 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
5806 adf4c9e0 2022-07-03 thomas tog_diff_algo, blame_cb, ta->cb_args,
5807 25ec7006 2022-07-01 thomas ta->cancel_cb, ta->cancel_arg, fd1, fd2, f1, f2);
5808 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
5809 fc06ba56 2019-08-22 stsp err = NULL;
5810 18430de3 2018-07-10 stsp
5811 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5812 9117a7b7 2022-07-01 thomas if (errcode) {
5813 9117a7b7 2022-07-01 thomas err = got_error_set_errno(errcode, "pthread_mutex_lock");
5814 9117a7b7 2022-07-01 thomas goto done;
5815 9117a7b7 2022-07-01 thomas }
5816 18430de3 2018-07-10 stsp
5817 1d0f4054 2021-06-17 stsp close_err = got_repo_close(ta->repo);
5818 1d0f4054 2021-06-17 stsp if (err == NULL)
5819 1d0f4054 2021-06-17 stsp err = close_err;
5820 c9beca56 2018-07-22 stsp ta->repo = NULL;
5821 c9beca56 2018-07-22 stsp *ta->complete = 1;
5822 18430de3 2018-07-10 stsp
5823 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5824 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
5825 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
5826 18430de3 2018-07-10 stsp
5827 9117a7b7 2022-07-01 thomas done:
5828 9117a7b7 2022-07-01 thomas if (fd1 != -1 && close(fd1) == -1 && err == NULL)
5829 00a8878e 2022-07-01 thomas err = got_error_from_errno("close");
5830 9117a7b7 2022-07-01 thomas if (fd2 != -1 && close(fd2) == -1 && err == NULL)
5831 9117a7b7 2022-07-01 thomas err = got_error_from_errno("close");
5832 9117a7b7 2022-07-01 thomas if (f1 && fclose(f1) == EOF && err == NULL)
5833 9117a7b7 2022-07-01 thomas err = got_error_from_errno("fclose");
5834 9117a7b7 2022-07-01 thomas if (f2 && fclose(f2) == EOF && err == NULL)
5835 9117a7b7 2022-07-01 thomas err = got_error_from_errno("fclose");
5836 00a8878e 2022-07-01 thomas
5837 18430de3 2018-07-10 stsp return (void *)err;
5838 84451b3e 2018-07-10 stsp }
5839 84451b3e 2018-07-10 stsp
5840 245d91c1 2018-07-12 stsp static struct got_object_id *
5841 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
5842 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
5843 245d91c1 2018-07-12 stsp {
5844 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
5845 8d0fe45a 2019-08-12 stsp
5846 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
5847 8d0fe45a 2019-08-12 stsp return NULL;
5848 b880a918 2018-07-10 stsp
5849 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
5850 4fc71f3b 2022-07-12 thomas if (!line->annotated)
5851 4fc71f3b 2022-07-12 thomas return NULL;
5852 4fc71f3b 2022-07-12 thomas
5853 4fc71f3b 2022-07-12 thomas return line->id;
5854 4fc71f3b 2022-07-12 thomas }
5855 4fc71f3b 2022-07-12 thomas
5856 4fc71f3b 2022-07-12 thomas static struct got_object_id *
5857 4fc71f3b 2022-07-12 thomas get_annotation_for_line(struct tog_blame_line *lines, int nlines,
5858 4fc71f3b 2022-07-12 thomas int lineno)
5859 4fc71f3b 2022-07-12 thomas {
5860 4fc71f3b 2022-07-12 thomas struct tog_blame_line *line;
5861 4fc71f3b 2022-07-12 thomas
5862 4fc71f3b 2022-07-12 thomas if (nlines <= 0 || lineno >= nlines)
5863 4fc71f3b 2022-07-12 thomas return NULL;
5864 4fc71f3b 2022-07-12 thomas
5865 4fc71f3b 2022-07-12 thomas line = &lines[lineno - 1];
5866 245d91c1 2018-07-12 stsp if (!line->annotated)
5867 245d91c1 2018-07-12 stsp return NULL;
5868 245d91c1 2018-07-12 stsp
5869 245d91c1 2018-07-12 stsp return line->id;
5870 b880a918 2018-07-10 stsp }
5871 245d91c1 2018-07-12 stsp
5872 b880a918 2018-07-10 stsp static const struct got_error *
5873 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
5874 a70480e0 2018-06-23 stsp {
5875 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
5876 245d91c1 2018-07-12 stsp int i;
5877 245d91c1 2018-07-12 stsp
5878 245d91c1 2018-07-12 stsp if (blame->thread) {
5879 1a76625f 2018-10-22 stsp int errcode;
5880 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5881 1a76625f 2018-10-22 stsp if (errcode)
5882 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5883 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
5884 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
5885 1a76625f 2018-10-22 stsp if (errcode)
5886 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
5887 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5888 1a76625f 2018-10-22 stsp if (errcode)
5889 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
5890 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
5891 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
5892 245d91c1 2018-07-12 stsp err = NULL;
5893 dd038bc6 2021-09-21 thomas.ad blame->thread = 0; //NULL;
5894 245d91c1 2018-07-12 stsp }
5895 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
5896 1d0f4054 2021-06-17 stsp const struct got_error *close_err;
5897 1d0f4054 2021-06-17 stsp close_err = got_repo_close(blame->thread_args.repo);
5898 1d0f4054 2021-06-17 stsp if (err == NULL)
5899 1d0f4054 2021-06-17 stsp err = close_err;
5900 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
5901 245d91c1 2018-07-12 stsp }
5902 245d91c1 2018-07-12 stsp if (blame->f) {
5903 56b63ca4 2021-01-22 stsp if (fclose(blame->f) == EOF && err == NULL)
5904 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
5905 245d91c1 2018-07-12 stsp blame->f = NULL;
5906 245d91c1 2018-07-12 stsp }
5907 57670559 2018-12-23 stsp if (blame->lines) {
5908 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
5909 57670559 2018-12-23 stsp free(blame->lines[i].id);
5910 57670559 2018-12-23 stsp free(blame->lines);
5911 57670559 2018-12-23 stsp blame->lines = NULL;
5912 57670559 2018-12-23 stsp }
5913 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
5914 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
5915 7cd52833 2022-06-23 thomas if (blame->pack_fds) {
5916 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
5917 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(blame->pack_fds);
5918 7cd52833 2022-06-23 thomas if (err == NULL)
5919 7cd52833 2022-06-23 thomas err = pack_err;
5920 ece63358 2022-06-23 thomas blame->pack_fds = NULL;
5921 7cd52833 2022-06-23 thomas }
5922 245d91c1 2018-07-12 stsp return err;
5923 245d91c1 2018-07-12 stsp }
5924 245d91c1 2018-07-12 stsp
5925 245d91c1 2018-07-12 stsp static const struct got_error *
5926 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
5927 fc06ba56 2019-08-22 stsp {
5928 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
5929 fc06ba56 2019-08-22 stsp int *done = arg;
5930 fc06ba56 2019-08-22 stsp int errcode;
5931 fc06ba56 2019-08-22 stsp
5932 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
5933 fc06ba56 2019-08-22 stsp if (errcode)
5934 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5935 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
5936 fc06ba56 2019-08-22 stsp
5937 fc06ba56 2019-08-22 stsp if (*done)
5938 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
5939 fc06ba56 2019-08-22 stsp
5940 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
5941 fc06ba56 2019-08-22 stsp if (errcode)
5942 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
5943 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
5944 fc06ba56 2019-08-22 stsp
5945 fc06ba56 2019-08-22 stsp return err;
5946 fc06ba56 2019-08-22 stsp }
5947 fc06ba56 2019-08-22 stsp
5948 fc06ba56 2019-08-22 stsp static const struct got_error *
5949 a5388363 2020-12-01 naddy run_blame(struct tog_view *view)
5950 245d91c1 2018-07-12 stsp {
5951 a5388363 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
5952 a5388363 2020-12-01 naddy struct tog_blame *blame = &s->blame;
5953 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
5954 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
5955 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
5956 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
5957 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
5958 f4ae6ddb 2022-07-01 thomas int obj_type, fd = -1;
5959 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
5960 a70480e0 2018-06-23 stsp
5961 945f9229 2022-04-16 thomas err = got_object_open_as_commit(&commit, s->repo,
5962 ec242592 2022-04-22 thomas &s->blamed_commit->id);
5963 27d434c2 2018-09-15 stsp if (err)
5964 15a94983 2018-12-23 stsp return err;
5965 f4ae6ddb 2022-07-01 thomas
5966 f4ae6ddb 2022-07-01 thomas fd = got_opentempfd();
5967 f4ae6ddb 2022-07-01 thomas if (fd == -1) {
5968 f4ae6ddb 2022-07-01 thomas err = got_error_from_errno("got_opentempfd");
5969 f4ae6ddb 2022-07-01 thomas goto done;
5970 f4ae6ddb 2022-07-01 thomas }
5971 945f9229 2022-04-16 thomas
5972 945f9229 2022-04-16 thomas err = got_object_id_by_path(&obj_id, s->repo, commit, s->path);
5973 945f9229 2022-04-16 thomas if (err)
5974 945f9229 2022-04-16 thomas goto done;
5975 27d434c2 2018-09-15 stsp
5976 a5388363 2020-12-01 naddy err = got_object_get_type(&obj_type, s->repo, obj_id);
5977 84451b3e 2018-07-10 stsp if (err)
5978 84451b3e 2018-07-10 stsp goto done;
5979 27d434c2 2018-09-15 stsp
5980 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
5981 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5982 84451b3e 2018-07-10 stsp goto done;
5983 84451b3e 2018-07-10 stsp }
5984 a70480e0 2018-06-23 stsp
5985 f4ae6ddb 2022-07-01 thomas err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192, fd);
5986 a70480e0 2018-06-23 stsp if (err)
5987 a70480e0 2018-06-23 stsp goto done;
5988 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
5989 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
5990 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
5991 84451b3e 2018-07-10 stsp goto done;
5992 84451b3e 2018-07-10 stsp }
5993 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
5994 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
5995 1fddf795 2021-01-20 stsp if (err)
5996 1fddf795 2021-01-20 stsp goto done;
5997 1fddf795 2021-01-20 stsp if (blame->nlines == 0) {
5998 1fddf795 2021-01-20 stsp s->blame_complete = 1;
5999 84451b3e 2018-07-10 stsp goto done;
6000 1fddf795 2021-01-20 stsp }
6001 b02560ec 2019-08-19 stsp
6002 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
6003 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
6004 b02560ec 2019-08-19 stsp blame->nlines--;
6005 a70480e0 2018-06-23 stsp
6006 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
6007 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
6008 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
6009 84451b3e 2018-07-10 stsp goto done;
6010 84451b3e 2018-07-10 stsp }
6011 a70480e0 2018-06-23 stsp
6012 7cd52833 2022-06-23 thomas err = got_repo_pack_fds_open(&pack_fds);
6013 bd24772e 2018-07-11 stsp if (err)
6014 bd24772e 2018-07-11 stsp goto done;
6015 7cd52833 2022-06-23 thomas err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL,
6016 7cd52833 2022-06-23 thomas pack_fds);
6017 7cd52833 2022-06-23 thomas if (err)
6018 7cd52833 2022-06-23 thomas goto done;
6019 bd24772e 2018-07-11 stsp
6020 7cd52833 2022-06-23 thomas blame->pack_fds = pack_fds;
6021 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
6022 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
6023 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
6024 ec242592 2022-04-22 thomas blame->cb_args.commit_id = got_object_id_dup(&s->blamed_commit->id);
6025 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
6026 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
6027 245d91c1 2018-07-12 stsp goto done;
6028 245d91c1 2018-07-12 stsp }
6029 a5388363 2020-12-01 naddy blame->cb_args.quit = &s->done;
6030 245d91c1 2018-07-12 stsp
6031 a5388363 2020-12-01 naddy blame->thread_args.path = s->path;
6032 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
6033 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
6034 a5388363 2020-12-01 naddy blame->thread_args.complete = &s->blame_complete;
6035 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
6036 a5388363 2020-12-01 naddy blame->thread_args.cancel_arg = &s->done;
6037 a5388363 2020-12-01 naddy s->blame_complete = 0;
6038 f5a09613 2020-12-13 naddy
6039 f5a09613 2020-12-13 naddy if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
6040 f5a09613 2020-12-13 naddy s->first_displayed_line = 1;
6041 f5a09613 2020-12-13 naddy s->last_displayed_line = view->nlines;
6042 f5a09613 2020-12-13 naddy s->selected_line = 1;
6043 f5a09613 2020-12-13 naddy }
6044 aa61903a 2021-12-31 thomas s->matched_line = 0;
6045 245d91c1 2018-07-12 stsp
6046 245d91c1 2018-07-12 stsp done:
6047 945f9229 2022-04-16 thomas if (commit)
6048 945f9229 2022-04-16 thomas got_object_commit_close(commit);
6049 f4ae6ddb 2022-07-01 thomas if (fd != -1 && close(fd) == -1 && err == NULL)
6050 f4ae6ddb 2022-07-01 thomas err = got_error_from_errno("close");
6051 245d91c1 2018-07-12 stsp if (blob)
6052 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
6053 27d434c2 2018-09-15 stsp free(obj_id);
6054 245d91c1 2018-07-12 stsp if (err)
6055 245d91c1 2018-07-12 stsp stop_blame(blame);
6056 245d91c1 2018-07-12 stsp return err;
6057 245d91c1 2018-07-12 stsp }
6058 245d91c1 2018-07-12 stsp
6059 245d91c1 2018-07-12 stsp static const struct got_error *
6060 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
6061 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6062 245d91c1 2018-07-12 stsp {
6063 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
6064 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6065 dbc6a6b6 2018-07-12 stsp
6066 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->blamed_commits);
6067 245d91c1 2018-07-12 stsp
6068 c4843652 2019-08-12 stsp s->path = strdup(path);
6069 c4843652 2019-08-12 stsp if (s->path == NULL)
6070 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
6071 c4843652 2019-08-12 stsp
6072 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
6073 c4843652 2019-08-12 stsp if (err) {
6074 c4843652 2019-08-12 stsp free(s->path);
6075 7cbe629d 2018-08-04 stsp return err;
6076 c4843652 2019-08-12 stsp }
6077 245d91c1 2018-07-12 stsp
6078 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
6079 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
6080 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
6081 fb2756b9 2018-08-04 stsp s->selected_line = 1;
6082 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
6083 fb2756b9 2018-08-04 stsp s->repo = repo;
6084 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
6085 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
6086 7cbe629d 2018-08-04 stsp
6087 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
6088 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
6089 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
6090 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
6091 11b20872 2019-11-08 stsp if (err)
6092 11b20872 2019-11-08 stsp return err;
6093 11b20872 2019-11-08 stsp }
6094 11b20872 2019-11-08 stsp
6095 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
6096 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
6097 adf4c9e0 2022-07-03 thomas view->reset = reset_blame_view;
6098 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
6099 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
6100 2a7d3cd7 2022-09-17 thomas view->search_setup = search_setup_blame_view;
6101 fc2737d5 2022-09-15 thomas view->search_next = search_next_view_match;
6102 e5a0f69f 2018-08-18 stsp
6103 a5388363 2020-12-01 naddy return run_blame(view);
6104 7cbe629d 2018-08-04 stsp }
6105 7cbe629d 2018-08-04 stsp
6106 e5a0f69f 2018-08-18 stsp static const struct got_error *
6107 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
6108 7cbe629d 2018-08-04 stsp {
6109 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6110 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6111 7cbe629d 2018-08-04 stsp
6112 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
6113 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
6114 e5a0f69f 2018-08-18 stsp
6115 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&s->blamed_commits)) {
6116 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
6117 dbdddfee 2021-06-23 naddy blamed_commit = STAILQ_FIRST(&s->blamed_commits);
6118 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6119 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
6120 7cbe629d 2018-08-04 stsp }
6121 e5a0f69f 2018-08-18 stsp
6122 e5a0f69f 2018-08-18 stsp free(s->path);
6123 11b20872 2019-11-08 stsp free_colors(&s->colors);
6124 e5a0f69f 2018-08-18 stsp return err;
6125 7cbe629d 2018-08-04 stsp }
6126 7cbe629d 2018-08-04 stsp
6127 7cbe629d 2018-08-04 stsp static const struct got_error *
6128 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
6129 6c4c42e0 2019-06-24 stsp {
6130 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
6131 6c4c42e0 2019-06-24 stsp
6132 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
6133 6c4c42e0 2019-06-24 stsp return NULL;
6134 2a7d3cd7 2022-09-17 thomas }
6135 2a7d3cd7 2022-09-17 thomas
6136 2a7d3cd7 2022-09-17 thomas static void
6137 2a7d3cd7 2022-09-17 thomas search_setup_blame_view(struct tog_view *view, FILE **f, off_t **line_offsets,
6138 2a7d3cd7 2022-09-17 thomas size_t *nlines, int **first, int **last, int **match, int **selected)
6139 2a7d3cd7 2022-09-17 thomas {
6140 2a7d3cd7 2022-09-17 thomas struct tog_blame_view_state *s = &view->state.blame;
6141 2a7d3cd7 2022-09-17 thomas
6142 2a7d3cd7 2022-09-17 thomas *f = s->blame.f;
6143 2a7d3cd7 2022-09-17 thomas *nlines = s->blame.nlines;
6144 2a7d3cd7 2022-09-17 thomas *line_offsets = s->blame.line_offsets;
6145 2a7d3cd7 2022-09-17 thomas *match = &s->matched_line;
6146 2a7d3cd7 2022-09-17 thomas *first = &s->first_displayed_line;
6147 2a7d3cd7 2022-09-17 thomas *last = &s->last_displayed_line;
6148 2a7d3cd7 2022-09-17 thomas *selected = &s->selected_line;
6149 6c4c42e0 2019-06-24 stsp }
6150 6c4c42e0 2019-06-24 stsp
6151 6c4c42e0 2019-06-24 stsp static const struct got_error *
6152 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
6153 7cbe629d 2018-08-04 stsp {
6154 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
6155 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
6156 2b380cc8 2018-10-24 stsp int errcode;
6157 2b380cc8 2018-10-24 stsp
6158 89a927a3 2021-09-21 thomas.ad if (s->blame.thread == 0 && !s->blame_complete) {
6159 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
6160 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
6161 2b380cc8 2018-10-24 stsp if (errcode)
6162 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
6163 51fe7530 2019-08-19 stsp
6164 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
6165 2b380cc8 2018-10-24 stsp }
6166 e5a0f69f 2018-08-18 stsp
6167 51fe7530 2019-08-19 stsp if (s->blame_complete)
6168 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
6169 51fe7530 2019-08-19 stsp
6170 4f7c3e5e 2020-12-01 naddy err = draw_blame(view);
6171 e5a0f69f 2018-08-18 stsp
6172 a5d43cac 2022-07-01 thomas view_border(view);
6173 e5a0f69f 2018-08-18 stsp return err;
6174 e5a0f69f 2018-08-18 stsp }
6175 e5a0f69f 2018-08-18 stsp
6176 e5a0f69f 2018-08-18 stsp static const struct got_error *
6177 eaeaa612 2022-07-20 thomas log_annotated_line(struct tog_view **new_view, int begin_y, int begin_x,
6178 eaeaa612 2022-07-20 thomas struct got_repository *repo, struct got_object_id *id)
6179 eaeaa612 2022-07-20 thomas {
6180 eaeaa612 2022-07-20 thomas struct tog_view *log_view;
6181 eaeaa612 2022-07-20 thomas const struct got_error *err = NULL;
6182 eaeaa612 2022-07-20 thomas
6183 eaeaa612 2022-07-20 thomas *new_view = NULL;
6184 eaeaa612 2022-07-20 thomas
6185 eaeaa612 2022-07-20 thomas log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6186 eaeaa612 2022-07-20 thomas if (log_view == NULL)
6187 eaeaa612 2022-07-20 thomas return got_error_from_errno("view_open");
6188 eaeaa612 2022-07-20 thomas
6189 eaeaa612 2022-07-20 thomas err = open_log_view(log_view, id, repo, GOT_REF_HEAD, "", 0);
6190 eaeaa612 2022-07-20 thomas if (err)
6191 eaeaa612 2022-07-20 thomas view_close(log_view);
6192 eaeaa612 2022-07-20 thomas else
6193 eaeaa612 2022-07-20 thomas *new_view = log_view;
6194 eaeaa612 2022-07-20 thomas
6195 eaeaa612 2022-07-20 thomas return err;
6196 eaeaa612 2022-07-20 thomas }
6197 eaeaa612 2022-07-20 thomas
6198 eaeaa612 2022-07-20 thomas static const struct got_error *
6199 e78dc838 2020-12-04 stsp input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
6200 e5a0f69f 2018-08-18 stsp {
6201 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
6202 2a31b33b 2022-07-23 thomas struct tog_view *diff_view;
6203 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
6204 a5d43cac 2022-07-01 thomas int eos, nscroll, begin_y = 0, begin_x = 0;
6205 a5d43cac 2022-07-01 thomas
6206 a5d43cac 2022-07-01 thomas eos = nscroll = view->nlines - 2;
6207 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
6208 a5d43cac 2022-07-01 thomas --eos; /* border */
6209 7cbe629d 2018-08-04 stsp
6210 e5a0f69f 2018-08-18 stsp switch (ch) {
6211 05171be4 2022-06-23 thomas case '0':
6212 05171be4 2022-06-23 thomas view->x = 0;
6213 05171be4 2022-06-23 thomas break;
6214 05171be4 2022-06-23 thomas case '$':
6215 05171be4 2022-06-23 thomas view->x = MAX(view->maxx - view->ncols / 3, 0);
6216 07b0611c 2022-06-23 thomas view->count = 0;
6217 05171be4 2022-06-23 thomas break;
6218 05171be4 2022-06-23 thomas case KEY_RIGHT:
6219 05171be4 2022-06-23 thomas case 'l':
6220 05171be4 2022-06-23 thomas if (view->x + view->ncols / 3 < view->maxx)
6221 05171be4 2022-06-23 thomas view->x += 2; /* move two columns right */
6222 07b0611c 2022-06-23 thomas else
6223 07b0611c 2022-06-23 thomas view->count = 0;
6224 05171be4 2022-06-23 thomas break;
6225 05171be4 2022-06-23 thomas case KEY_LEFT:
6226 05171be4 2022-06-23 thomas case 'h':
6227 05171be4 2022-06-23 thomas view->x -= MIN(view->x, 2); /* move two columns back */
6228 07b0611c 2022-06-23 thomas if (view->x <= 0)
6229 07b0611c 2022-06-23 thomas view->count = 0;
6230 05171be4 2022-06-23 thomas break;
6231 1e37a5c2 2019-05-12 jcs case 'q':
6232 1e37a5c2 2019-05-12 jcs s->done = 1;
6233 4deef56f 2021-09-02 naddy break;
6234 4deef56f 2021-09-02 naddy case 'g':
6235 4deef56f 2021-09-02 naddy case KEY_HOME:
6236 4deef56f 2021-09-02 naddy s->selected_line = 1;
6237 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6238 07b0611c 2022-06-23 thomas view->count = 0;
6239 4deef56f 2021-09-02 naddy break;
6240 4deef56f 2021-09-02 naddy case 'G':
6241 4deef56f 2021-09-02 naddy case KEY_END:
6242 a5d43cac 2022-07-01 thomas if (s->blame.nlines < eos) {
6243 4deef56f 2021-09-02 naddy s->selected_line = s->blame.nlines;
6244 4deef56f 2021-09-02 naddy s->first_displayed_line = 1;
6245 4deef56f 2021-09-02 naddy } else {
6246 a5d43cac 2022-07-01 thomas s->selected_line = eos;
6247 a5d43cac 2022-07-01 thomas s->first_displayed_line = s->blame.nlines - (eos - 1);
6248 4deef56f 2021-09-02 naddy }
6249 07b0611c 2022-06-23 thomas view->count = 0;
6250 1e37a5c2 2019-05-12 jcs break;
6251 1e37a5c2 2019-05-12 jcs case 'k':
6252 1e37a5c2 2019-05-12 jcs case KEY_UP:
6253 f7140bf5 2021-10-17 thomas case CTRL('p'):
6254 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
6255 1e37a5c2 2019-05-12 jcs s->selected_line--;
6256 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
6257 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
6258 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
6259 07b0611c 2022-06-23 thomas else
6260 07b0611c 2022-06-23 thomas view->count = 0;
6261 1e37a5c2 2019-05-12 jcs break;
6262 70f17a53 2022-06-13 thomas case CTRL('u'):
6263 23427b14 2022-06-23 thomas case 'u':
6264 70f17a53 2022-06-13 thomas nscroll /= 2;
6265 70f17a53 2022-06-13 thomas /* FALL THROUGH */
6266 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
6267 ea025d1d 2020-02-22 naddy case CTRL('b'):
6268 1c5e5faa 2022-06-23 thomas case 'b':
6269 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
6270 07b0611c 2022-06-23 thomas if (view->count > 1)
6271 07b0611c 2022-06-23 thomas nscroll += nscroll;
6272 70f17a53 2022-06-13 thomas s->selected_line = MAX(1, s->selected_line - nscroll);
6273 07b0611c 2022-06-23 thomas view->count = 0;
6274 e5a0f69f 2018-08-18 stsp break;
6275 1e37a5c2 2019-05-12 jcs }
6276 70f17a53 2022-06-13 thomas if (s->first_displayed_line > nscroll)
6277 70f17a53 2022-06-13 thomas s->first_displayed_line -= nscroll;
6278 1e37a5c2 2019-05-12 jcs else
6279 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
6280 1e37a5c2 2019-05-12 jcs break;
6281 1e37a5c2 2019-05-12 jcs case 'j':
6282 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
6283 f7140bf5 2021-10-17 thomas case CTRL('n'):
6284 a5d43cac 2022-07-01 thomas if (s->selected_line < eos && s->first_displayed_line +
6285 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
6286 1e37a5c2 2019-05-12 jcs s->selected_line++;
6287 a5d43cac 2022-07-01 thomas else if (s->first_displayed_line < s->blame.nlines - (eos - 1))
6288 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
6289 07b0611c 2022-06-23 thomas else
6290 07b0611c 2022-06-23 thomas view->count = 0;
6291 1e37a5c2 2019-05-12 jcs break;
6292 1c5e5faa 2022-06-23 thomas case 'c':
6293 1e37a5c2 2019-05-12 jcs case 'p': {
6294 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6295 07b0611c 2022-06-23 thomas
6296 07b0611c 2022-06-23 thomas view->count = 0;
6297 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6298 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6299 1e37a5c2 2019-05-12 jcs if (id == NULL)
6300 e5a0f69f 2018-08-18 stsp break;
6301 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
6302 945f9229 2022-04-16 thomas struct got_commit_object *commit, *pcommit;
6303 15a94983 2018-12-23 stsp struct got_object_qid *pid;
6304 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
6305 1e37a5c2 2019-05-12 jcs int obj_type;
6306 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
6307 1e37a5c2 2019-05-12 jcs s->repo, id);
6308 e5a0f69f 2018-08-18 stsp if (err)
6309 e5a0f69f 2018-08-18 stsp break;
6310 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(
6311 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
6312 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
6313 15a94983 2018-12-23 stsp got_object_commit_close(commit);
6314 e5a0f69f 2018-08-18 stsp break;
6315 e5a0f69f 2018-08-18 stsp }
6316 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
6317 945f9229 2022-04-16 thomas err = got_object_open_as_commit(&pcommit,
6318 ec242592 2022-04-22 thomas s->repo, &pid->id);
6319 945f9229 2022-04-16 thomas if (err)
6320 945f9229 2022-04-16 thomas break;
6321 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
6322 945f9229 2022-04-16 thomas pcommit, s->path);
6323 945f9229 2022-04-16 thomas got_object_commit_close(pcommit);
6324 e5a0f69f 2018-08-18 stsp if (err) {
6325 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
6326 1e37a5c2 2019-05-12 jcs err = NULL;
6327 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6328 e5a0f69f 2018-08-18 stsp break;
6329 e5a0f69f 2018-08-18 stsp }
6330 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
6331 1e37a5c2 2019-05-12 jcs blob_id);
6332 1e37a5c2 2019-05-12 jcs free(blob_id);
6333 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
6334 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
6335 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6336 e5a0f69f 2018-08-18 stsp break;
6337 1e37a5c2 2019-05-12 jcs }
6338 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6339 ec242592 2022-04-22 thomas &pid->id);
6340 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6341 1e37a5c2 2019-05-12 jcs } else {
6342 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
6343 ec242592 2022-04-22 thomas &s->blamed_commit->id) == 0)
6344 1e37a5c2 2019-05-12 jcs break;
6345 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
6346 1e37a5c2 2019-05-12 jcs id);
6347 1e37a5c2 2019-05-12 jcs }
6348 1e37a5c2 2019-05-12 jcs if (err)
6349 e5a0f69f 2018-08-18 stsp break;
6350 1e37a5c2 2019-05-12 jcs s->done = 1;
6351 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6352 1e37a5c2 2019-05-12 jcs s->done = 0;
6353 1e37a5c2 2019-05-12 jcs if (thread_err)
6354 1e37a5c2 2019-05-12 jcs break;
6355 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&s->blamed_commits,
6356 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
6357 a5388363 2020-12-01 naddy err = run_blame(view);
6358 1e37a5c2 2019-05-12 jcs if (err)
6359 1e37a5c2 2019-05-12 jcs break;
6360 1e37a5c2 2019-05-12 jcs break;
6361 1e37a5c2 2019-05-12 jcs }
6362 1c5e5faa 2022-06-23 thomas case 'C': {
6363 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
6364 07b0611c 2022-06-23 thomas
6365 07b0611c 2022-06-23 thomas view->count = 0;
6366 dbdddfee 2021-06-23 naddy first = STAILQ_FIRST(&s->blamed_commits);
6367 ec242592 2022-04-22 thomas if (!got_object_id_cmp(&first->id, s->commit_id))
6368 1e37a5c2 2019-05-12 jcs break;
6369 1e37a5c2 2019-05-12 jcs s->done = 1;
6370 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
6371 1e37a5c2 2019-05-12 jcs s->done = 0;
6372 1e37a5c2 2019-05-12 jcs if (thread_err)
6373 1e37a5c2 2019-05-12 jcs break;
6374 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&s->blamed_commits, entry);
6375 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
6376 1e37a5c2 2019-05-12 jcs s->blamed_commit =
6377 dbdddfee 2021-06-23 naddy STAILQ_FIRST(&s->blamed_commits);
6378 a5388363 2020-12-01 naddy err = run_blame(view);
6379 1e37a5c2 2019-05-12 jcs if (err)
6380 1e37a5c2 2019-05-12 jcs break;
6381 1e37a5c2 2019-05-12 jcs break;
6382 1e37a5c2 2019-05-12 jcs }
6383 2a31b33b 2022-07-23 thomas case 'L':
6384 eaeaa612 2022-07-20 thomas view->count = 0;
6385 2a31b33b 2022-07-23 thomas s->id_to_log = get_selected_commit_id(s->blame.lines,
6386 2a31b33b 2022-07-23 thomas s->blame.nlines, s->first_displayed_line, s->selected_line);
6387 2a31b33b 2022-07-23 thomas if (s->id_to_log)
6388 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_LOG);
6389 eaeaa612 2022-07-20 thomas break;
6390 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
6391 1e37a5c2 2019-05-12 jcs case '\r': {
6392 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
6393 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
6394 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
6395 07b0611c 2022-06-23 thomas
6396 07b0611c 2022-06-23 thomas view->count = 0;
6397 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
6398 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
6399 1e37a5c2 2019-05-12 jcs if (id == NULL)
6400 1e37a5c2 2019-05-12 jcs break;
6401 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
6402 1e37a5c2 2019-05-12 jcs if (err)
6403 1e37a5c2 2019-05-12 jcs break;
6404 a5d43cac 2022-07-01 thomas pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
6405 4fc71f3b 2022-07-12 thomas if (*new_view) {
6406 4fc71f3b 2022-07-12 thomas /* traversed from diff view, release diff resources */
6407 4fc71f3b 2022-07-12 thomas err = close_diff_view(*new_view);
6408 4fc71f3b 2022-07-12 thomas if (err)
6409 4fc71f3b 2022-07-12 thomas break;
6410 4fc71f3b 2022-07-12 thomas diff_view = *new_view;
6411 4fc71f3b 2022-07-12 thomas } else {
6412 4fc71f3b 2022-07-12 thomas if (view_is_parent_view(view))
6413 4fc71f3b 2022-07-12 thomas view_get_split(view, &begin_y, &begin_x);
6414 a5d43cac 2022-07-01 thomas
6415 4fc71f3b 2022-07-12 thomas diff_view = view_open(0, 0, begin_y, begin_x,
6416 4fc71f3b 2022-07-12 thomas TOG_VIEW_DIFF);
6417 4fc71f3b 2022-07-12 thomas if (diff_view == NULL) {
6418 4fc71f3b 2022-07-12 thomas got_object_commit_close(commit);
6419 4fc71f3b 2022-07-12 thomas err = got_error_from_errno("view_open");
6420 4fc71f3b 2022-07-12 thomas break;
6421 4fc71f3b 2022-07-12 thomas }
6422 15a94983 2018-12-23 stsp }
6423 ec242592 2022-04-22 thomas err = open_diff_view(diff_view, pid ? &pid->id : NULL,
6424 4fc71f3b 2022-07-12 thomas id, NULL, NULL, 3, 0, 0, view, s->repo);
6425 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
6426 1e37a5c2 2019-05-12 jcs if (err) {
6427 1e37a5c2 2019-05-12 jcs view_close(diff_view);
6428 1e37a5c2 2019-05-12 jcs break;
6429 1e37a5c2 2019-05-12 jcs }
6430 4fc71f3b 2022-07-12 thomas s->last_diffed_line = s->first_displayed_line - 1 +
6431 4fc71f3b 2022-07-12 thomas s->selected_line;
6432 4fc71f3b 2022-07-12 thomas if (*new_view)
6433 4fc71f3b 2022-07-12 thomas break; /* still open from active diff view */
6434 444d5325 2022-07-03 thomas if (view_is_parent_view(view) &&
6435 444d5325 2022-07-03 thomas view->mode == TOG_VIEW_SPLIT_HRZN) {
6436 a5d43cac 2022-07-01 thomas err = view_init_hsplit(view, begin_y);
6437 a5d43cac 2022-07-01 thomas if (err)
6438 a5d43cac 2022-07-01 thomas break;
6439 a5d43cac 2022-07-01 thomas }
6440 a5d43cac 2022-07-01 thomas
6441 e78dc838 2020-12-04 stsp view->focussed = 0;
6442 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
6443 a5d43cac 2022-07-01 thomas diff_view->mode = view->mode;
6444 a5d43cac 2022-07-01 thomas diff_view->nlines = view->lines - begin_y;
6445 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
6446 53d2bdd3 2022-07-10 thomas view_transfer_size(diff_view, view);
6447 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
6448 1e37a5c2 2019-05-12 jcs if (err)
6449 34bc9ec9 2019-02-22 stsp break;
6450 40236d76 2022-06-23 thomas err = view_set_child(view, diff_view);
6451 40236d76 2022-06-23 thomas if (err)
6452 40236d76 2022-06-23 thomas break;
6453 e78dc838 2020-12-04 stsp view->focus_child = 1;
6454 1e37a5c2 2019-05-12 jcs } else
6455 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
6456 1e37a5c2 2019-05-12 jcs if (err)
6457 e5a0f69f 2018-08-18 stsp break;
6458 1e37a5c2 2019-05-12 jcs break;
6459 1e37a5c2 2019-05-12 jcs }
6460 70f17a53 2022-06-13 thomas case CTRL('d'):
6461 23427b14 2022-06-23 thomas case 'd':
6462 70f17a53 2022-06-13 thomas nscroll /= 2;
6463 70f17a53 2022-06-13 thomas /* FALL THROUGH */
6464 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
6465 ea025d1d 2020-02-22 naddy case CTRL('f'):
6466 1c5e5faa 2022-06-23 thomas case 'f':
6467 1e37a5c2 2019-05-12 jcs case ' ':
6468 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6469 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
6470 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
6471 07b0611c 2022-06-23 thomas view->count = 0;
6472 e5a0f69f 2018-08-18 stsp break;
6473 1e37a5c2 2019-05-12 jcs }
6474 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
6475 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
6476 70f17a53 2022-06-13 thomas s->selected_line +=
6477 70f17a53 2022-06-13 thomas MIN(nscroll, s->last_displayed_line -
6478 70f17a53 2022-06-13 thomas s->first_displayed_line - s->selected_line + 1);
6479 1e37a5c2 2019-05-12 jcs }
6480 70f17a53 2022-06-13 thomas if (s->last_displayed_line + nscroll <= s->blame.nlines)
6481 70f17a53 2022-06-13 thomas s->first_displayed_line += nscroll;
6482 1e37a5c2 2019-05-12 jcs else
6483 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
6484 70f17a53 2022-06-13 thomas s->blame.nlines - (view->nlines - 3);
6485 1e37a5c2 2019-05-12 jcs break;
6486 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
6487 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
6488 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
6489 1e37a5c2 2019-05-12 jcs view->nlines - 2);
6490 1e37a5c2 2019-05-12 jcs }
6491 1e37a5c2 2019-05-12 jcs break;
6492 1e37a5c2 2019-05-12 jcs default:
6493 07b0611c 2022-06-23 thomas view->count = 0;
6494 1e37a5c2 2019-05-12 jcs break;
6495 a70480e0 2018-06-23 stsp }
6496 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
6497 adf4c9e0 2022-07-03 thomas }
6498 adf4c9e0 2022-07-03 thomas
6499 adf4c9e0 2022-07-03 thomas static const struct got_error *
6500 adf4c9e0 2022-07-03 thomas reset_blame_view(struct tog_view *view)
6501 adf4c9e0 2022-07-03 thomas {
6502 adf4c9e0 2022-07-03 thomas const struct got_error *err;
6503 adf4c9e0 2022-07-03 thomas struct tog_blame_view_state *s = &view->state.blame;
6504 adf4c9e0 2022-07-03 thomas
6505 adf4c9e0 2022-07-03 thomas view->count = 0;
6506 adf4c9e0 2022-07-03 thomas s->done = 1;
6507 adf4c9e0 2022-07-03 thomas err = stop_blame(&s->blame);
6508 adf4c9e0 2022-07-03 thomas s->done = 0;
6509 adf4c9e0 2022-07-03 thomas if (err)
6510 adf4c9e0 2022-07-03 thomas return err;
6511 adf4c9e0 2022-07-03 thomas return run_blame(view);
6512 a70480e0 2018-06-23 stsp }
6513 a70480e0 2018-06-23 stsp
6514 a70480e0 2018-06-23 stsp static const struct got_error *
6515 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
6516 9f7d7167 2018-04-29 stsp {
6517 a70480e0 2018-06-23 stsp const struct got_error *error;
6518 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
6519 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
6520 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6521 0587e10c 2020-07-23 stsp char *link_target = NULL;
6522 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
6523 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
6524 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
6525 a70480e0 2018-06-23 stsp int ch;
6526 e1cd8fed 2018-08-01 stsp struct tog_view *view;
6527 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
6528 a70480e0 2018-06-23 stsp
6529 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
6530 a70480e0 2018-06-23 stsp switch (ch) {
6531 a70480e0 2018-06-23 stsp case 'c':
6532 a70480e0 2018-06-23 stsp commit_id_str = optarg;
6533 a70480e0 2018-06-23 stsp break;
6534 69069811 2018-08-02 stsp case 'r':
6535 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
6536 69069811 2018-08-02 stsp if (repo_path == NULL)
6537 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6538 9ba1d308 2019-10-21 stsp optarg);
6539 69069811 2018-08-02 stsp break;
6540 a70480e0 2018-06-23 stsp default:
6541 17020d27 2019-03-07 stsp usage_blame();
6542 a70480e0 2018-06-23 stsp /* NOTREACHED */
6543 a70480e0 2018-06-23 stsp }
6544 a70480e0 2018-06-23 stsp }
6545 a70480e0 2018-06-23 stsp
6546 a70480e0 2018-06-23 stsp argc -= optind;
6547 a70480e0 2018-06-23 stsp argv += optind;
6548 a70480e0 2018-06-23 stsp
6549 f135c941 2020-02-20 stsp if (argc != 1)
6550 a70480e0 2018-06-23 stsp usage_blame();
6551 6962eb72 2020-02-20 stsp
6552 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
6553 7cd52833 2022-06-23 thomas if (error != NULL)
6554 7cd52833 2022-06-23 thomas goto done;
6555 7cd52833 2022-06-23 thomas
6556 69069811 2018-08-02 stsp if (repo_path == NULL) {
6557 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
6558 c156c7a4 2020-12-18 stsp if (cwd == NULL)
6559 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
6560 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
6561 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6562 c156c7a4 2020-12-18 stsp goto done;
6563 f135c941 2020-02-20 stsp if (worktree)
6564 eb41ed75 2019-02-05 stsp repo_path =
6565 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
6566 f135c941 2020-02-20 stsp else
6567 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
6568 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
6569 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
6570 c156c7a4 2020-12-18 stsp goto done;
6571 c156c7a4 2020-12-18 stsp }
6572 f135c941 2020-02-20 stsp }
6573 a915003a 2019-02-05 stsp
6574 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
6575 c02c541e 2019-03-29 stsp if (error != NULL)
6576 8e94dd5b 2019-01-04 stsp goto done;
6577 69069811 2018-08-02 stsp
6578 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
6579 f135c941 2020-02-20 stsp worktree);
6580 c02c541e 2019-03-29 stsp if (error)
6581 92205607 2019-01-04 stsp goto done;
6582 69069811 2018-08-02 stsp
6583 f135c941 2020-02-20 stsp init_curses();
6584 f135c941 2020-02-20 stsp
6585 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6586 51a10b52 2020-12-26 stsp if (error)
6587 51a10b52 2020-12-26 stsp goto done;
6588 51a10b52 2020-12-26 stsp
6589 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
6590 eb41ed75 2019-02-05 stsp if (error)
6591 69069811 2018-08-02 stsp goto done;
6592 a70480e0 2018-06-23 stsp
6593 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
6594 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
6595 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
6596 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
6597 a70480e0 2018-06-23 stsp if (error != NULL)
6598 66b4983c 2018-06-23 stsp goto done;
6599 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
6600 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
6601 a70480e0 2018-06-23 stsp } else {
6602 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
6603 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6604 a70480e0 2018-06-23 stsp }
6605 a19e88aa 2018-06-23 stsp if (error != NULL)
6606 8b473291 2019-02-21 stsp goto done;
6607 8b473291 2019-02-21 stsp
6608 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
6609 e1cd8fed 2018-08-01 stsp if (view == NULL) {
6610 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
6611 e1cd8fed 2018-08-01 stsp goto done;
6612 e1cd8fed 2018-08-01 stsp }
6613 0587e10c 2020-07-23 stsp
6614 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
6615 945f9229 2022-04-16 thomas if (error)
6616 945f9229 2022-04-16 thomas goto done;
6617 945f9229 2022-04-16 thomas
6618 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
6619 945f9229 2022-04-16 thomas commit, repo);
6620 7cbe629d 2018-08-04 stsp if (error)
6621 7cbe629d 2018-08-04 stsp goto done;
6622 0587e10c 2020-07-23 stsp
6623 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
6624 78756c87 2020-11-24 stsp commit_id, repo);
6625 0587e10c 2020-07-23 stsp if (error)
6626 0587e10c 2020-07-23 stsp goto done;
6627 12314ad4 2019-08-31 stsp if (worktree) {
6628 12314ad4 2019-08-31 stsp /* Release work tree lock. */
6629 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
6630 12314ad4 2019-08-31 stsp worktree = NULL;
6631 12314ad4 2019-08-31 stsp }
6632 e5a0f69f 2018-08-18 stsp error = view_loop(view);
6633 a70480e0 2018-06-23 stsp done:
6634 69069811 2018-08-02 stsp free(repo_path);
6635 f135c941 2020-02-20 stsp free(in_repo_path);
6636 0587e10c 2020-07-23 stsp free(link_target);
6637 69069811 2018-08-02 stsp free(cwd);
6638 a70480e0 2018-06-23 stsp free(commit_id);
6639 945f9229 2022-04-16 thomas if (commit)
6640 945f9229 2022-04-16 thomas got_object_commit_close(commit);
6641 eb41ed75 2019-02-05 stsp if (worktree)
6642 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
6643 1d0f4054 2021-06-17 stsp if (repo) {
6644 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6645 1d0f4054 2021-06-17 stsp if (error == NULL)
6646 1d0f4054 2021-06-17 stsp error = close_err;
6647 1d0f4054 2021-06-17 stsp }
6648 7cd52833 2022-06-23 thomas if (pack_fds) {
6649 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
6650 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
6651 7cd52833 2022-06-23 thomas if (error == NULL)
6652 7cd52833 2022-06-23 thomas error = pack_err;
6653 7cd52833 2022-06-23 thomas }
6654 51a10b52 2020-12-26 stsp tog_free_refs();
6655 a70480e0 2018-06-23 stsp return error;
6656 ffd1d5e5 2018-06-23 stsp }
6657 ffd1d5e5 2018-06-23 stsp
6658 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6659 d86d3b18 2020-12-01 naddy draw_tree_entries(struct tog_view *view, const char *parent_path)
6660 ffd1d5e5 2018-06-23 stsp {
6661 d86d3b18 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
6662 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6663 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
6664 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
6665 86f4aab9 2022-09-09 thomas char *index = NULL;
6666 f26dddb7 2019-11-08 stsp struct tog_color *tc;
6667 07dd3ed3 2022-08-06 thomas int width, n, nentries, i = 1;
6668 d86d3b18 2020-12-01 naddy int limit = view->nlines;
6669 ffd1d5e5 2018-06-23 stsp
6670 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
6671 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
6672 a5d43cac 2022-07-01 thomas --limit; /* border */
6673 ffd1d5e5 2018-06-23 stsp
6674 f7d12f7e 2018-08-01 stsp werase(view->window);
6675 ffd1d5e5 2018-06-23 stsp
6676 ffd1d5e5 2018-06-23 stsp if (limit == 0)
6677 ffd1d5e5 2018-06-23 stsp return NULL;
6678 ffd1d5e5 2018-06-23 stsp
6679 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, s->tree_label, 0, view->ncols,
6680 f91a2b48 2022-06-23 thomas 0, 0);
6681 ffd1d5e5 2018-06-23 stsp if (err)
6682 ffd1d5e5 2018-06-23 stsp return err;
6683 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6684 a3404814 2018-09-02 stsp wstandout(view->window);
6685 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
6686 11b20872 2019-11-08 stsp if (tc)
6687 86f4aab9 2022-09-09 thomas wattr_on(view->window, COLOR_PAIR(tc->colorpair), NULL);
6688 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6689 86f4aab9 2022-09-09 thomas free(wline);
6690 86f4aab9 2022-09-09 thomas wline = NULL;
6691 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
6692 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
6693 11b20872 2019-11-08 stsp if (tc)
6694 86f4aab9 2022-09-09 thomas wattr_off(view->window, COLOR_PAIR(tc->colorpair), NULL);
6695 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
6696 a3404814 2018-09-02 stsp wstandend(view->window);
6697 86f4aab9 2022-09-09 thomas if (--limit <= 0)
6698 86f4aab9 2022-09-09 thomas return NULL;
6699 07dd3ed3 2022-08-06 thomas
6700 6f5f393a 2022-08-12 thomas i += s->selected;
6701 6f5f393a 2022-08-12 thomas if (s->first_displayed_entry) {
6702 6f5f393a 2022-08-12 thomas i += got_tree_entry_get_index(s->first_displayed_entry);
6703 6f5f393a 2022-08-12 thomas if (s->tree != s->root)
6704 6f5f393a 2022-08-12 thomas ++i; /* account for ".." entry */
6705 07dd3ed3 2022-08-06 thomas }
6706 07dd3ed3 2022-08-06 thomas nentries = got_object_tree_get_nentries(s->tree);
6707 86f4aab9 2022-09-09 thomas if (asprintf(&index, "[%d/%d] %s",
6708 86f4aab9 2022-09-09 thomas i, nentries + (s->tree == s->root ? 0 : 1), parent_path) == -1)
6709 86f4aab9 2022-09-09 thomas return got_error_from_errno("asprintf");
6710 86f4aab9 2022-09-09 thomas err = format_line(&wline, &width, NULL, index, 0, view->ncols, 0, 0);
6711 86f4aab9 2022-09-09 thomas free(index);
6712 ce52c690 2018-06-23 stsp if (err)
6713 ce52c690 2018-06-23 stsp return err;
6714 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6715 2550e4c3 2018-07-13 stsp free(wline);
6716 2550e4c3 2018-07-13 stsp wline = NULL;
6717 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6718 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6719 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6720 ffd1d5e5 2018-06-23 stsp return NULL;
6721 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6722 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
6723 a1eca9bb 2018-06-23 stsp return NULL;
6724 ffd1d5e5 2018-06-23 stsp
6725 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
6726 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
6727 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
6728 0cf4efb1 2018-09-29 stsp if (view->focussed)
6729 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6730 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
6731 ffd1d5e5 2018-06-23 stsp }
6732 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
6733 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
6734 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6735 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6736 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6737 ffd1d5e5 2018-06-23 stsp return NULL;
6738 ffd1d5e5 2018-06-23 stsp n = 1;
6739 ffd1d5e5 2018-06-23 stsp } else {
6740 ffd1d5e5 2018-06-23 stsp n = 0;
6741 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
6742 ffd1d5e5 2018-06-23 stsp }
6743 ffd1d5e5 2018-06-23 stsp
6744 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
6745 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
6746 848d6979 2019-08-12 stsp const char *modestr = "";
6747 56e0773d 2019-11-28 stsp mode_t mode;
6748 1d13200f 2018-07-12 stsp
6749 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
6750 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
6751 56e0773d 2019-11-28 stsp
6752 d86d3b18 2020-12-01 naddy if (s->show_ids) {
6753 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
6754 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
6755 1d13200f 2018-07-12 stsp if (err)
6756 638f9024 2019-05-13 stsp return got_error_from_errno(
6757 230a42bd 2019-05-11 jcs "got_object_id_str");
6758 1d13200f 2018-07-12 stsp }
6759 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
6760 63c5ca5d 2019-08-24 stsp modestr = "$";
6761 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
6762 0d6c6ee3 2020-05-20 stsp int i;
6763 0d6c6ee3 2020-05-20 stsp
6764 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
6765 d86d3b18 2020-12-01 naddy te, s->repo);
6766 0d6c6ee3 2020-05-20 stsp if (err) {
6767 0d6c6ee3 2020-05-20 stsp free(id_str);
6768 0d6c6ee3 2020-05-20 stsp return err;
6769 0d6c6ee3 2020-05-20 stsp }
6770 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
6771 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
6772 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
6773 0d6c6ee3 2020-05-20 stsp }
6774 848d6979 2019-08-12 stsp modestr = "@";
6775 0d6c6ee3 2020-05-20 stsp }
6776 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
6777 848d6979 2019-08-12 stsp modestr = "/";
6778 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
6779 848d6979 2019-08-12 stsp modestr = "*";
6780 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
6781 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
6782 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
6783 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
6784 1d13200f 2018-07-12 stsp free(id_str);
6785 0d6c6ee3 2020-05-20 stsp free(link_target);
6786 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
6787 1d13200f 2018-07-12 stsp }
6788 1d13200f 2018-07-12 stsp free(id_str);
6789 0d6c6ee3 2020-05-20 stsp free(link_target);
6790 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols,
6791 f91a2b48 2022-06-23 thomas 0, 0);
6792 ffd1d5e5 2018-06-23 stsp if (err) {
6793 ffd1d5e5 2018-06-23 stsp free(line);
6794 ffd1d5e5 2018-06-23 stsp break;
6795 ffd1d5e5 2018-06-23 stsp }
6796 d86d3b18 2020-12-01 naddy if (n == s->selected) {
6797 0cf4efb1 2018-09-29 stsp if (view->focussed)
6798 0cf4efb1 2018-09-29 stsp wstandout(view->window);
6799 d86d3b18 2020-12-01 naddy s->selected_entry = te;
6800 ffd1d5e5 2018-06-23 stsp }
6801 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
6802 f26dddb7 2019-11-08 stsp if (tc)
6803 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
6804 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6805 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
6806 f26dddb7 2019-11-08 stsp if (tc)
6807 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
6808 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
6809 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
6810 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
6811 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
6812 f7d12f7e 2018-08-01 stsp wstandend(view->window);
6813 ffd1d5e5 2018-06-23 stsp free(line);
6814 2550e4c3 2018-07-13 stsp free(wline);
6815 2550e4c3 2018-07-13 stsp wline = NULL;
6816 ffd1d5e5 2018-06-23 stsp n++;
6817 d86d3b18 2020-12-01 naddy s->ndisplayed++;
6818 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
6819 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
6820 ffd1d5e5 2018-06-23 stsp break;
6821 ffd1d5e5 2018-06-23 stsp }
6822 ffd1d5e5 2018-06-23 stsp
6823 ffd1d5e5 2018-06-23 stsp return err;
6824 ffd1d5e5 2018-06-23 stsp }
6825 ffd1d5e5 2018-06-23 stsp
6826 ffd1d5e5 2018-06-23 stsp static void
6827 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
6828 ffd1d5e5 2018-06-23 stsp {
6829 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6830 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
6831 fa86c4bf 2020-11-29 stsp int i = 0;
6832 ffd1d5e5 2018-06-23 stsp
6833 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
6834 ffd1d5e5 2018-06-23 stsp return;
6835 ffd1d5e5 2018-06-23 stsp
6836 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
6837 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
6838 fa86c4bf 2020-11-29 stsp if (te == NULL) {
6839 fa86c4bf 2020-11-29 stsp if (!isroot)
6840 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
6841 fa86c4bf 2020-11-29 stsp break;
6842 fa86c4bf 2020-11-29 stsp }
6843 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
6844 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
6845 ffd1d5e5 2018-06-23 stsp }
6846 ffd1d5e5 2018-06-23 stsp }
6847 ffd1d5e5 2018-06-23 stsp
6848 a5d43cac 2022-07-01 thomas static const struct got_error *
6849 a5d43cac 2022-07-01 thomas tree_scroll_down(struct tog_view *view, int maxscroll)
6850 ffd1d5e5 2018-06-23 stsp {
6851 a5d43cac 2022-07-01 thomas struct tog_tree_view_state *s = &view->state.tree;
6852 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
6853 ffd1d5e5 2018-06-23 stsp int n = 0;
6854 ffd1d5e5 2018-06-23 stsp
6855 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
6856 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
6857 694d3271 2020-12-01 naddy s->first_displayed_entry);
6858 694d3271 2020-12-01 naddy else
6859 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
6860 56e0773d 2019-11-28 stsp
6861 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
6862 a5d43cac 2022-07-01 thomas while (next && n++ < maxscroll) {
6863 07dd3ed3 2022-08-06 thomas if (last) {
6864 07dd3ed3 2022-08-06 thomas s->last_displayed_entry = last;
6865 a5d43cac 2022-07-01 thomas last = got_tree_entry_get_next(s->tree, last);
6866 07dd3ed3 2022-08-06 thomas }
6867 a5d43cac 2022-07-01 thomas if (last || (view->mode == TOG_VIEW_SPLIT_HRZN && next)) {
6868 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
6869 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
6870 768394f3 2019-01-24 stsp }
6871 ffd1d5e5 2018-06-23 stsp }
6872 a5d43cac 2022-07-01 thomas
6873 a5d43cac 2022-07-01 thomas return NULL;
6874 ffd1d5e5 2018-06-23 stsp }
6875 ffd1d5e5 2018-06-23 stsp
6876 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6877 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
6878 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
6879 ffd1d5e5 2018-06-23 stsp {
6880 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
6881 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
6882 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
6883 ffd1d5e5 2018-06-23 stsp
6884 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
6885 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
6886 56e0773d 2019-11-28 stsp + 1 /* slash */;
6887 ce52c690 2018-06-23 stsp if (te)
6888 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
6889 ce52c690 2018-06-23 stsp
6890 ce52c690 2018-06-23 stsp *path = calloc(1, len);
6891 ffd1d5e5 2018-06-23 stsp if (path == NULL)
6892 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
6893 ffd1d5e5 2018-06-23 stsp
6894 ce52c690 2018-06-23 stsp (*path)[0] = '/';
6895 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
6896 d9765a41 2018-06-23 stsp while (pt) {
6897 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
6898 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
6899 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6900 cb2ebc8a 2018-06-23 stsp goto done;
6901 cb2ebc8a 2018-06-23 stsp }
6902 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
6903 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6904 cb2ebc8a 2018-06-23 stsp goto done;
6905 cb2ebc8a 2018-06-23 stsp }
6906 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
6907 ffd1d5e5 2018-06-23 stsp }
6908 ce52c690 2018-06-23 stsp if (te) {
6909 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
6910 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
6911 ce52c690 2018-06-23 stsp goto done;
6912 ce52c690 2018-06-23 stsp }
6913 cb2ebc8a 2018-06-23 stsp }
6914 ce52c690 2018-06-23 stsp done:
6915 ce52c690 2018-06-23 stsp if (err) {
6916 ce52c690 2018-06-23 stsp free(*path);
6917 ce52c690 2018-06-23 stsp *path = NULL;
6918 ce52c690 2018-06-23 stsp }
6919 ce52c690 2018-06-23 stsp return err;
6920 ce52c690 2018-06-23 stsp }
6921 ce52c690 2018-06-23 stsp
6922 ce52c690 2018-06-23 stsp static const struct got_error *
6923 a5d43cac 2022-07-01 thomas blame_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6924 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
6925 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6926 ce52c690 2018-06-23 stsp {
6927 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
6928 ce52c690 2018-06-23 stsp char *path;
6929 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
6930 a0de39f3 2019-08-09 stsp
6931 a0de39f3 2019-08-09 stsp *new_view = NULL;
6932 69efd4c4 2018-07-18 stsp
6933 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
6934 ce52c690 2018-06-23 stsp if (err)
6935 ce52c690 2018-06-23 stsp return err;
6936 ffd1d5e5 2018-06-23 stsp
6937 a5d43cac 2022-07-01 thomas blame_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_BLAME);
6938 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
6939 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
6940 83ce39e3 2019-08-12 stsp goto done;
6941 83ce39e3 2019-08-12 stsp }
6942 cdf1ee82 2018-08-01 stsp
6943 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
6944 e5a0f69f 2018-08-18 stsp if (err) {
6945 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
6946 fc06ba56 2019-08-22 stsp err = NULL;
6947 e5a0f69f 2018-08-18 stsp view_close(blame_view);
6948 e5a0f69f 2018-08-18 stsp } else
6949 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
6950 83ce39e3 2019-08-12 stsp done:
6951 83ce39e3 2019-08-12 stsp free(path);
6952 69efd4c4 2018-07-18 stsp return err;
6953 69efd4c4 2018-07-18 stsp }
6954 69efd4c4 2018-07-18 stsp
6955 69efd4c4 2018-07-18 stsp static const struct got_error *
6956 444d5325 2022-07-03 thomas log_selected_tree_entry(struct tog_view **new_view, int begin_y, int begin_x,
6957 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
6958 69efd4c4 2018-07-18 stsp {
6959 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
6960 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
6961 69efd4c4 2018-07-18 stsp char *path;
6962 a0de39f3 2019-08-09 stsp
6963 a0de39f3 2019-08-09 stsp *new_view = NULL;
6964 69efd4c4 2018-07-18 stsp
6965 444d5325 2022-07-03 thomas log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
6966 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
6967 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
6968 e5a0f69f 2018-08-18 stsp
6969 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
6970 69efd4c4 2018-07-18 stsp if (err)
6971 69efd4c4 2018-07-18 stsp return err;
6972 69efd4c4 2018-07-18 stsp
6973 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
6974 4e97c21c 2020-12-06 stsp path, 0);
6975 ba4f502b 2018-08-04 stsp if (err)
6976 e5a0f69f 2018-08-18 stsp view_close(log_view);
6977 e5a0f69f 2018-08-18 stsp else
6978 e5a0f69f 2018-08-18 stsp *new_view = log_view;
6979 cb2ebc8a 2018-06-23 stsp free(path);
6980 cb2ebc8a 2018-06-23 stsp return err;
6981 ffd1d5e5 2018-06-23 stsp }
6982 ffd1d5e5 2018-06-23 stsp
6983 ffd1d5e5 2018-06-23 stsp static const struct got_error *
6984 bc573f3b 2021-07-10 stsp open_tree_view(struct tog_view *view, struct got_object_id *commit_id,
6985 bc573f3b 2021-07-10 stsp const char *head_ref_name, struct got_repository *repo)
6986 ffd1d5e5 2018-06-23 stsp {
6987 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
6988 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
6989 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
6990 bc573f3b 2021-07-10 stsp struct got_commit_object *commit = NULL;
6991 ffd1d5e5 2018-06-23 stsp
6992 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
6993 bc573f3b 2021-07-10 stsp STAILQ_INIT(&s->colors);
6994 bc573f3b 2021-07-10 stsp
6995 bc573f3b 2021-07-10 stsp s->commit_id = got_object_id_dup(commit_id);
6996 bc573f3b 2021-07-10 stsp if (s->commit_id == NULL)
6997 bc573f3b 2021-07-10 stsp return got_error_from_errno("got_object_id_dup");
6998 ffd1d5e5 2018-06-23 stsp
6999 bc573f3b 2021-07-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
7000 bc573f3b 2021-07-10 stsp if (err)
7001 bc573f3b 2021-07-10 stsp goto done;
7002 bc573f3b 2021-07-10 stsp
7003 bc573f3b 2021-07-10 stsp /*
7004 bc573f3b 2021-07-10 stsp * The root is opened here and will be closed when the view is closed.
7005 bc573f3b 2021-07-10 stsp * Any visited subtrees and their path-wise parents are opened and
7006 bc573f3b 2021-07-10 stsp * closed on demand.
7007 bc573f3b 2021-07-10 stsp */
7008 bc573f3b 2021-07-10 stsp err = got_object_open_as_tree(&s->root, repo,
7009 bc573f3b 2021-07-10 stsp got_object_commit_get_tree_id(commit));
7010 bc573f3b 2021-07-10 stsp if (err)
7011 bc573f3b 2021-07-10 stsp goto done;
7012 bc573f3b 2021-07-10 stsp s->tree = s->root;
7013 bc573f3b 2021-07-10 stsp
7014 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
7015 ffd1d5e5 2018-06-23 stsp if (err != NULL)
7016 ffd1d5e5 2018-06-23 stsp goto done;
7017 ffd1d5e5 2018-06-23 stsp
7018 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
7019 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
7020 ffd1d5e5 2018-06-23 stsp goto done;
7021 ffd1d5e5 2018-06-23 stsp }
7022 ffd1d5e5 2018-06-23 stsp
7023 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
7024 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
7025 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
7026 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
7027 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
7028 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
7029 9cd7cbd1 2020-12-07 stsp goto done;
7030 9cd7cbd1 2020-12-07 stsp }
7031 9cd7cbd1 2020-12-07 stsp }
7032 fb2756b9 2018-08-04 stsp s->repo = repo;
7033 c0b01bdb 2019-11-08 stsp
7034 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7035 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
7036 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
7037 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
7038 c0b01bdb 2019-11-08 stsp if (err)
7039 c0b01bdb 2019-11-08 stsp goto done;
7040 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
7041 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
7042 bc573f3b 2021-07-10 stsp if (err)
7043 c0b01bdb 2019-11-08 stsp goto done;
7044 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
7045 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
7046 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
7047 bc573f3b 2021-07-10 stsp if (err)
7048 c0b01bdb 2019-11-08 stsp goto done;
7049 e5a0f69f 2018-08-18 stsp
7050 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
7051 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
7052 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
7053 bc573f3b 2021-07-10 stsp if (err)
7054 11b20872 2019-11-08 stsp goto done;
7055 11b20872 2019-11-08 stsp
7056 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
7057 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
7058 bc573f3b 2021-07-10 stsp if (err)
7059 c0b01bdb 2019-11-08 stsp goto done;
7060 c0b01bdb 2019-11-08 stsp }
7061 c0b01bdb 2019-11-08 stsp
7062 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
7063 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
7064 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
7065 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
7066 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
7067 ad80ab7b 2018-08-04 stsp done:
7068 ad80ab7b 2018-08-04 stsp free(commit_id_str);
7069 bc573f3b 2021-07-10 stsp if (commit)
7070 bc573f3b 2021-07-10 stsp got_object_commit_close(commit);
7071 bc573f3b 2021-07-10 stsp if (err)
7072 bc573f3b 2021-07-10 stsp close_tree_view(view);
7073 ad80ab7b 2018-08-04 stsp return err;
7074 ad80ab7b 2018-08-04 stsp }
7075 ad80ab7b 2018-08-04 stsp
7076 e5a0f69f 2018-08-18 stsp static const struct got_error *
7077 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
7078 ad80ab7b 2018-08-04 stsp {
7079 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7080 ad80ab7b 2018-08-04 stsp
7081 bddb1296 2019-11-08 stsp free_colors(&s->colors);
7082 fb2756b9 2018-08-04 stsp free(s->tree_label);
7083 6484ec90 2018-09-29 stsp s->tree_label = NULL;
7084 6484ec90 2018-09-29 stsp free(s->commit_id);
7085 6484ec90 2018-09-29 stsp s->commit_id = NULL;
7086 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
7087 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
7088 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
7089 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
7090 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
7091 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
7092 bc573f3b 2021-07-10 stsp if (parent->tree != s->root)
7093 bc573f3b 2021-07-10 stsp got_object_tree_close(parent->tree);
7094 ad80ab7b 2018-08-04 stsp free(parent);
7095 ad80ab7b 2018-08-04 stsp
7096 ad80ab7b 2018-08-04 stsp }
7097 bc573f3b 2021-07-10 stsp if (s->tree != NULL && s->tree != s->root)
7098 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
7099 bc573f3b 2021-07-10 stsp if (s->root)
7100 bc573f3b 2021-07-10 stsp got_object_tree_close(s->root);
7101 7c32bd05 2019-06-22 stsp return NULL;
7102 7c32bd05 2019-06-22 stsp }
7103 7c32bd05 2019-06-22 stsp
7104 7c32bd05 2019-06-22 stsp static const struct got_error *
7105 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
7106 7c32bd05 2019-06-22 stsp {
7107 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7108 7c32bd05 2019-06-22 stsp
7109 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
7110 7c32bd05 2019-06-22 stsp return NULL;
7111 7c32bd05 2019-06-22 stsp }
7112 7c32bd05 2019-06-22 stsp
7113 7c32bd05 2019-06-22 stsp static int
7114 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
7115 7c32bd05 2019-06-22 stsp {
7116 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
7117 7c32bd05 2019-06-22 stsp
7118 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
7119 56e0773d 2019-11-28 stsp 0) == 0;
7120 7c32bd05 2019-06-22 stsp }
7121 7c32bd05 2019-06-22 stsp
7122 7c32bd05 2019-06-22 stsp static const struct got_error *
7123 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
7124 7c32bd05 2019-06-22 stsp {
7125 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
7126 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
7127 7c32bd05 2019-06-22 stsp
7128 7c32bd05 2019-06-22 stsp if (!view->searching) {
7129 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7130 7c32bd05 2019-06-22 stsp return NULL;
7131 7c32bd05 2019-06-22 stsp }
7132 7c32bd05 2019-06-22 stsp
7133 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7134 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7135 7c32bd05 2019-06-22 stsp if (s->selected_entry)
7136 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
7137 56e0773d 2019-11-28 stsp s->selected_entry);
7138 7c32bd05 2019-06-22 stsp else
7139 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7140 56e0773d 2019-11-28 stsp } else {
7141 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
7142 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7143 56e0773d 2019-11-28 stsp else
7144 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
7145 56e0773d 2019-11-28 stsp s->selected_entry);
7146 7c32bd05 2019-06-22 stsp }
7147 7c32bd05 2019-06-22 stsp } else {
7148 4b3f9dac 2021-12-17 thomas if (s->selected_entry)
7149 4b3f9dac 2021-12-17 thomas te = s->selected_entry;
7150 4b3f9dac 2021-12-17 thomas else if (view->searching == TOG_SEARCH_FORWARD)
7151 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7152 56e0773d 2019-11-28 stsp else
7153 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7154 7c32bd05 2019-06-22 stsp }
7155 7c32bd05 2019-06-22 stsp
7156 7c32bd05 2019-06-22 stsp while (1) {
7157 56e0773d 2019-11-28 stsp if (te == NULL) {
7158 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
7159 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7160 ac66afb8 2019-06-24 stsp return NULL;
7161 ac66afb8 2019-06-24 stsp }
7162 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7163 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
7164 56e0773d 2019-11-28 stsp else
7165 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
7166 7c32bd05 2019-06-22 stsp }
7167 7c32bd05 2019-06-22 stsp
7168 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
7169 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7170 56e0773d 2019-11-28 stsp s->matched_entry = te;
7171 7c32bd05 2019-06-22 stsp break;
7172 7c32bd05 2019-06-22 stsp }
7173 7c32bd05 2019-06-22 stsp
7174 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
7175 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
7176 56e0773d 2019-11-28 stsp else
7177 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
7178 7c32bd05 2019-06-22 stsp }
7179 e5a0f69f 2018-08-18 stsp
7180 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
7181 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
7182 7c32bd05 2019-06-22 stsp s->selected = 0;
7183 7c32bd05 2019-06-22 stsp }
7184 7c32bd05 2019-06-22 stsp
7185 e5a0f69f 2018-08-18 stsp return NULL;
7186 ad80ab7b 2018-08-04 stsp }
7187 ad80ab7b 2018-08-04 stsp
7188 ad80ab7b 2018-08-04 stsp static const struct got_error *
7189 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
7190 ad80ab7b 2018-08-04 stsp {
7191 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
7192 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
7193 e5a0f69f 2018-08-18 stsp char *parent_path;
7194 ad80ab7b 2018-08-04 stsp
7195 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
7196 e5a0f69f 2018-08-18 stsp if (err)
7197 e5a0f69f 2018-08-18 stsp return err;
7198 ffd1d5e5 2018-06-23 stsp
7199 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
7200 e5a0f69f 2018-08-18 stsp free(parent_path);
7201 669b5ffa 2018-10-07 stsp
7202 a5d43cac 2022-07-01 thomas view_border(view);
7203 e5a0f69f 2018-08-18 stsp return err;
7204 07dd3ed3 2022-08-06 thomas }
7205 07dd3ed3 2022-08-06 thomas
7206 07dd3ed3 2022-08-06 thomas static const struct got_error *
7207 07dd3ed3 2022-08-06 thomas tree_goto_line(struct tog_view *view, int nlines)
7208 07dd3ed3 2022-08-06 thomas {
7209 07dd3ed3 2022-08-06 thomas const struct got_error *err = NULL;
7210 07dd3ed3 2022-08-06 thomas struct tog_tree_view_state *s = &view->state.tree;
7211 07dd3ed3 2022-08-06 thomas struct got_tree_entry **fte, **lte, **ste;
7212 07dd3ed3 2022-08-06 thomas int g, last, first = 1, i = 1;
7213 07dd3ed3 2022-08-06 thomas int root = s->tree == s->root;
7214 07dd3ed3 2022-08-06 thomas int off = root ? 1 : 2;
7215 07dd3ed3 2022-08-06 thomas
7216 07dd3ed3 2022-08-06 thomas g = view->gline;
7217 07dd3ed3 2022-08-06 thomas view->gline = 0;
7218 07dd3ed3 2022-08-06 thomas
7219 07dd3ed3 2022-08-06 thomas if (g == 0)
7220 07dd3ed3 2022-08-06 thomas g = 1;
7221 07dd3ed3 2022-08-06 thomas else if (g > got_object_tree_get_nentries(s->tree))
7222 07dd3ed3 2022-08-06 thomas g = got_object_tree_get_nentries(s->tree) + (root ? 0 : 1);
7223 07dd3ed3 2022-08-06 thomas
7224 07dd3ed3 2022-08-06 thomas fte = &s->first_displayed_entry;
7225 07dd3ed3 2022-08-06 thomas lte = &s->last_displayed_entry;
7226 07dd3ed3 2022-08-06 thomas ste = &s->selected_entry;
7227 07dd3ed3 2022-08-06 thomas
7228 07dd3ed3 2022-08-06 thomas if (*fte != NULL) {
7229 07dd3ed3 2022-08-06 thomas first = got_tree_entry_get_index(*fte);
7230 07dd3ed3 2022-08-06 thomas first += off; /* account for ".." */
7231 07dd3ed3 2022-08-06 thomas }
7232 07dd3ed3 2022-08-06 thomas last = got_tree_entry_get_index(*lte);
7233 07dd3ed3 2022-08-06 thomas last += off;
7234 07dd3ed3 2022-08-06 thomas
7235 07dd3ed3 2022-08-06 thomas if (g >= first && g <= last && g - first < nlines) {
7236 07dd3ed3 2022-08-06 thomas s->selected = g - first;
7237 07dd3ed3 2022-08-06 thomas return NULL; /* gline is on the current page */
7238 07dd3ed3 2022-08-06 thomas }
7239 07dd3ed3 2022-08-06 thomas
7240 07dd3ed3 2022-08-06 thomas if (*ste != NULL) {
7241 07dd3ed3 2022-08-06 thomas i = got_tree_entry_get_index(*ste);
7242 07dd3ed3 2022-08-06 thomas i += off;
7243 07dd3ed3 2022-08-06 thomas }
7244 07dd3ed3 2022-08-06 thomas
7245 07dd3ed3 2022-08-06 thomas if (i < g) {
7246 07dd3ed3 2022-08-06 thomas err = tree_scroll_down(view, g - i);
7247 07dd3ed3 2022-08-06 thomas if (err)
7248 07dd3ed3 2022-08-06 thomas return err;
7249 07dd3ed3 2022-08-06 thomas if (got_tree_entry_get_index(*lte) >=
7250 07dd3ed3 2022-08-06 thomas got_object_tree_get_nentries(s->tree) - 1 &&
7251 07dd3ed3 2022-08-06 thomas first + s->selected < g &&
7252 07dd3ed3 2022-08-06 thomas s->selected < s->ndisplayed - 1) {
7253 07dd3ed3 2022-08-06 thomas first = got_tree_entry_get_index(*fte);
7254 07dd3ed3 2022-08-06 thomas first += off;
7255 07dd3ed3 2022-08-06 thomas s->selected = g - first;
7256 07dd3ed3 2022-08-06 thomas }
7257 07dd3ed3 2022-08-06 thomas } else if (i > g)
7258 07dd3ed3 2022-08-06 thomas tree_scroll_up(s, i - g);
7259 07dd3ed3 2022-08-06 thomas
7260 07dd3ed3 2022-08-06 thomas if (g < nlines &&
7261 07dd3ed3 2022-08-06 thomas (*fte == NULL || (root && !got_tree_entry_get_index(*fte))))
7262 07dd3ed3 2022-08-06 thomas s->selected = g - 1;
7263 07dd3ed3 2022-08-06 thomas
7264 07dd3ed3 2022-08-06 thomas return NULL;
7265 e5a0f69f 2018-08-18 stsp }
7266 ce52c690 2018-06-23 stsp
7267 e5a0f69f 2018-08-18 stsp static const struct got_error *
7268 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
7269 e5a0f69f 2018-08-18 stsp {
7270 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
7271 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
7272 e4526bf5 2021-09-03 naddy struct got_tree_entry *te;
7273 2a31b33b 2022-07-23 thomas int n, nscroll = view->nlines - 3;
7274 ffd1d5e5 2018-06-23 stsp
7275 07dd3ed3 2022-08-06 thomas if (view->gline)
7276 07dd3ed3 2022-08-06 thomas return tree_goto_line(view, nscroll);
7277 07dd3ed3 2022-08-06 thomas
7278 e5a0f69f 2018-08-18 stsp switch (ch) {
7279 1e37a5c2 2019-05-12 jcs case 'i':
7280 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
7281 07b0611c 2022-06-23 thomas view->count = 0;
7282 1e37a5c2 2019-05-12 jcs break;
7283 1be4947a 2022-07-22 thomas case 'L':
7284 07b0611c 2022-06-23 thomas view->count = 0;
7285 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
7286 ffd1d5e5 2018-06-23 stsp break;
7287 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_LOG);
7288 152c1c93 2020-11-29 stsp break;
7289 1be4947a 2022-07-22 thomas case 'R':
7290 07b0611c 2022-06-23 thomas view->count = 0;
7291 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_REF);
7292 e4526bf5 2021-09-03 naddy break;
7293 e4526bf5 2021-09-03 naddy case 'g':
7294 e4526bf5 2021-09-03 naddy case KEY_HOME:
7295 e4526bf5 2021-09-03 naddy s->selected = 0;
7296 07b0611c 2022-06-23 thomas view->count = 0;
7297 e4526bf5 2021-09-03 naddy if (s->tree == s->root)
7298 e4526bf5 2021-09-03 naddy s->first_displayed_entry =
7299 e4526bf5 2021-09-03 naddy got_object_tree_get_first_entry(s->tree);
7300 e4526bf5 2021-09-03 naddy else
7301 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7302 1e37a5c2 2019-05-12 jcs break;
7303 e4526bf5 2021-09-03 naddy case 'G':
7304 a5d43cac 2022-07-01 thomas case KEY_END: {
7305 a5d43cac 2022-07-01 thomas int eos = view->nlines - 3;
7306 a5d43cac 2022-07-01 thomas
7307 a5d43cac 2022-07-01 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN)
7308 a5d43cac 2022-07-01 thomas --eos; /* border */
7309 e4526bf5 2021-09-03 naddy s->selected = 0;
7310 07b0611c 2022-06-23 thomas view->count = 0;
7311 e4526bf5 2021-09-03 naddy te = got_object_tree_get_last_entry(s->tree);
7312 a5d43cac 2022-07-01 thomas for (n = 0; n < eos; n++) {
7313 e4526bf5 2021-09-03 naddy if (te == NULL) {
7314 47f5fcf4 2022-07-16 thomas if (s->tree != s->root) {
7315 e4526bf5 2021-09-03 naddy s->first_displayed_entry = NULL;
7316 e4526bf5 2021-09-03 naddy n++;
7317 e4526bf5 2021-09-03 naddy }
7318 e4526bf5 2021-09-03 naddy break;
7319 e4526bf5 2021-09-03 naddy }
7320 e4526bf5 2021-09-03 naddy s->first_displayed_entry = te;
7321 e4526bf5 2021-09-03 naddy te = got_tree_entry_get_prev(s->tree, te);
7322 e4526bf5 2021-09-03 naddy }
7323 e4526bf5 2021-09-03 naddy if (n > 0)
7324 e4526bf5 2021-09-03 naddy s->selected = n - 1;
7325 e4526bf5 2021-09-03 naddy break;
7326 a5d43cac 2022-07-01 thomas }
7327 1e37a5c2 2019-05-12 jcs case 'k':
7328 1e37a5c2 2019-05-12 jcs case KEY_UP:
7329 f7140bf5 2021-10-17 thomas case CTRL('p'):
7330 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
7331 1e37a5c2 2019-05-12 jcs s->selected--;
7332 fa86c4bf 2020-11-29 stsp break;
7333 1e37a5c2 2019-05-12 jcs }
7334 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
7335 07b0611c 2022-06-23 thomas if (s->selected_entry == NULL ||
7336 07b0611c 2022-06-23 thomas (s->tree == s->root && s->selected_entry ==
7337 07b0611c 2022-06-23 thomas got_object_tree_get_first_entry(s->tree)))
7338 07b0611c 2022-06-23 thomas view->count = 0;
7339 1e37a5c2 2019-05-12 jcs break;
7340 70f17a53 2022-06-13 thomas case CTRL('u'):
7341 23427b14 2022-06-23 thomas case 'u':
7342 70f17a53 2022-06-13 thomas nscroll /= 2;
7343 70f17a53 2022-06-13 thomas /* FALL THROUGH */
7344 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
7345 ea025d1d 2020-02-22 naddy case CTRL('b'):
7346 1c5e5faa 2022-06-23 thomas case 'b':
7347 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
7348 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
7349 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
7350 70f17a53 2022-06-13 thomas s->selected -= MIN(s->selected, nscroll);
7351 fa86c4bf 2020-11-29 stsp } else {
7352 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
7353 70f17a53 2022-06-13 thomas s->selected -= MIN(s->selected, nscroll);
7354 fa86c4bf 2020-11-29 stsp }
7355 70f17a53 2022-06-13 thomas tree_scroll_up(s, MAX(0, nscroll));
7356 07b0611c 2022-06-23 thomas if (s->selected_entry == NULL ||
7357 07b0611c 2022-06-23 thomas (s->tree == s->root && s->selected_entry ==
7358 07b0611c 2022-06-23 thomas got_object_tree_get_first_entry(s->tree)))
7359 07b0611c 2022-06-23 thomas view->count = 0;
7360 1e37a5c2 2019-05-12 jcs break;
7361 1e37a5c2 2019-05-12 jcs case 'j':
7362 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
7363 f7140bf5 2021-10-17 thomas case CTRL('n'):
7364 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
7365 1e37a5c2 2019-05-12 jcs s->selected++;
7366 1e37a5c2 2019-05-12 jcs break;
7367 1e37a5c2 2019-05-12 jcs }
7368 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7369 07b0611c 2022-06-23 thomas == NULL) {
7370 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
7371 07b0611c 2022-06-23 thomas view->count = 0;
7372 1e37a5c2 2019-05-12 jcs break;
7373 07b0611c 2022-06-23 thomas }
7374 a5d43cac 2022-07-01 thomas tree_scroll_down(view, 1);
7375 1e37a5c2 2019-05-12 jcs break;
7376 70f17a53 2022-06-13 thomas case CTRL('d'):
7377 23427b14 2022-06-23 thomas case 'd':
7378 70f17a53 2022-06-13 thomas nscroll /= 2;
7379 70f17a53 2022-06-13 thomas /* FALL THROUGH */
7380 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
7381 ea025d1d 2020-02-22 naddy case CTRL('f'):
7382 1c5e5faa 2022-06-23 thomas case 'f':
7383 4c2d69cb 2022-06-23 thomas case ' ':
7384 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
7385 1e37a5c2 2019-05-12 jcs == NULL) {
7386 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
7387 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
7388 70f17a53 2022-06-13 thomas s->selected += MIN(nscroll,
7389 70f17a53 2022-06-13 thomas s->ndisplayed - s->selected - 1);
7390 07b0611c 2022-06-23 thomas else
7391 07b0611c 2022-06-23 thomas view->count = 0;
7392 1e37a5c2 2019-05-12 jcs break;
7393 1e37a5c2 2019-05-12 jcs }
7394 a5d43cac 2022-07-01 thomas tree_scroll_down(view, nscroll);
7395 1e37a5c2 2019-05-12 jcs break;
7396 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
7397 1e37a5c2 2019-05-12 jcs case '\r':
7398 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
7399 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
7400 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
7401 1e37a5c2 2019-05-12 jcs /* user selected '..' */
7402 07b0611c 2022-06-23 thomas if (s->tree == s->root) {
7403 07b0611c 2022-06-23 thomas view->count = 0;
7404 1e37a5c2 2019-05-12 jcs break;
7405 07b0611c 2022-06-23 thomas }
7406 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
7407 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
7408 1e37a5c2 2019-05-12 jcs entry);
7409 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
7410 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
7411 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
7412 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
7413 1e37a5c2 2019-05-12 jcs s->selected_entry =
7414 1e37a5c2 2019-05-12 jcs parent->selected_entry;
7415 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
7416 a5d43cac 2022-07-01 thomas if (s->selected > view->nlines - 3) {
7417 a5d43cac 2022-07-01 thomas err = offset_selection_down(view);
7418 a5d43cac 2022-07-01 thomas if (err)
7419 a5d43cac 2022-07-01 thomas break;
7420 a5d43cac 2022-07-01 thomas }
7421 1e37a5c2 2019-05-12 jcs free(parent);
7422 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
7423 56e0773d 2019-11-28 stsp s->selected_entry))) {
7424 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
7425 07b0611c 2022-06-23 thomas view->count = 0;
7426 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
7427 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
7428 1e37a5c2 2019-05-12 jcs if (err)
7429 1e37a5c2 2019-05-12 jcs break;
7430 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
7431 941e9f74 2019-05-21 stsp if (err) {
7432 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
7433 1e37a5c2 2019-05-12 jcs break;
7434 1e37a5c2 2019-05-12 jcs }
7435 2a31b33b 2022-07-23 thomas } else if (S_ISREG(got_tree_entry_get_mode(s->selected_entry)))
7436 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_BLAME);
7437 1e37a5c2 2019-05-12 jcs break;
7438 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
7439 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
7440 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
7441 07b0611c 2022-06-23 thomas view->count = 0;
7442 1e37a5c2 2019-05-12 jcs break;
7443 1e37a5c2 2019-05-12 jcs default:
7444 07b0611c 2022-06-23 thomas view->count = 0;
7445 1e37a5c2 2019-05-12 jcs break;
7446 ffd1d5e5 2018-06-23 stsp }
7447 e5a0f69f 2018-08-18 stsp
7448 ffd1d5e5 2018-06-23 stsp return err;
7449 9f7d7167 2018-04-29 stsp }
7450 9f7d7167 2018-04-29 stsp
7451 ffd1d5e5 2018-06-23 stsp __dead static void
7452 ffd1d5e5 2018-06-23 stsp usage_tree(void)
7453 ffd1d5e5 2018-06-23 stsp {
7454 ffd1d5e5 2018-06-23 stsp endwin();
7455 91198554 2022-06-23 thomas fprintf(stderr,
7456 91198554 2022-06-23 thomas "usage: %s tree [-c commit] [-r repository-path] [path]\n",
7457 ffd1d5e5 2018-06-23 stsp getprogname());
7458 ffd1d5e5 2018-06-23 stsp exit(1);
7459 ffd1d5e5 2018-06-23 stsp }
7460 ffd1d5e5 2018-06-23 stsp
7461 ffd1d5e5 2018-06-23 stsp static const struct got_error *
7462 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
7463 ffd1d5e5 2018-06-23 stsp {
7464 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
7465 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
7466 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
7467 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
7468 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
7469 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
7470 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
7471 4e97c21c 2020-12-06 stsp char *label = NULL;
7472 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
7473 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
7474 ffd1d5e5 2018-06-23 stsp int ch;
7475 5221c383 2018-08-01 stsp struct tog_view *view;
7476 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
7477 70ac5f84 2019-03-28 stsp
7478 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
7479 ffd1d5e5 2018-06-23 stsp switch (ch) {
7480 ffd1d5e5 2018-06-23 stsp case 'c':
7481 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
7482 74283ab8 2020-02-07 stsp break;
7483 74283ab8 2020-02-07 stsp case 'r':
7484 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
7485 74283ab8 2020-02-07 stsp if (repo_path == NULL)
7486 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
7487 74283ab8 2020-02-07 stsp optarg);
7488 ffd1d5e5 2018-06-23 stsp break;
7489 ffd1d5e5 2018-06-23 stsp default:
7490 e99e2d15 2020-11-24 naddy usage_tree();
7491 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
7492 ffd1d5e5 2018-06-23 stsp }
7493 ffd1d5e5 2018-06-23 stsp }
7494 ffd1d5e5 2018-06-23 stsp
7495 ffd1d5e5 2018-06-23 stsp argc -= optind;
7496 ffd1d5e5 2018-06-23 stsp argv += optind;
7497 ffd1d5e5 2018-06-23 stsp
7498 55cccc34 2020-02-20 stsp if (argc > 1)
7499 e99e2d15 2020-11-24 naddy usage_tree();
7500 7cd52833 2022-06-23 thomas
7501 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
7502 7cd52833 2022-06-23 thomas if (error != NULL)
7503 7cd52833 2022-06-23 thomas goto done;
7504 74283ab8 2020-02-07 stsp
7505 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
7506 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
7507 c156c7a4 2020-12-18 stsp if (cwd == NULL)
7508 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
7509 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
7510 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7511 c156c7a4 2020-12-18 stsp goto done;
7512 55cccc34 2020-02-20 stsp if (worktree)
7513 52185f70 2019-02-05 stsp repo_path =
7514 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
7515 55cccc34 2020-02-20 stsp else
7516 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
7517 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
7518 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
7519 c156c7a4 2020-12-18 stsp goto done;
7520 c156c7a4 2020-12-18 stsp }
7521 55cccc34 2020-02-20 stsp }
7522 a915003a 2019-02-05 stsp
7523 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
7524 c02c541e 2019-03-29 stsp if (error != NULL)
7525 52185f70 2019-02-05 stsp goto done;
7526 d188b9a6 2019-01-04 stsp
7527 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
7528 55cccc34 2020-02-20 stsp repo, worktree);
7529 55cccc34 2020-02-20 stsp if (error)
7530 55cccc34 2020-02-20 stsp goto done;
7531 55cccc34 2020-02-20 stsp
7532 55cccc34 2020-02-20 stsp init_curses();
7533 55cccc34 2020-02-20 stsp
7534 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
7535 c02c541e 2019-03-29 stsp if (error)
7536 52185f70 2019-02-05 stsp goto done;
7537 ffd1d5e5 2018-06-23 stsp
7538 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
7539 51a10b52 2020-12-26 stsp if (error)
7540 51a10b52 2020-12-26 stsp goto done;
7541 51a10b52 2020-12-26 stsp
7542 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
7543 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
7544 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
7545 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7546 4e97c21c 2020-12-06 stsp if (error)
7547 4e97c21c 2020-12-06 stsp goto done;
7548 4e97c21c 2020-12-06 stsp head_ref_name = label;
7549 4e97c21c 2020-12-06 stsp } else {
7550 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
7551 4e97c21c 2020-12-06 stsp if (error == NULL)
7552 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
7553 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
7554 4e97c21c 2020-12-06 stsp goto done;
7555 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
7556 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
7557 4e97c21c 2020-12-06 stsp if (error)
7558 4e97c21c 2020-12-06 stsp goto done;
7559 4e97c21c 2020-12-06 stsp }
7560 ffd1d5e5 2018-06-23 stsp
7561 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
7562 945f9229 2022-04-16 thomas if (error)
7563 945f9229 2022-04-16 thomas goto done;
7564 945f9229 2022-04-16 thomas
7565 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
7566 5221c383 2018-08-01 stsp if (view == NULL) {
7567 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
7568 5221c383 2018-08-01 stsp goto done;
7569 5221c383 2018-08-01 stsp }
7570 bc573f3b 2021-07-10 stsp error = open_tree_view(view, commit_id, head_ref_name, repo);
7571 ad80ab7b 2018-08-04 stsp if (error)
7572 ad80ab7b 2018-08-04 stsp goto done;
7573 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
7574 945f9229 2022-04-16 thomas error = tree_view_walk_path(&view->state.tree, commit,
7575 d91faf3b 2020-12-01 naddy in_repo_path);
7576 55cccc34 2020-02-20 stsp if (error)
7577 55cccc34 2020-02-20 stsp goto done;
7578 55cccc34 2020-02-20 stsp }
7579 55cccc34 2020-02-20 stsp
7580 55cccc34 2020-02-20 stsp if (worktree) {
7581 55cccc34 2020-02-20 stsp /* Release work tree lock. */
7582 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
7583 55cccc34 2020-02-20 stsp worktree = NULL;
7584 55cccc34 2020-02-20 stsp }
7585 e5a0f69f 2018-08-18 stsp error = view_loop(view);
7586 ffd1d5e5 2018-06-23 stsp done:
7587 52185f70 2019-02-05 stsp free(repo_path);
7588 e4a0e26d 2020-02-20 stsp free(cwd);
7589 ffd1d5e5 2018-06-23 stsp free(commit_id);
7590 4e97c21c 2020-12-06 stsp free(label);
7591 486cd271 2020-12-06 stsp if (ref)
7592 486cd271 2020-12-06 stsp got_ref_close(ref);
7593 1d0f4054 2021-06-17 stsp if (repo) {
7594 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7595 1d0f4054 2021-06-17 stsp if (error == NULL)
7596 1d0f4054 2021-06-17 stsp error = close_err;
7597 1d0f4054 2021-06-17 stsp }
7598 7cd52833 2022-06-23 thomas if (pack_fds) {
7599 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
7600 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
7601 7cd52833 2022-06-23 thomas if (error == NULL)
7602 7cd52833 2022-06-23 thomas error = pack_err;
7603 7cd52833 2022-06-23 thomas }
7604 51a10b52 2020-12-26 stsp tog_free_refs();
7605 ffd1d5e5 2018-06-23 stsp return error;
7606 6458efa5 2020-11-24 stsp }
7607 6458efa5 2020-11-24 stsp
7608 6458efa5 2020-11-24 stsp static const struct got_error *
7609 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
7610 6458efa5 2020-11-24 stsp {
7611 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
7612 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7613 6458efa5 2020-11-24 stsp
7614 6458efa5 2020-11-24 stsp s->nrefs = 0;
7615 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
7616 2183bbf6 2022-01-23 thomas if (strncmp(got_ref_get_name(sre->ref),
7617 2183bbf6 2022-01-23 thomas "refs/got/", 9) == 0 &&
7618 2183bbf6 2022-01-23 thomas strncmp(got_ref_get_name(sre->ref),
7619 2183bbf6 2022-01-23 thomas "refs/got/backup/", 16) != 0)
7620 6458efa5 2020-11-24 stsp continue;
7621 6458efa5 2020-11-24 stsp
7622 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
7623 6458efa5 2020-11-24 stsp if (re == NULL)
7624 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
7625 6458efa5 2020-11-24 stsp
7626 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
7627 8924d611 2020-12-26 stsp if (re->ref == NULL)
7628 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
7629 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
7630 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
7631 6458efa5 2020-11-24 stsp }
7632 6458efa5 2020-11-24 stsp
7633 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
7634 6458efa5 2020-11-24 stsp return NULL;
7635 6458efa5 2020-11-24 stsp }
7636 6458efa5 2020-11-24 stsp
7637 ef20f542 2022-06-26 thomas static void
7638 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
7639 6458efa5 2020-11-24 stsp {
7640 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7641 6458efa5 2020-11-24 stsp
7642 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
7643 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7644 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
7645 8924d611 2020-12-26 stsp got_ref_close(re->ref);
7646 6458efa5 2020-11-24 stsp free(re);
7647 6458efa5 2020-11-24 stsp }
7648 6458efa5 2020-11-24 stsp }
7649 6458efa5 2020-11-24 stsp
7650 6458efa5 2020-11-24 stsp static const struct got_error *
7651 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
7652 6458efa5 2020-11-24 stsp {
7653 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7654 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7655 6458efa5 2020-11-24 stsp
7656 6458efa5 2020-11-24 stsp s->selected_entry = 0;
7657 6458efa5 2020-11-24 stsp s->repo = repo;
7658 6458efa5 2020-11-24 stsp
7659 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
7660 dbdddfee 2021-06-23 naddy STAILQ_INIT(&s->colors);
7661 6458efa5 2020-11-24 stsp
7662 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
7663 6458efa5 2020-11-24 stsp if (err)
7664 6458efa5 2020-11-24 stsp return err;
7665 34ba6917 2020-11-30 stsp
7666 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
7667 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
7668 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
7669 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
7670 6458efa5 2020-11-24 stsp if (err)
7671 6458efa5 2020-11-24 stsp goto done;
7672 6458efa5 2020-11-24 stsp
7673 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
7674 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
7675 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
7676 6458efa5 2020-11-24 stsp if (err)
7677 6458efa5 2020-11-24 stsp goto done;
7678 6458efa5 2020-11-24 stsp
7679 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
7680 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
7681 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
7682 2183bbf6 2022-01-23 thomas if (err)
7683 2183bbf6 2022-01-23 thomas goto done;
7684 2183bbf6 2022-01-23 thomas
7685 2183bbf6 2022-01-23 thomas err = add_color(&s->colors, "^refs/got/backup/",
7686 2183bbf6 2022-01-23 thomas TOG_COLOR_REFS_BACKUP,
7687 2183bbf6 2022-01-23 thomas get_color_value("TOG_COLOR_REFS_BACKUP"));
7688 6458efa5 2020-11-24 stsp if (err)
7689 6458efa5 2020-11-24 stsp goto done;
7690 6458efa5 2020-11-24 stsp }
7691 6458efa5 2020-11-24 stsp
7692 6458efa5 2020-11-24 stsp view->show = show_ref_view;
7693 6458efa5 2020-11-24 stsp view->input = input_ref_view;
7694 6458efa5 2020-11-24 stsp view->close = close_ref_view;
7695 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
7696 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
7697 6458efa5 2020-11-24 stsp done:
7698 6458efa5 2020-11-24 stsp if (err)
7699 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7700 6458efa5 2020-11-24 stsp return err;
7701 6458efa5 2020-11-24 stsp }
7702 6458efa5 2020-11-24 stsp
7703 6458efa5 2020-11-24 stsp static const struct got_error *
7704 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
7705 6458efa5 2020-11-24 stsp {
7706 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7707 6458efa5 2020-11-24 stsp
7708 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
7709 6458efa5 2020-11-24 stsp free_colors(&s->colors);
7710 6458efa5 2020-11-24 stsp
7711 6458efa5 2020-11-24 stsp return NULL;
7712 9f7d7167 2018-04-29 stsp }
7713 ce5b7c56 2019-07-09 stsp
7714 6458efa5 2020-11-24 stsp static const struct got_error *
7715 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
7716 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7717 6458efa5 2020-11-24 stsp {
7718 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7719 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
7720 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
7721 6458efa5 2020-11-24 stsp int obj_type;
7722 6458efa5 2020-11-24 stsp
7723 c42c9805 2020-11-24 stsp *commit_id = NULL;
7724 6458efa5 2020-11-24 stsp
7725 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
7726 6458efa5 2020-11-24 stsp if (err)
7727 6458efa5 2020-11-24 stsp return err;
7728 6458efa5 2020-11-24 stsp
7729 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
7730 6458efa5 2020-11-24 stsp if (err)
7731 6458efa5 2020-11-24 stsp goto done;
7732 6458efa5 2020-11-24 stsp
7733 6458efa5 2020-11-24 stsp switch (obj_type) {
7734 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
7735 c42c9805 2020-11-24 stsp *commit_id = obj_id;
7736 6458efa5 2020-11-24 stsp break;
7737 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
7738 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
7739 6458efa5 2020-11-24 stsp if (err)
7740 6458efa5 2020-11-24 stsp goto done;
7741 c42c9805 2020-11-24 stsp free(obj_id);
7742 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
7743 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7744 c42c9805 2020-11-24 stsp if (err)
7745 6458efa5 2020-11-24 stsp goto done;
7746 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
7747 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7748 c42c9805 2020-11-24 stsp goto done;
7749 c42c9805 2020-11-24 stsp }
7750 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
7751 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
7752 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
7753 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
7754 c42c9805 2020-11-24 stsp goto done;
7755 c42c9805 2020-11-24 stsp }
7756 6458efa5 2020-11-24 stsp break;
7757 6458efa5 2020-11-24 stsp default:
7758 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
7759 c42c9805 2020-11-24 stsp break;
7760 6458efa5 2020-11-24 stsp }
7761 6458efa5 2020-11-24 stsp
7762 c42c9805 2020-11-24 stsp done:
7763 c42c9805 2020-11-24 stsp if (tag)
7764 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
7765 c42c9805 2020-11-24 stsp if (err) {
7766 c42c9805 2020-11-24 stsp free(*commit_id);
7767 c42c9805 2020-11-24 stsp *commit_id = NULL;
7768 c42c9805 2020-11-24 stsp }
7769 c42c9805 2020-11-24 stsp return err;
7770 c42c9805 2020-11-24 stsp }
7771 c42c9805 2020-11-24 stsp
7772 c42c9805 2020-11-24 stsp static const struct got_error *
7773 a5d43cac 2022-07-01 thomas log_ref_entry(struct tog_view **new_view, int begin_y, int begin_x,
7774 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
7775 c42c9805 2020-11-24 stsp {
7776 c42c9805 2020-11-24 stsp struct tog_view *log_view;
7777 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
7778 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
7779 c42c9805 2020-11-24 stsp
7780 c42c9805 2020-11-24 stsp *new_view = NULL;
7781 c42c9805 2020-11-24 stsp
7782 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
7783 c42c9805 2020-11-24 stsp if (err) {
7784 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
7785 c42c9805 2020-11-24 stsp return err;
7786 c42c9805 2020-11-24 stsp else
7787 c42c9805 2020-11-24 stsp return NULL;
7788 c42c9805 2020-11-24 stsp }
7789 c42c9805 2020-11-24 stsp
7790 a5d43cac 2022-07-01 thomas log_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_LOG);
7791 6458efa5 2020-11-24 stsp if (log_view == NULL) {
7792 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
7793 6458efa5 2020-11-24 stsp goto done;
7794 6458efa5 2020-11-24 stsp }
7795 6458efa5 2020-11-24 stsp
7796 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
7797 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
7798 6458efa5 2020-11-24 stsp done:
7799 6458efa5 2020-11-24 stsp if (err)
7800 6458efa5 2020-11-24 stsp view_close(log_view);
7801 6458efa5 2020-11-24 stsp else
7802 6458efa5 2020-11-24 stsp *new_view = log_view;
7803 c42c9805 2020-11-24 stsp free(commit_id);
7804 6458efa5 2020-11-24 stsp return err;
7805 6458efa5 2020-11-24 stsp }
7806 6458efa5 2020-11-24 stsp
7807 ce5b7c56 2019-07-09 stsp static void
7808 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
7809 6458efa5 2020-11-24 stsp {
7810 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
7811 34ba6917 2020-11-30 stsp int i = 0;
7812 6458efa5 2020-11-24 stsp
7813 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
7814 6458efa5 2020-11-24 stsp return;
7815 6458efa5 2020-11-24 stsp
7816 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
7817 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
7818 34ba6917 2020-11-30 stsp if (re == NULL)
7819 34ba6917 2020-11-30 stsp break;
7820 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
7821 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7822 6458efa5 2020-11-24 stsp }
7823 6458efa5 2020-11-24 stsp }
7824 6458efa5 2020-11-24 stsp
7825 a5d43cac 2022-07-01 thomas static const struct got_error *
7826 a5d43cac 2022-07-01 thomas ref_scroll_down(struct tog_view *view, int maxscroll)
7827 6458efa5 2020-11-24 stsp {
7828 a5d43cac 2022-07-01 thomas struct tog_ref_view_state *s = &view->state.ref;
7829 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
7830 6458efa5 2020-11-24 stsp int n = 0;
7831 6458efa5 2020-11-24 stsp
7832 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
7833 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
7834 6458efa5 2020-11-24 stsp else
7835 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
7836 6458efa5 2020-11-24 stsp
7837 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
7838 a5d43cac 2022-07-01 thomas while (next && n++ < maxscroll) {
7839 07dd3ed3 2022-08-06 thomas if (last) {
7840 07dd3ed3 2022-08-06 thomas s->last_displayed_entry = last;
7841 a5d43cac 2022-07-01 thomas last = TAILQ_NEXT(last, entry);
7842 07dd3ed3 2022-08-06 thomas }
7843 a5d43cac 2022-07-01 thomas if (last || (view->mode == TOG_VIEW_SPLIT_HRZN)) {
7844 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
7845 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
7846 6458efa5 2020-11-24 stsp }
7847 6458efa5 2020-11-24 stsp }
7848 a5d43cac 2022-07-01 thomas
7849 a5d43cac 2022-07-01 thomas return NULL;
7850 6458efa5 2020-11-24 stsp }
7851 6458efa5 2020-11-24 stsp
7852 6458efa5 2020-11-24 stsp static const struct got_error *
7853 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
7854 6458efa5 2020-11-24 stsp {
7855 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7856 6458efa5 2020-11-24 stsp
7857 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
7858 6458efa5 2020-11-24 stsp return NULL;
7859 6458efa5 2020-11-24 stsp }
7860 6458efa5 2020-11-24 stsp
7861 6458efa5 2020-11-24 stsp static int
7862 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
7863 6458efa5 2020-11-24 stsp {
7864 6458efa5 2020-11-24 stsp regmatch_t regmatch;
7865 6458efa5 2020-11-24 stsp
7866 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
7867 6458efa5 2020-11-24 stsp 0) == 0;
7868 6458efa5 2020-11-24 stsp }
7869 6458efa5 2020-11-24 stsp
7870 6458efa5 2020-11-24 stsp static const struct got_error *
7871 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
7872 6458efa5 2020-11-24 stsp {
7873 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7874 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
7875 6458efa5 2020-11-24 stsp
7876 6458efa5 2020-11-24 stsp if (!view->searching) {
7877 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7878 6458efa5 2020-11-24 stsp return NULL;
7879 6458efa5 2020-11-24 stsp }
7880 6458efa5 2020-11-24 stsp
7881 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7882 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
7883 6458efa5 2020-11-24 stsp if (s->selected_entry)
7884 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
7885 6458efa5 2020-11-24 stsp else
7886 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7887 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7888 6458efa5 2020-11-24 stsp } else {
7889 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
7890 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7891 6458efa5 2020-11-24 stsp else
7892 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
7893 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
7894 6458efa5 2020-11-24 stsp }
7895 6458efa5 2020-11-24 stsp } else {
7896 4b3f9dac 2021-12-17 thomas if (s->selected_entry)
7897 4b3f9dac 2021-12-17 thomas re = s->selected_entry;
7898 4b3f9dac 2021-12-17 thomas else if (view->searching == TOG_SEARCH_FORWARD)
7899 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7900 6458efa5 2020-11-24 stsp else
7901 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7902 6458efa5 2020-11-24 stsp }
7903 6458efa5 2020-11-24 stsp
7904 6458efa5 2020-11-24 stsp while (1) {
7905 6458efa5 2020-11-24 stsp if (re == NULL) {
7906 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
7907 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7908 6458efa5 2020-11-24 stsp return NULL;
7909 6458efa5 2020-11-24 stsp }
7910 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7911 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
7912 6458efa5 2020-11-24 stsp else
7913 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
7914 6458efa5 2020-11-24 stsp }
7915 6458efa5 2020-11-24 stsp
7916 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
7917 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
7918 6458efa5 2020-11-24 stsp s->matched_entry = re;
7919 6458efa5 2020-11-24 stsp break;
7920 6458efa5 2020-11-24 stsp }
7921 6458efa5 2020-11-24 stsp
7922 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
7923 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
7924 6458efa5 2020-11-24 stsp else
7925 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
7926 6458efa5 2020-11-24 stsp }
7927 6458efa5 2020-11-24 stsp
7928 6458efa5 2020-11-24 stsp if (s->matched_entry) {
7929 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
7930 6458efa5 2020-11-24 stsp s->selected = 0;
7931 6458efa5 2020-11-24 stsp }
7932 6458efa5 2020-11-24 stsp
7933 6458efa5 2020-11-24 stsp return NULL;
7934 6458efa5 2020-11-24 stsp }
7935 6458efa5 2020-11-24 stsp
7936 6458efa5 2020-11-24 stsp static const struct got_error *
7937 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
7938 6458efa5 2020-11-24 stsp {
7939 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
7940 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
7941 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
7942 6458efa5 2020-11-24 stsp char *line = NULL;
7943 6458efa5 2020-11-24 stsp wchar_t *wline;
7944 6458efa5 2020-11-24 stsp struct tog_color *tc;
7945 6458efa5 2020-11-24 stsp int width, n;
7946 6458efa5 2020-11-24 stsp int limit = view->nlines;
7947 6458efa5 2020-11-24 stsp
7948 6458efa5 2020-11-24 stsp werase(view->window);
7949 6458efa5 2020-11-24 stsp
7950 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
7951 444d5325 2022-07-03 thomas if (view_is_hsplit_top(view))
7952 a5d43cac 2022-07-01 thomas --limit; /* border */
7953 6458efa5 2020-11-24 stsp
7954 6458efa5 2020-11-24 stsp if (limit == 0)
7955 6458efa5 2020-11-24 stsp return NULL;
7956 6458efa5 2020-11-24 stsp
7957 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
7958 6458efa5 2020-11-24 stsp
7959 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
7960 6458efa5 2020-11-24 stsp s->nrefs) == -1)
7961 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
7962 6458efa5 2020-11-24 stsp
7963 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols, 0, 0);
7964 6458efa5 2020-11-24 stsp if (err) {
7965 6458efa5 2020-11-24 stsp free(line);
7966 6458efa5 2020-11-24 stsp return err;
7967 6458efa5 2020-11-24 stsp }
7968 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7969 6458efa5 2020-11-24 stsp wstandout(view->window);
7970 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
7971 86f4aab9 2022-09-09 thomas while (width++ < view->ncols)
7972 86f4aab9 2022-09-09 thomas waddch(view->window, ' ');
7973 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
7974 6458efa5 2020-11-24 stsp wstandend(view->window);
7975 6458efa5 2020-11-24 stsp free(wline);
7976 6458efa5 2020-11-24 stsp wline = NULL;
7977 6458efa5 2020-11-24 stsp free(line);
7978 6458efa5 2020-11-24 stsp line = NULL;
7979 6458efa5 2020-11-24 stsp if (--limit <= 0)
7980 6458efa5 2020-11-24 stsp return NULL;
7981 6458efa5 2020-11-24 stsp
7982 6458efa5 2020-11-24 stsp n = 0;
7983 6458efa5 2020-11-24 stsp while (re && limit > 0) {
7984 6458efa5 2020-11-24 stsp char *line = NULL;
7985 84227eb1 2022-06-23 thomas char ymd[13]; /* YYYY-MM-DD + " " + NUL */
7986 6458efa5 2020-11-24 stsp
7987 84227eb1 2022-06-23 thomas if (s->show_date) {
7988 84227eb1 2022-06-23 thomas struct got_commit_object *ci;
7989 84227eb1 2022-06-23 thomas struct got_tag_object *tag;
7990 84227eb1 2022-06-23 thomas struct got_object_id *id;
7991 84227eb1 2022-06-23 thomas struct tm tm;
7992 84227eb1 2022-06-23 thomas time_t t;
7993 84227eb1 2022-06-23 thomas
7994 84227eb1 2022-06-23 thomas err = got_ref_resolve(&id, s->repo, re->ref);
7995 84227eb1 2022-06-23 thomas if (err)
7996 84227eb1 2022-06-23 thomas return err;
7997 84227eb1 2022-06-23 thomas err = got_object_open_as_tag(&tag, s->repo, id);
7998 84227eb1 2022-06-23 thomas if (err) {
7999 84227eb1 2022-06-23 thomas if (err->code != GOT_ERR_OBJ_TYPE) {
8000 84227eb1 2022-06-23 thomas free(id);
8001 84227eb1 2022-06-23 thomas return err;
8002 84227eb1 2022-06-23 thomas }
8003 84227eb1 2022-06-23 thomas err = got_object_open_as_commit(&ci, s->repo,
8004 84227eb1 2022-06-23 thomas id);
8005 84227eb1 2022-06-23 thomas if (err) {
8006 84227eb1 2022-06-23 thomas free(id);
8007 84227eb1 2022-06-23 thomas return err;
8008 84227eb1 2022-06-23 thomas }
8009 84227eb1 2022-06-23 thomas t = got_object_commit_get_committer_time(ci);
8010 84227eb1 2022-06-23 thomas got_object_commit_close(ci);
8011 84227eb1 2022-06-23 thomas } else {
8012 84227eb1 2022-06-23 thomas t = got_object_tag_get_tagger_time(tag);
8013 84227eb1 2022-06-23 thomas got_object_tag_close(tag);
8014 84227eb1 2022-06-23 thomas }
8015 84227eb1 2022-06-23 thomas free(id);
8016 84227eb1 2022-06-23 thomas if (gmtime_r(&t, &tm) == NULL)
8017 84227eb1 2022-06-23 thomas return got_error_from_errno("gmtime_r");
8018 84227eb1 2022-06-23 thomas if (strftime(ymd, sizeof(ymd), "%G-%m-%d ", &tm) == 0)
8019 84227eb1 2022-06-23 thomas return got_error(GOT_ERR_NO_SPACE);
8020 84227eb1 2022-06-23 thomas }
8021 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
8022 84227eb1 2022-06-23 thomas if (asprintf(&line, "%s%s -> %s", s->show_date ?
8023 84227eb1 2022-06-23 thomas ymd : "", got_ref_get_name(re->ref),
8024 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
8025 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
8026 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
8027 6458efa5 2020-11-24 stsp struct got_object_id *id;
8028 6458efa5 2020-11-24 stsp char *id_str;
8029 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
8030 6458efa5 2020-11-24 stsp if (err)
8031 6458efa5 2020-11-24 stsp return err;
8032 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
8033 6458efa5 2020-11-24 stsp if (err) {
8034 6458efa5 2020-11-24 stsp free(id);
8035 6458efa5 2020-11-24 stsp return err;
8036 6458efa5 2020-11-24 stsp }
8037 84227eb1 2022-06-23 thomas if (asprintf(&line, "%s%s: %s", s->show_date ? ymd : "",
8038 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
8039 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
8040 6458efa5 2020-11-24 stsp free(id);
8041 6458efa5 2020-11-24 stsp free(id_str);
8042 6458efa5 2020-11-24 stsp return err;
8043 6458efa5 2020-11-24 stsp }
8044 6458efa5 2020-11-24 stsp free(id);
8045 6458efa5 2020-11-24 stsp free(id_str);
8046 84227eb1 2022-06-23 thomas } else if (asprintf(&line, "%s%s", s->show_date ? ymd : "",
8047 84227eb1 2022-06-23 thomas got_ref_get_name(re->ref)) == -1)
8048 84227eb1 2022-06-23 thomas return got_error_from_errno("asprintf");
8049 6458efa5 2020-11-24 stsp
8050 f91a2b48 2022-06-23 thomas err = format_line(&wline, &width, NULL, line, 0, view->ncols,
8051 f91a2b48 2022-06-23 thomas 0, 0);
8052 6458efa5 2020-11-24 stsp if (err) {
8053 6458efa5 2020-11-24 stsp free(line);
8054 6458efa5 2020-11-24 stsp return err;
8055 6458efa5 2020-11-24 stsp }
8056 6458efa5 2020-11-24 stsp if (n == s->selected) {
8057 6458efa5 2020-11-24 stsp if (view->focussed)
8058 6458efa5 2020-11-24 stsp wstandout(view->window);
8059 6458efa5 2020-11-24 stsp s->selected_entry = re;
8060 6458efa5 2020-11-24 stsp }
8061 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
8062 6458efa5 2020-11-24 stsp if (tc)
8063 6458efa5 2020-11-24 stsp wattr_on(view->window,
8064 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8065 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
8066 6458efa5 2020-11-24 stsp if (tc)
8067 6458efa5 2020-11-24 stsp wattr_off(view->window,
8068 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
8069 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
8070 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
8071 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
8072 6458efa5 2020-11-24 stsp wstandend(view->window);
8073 6458efa5 2020-11-24 stsp free(line);
8074 6458efa5 2020-11-24 stsp free(wline);
8075 6458efa5 2020-11-24 stsp wline = NULL;
8076 6458efa5 2020-11-24 stsp n++;
8077 6458efa5 2020-11-24 stsp s->ndisplayed++;
8078 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
8079 6458efa5 2020-11-24 stsp
8080 6458efa5 2020-11-24 stsp limit--;
8081 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
8082 6458efa5 2020-11-24 stsp }
8083 6458efa5 2020-11-24 stsp
8084 a5d43cac 2022-07-01 thomas view_border(view);
8085 6458efa5 2020-11-24 stsp return err;
8086 6458efa5 2020-11-24 stsp }
8087 6458efa5 2020-11-24 stsp
8088 6458efa5 2020-11-24 stsp static const struct got_error *
8089 444d5325 2022-07-03 thomas browse_ref_tree(struct tog_view **new_view, int begin_y, int begin_x,
8090 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
8091 c42c9805 2020-11-24 stsp {
8092 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
8093 bc573f3b 2021-07-10 stsp struct got_object_id *commit_id = NULL;
8094 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
8095 c42c9805 2020-11-24 stsp
8096 c42c9805 2020-11-24 stsp *new_view = NULL;
8097 c42c9805 2020-11-24 stsp
8098 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
8099 c42c9805 2020-11-24 stsp if (err) {
8100 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
8101 c42c9805 2020-11-24 stsp return err;
8102 c42c9805 2020-11-24 stsp else
8103 c42c9805 2020-11-24 stsp return NULL;
8104 c42c9805 2020-11-24 stsp }
8105 c42c9805 2020-11-24 stsp
8106 c42c9805 2020-11-24 stsp
8107 444d5325 2022-07-03 thomas tree_view = view_open(0, 0, begin_y, begin_x, TOG_VIEW_TREE);
8108 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
8109 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
8110 c42c9805 2020-11-24 stsp goto done;
8111 c42c9805 2020-11-24 stsp }
8112 c42c9805 2020-11-24 stsp
8113 bc573f3b 2021-07-10 stsp err = open_tree_view(tree_view, commit_id,
8114 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
8115 c42c9805 2020-11-24 stsp if (err)
8116 c42c9805 2020-11-24 stsp goto done;
8117 c42c9805 2020-11-24 stsp
8118 c42c9805 2020-11-24 stsp *new_view = tree_view;
8119 c42c9805 2020-11-24 stsp done:
8120 c42c9805 2020-11-24 stsp free(commit_id);
8121 c42c9805 2020-11-24 stsp return err;
8122 07dd3ed3 2022-08-06 thomas }
8123 07dd3ed3 2022-08-06 thomas
8124 07dd3ed3 2022-08-06 thomas static const struct got_error *
8125 07dd3ed3 2022-08-06 thomas ref_goto_line(struct tog_view *view, int nlines)
8126 07dd3ed3 2022-08-06 thomas {
8127 07dd3ed3 2022-08-06 thomas const struct got_error *err = NULL;
8128 07dd3ed3 2022-08-06 thomas struct tog_ref_view_state *s = &view->state.ref;
8129 07dd3ed3 2022-08-06 thomas int g, idx = s->selected_entry->idx;
8130 07dd3ed3 2022-08-06 thomas
8131 07dd3ed3 2022-08-06 thomas g = view->gline;
8132 07dd3ed3 2022-08-06 thomas view->gline = 0;
8133 07dd3ed3 2022-08-06 thomas
8134 07dd3ed3 2022-08-06 thomas if (g == 0)
8135 07dd3ed3 2022-08-06 thomas g = 1;
8136 07dd3ed3 2022-08-06 thomas else if (g > s->nrefs)
8137 07dd3ed3 2022-08-06 thomas g = s->nrefs;
8138 07dd3ed3 2022-08-06 thomas
8139 07dd3ed3 2022-08-06 thomas if (g >= s->first_displayed_entry->idx + 1 &&
8140 07dd3ed3 2022-08-06 thomas g <= s->last_displayed_entry->idx + 1 &&
8141 07dd3ed3 2022-08-06 thomas g - s->first_displayed_entry->idx - 1 < nlines) {
8142 07dd3ed3 2022-08-06 thomas s->selected = g - s->first_displayed_entry->idx - 1;
8143 07dd3ed3 2022-08-06 thomas return NULL;
8144 07dd3ed3 2022-08-06 thomas }
8145 07dd3ed3 2022-08-06 thomas
8146 07dd3ed3 2022-08-06 thomas if (idx + 1 < g) {
8147 07dd3ed3 2022-08-06 thomas err = ref_scroll_down(view, g - idx - 1);
8148 07dd3ed3 2022-08-06 thomas if (err)
8149 07dd3ed3 2022-08-06 thomas return err;
8150 07dd3ed3 2022-08-06 thomas if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL &&
8151 07dd3ed3 2022-08-06 thomas s->first_displayed_entry->idx + s->selected < g &&
8152 07dd3ed3 2022-08-06 thomas s->selected < s->ndisplayed - 1)
8153 07dd3ed3 2022-08-06 thomas s->selected = g - s->first_displayed_entry->idx - 1;
8154 07dd3ed3 2022-08-06 thomas } else if (idx + 1 > g)
8155 07dd3ed3 2022-08-06 thomas ref_scroll_up(s, idx - g + 1);
8156 07dd3ed3 2022-08-06 thomas
8157 07dd3ed3 2022-08-06 thomas if (g < nlines && s->first_displayed_entry->idx == 0)
8158 07dd3ed3 2022-08-06 thomas s->selected = g - 1;
8159 07dd3ed3 2022-08-06 thomas
8160 07dd3ed3 2022-08-06 thomas return NULL;
8161 07dd3ed3 2022-08-06 thomas
8162 c42c9805 2020-11-24 stsp }
8163 07dd3ed3 2022-08-06 thomas
8164 c42c9805 2020-11-24 stsp static const struct got_error *
8165 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
8166 6458efa5 2020-11-24 stsp {
8167 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
8168 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
8169 e4526bf5 2021-09-03 naddy struct tog_reflist_entry *re;
8170 2a31b33b 2022-07-23 thomas int n, nscroll = view->nlines - 1;
8171 6458efa5 2020-11-24 stsp
8172 07dd3ed3 2022-08-06 thomas if (view->gline)
8173 07dd3ed3 2022-08-06 thomas return ref_goto_line(view, nscroll);
8174 07dd3ed3 2022-08-06 thomas
8175 6458efa5 2020-11-24 stsp switch (ch) {
8176 6458efa5 2020-11-24 stsp case 'i':
8177 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
8178 07b0611c 2022-06-23 thomas view->count = 0;
8179 3bfadbd4 2021-11-20 thomas break;
8180 84227eb1 2022-06-23 thomas case 'm':
8181 84227eb1 2022-06-23 thomas s->show_date = !s->show_date;
8182 07b0611c 2022-06-23 thomas view->count = 0;
8183 84227eb1 2022-06-23 thomas break;
8184 98182bd0 2021-11-20 thomas case 'o':
8185 3bfadbd4 2021-11-20 thomas s->sort_by_date = !s->sort_by_date;
8186 07b0611c 2022-06-23 thomas view->count = 0;
8187 c591440f 2021-11-20 thomas err = got_reflist_sort(&tog_refs, s->sort_by_date ?
8188 c591440f 2021-11-20 thomas got_ref_cmp_by_commit_timestamp_descending :
8189 2183bbf6 2022-01-23 thomas tog_ref_cmp_by_name, s->repo);
8190 c591440f 2021-11-20 thomas if (err)
8191 c591440f 2021-11-20 thomas break;
8192 c591440f 2021-11-20 thomas got_reflist_object_id_map_free(tog_refs_idmap);
8193 c591440f 2021-11-20 thomas err = got_reflist_object_id_map_create(&tog_refs_idmap,
8194 c591440f 2021-11-20 thomas &tog_refs, s->repo);
8195 3bfadbd4 2021-11-20 thomas if (err)
8196 3bfadbd4 2021-11-20 thomas break;
8197 3bfadbd4 2021-11-20 thomas ref_view_free_refs(s);
8198 3bfadbd4 2021-11-20 thomas err = ref_view_load_refs(s);
8199 6458efa5 2020-11-24 stsp break;
8200 6458efa5 2020-11-24 stsp case KEY_ENTER:
8201 6458efa5 2020-11-24 stsp case '\r':
8202 07b0611c 2022-06-23 thomas view->count = 0;
8203 6458efa5 2020-11-24 stsp if (!s->selected_entry)
8204 a5d43cac 2022-07-01 thomas break;
8205 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_LOG);
8206 6458efa5 2020-11-24 stsp break;
8207 1be4947a 2022-07-22 thomas case 'T':
8208 07b0611c 2022-06-23 thomas view->count = 0;
8209 c42c9805 2020-11-24 stsp if (!s->selected_entry)
8210 c42c9805 2020-11-24 stsp break;
8211 2a31b33b 2022-07-23 thomas err = view_request_new(new_view, view, TOG_VIEW_TREE);
8212 c42c9805 2020-11-24 stsp break;
8213 e4526bf5 2021-09-03 naddy case 'g':
8214 e4526bf5 2021-09-03 naddy case KEY_HOME:
8215 e4526bf5 2021-09-03 naddy s->selected = 0;
8216 07b0611c 2022-06-23 thomas view->count = 0;
8217 e4526bf5 2021-09-03 naddy s->first_displayed_entry = TAILQ_FIRST(&s->refs);
8218 e4526bf5 2021-09-03 naddy break;
8219 e4526bf5 2021-09-03 naddy case 'G':
8220 a5d43cac 2022-07-01 thomas case KEY_END: {
8221 a5d43cac 2022-07-01 thomas int eos = view->nlines - 1;
8222 a5d43cac 2022-07-01 thomas
8223 a5d43cac 2022-07-01 thomas if (view->mode == TOG_VIEW_SPLIT_HRZN)
8224 a5d43cac 2022-07-01 thomas --eos; /* border */
8225 e4526bf5 2021-09-03 naddy s->selected = 0;
8226 07b0611c 2022-06-23 thomas view->count = 0;
8227 e4526bf5 2021-09-03 naddy re = TAILQ_LAST(&s->refs, tog_reflist_head);
8228 a5d43cac 2022-07-01 thomas for (n = 0; n < eos; n++) {
8229 e4526bf5 2021-09-03 naddy if (re == NULL)
8230 e4526bf5 2021-09-03 naddy break;
8231 e4526bf5 2021-09-03 naddy s->first_displayed_entry = re;
8232 e4526bf5 2021-09-03 naddy re = TAILQ_PREV(re, tog_reflist_head, entry);
8233 e4526bf5 2021-09-03 naddy }
8234 e4526bf5 2021-09-03 naddy if (n > 0)
8235 e4526bf5 2021-09-03 naddy s->selected = n - 1;
8236 e4526bf5 2021-09-03 naddy break;
8237 a5d43cac 2022-07-01 thomas }
8238 6458efa5 2020-11-24 stsp case 'k':
8239 6458efa5 2020-11-24 stsp case KEY_UP:
8240 f7140bf5 2021-10-17 thomas case CTRL('p'):
8241 6458efa5 2020-11-24 stsp if (s->selected > 0) {
8242 6458efa5 2020-11-24 stsp s->selected--;
8243 6458efa5 2020-11-24 stsp break;
8244 34ba6917 2020-11-30 stsp }
8245 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
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 70f17a53 2022-06-13 thomas case CTRL('u'):
8250 23427b14 2022-06-23 thomas case 'u':
8251 70f17a53 2022-06-13 thomas nscroll /= 2;
8252 70f17a53 2022-06-13 thomas /* FALL THROUGH */
8253 6458efa5 2020-11-24 stsp case KEY_PPAGE:
8254 6458efa5 2020-11-24 stsp case CTRL('b'):
8255 1c5e5faa 2022-06-23 thomas case 'b':
8256 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
8257 70f17a53 2022-06-13 thomas s->selected -= MIN(nscroll, s->selected);
8258 70f17a53 2022-06-13 thomas ref_scroll_up(s, MAX(0, nscroll));
8259 07b0611c 2022-06-23 thomas if (s->selected_entry == TAILQ_FIRST(&s->refs))
8260 07b0611c 2022-06-23 thomas view->count = 0;
8261 6458efa5 2020-11-24 stsp break;
8262 6458efa5 2020-11-24 stsp case 'j':
8263 6458efa5 2020-11-24 stsp case KEY_DOWN:
8264 f7140bf5 2021-10-17 thomas case CTRL('n'):
8265 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
8266 6458efa5 2020-11-24 stsp s->selected++;
8267 6458efa5 2020-11-24 stsp break;
8268 6458efa5 2020-11-24 stsp }
8269 07b0611c 2022-06-23 thomas if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8270 6458efa5 2020-11-24 stsp /* can't scroll any further */
8271 07b0611c 2022-06-23 thomas view->count = 0;
8272 6458efa5 2020-11-24 stsp break;
8273 07b0611c 2022-06-23 thomas }
8274 a5d43cac 2022-07-01 thomas ref_scroll_down(view, 1);
8275 6458efa5 2020-11-24 stsp break;
8276 70f17a53 2022-06-13 thomas case CTRL('d'):
8277 23427b14 2022-06-23 thomas case 'd':
8278 70f17a53 2022-06-13 thomas nscroll /= 2;
8279 70f17a53 2022-06-13 thomas /* FALL THROUGH */
8280 6458efa5 2020-11-24 stsp case KEY_NPAGE:
8281 6458efa5 2020-11-24 stsp case CTRL('f'):
8282 1c5e5faa 2022-06-23 thomas case 'f':
8283 4c2d69cb 2022-06-23 thomas case ' ':
8284 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
8285 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
8286 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
8287 70f17a53 2022-06-13 thomas s->selected += MIN(nscroll,
8288 70f17a53 2022-06-13 thomas s->ndisplayed - s->selected - 1);
8289 07b0611c 2022-06-23 thomas if (view->count > 1 && s->selected < s->ndisplayed - 1)
8290 07b0611c 2022-06-23 thomas s->selected += s->ndisplayed - s->selected - 1;
8291 07b0611c 2022-06-23 thomas view->count = 0;
8292 6458efa5 2020-11-24 stsp break;
8293 6458efa5 2020-11-24 stsp }
8294 a5d43cac 2022-07-01 thomas ref_scroll_down(view, nscroll);
8295 6458efa5 2020-11-24 stsp break;
8296 6458efa5 2020-11-24 stsp case CTRL('l'):
8297 07b0611c 2022-06-23 thomas view->count = 0;
8298 8924d611 2020-12-26 stsp tog_free_refs();
8299 3bfadbd4 2021-11-20 thomas err = tog_load_refs(s->repo, s->sort_by_date);
8300 8924d611 2020-12-26 stsp if (err)
8301 8924d611 2020-12-26 stsp break;
8302 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
8303 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
8304 6458efa5 2020-11-24 stsp break;
8305 6458efa5 2020-11-24 stsp case KEY_RESIZE:
8306 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
8307 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
8308 6458efa5 2020-11-24 stsp break;
8309 6458efa5 2020-11-24 stsp default:
8310 07b0611c 2022-06-23 thomas view->count = 0;
8311 6458efa5 2020-11-24 stsp break;
8312 6458efa5 2020-11-24 stsp }
8313 6458efa5 2020-11-24 stsp
8314 6458efa5 2020-11-24 stsp return err;
8315 6458efa5 2020-11-24 stsp }
8316 6458efa5 2020-11-24 stsp
8317 6458efa5 2020-11-24 stsp __dead static void
8318 6458efa5 2020-11-24 stsp usage_ref(void)
8319 6458efa5 2020-11-24 stsp {
8320 6458efa5 2020-11-24 stsp endwin();
8321 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
8322 6458efa5 2020-11-24 stsp getprogname());
8323 6458efa5 2020-11-24 stsp exit(1);
8324 6458efa5 2020-11-24 stsp }
8325 6458efa5 2020-11-24 stsp
8326 6458efa5 2020-11-24 stsp static const struct got_error *
8327 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
8328 6458efa5 2020-11-24 stsp {
8329 6458efa5 2020-11-24 stsp const struct got_error *error;
8330 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
8331 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
8332 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
8333 6458efa5 2020-11-24 stsp int ch;
8334 6458efa5 2020-11-24 stsp struct tog_view *view;
8335 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
8336 6458efa5 2020-11-24 stsp
8337 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
8338 6458efa5 2020-11-24 stsp switch (ch) {
8339 6458efa5 2020-11-24 stsp case 'r':
8340 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
8341 6458efa5 2020-11-24 stsp if (repo_path == NULL)
8342 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
8343 6458efa5 2020-11-24 stsp optarg);
8344 6458efa5 2020-11-24 stsp break;
8345 6458efa5 2020-11-24 stsp default:
8346 e99e2d15 2020-11-24 naddy usage_ref();
8347 6458efa5 2020-11-24 stsp /* NOTREACHED */
8348 6458efa5 2020-11-24 stsp }
8349 6458efa5 2020-11-24 stsp }
8350 6458efa5 2020-11-24 stsp
8351 6458efa5 2020-11-24 stsp argc -= optind;
8352 6458efa5 2020-11-24 stsp argv += optind;
8353 6458efa5 2020-11-24 stsp
8354 6458efa5 2020-11-24 stsp if (argc > 1)
8355 e99e2d15 2020-11-24 naddy usage_ref();
8356 7cd52833 2022-06-23 thomas
8357 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
8358 7cd52833 2022-06-23 thomas if (error != NULL)
8359 7cd52833 2022-06-23 thomas goto done;
8360 6458efa5 2020-11-24 stsp
8361 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
8362 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
8363 c156c7a4 2020-12-18 stsp if (cwd == NULL)
8364 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
8365 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
8366 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8367 c156c7a4 2020-12-18 stsp goto done;
8368 6458efa5 2020-11-24 stsp if (worktree)
8369 6458efa5 2020-11-24 stsp repo_path =
8370 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
8371 6458efa5 2020-11-24 stsp else
8372 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
8373 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
8374 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
8375 c156c7a4 2020-12-18 stsp goto done;
8376 c156c7a4 2020-12-18 stsp }
8377 6458efa5 2020-11-24 stsp }
8378 6458efa5 2020-11-24 stsp
8379 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
8380 6458efa5 2020-11-24 stsp if (error != NULL)
8381 6458efa5 2020-11-24 stsp goto done;
8382 6458efa5 2020-11-24 stsp
8383 6458efa5 2020-11-24 stsp init_curses();
8384 6458efa5 2020-11-24 stsp
8385 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
8386 51a10b52 2020-12-26 stsp if (error)
8387 51a10b52 2020-12-26 stsp goto done;
8388 51a10b52 2020-12-26 stsp
8389 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
8390 6458efa5 2020-11-24 stsp if (error)
8391 6458efa5 2020-11-24 stsp goto done;
8392 6458efa5 2020-11-24 stsp
8393 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
8394 6458efa5 2020-11-24 stsp if (view == NULL) {
8395 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
8396 6458efa5 2020-11-24 stsp goto done;
8397 6458efa5 2020-11-24 stsp }
8398 6458efa5 2020-11-24 stsp
8399 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
8400 6458efa5 2020-11-24 stsp if (error)
8401 6458efa5 2020-11-24 stsp goto done;
8402 6458efa5 2020-11-24 stsp
8403 6458efa5 2020-11-24 stsp if (worktree) {
8404 6458efa5 2020-11-24 stsp /* Release work tree lock. */
8405 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
8406 6458efa5 2020-11-24 stsp worktree = NULL;
8407 6458efa5 2020-11-24 stsp }
8408 6458efa5 2020-11-24 stsp error = view_loop(view);
8409 6458efa5 2020-11-24 stsp done:
8410 6458efa5 2020-11-24 stsp free(repo_path);
8411 6458efa5 2020-11-24 stsp free(cwd);
8412 1d0f4054 2021-06-17 stsp if (repo) {
8413 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8414 1d0f4054 2021-06-17 stsp if (close_err)
8415 1d0f4054 2021-06-17 stsp error = close_err;
8416 1d0f4054 2021-06-17 stsp }
8417 7cd52833 2022-06-23 thomas if (pack_fds) {
8418 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
8419 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
8420 7cd52833 2022-06-23 thomas if (error == NULL)
8421 7cd52833 2022-06-23 thomas error = pack_err;
8422 7cd52833 2022-06-23 thomas }
8423 51a10b52 2020-12-26 stsp tog_free_refs();
8424 6458efa5 2020-11-24 stsp return error;
8425 6458efa5 2020-11-24 stsp }
8426 6458efa5 2020-11-24 stsp
8427 fc2737d5 2022-09-15 thomas static const struct got_error*
8428 fc2737d5 2022-09-15 thomas win_draw_center(WINDOW *win, size_t y, size_t x, size_t maxx, int focus,
8429 fc2737d5 2022-09-15 thomas const char *str)
8430 fc2737d5 2022-09-15 thomas {
8431 fc2737d5 2022-09-15 thomas size_t len;
8432 fc2737d5 2022-09-15 thomas
8433 fc2737d5 2022-09-15 thomas if (win == NULL)
8434 fc2737d5 2022-09-15 thomas win = stdscr;
8435 fc2737d5 2022-09-15 thomas
8436 fc2737d5 2022-09-15 thomas len = strlen(str);
8437 fc2737d5 2022-09-15 thomas x = x ? x : maxx > len ? (maxx - len) / 2 : 0;
8438 fc2737d5 2022-09-15 thomas
8439 fc2737d5 2022-09-15 thomas if (focus)
8440 fc2737d5 2022-09-15 thomas wstandout(win);
8441 fc2737d5 2022-09-15 thomas if (mvwprintw(win, y, x, "%s", str) == ERR)
8442 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_RANGE, "mvwprintw");
8443 fc2737d5 2022-09-15 thomas if (focus)
8444 fc2737d5 2022-09-15 thomas wstandend(win);
8445 fc2737d5 2022-09-15 thomas
8446 fc2737d5 2022-09-15 thomas return NULL;
8447 fc2737d5 2022-09-15 thomas }
8448 fc2737d5 2022-09-15 thomas
8449 2a31b33b 2022-07-23 thomas static const struct got_error *
8450 fc2737d5 2022-09-15 thomas add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
8451 fc2737d5 2022-09-15 thomas {
8452 fc2737d5 2022-09-15 thomas off_t *p;
8453 fc2737d5 2022-09-15 thomas
8454 fc2737d5 2022-09-15 thomas p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
8455 fc2737d5 2022-09-15 thomas if (p == NULL) {
8456 fc2737d5 2022-09-15 thomas free(*line_offsets);
8457 fc2737d5 2022-09-15 thomas *line_offsets = NULL;
8458 fc2737d5 2022-09-15 thomas return got_error_from_errno("reallocarray");
8459 fc2737d5 2022-09-15 thomas }
8460 fc2737d5 2022-09-15 thomas
8461 fc2737d5 2022-09-15 thomas *line_offsets = p;
8462 fc2737d5 2022-09-15 thomas (*line_offsets)[*nlines] = off;
8463 fc2737d5 2022-09-15 thomas ++(*nlines);
8464 fc2737d5 2022-09-15 thomas return NULL;
8465 fc2737d5 2022-09-15 thomas }
8466 fc2737d5 2022-09-15 thomas
8467 fc2737d5 2022-09-15 thomas static const struct got_error *
8468 fc2737d5 2022-09-15 thomas max_key_str(int *ret, const struct tog_key_map *km, size_t n)
8469 fc2737d5 2022-09-15 thomas {
8470 fc2737d5 2022-09-15 thomas *ret = 0;
8471 fc2737d5 2022-09-15 thomas
8472 fc2737d5 2022-09-15 thomas for (;n > 0; --n, ++km) {
8473 fc2737d5 2022-09-15 thomas char *t0, *t, *k;
8474 fc2737d5 2022-09-15 thomas size_t len = 1;
8475 fc2737d5 2022-09-15 thomas
8476 fc2737d5 2022-09-15 thomas if (km->keys == NULL)
8477 fc2737d5 2022-09-15 thomas continue;
8478 fc2737d5 2022-09-15 thomas
8479 fc2737d5 2022-09-15 thomas t = t0 = strdup(km->keys);
8480 fc2737d5 2022-09-15 thomas if (t0 == NULL)
8481 fc2737d5 2022-09-15 thomas return got_error_from_errno("strdup");
8482 fc2737d5 2022-09-15 thomas
8483 fc2737d5 2022-09-15 thomas len += strlen(t);
8484 fc2737d5 2022-09-15 thomas while ((k = strsep(&t, " ")) != NULL)
8485 fc2737d5 2022-09-15 thomas len += strlen(k) > 1 ? 2 : 0;
8486 fc2737d5 2022-09-15 thomas free(t0);
8487 fc2737d5 2022-09-15 thomas *ret = MAX(*ret, len);
8488 fc2737d5 2022-09-15 thomas }
8489 fc2737d5 2022-09-15 thomas
8490 fc2737d5 2022-09-15 thomas return NULL;
8491 fc2737d5 2022-09-15 thomas }
8492 fc2737d5 2022-09-15 thomas
8493 fc2737d5 2022-09-15 thomas /*
8494 fc2737d5 2022-09-15 thomas * Write keymap section headers, keys, and key info in km to f.
8495 fc2737d5 2022-09-15 thomas * Save line offset to *off. If terminal has UTF8 encoding enabled,
8496 fc2737d5 2022-09-15 thomas * wrap control and symbolic keys in guillemets, else use <>.
8497 fc2737d5 2022-09-15 thomas */
8498 fc2737d5 2022-09-15 thomas static const struct got_error *
8499 fc2737d5 2022-09-15 thomas format_help_line(off_t *off, FILE *f, const struct tog_key_map *km, int width)
8500 fc2737d5 2022-09-15 thomas {
8501 fc2737d5 2022-09-15 thomas int n, len = width;
8502 fc2737d5 2022-09-15 thomas
8503 fc2737d5 2022-09-15 thomas if (km->keys) {
8504 30e77f6a 2022-09-18 thomas static const char *u8_glyph[] = {
8505 30e77f6a 2022-09-18 thomas "\xe2\x80\xb9", /* U+2039 (utf8 <) */
8506 30e77f6a 2022-09-18 thomas "\xe2\x80\xba" /* U+203A (utf8 >) */
8507 30e77f6a 2022-09-18 thomas };
8508 fc2737d5 2022-09-15 thomas char *t0, *t, *k;
8509 fc2737d5 2022-09-15 thomas int cs, s, first = 1;
8510 fc2737d5 2022-09-15 thomas
8511 fc2737d5 2022-09-15 thomas cs = got_locale_is_utf8();
8512 fc2737d5 2022-09-15 thomas
8513 fc2737d5 2022-09-15 thomas t = t0 = strdup(km->keys);
8514 fc2737d5 2022-09-15 thomas if (t0 == NULL)
8515 fc2737d5 2022-09-15 thomas return got_error_from_errno("strdup");
8516 fc2737d5 2022-09-15 thomas
8517 fc2737d5 2022-09-15 thomas len = strlen(km->keys);
8518 fc2737d5 2022-09-15 thomas while ((k = strsep(&t, " ")) != NULL) {
8519 fc2737d5 2022-09-15 thomas s = strlen(k) > 1; /* control or symbolic key */
8520 fc2737d5 2022-09-15 thomas n = fprintf(f, "%s%s%s%s%s", first ? " " : "",
8521 30e77f6a 2022-09-18 thomas cs && s ? u8_glyph[0] : s ? "<" : "", k,
8522 30e77f6a 2022-09-18 thomas cs && s ? u8_glyph[1] : s ? ">" : "", t ? " " : "");
8523 fc2737d5 2022-09-15 thomas if (n < 0) {
8524 fc2737d5 2022-09-15 thomas free(t0);
8525 fc2737d5 2022-09-15 thomas return got_error_from_errno("fprintf");
8526 fc2737d5 2022-09-15 thomas }
8527 fc2737d5 2022-09-15 thomas first = 0;
8528 fc2737d5 2022-09-15 thomas len += s ? 2 : 0;
8529 fc2737d5 2022-09-15 thomas *off += n;
8530 fc2737d5 2022-09-15 thomas }
8531 fc2737d5 2022-09-15 thomas free(t0);
8532 fc2737d5 2022-09-15 thomas }
8533 fc2737d5 2022-09-15 thomas n = fprintf(f, "%*s%s\n", width - len, width - len ? " " : "", km->info);
8534 fc2737d5 2022-09-15 thomas if (n < 0)
8535 fc2737d5 2022-09-15 thomas return got_error_from_errno("fprintf");
8536 fc2737d5 2022-09-15 thomas *off += n;
8537 fc2737d5 2022-09-15 thomas
8538 fc2737d5 2022-09-15 thomas return NULL;
8539 fc2737d5 2022-09-15 thomas }
8540 fc2737d5 2022-09-15 thomas
8541 fc2737d5 2022-09-15 thomas static const struct got_error *
8542 fc2737d5 2022-09-15 thomas format_help(struct tog_help_view_state *s)
8543 fc2737d5 2022-09-15 thomas {
8544 fc2737d5 2022-09-15 thomas const struct got_error *err = NULL;
8545 fc2737d5 2022-09-15 thomas off_t off = 0;
8546 fc2737d5 2022-09-15 thomas int i, max, n, show = s->all;
8547 fc2737d5 2022-09-15 thomas static const struct tog_key_map km[] = {
8548 fc2737d5 2022-09-15 thomas #define KEYMAP_(info, type) { NULL, (info), type }
8549 fc2737d5 2022-09-15 thomas #define KEY_(keys, info) { (keys), (info), TOG_KEYMAP_KEYS }
8550 fc2737d5 2022-09-15 thomas GENERATE_HELP
8551 fc2737d5 2022-09-15 thomas #undef KEYMAP_
8552 fc2737d5 2022-09-15 thomas #undef KEY_
8553 fc2737d5 2022-09-15 thomas };
8554 fc2737d5 2022-09-15 thomas
8555 fc2737d5 2022-09-15 thomas err = add_line_offset(&s->line_offsets, &s->nlines, 0);
8556 fc2737d5 2022-09-15 thomas if (err)
8557 fc2737d5 2022-09-15 thomas return err;
8558 fc2737d5 2022-09-15 thomas
8559 fc2737d5 2022-09-15 thomas n = nitems(km);
8560 fc2737d5 2022-09-15 thomas err = max_key_str(&max, km, n);
8561 fc2737d5 2022-09-15 thomas if (err)
8562 fc2737d5 2022-09-15 thomas return err;
8563 fc2737d5 2022-09-15 thomas
8564 fc2737d5 2022-09-15 thomas for (i = 0; i < n; ++i) {
8565 fc2737d5 2022-09-15 thomas if (km[i].keys == NULL) {
8566 fc2737d5 2022-09-15 thomas show = s->all;
8567 fc2737d5 2022-09-15 thomas if (km[i].type == TOG_KEYMAP_GLOBAL ||
8568 fc2737d5 2022-09-15 thomas km[i].type == s->type || s->all)
8569 fc2737d5 2022-09-15 thomas show = 1;
8570 fc2737d5 2022-09-15 thomas }
8571 fc2737d5 2022-09-15 thomas if (show) {
8572 fc2737d5 2022-09-15 thomas err = format_help_line(&off, s->f, &km[i], max);
8573 fc2737d5 2022-09-15 thomas if (err)
8574 fc2737d5 2022-09-15 thomas return err;
8575 fc2737d5 2022-09-15 thomas err = add_line_offset(&s->line_offsets, &s->nlines, off);
8576 fc2737d5 2022-09-15 thomas if (err)
8577 fc2737d5 2022-09-15 thomas return err;
8578 fc2737d5 2022-09-15 thomas }
8579 fc2737d5 2022-09-15 thomas }
8580 fc2737d5 2022-09-15 thomas fputc('\n', s->f);
8581 fc2737d5 2022-09-15 thomas ++off;
8582 fc2737d5 2022-09-15 thomas err = add_line_offset(&s->line_offsets, &s->nlines, off);
8583 fc2737d5 2022-09-15 thomas return err;
8584 fc2737d5 2022-09-15 thomas }
8585 fc2737d5 2022-09-15 thomas
8586 fc2737d5 2022-09-15 thomas static const struct got_error *
8587 fc2737d5 2022-09-15 thomas create_help(struct tog_help_view_state *s)
8588 fc2737d5 2022-09-15 thomas {
8589 fc2737d5 2022-09-15 thomas FILE *f;
8590 fc2737d5 2022-09-15 thomas const struct got_error *err;
8591 fc2737d5 2022-09-15 thomas
8592 fc2737d5 2022-09-15 thomas free(s->line_offsets);
8593 fc2737d5 2022-09-15 thomas s->line_offsets = NULL;
8594 fc2737d5 2022-09-15 thomas s->nlines = 0;
8595 fc2737d5 2022-09-15 thomas
8596 fc2737d5 2022-09-15 thomas f = got_opentemp();
8597 fc2737d5 2022-09-15 thomas if (f == NULL)
8598 fc2737d5 2022-09-15 thomas return got_error_from_errno("got_opentemp");
8599 fc2737d5 2022-09-15 thomas s->f = f;
8600 fc2737d5 2022-09-15 thomas
8601 fc2737d5 2022-09-15 thomas err = format_help(s);
8602 fc2737d5 2022-09-15 thomas if (err)
8603 fc2737d5 2022-09-15 thomas return err;
8604 fc2737d5 2022-09-15 thomas
8605 fc2737d5 2022-09-15 thomas if (s->f && fflush(s->f) != 0)
8606 fc2737d5 2022-09-15 thomas return got_error_from_errno("fflush");
8607 fc2737d5 2022-09-15 thomas
8608 fc2737d5 2022-09-15 thomas return NULL;
8609 fc2737d5 2022-09-15 thomas }
8610 fc2737d5 2022-09-15 thomas
8611 fc2737d5 2022-09-15 thomas static const struct got_error *
8612 fc2737d5 2022-09-15 thomas search_start_help_view(struct tog_view *view)
8613 fc2737d5 2022-09-15 thomas {
8614 fc2737d5 2022-09-15 thomas view->state.help.matched_line = 0;
8615 fc2737d5 2022-09-15 thomas return NULL;
8616 fc2737d5 2022-09-15 thomas }
8617 fc2737d5 2022-09-15 thomas
8618 2a7d3cd7 2022-09-17 thomas static void
8619 2a7d3cd7 2022-09-17 thomas search_setup_help_view(struct tog_view *view, FILE **f, off_t **line_offsets,
8620 2a7d3cd7 2022-09-17 thomas size_t *nlines, int **first, int **last, int **match, int **selected)
8621 2a7d3cd7 2022-09-17 thomas {
8622 2a7d3cd7 2022-09-17 thomas struct tog_help_view_state *s = &view->state.help;
8623 2a7d3cd7 2022-09-17 thomas
8624 2a7d3cd7 2022-09-17 thomas *f = s->f;
8625 2a7d3cd7 2022-09-17 thomas *nlines = s->nlines;
8626 2a7d3cd7 2022-09-17 thomas *line_offsets = s->line_offsets;
8627 2a7d3cd7 2022-09-17 thomas *match = &s->matched_line;
8628 2a7d3cd7 2022-09-17 thomas *first = &s->first_displayed_line;
8629 2a7d3cd7 2022-09-17 thomas *last = &s->last_displayed_line;
8630 2a7d3cd7 2022-09-17 thomas *selected = &s->selected_line;
8631 2a7d3cd7 2022-09-17 thomas }
8632 2a7d3cd7 2022-09-17 thomas
8633 fc2737d5 2022-09-15 thomas static const struct got_error *
8634 fc2737d5 2022-09-15 thomas show_help_view(struct tog_view *view)
8635 fc2737d5 2022-09-15 thomas {
8636 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8637 fc2737d5 2022-09-15 thomas const struct got_error *err;
8638 fc2737d5 2022-09-15 thomas regmatch_t *regmatch = &view->regmatch;
8639 fc2737d5 2022-09-15 thomas wchar_t *wline;
8640 fc2737d5 2022-09-15 thomas char *line;
8641 fc2737d5 2022-09-15 thomas ssize_t linelen;
8642 fc2737d5 2022-09-15 thomas size_t linesz = 0;
8643 fc2737d5 2022-09-15 thomas int width, nprinted = 0, rc = 0;
8644 fc2737d5 2022-09-15 thomas int eos = view->nlines;
8645 fc2737d5 2022-09-15 thomas
8646 fc2737d5 2022-09-15 thomas if (view_is_hsplit_top(view))
8647 fc2737d5 2022-09-15 thomas --eos; /* account for border */
8648 fc2737d5 2022-09-15 thomas
8649 fc2737d5 2022-09-15 thomas s->lineno = 0;
8650 fc2737d5 2022-09-15 thomas rewind(s->f);
8651 fc2737d5 2022-09-15 thomas werase(view->window);
8652 fc2737d5 2022-09-15 thomas
8653 fc2737d5 2022-09-15 thomas if (view->gline > s->nlines - 1)
8654 fc2737d5 2022-09-15 thomas view->gline = s->nlines - 1;
8655 fc2737d5 2022-09-15 thomas
8656 fc2737d5 2022-09-15 thomas err = win_draw_center(view->window, 0, 0, view->ncols,
8657 06ff88bb 2022-09-19 thomas view_needs_focus_indication(view),
8658 850265be 2022-09-19 thomas "tog help (press q to return to tog)");
8659 fc2737d5 2022-09-15 thomas if (err)
8660 fc2737d5 2022-09-15 thomas return err;
8661 fc2737d5 2022-09-15 thomas if (eos <= 1)
8662 fc2737d5 2022-09-15 thomas return NULL;
8663 fc2737d5 2022-09-15 thomas waddstr(view->window, "\n\n");
8664 fc2737d5 2022-09-15 thomas eos -= 2;
8665 fc2737d5 2022-09-15 thomas
8666 fc2737d5 2022-09-15 thomas s->eof = 0;
8667 fc2737d5 2022-09-15 thomas view->maxx = 0;
8668 fc2737d5 2022-09-15 thomas line = NULL;
8669 fc2737d5 2022-09-15 thomas while (eos > 0 && nprinted < eos) {
8670 fc2737d5 2022-09-15 thomas attr_t attr = 0;
8671 fc2737d5 2022-09-15 thomas
8672 fc2737d5 2022-09-15 thomas linelen = getline(&line, &linesz, s->f);
8673 fc2737d5 2022-09-15 thomas if (linelen == -1) {
8674 fc2737d5 2022-09-15 thomas if (!feof(s->f)) {
8675 fc2737d5 2022-09-15 thomas free(line);
8676 fc2737d5 2022-09-15 thomas return got_ferror(s->f, GOT_ERR_IO);
8677 fc2737d5 2022-09-15 thomas }
8678 fc2737d5 2022-09-15 thomas s->eof = 1;
8679 fc2737d5 2022-09-15 thomas break;
8680 fc2737d5 2022-09-15 thomas }
8681 fc2737d5 2022-09-15 thomas if (++s->lineno < s->first_displayed_line)
8682 fc2737d5 2022-09-15 thomas continue;
8683 fc2737d5 2022-09-15 thomas if (view->gline && !gotoline(view, &s->lineno, &nprinted))
8684 fc2737d5 2022-09-15 thomas continue;
8685 fc2737d5 2022-09-15 thomas if (s->lineno == view->hiline)
8686 fc2737d5 2022-09-15 thomas attr = A_STANDOUT;
8687 fc2737d5 2022-09-15 thomas
8688 fc2737d5 2022-09-15 thomas err = format_line(&wline, &width, NULL, line, 0, INT_MAX, 0,
8689 fc2737d5 2022-09-15 thomas view->x ? 1 : 0);
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 view->maxx = MAX(view->maxx, width);
8695 fc2737d5 2022-09-15 thomas free(wline);
8696 fc2737d5 2022-09-15 thomas wline = NULL;
8697 fc2737d5 2022-09-15 thomas
8698 fc2737d5 2022-09-15 thomas if (attr)
8699 fc2737d5 2022-09-15 thomas wattron(view->window, attr);
8700 fc2737d5 2022-09-15 thomas if (s->first_displayed_line + nprinted == s->matched_line &&
8701 fc2737d5 2022-09-15 thomas regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
8702 fc2737d5 2022-09-15 thomas err = add_matched_line(&width, line, view->ncols - 1, 0,
8703 fc2737d5 2022-09-15 thomas view->window, view->x, regmatch);
8704 fc2737d5 2022-09-15 thomas if (err) {
8705 fc2737d5 2022-09-15 thomas free(line);
8706 fc2737d5 2022-09-15 thomas return err;
8707 fc2737d5 2022-09-15 thomas }
8708 fc2737d5 2022-09-15 thomas } else {
8709 fc2737d5 2022-09-15 thomas int skip;
8710 fc2737d5 2022-09-15 thomas
8711 fc2737d5 2022-09-15 thomas err = format_line(&wline, &width, &skip, line,
8712 fc2737d5 2022-09-15 thomas view->x, view->ncols - 1, 0, view->x ? 1 : 0);
8713 fc2737d5 2022-09-15 thomas if (err) {
8714 fc2737d5 2022-09-15 thomas free(line);
8715 fc2737d5 2022-09-15 thomas return err;
8716 fc2737d5 2022-09-15 thomas }
8717 fc2737d5 2022-09-15 thomas rc = waddwstr(view->window, &wline[skip]);
8718 fc2737d5 2022-09-15 thomas free(wline);
8719 fc2737d5 2022-09-15 thomas wline = NULL;
8720 fc2737d5 2022-09-15 thomas if (rc == ERR)
8721 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_IO, "waddwstr");
8722 fc2737d5 2022-09-15 thomas }
8723 fc2737d5 2022-09-15 thomas if (s->lineno == view->hiline) {
8724 fc2737d5 2022-09-15 thomas while (width++ < view->ncols)
8725 fc2737d5 2022-09-15 thomas waddch(view->window, ' ');
8726 fc2737d5 2022-09-15 thomas } else {
8727 fc2737d5 2022-09-15 thomas if (width <= view->ncols)
8728 fc2737d5 2022-09-15 thomas waddch(view->window, '\n');
8729 fc2737d5 2022-09-15 thomas }
8730 fc2737d5 2022-09-15 thomas if (attr)
8731 fc2737d5 2022-09-15 thomas wattroff(view->window, attr);
8732 fc2737d5 2022-09-15 thomas if (++nprinted == 1)
8733 fc2737d5 2022-09-15 thomas s->first_displayed_line = s->lineno;
8734 fc2737d5 2022-09-15 thomas }
8735 fc2737d5 2022-09-15 thomas free(line);
8736 fc2737d5 2022-09-15 thomas if (nprinted > 0)
8737 fc2737d5 2022-09-15 thomas s->last_displayed_line = s->first_displayed_line + nprinted - 1;
8738 fc2737d5 2022-09-15 thomas else
8739 fc2737d5 2022-09-15 thomas s->last_displayed_line = s->first_displayed_line;
8740 fc2737d5 2022-09-15 thomas
8741 fc2737d5 2022-09-15 thomas view_border(view);
8742 fc2737d5 2022-09-15 thomas
8743 fc2737d5 2022-09-15 thomas if (s->eof) {
8744 fc2737d5 2022-09-15 thomas rc = waddnstr(view->window,
8745 fc2737d5 2022-09-15 thomas "See the tog(1) manual page for full documentation",
8746 fc2737d5 2022-09-15 thomas view->ncols - 1);
8747 fc2737d5 2022-09-15 thomas if (rc == ERR)
8748 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8749 fc2737d5 2022-09-15 thomas } else {
8750 fc2737d5 2022-09-15 thomas wmove(view->window, view->nlines - 1, 0);
8751 fc2737d5 2022-09-15 thomas wclrtoeol(view->window);
8752 fc2737d5 2022-09-15 thomas wstandout(view->window);
8753 fc2737d5 2022-09-15 thomas rc = waddnstr(view->window, "scroll down for more...",
8754 fc2737d5 2022-09-15 thomas view->ncols - 1);
8755 fc2737d5 2022-09-15 thomas if (rc == ERR)
8756 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_RANGE, "waddnstr");
8757 fc2737d5 2022-09-15 thomas if (getcurx(view->window) < view->ncols - 6) {
8758 fc2737d5 2022-09-15 thomas rc = wprintw(view->window, "[%.0f%%]",
8759 fc2737d5 2022-09-15 thomas 100.00 * s->last_displayed_line / s->nlines);
8760 fc2737d5 2022-09-15 thomas if (rc == ERR)
8761 fc2737d5 2022-09-15 thomas return got_error_msg(GOT_ERR_IO, "wprintw");
8762 fc2737d5 2022-09-15 thomas }
8763 fc2737d5 2022-09-15 thomas wstandend(view->window);
8764 fc2737d5 2022-09-15 thomas }
8765 fc2737d5 2022-09-15 thomas
8766 fc2737d5 2022-09-15 thomas return NULL;
8767 fc2737d5 2022-09-15 thomas }
8768 fc2737d5 2022-09-15 thomas
8769 fc2737d5 2022-09-15 thomas static const struct got_error *
8770 fc2737d5 2022-09-15 thomas input_help_view(struct tog_view **new_view, struct tog_view *view, int ch)
8771 fc2737d5 2022-09-15 thomas {
8772 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8773 fc2737d5 2022-09-15 thomas const struct got_error *err = NULL;
8774 fc2737d5 2022-09-15 thomas char *line = NULL;
8775 fc2737d5 2022-09-15 thomas ssize_t linelen;
8776 fc2737d5 2022-09-15 thomas size_t linesz = 0;
8777 fc2737d5 2022-09-15 thomas int eos, nscroll;
8778 fc2737d5 2022-09-15 thomas
8779 fc2737d5 2022-09-15 thomas eos = nscroll = view->nlines;
8780 fc2737d5 2022-09-15 thomas if (view_is_hsplit_top(view))
8781 fc2737d5 2022-09-15 thomas --eos; /* border */
8782 fc2737d5 2022-09-15 thomas
8783 fc2737d5 2022-09-15 thomas s->lineno = s->first_displayed_line - 1 + s->selected_line;
8784 fc2737d5 2022-09-15 thomas
8785 fc2737d5 2022-09-15 thomas switch (ch) {
8786 fc2737d5 2022-09-15 thomas case '0':
8787 fc2737d5 2022-09-15 thomas view->x = 0;
8788 fc2737d5 2022-09-15 thomas break;
8789 fc2737d5 2022-09-15 thomas case '$':
8790 fc2737d5 2022-09-15 thomas view->x = MAX(view->maxx - view->ncols / 3, 0);
8791 fc2737d5 2022-09-15 thomas view->count = 0;
8792 fc2737d5 2022-09-15 thomas break;
8793 fc2737d5 2022-09-15 thomas case KEY_RIGHT:
8794 fc2737d5 2022-09-15 thomas case 'l':
8795 fc2737d5 2022-09-15 thomas if (view->x + view->ncols / 3 < view->maxx)
8796 fc2737d5 2022-09-15 thomas view->x += 2;
8797 fc2737d5 2022-09-15 thomas else
8798 fc2737d5 2022-09-15 thomas view->count = 0;
8799 fc2737d5 2022-09-15 thomas break;
8800 fc2737d5 2022-09-15 thomas case KEY_LEFT:
8801 fc2737d5 2022-09-15 thomas case 'h':
8802 fc2737d5 2022-09-15 thomas view->x -= MIN(view->x, 2);
8803 fc2737d5 2022-09-15 thomas if (view->x <= 0)
8804 fc2737d5 2022-09-15 thomas view->count = 0;
8805 fc2737d5 2022-09-15 thomas break;
8806 fc2737d5 2022-09-15 thomas case 'g':
8807 fc2737d5 2022-09-15 thomas case KEY_HOME:
8808 fc2737d5 2022-09-15 thomas s->first_displayed_line = 1;
8809 fc2737d5 2022-09-15 thomas view->count = 0;
8810 fc2737d5 2022-09-15 thomas break;
8811 fc2737d5 2022-09-15 thomas case 'G':
8812 fc2737d5 2022-09-15 thomas case KEY_END:
8813 fc2737d5 2022-09-15 thomas view->count = 0;
8814 fc2737d5 2022-09-15 thomas if (s->eof)
8815 fc2737d5 2022-09-15 thomas break;
8816 fc2737d5 2022-09-15 thomas s->first_displayed_line = (s->nlines - eos) + 3;
8817 fc2737d5 2022-09-15 thomas s->eof = 1;
8818 fc2737d5 2022-09-15 thomas break;
8819 fc2737d5 2022-09-15 thomas case 'k':
8820 fc2737d5 2022-09-15 thomas case KEY_UP:
8821 fc2737d5 2022-09-15 thomas if (s->first_displayed_line > 1)
8822 fc2737d5 2022-09-15 thomas --s->first_displayed_line;
8823 fc2737d5 2022-09-15 thomas else
8824 fc2737d5 2022-09-15 thomas view->count = 0;
8825 fc2737d5 2022-09-15 thomas break;
8826 fc2737d5 2022-09-15 thomas case CTRL('u'):
8827 fc2737d5 2022-09-15 thomas case 'u':
8828 fc2737d5 2022-09-15 thomas nscroll /= 2;
8829 fc2737d5 2022-09-15 thomas /* FALL THROUGH */
8830 fc2737d5 2022-09-15 thomas case KEY_PPAGE:
8831 fc2737d5 2022-09-15 thomas case CTRL('b'):
8832 fc2737d5 2022-09-15 thomas case 'b':
8833 fc2737d5 2022-09-15 thomas if (s->first_displayed_line == 1) {
8834 fc2737d5 2022-09-15 thomas view->count = 0;
8835 fc2737d5 2022-09-15 thomas break;
8836 fc2737d5 2022-09-15 thomas }
8837 fc2737d5 2022-09-15 thomas while (--nscroll > 0 && s->first_displayed_line > 1)
8838 fc2737d5 2022-09-15 thomas s->first_displayed_line--;
8839 fc2737d5 2022-09-15 thomas break;
8840 fc2737d5 2022-09-15 thomas case 'j':
8841 fc2737d5 2022-09-15 thomas case KEY_DOWN:
8842 fc2737d5 2022-09-15 thomas case CTRL('n'):
8843 fc2737d5 2022-09-15 thomas if (!s->eof)
8844 fc2737d5 2022-09-15 thomas ++s->first_displayed_line;
8845 fc2737d5 2022-09-15 thomas else
8846 fc2737d5 2022-09-15 thomas view->count = 0;
8847 fc2737d5 2022-09-15 thomas break;
8848 fc2737d5 2022-09-15 thomas case CTRL('d'):
8849 fc2737d5 2022-09-15 thomas case 'd':
8850 fc2737d5 2022-09-15 thomas nscroll /= 2;
8851 fc2737d5 2022-09-15 thomas /* FALL THROUGH */
8852 fc2737d5 2022-09-15 thomas case KEY_NPAGE:
8853 fc2737d5 2022-09-15 thomas case CTRL('f'):
8854 fc2737d5 2022-09-15 thomas case 'f':
8855 fc2737d5 2022-09-15 thomas case ' ':
8856 fc2737d5 2022-09-15 thomas if (s->eof) {
8857 fc2737d5 2022-09-15 thomas view->count = 0;
8858 fc2737d5 2022-09-15 thomas break;
8859 fc2737d5 2022-09-15 thomas }
8860 fc2737d5 2022-09-15 thomas while (!s->eof && --nscroll > 0) {
8861 fc2737d5 2022-09-15 thomas linelen = getline(&line, &linesz, s->f);
8862 fc2737d5 2022-09-15 thomas s->first_displayed_line++;
8863 fc2737d5 2022-09-15 thomas if (linelen == -1) {
8864 fc2737d5 2022-09-15 thomas if (feof(s->f))
8865 fc2737d5 2022-09-15 thomas s->eof = 1;
8866 fc2737d5 2022-09-15 thomas else
8867 fc2737d5 2022-09-15 thomas err = got_ferror(s->f, GOT_ERR_IO);
8868 fc2737d5 2022-09-15 thomas break;
8869 fc2737d5 2022-09-15 thomas }
8870 fc2737d5 2022-09-15 thomas }
8871 fc2737d5 2022-09-15 thomas free(line);
8872 fc2737d5 2022-09-15 thomas break;
8873 fc2737d5 2022-09-15 thomas default:
8874 fc2737d5 2022-09-15 thomas view->count = 0;
8875 fc2737d5 2022-09-15 thomas break;
8876 fc2737d5 2022-09-15 thomas }
8877 fc2737d5 2022-09-15 thomas
8878 fc2737d5 2022-09-15 thomas return err;
8879 fc2737d5 2022-09-15 thomas }
8880 fc2737d5 2022-09-15 thomas
8881 fc2737d5 2022-09-15 thomas static const struct got_error *
8882 fc2737d5 2022-09-15 thomas close_help_view(struct tog_view *view)
8883 fc2737d5 2022-09-15 thomas {
8884 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8885 fc2737d5 2022-09-15 thomas
8886 fc2737d5 2022-09-15 thomas free(s->line_offsets);
8887 fc2737d5 2022-09-15 thomas s->line_offsets = NULL;
8888 fc2737d5 2022-09-15 thomas if (fclose(s->f) == EOF)
8889 fc2737d5 2022-09-15 thomas return got_error_from_errno("fclose");
8890 fc2737d5 2022-09-15 thomas
8891 fc2737d5 2022-09-15 thomas return NULL;
8892 fc2737d5 2022-09-15 thomas }
8893 fc2737d5 2022-09-15 thomas
8894 fc2737d5 2022-09-15 thomas static const struct got_error *
8895 fc2737d5 2022-09-15 thomas reset_help_view(struct tog_view *view)
8896 fc2737d5 2022-09-15 thomas {
8897 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8898 fc2737d5 2022-09-15 thomas
8899 fc2737d5 2022-09-15 thomas
8900 fc2737d5 2022-09-15 thomas if (s->f && fclose(s->f) == EOF)
8901 fc2737d5 2022-09-15 thomas return got_error_from_errno("fclose");
8902 fc2737d5 2022-09-15 thomas
8903 fc2737d5 2022-09-15 thomas wclear(view->window);
8904 fc2737d5 2022-09-15 thomas view->count = 0;
8905 fc2737d5 2022-09-15 thomas view->x = 0;
8906 fc2737d5 2022-09-15 thomas s->all = !s->all;
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->matched_line = 0;
8910 fc2737d5 2022-09-15 thomas
8911 fc2737d5 2022-09-15 thomas return create_help(s);
8912 fc2737d5 2022-09-15 thomas }
8913 fc2737d5 2022-09-15 thomas
8914 fc2737d5 2022-09-15 thomas static const struct got_error *
8915 fc2737d5 2022-09-15 thomas open_help_view(struct tog_view *view, struct tog_view *parent)
8916 fc2737d5 2022-09-15 thomas {
8917 fc2737d5 2022-09-15 thomas const struct got_error *err = NULL;
8918 fc2737d5 2022-09-15 thomas struct tog_help_view_state *s = &view->state.help;
8919 fc2737d5 2022-09-15 thomas
8920 fc2737d5 2022-09-15 thomas s->type = (enum tog_keymap_type)parent->type;
8921 fc2737d5 2022-09-15 thomas s->first_displayed_line = 1;
8922 fc2737d5 2022-09-15 thomas s->last_displayed_line = view->nlines;
8923 fc2737d5 2022-09-15 thomas s->selected_line = 1;
8924 fc2737d5 2022-09-15 thomas
8925 fc2737d5 2022-09-15 thomas view->show = show_help_view;
8926 fc2737d5 2022-09-15 thomas view->input = input_help_view;
8927 fc2737d5 2022-09-15 thomas view->reset = reset_help_view;
8928 fc2737d5 2022-09-15 thomas view->close = close_help_view;
8929 fc2737d5 2022-09-15 thomas view->search_start = search_start_help_view;
8930 2a7d3cd7 2022-09-17 thomas view->search_setup = search_setup_help_view;
8931 fc2737d5 2022-09-15 thomas view->search_next = search_next_view_match;
8932 fc2737d5 2022-09-15 thomas
8933 fc2737d5 2022-09-15 thomas err = create_help(s);
8934 fc2737d5 2022-09-15 thomas return err;
8935 fc2737d5 2022-09-15 thomas }
8936 fc2737d5 2022-09-15 thomas
8937 fc2737d5 2022-09-15 thomas static const struct got_error *
8938 2a31b33b 2022-07-23 thomas view_dispatch_request(struct tog_view **new_view, struct tog_view *view,
8939 2a31b33b 2022-07-23 thomas enum tog_view_type request, int y, int x)
8940 2a31b33b 2022-07-23 thomas {
8941 2a31b33b 2022-07-23 thomas const struct got_error *err = NULL;
8942 2a31b33b 2022-07-23 thomas
8943 2a31b33b 2022-07-23 thomas *new_view = NULL;
8944 2a31b33b 2022-07-23 thomas
8945 2a31b33b 2022-07-23 thomas switch (request) {
8946 2a31b33b 2022-07-23 thomas case TOG_VIEW_DIFF:
8947 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_LOG) {
8948 2a31b33b 2022-07-23 thomas struct tog_log_view_state *s = &view->state.log;
8949 2a31b33b 2022-07-23 thomas
8950 2a31b33b 2022-07-23 thomas err = open_diff_view_for_commit(new_view, y, x,
8951 2a31b33b 2022-07-23 thomas s->selected_entry->commit, s->selected_entry->id,
8952 2a31b33b 2022-07-23 thomas view, s->repo);
8953 2a31b33b 2022-07-23 thomas } else
8954 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8955 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8956 2a31b33b 2022-07-23 thomas break;
8957 2a31b33b 2022-07-23 thomas case TOG_VIEW_BLAME:
8958 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_TREE) {
8959 2a31b33b 2022-07-23 thomas struct tog_tree_view_state *s = &view->state.tree;
8960 2a31b33b 2022-07-23 thomas
8961 2a31b33b 2022-07-23 thomas err = blame_tree_entry(new_view, y, x,
8962 2a31b33b 2022-07-23 thomas s->selected_entry, &s->parents, s->commit_id,
8963 2a31b33b 2022-07-23 thomas s->repo);
8964 2a31b33b 2022-07-23 thomas } else
8965 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8966 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8967 2a31b33b 2022-07-23 thomas break;
8968 2a31b33b 2022-07-23 thomas case TOG_VIEW_LOG:
8969 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_BLAME)
8970 2a31b33b 2022-07-23 thomas err = log_annotated_line(new_view, y, x,
8971 2a31b33b 2022-07-23 thomas view->state.blame.repo, view->state.blame.id_to_log);
8972 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_TREE)
8973 2a31b33b 2022-07-23 thomas err = log_selected_tree_entry(new_view, y, x,
8974 2a31b33b 2022-07-23 thomas &view->state.tree);
8975 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_REF)
8976 2a31b33b 2022-07-23 thomas err = log_ref_entry(new_view, y, x,
8977 2a31b33b 2022-07-23 thomas view->state.ref.selected_entry,
8978 2a31b33b 2022-07-23 thomas view->state.ref.repo);
8979 2a31b33b 2022-07-23 thomas else
8980 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8981 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8982 2a31b33b 2022-07-23 thomas break;
8983 2a31b33b 2022-07-23 thomas case TOG_VIEW_TREE:
8984 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_LOG)
8985 2a31b33b 2022-07-23 thomas err = browse_commit_tree(new_view, y, x,
8986 2a31b33b 2022-07-23 thomas view->state.log.selected_entry,
8987 2a31b33b 2022-07-23 thomas view->state.log.in_repo_path,
8988 2a31b33b 2022-07-23 thomas view->state.log.head_ref_name,
8989 2a31b33b 2022-07-23 thomas view->state.log.repo);
8990 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_REF)
8991 2a31b33b 2022-07-23 thomas err = browse_ref_tree(new_view, y, x,
8992 2a31b33b 2022-07-23 thomas view->state.ref.selected_entry,
8993 2a31b33b 2022-07-23 thomas view->state.ref.repo);
8994 2a31b33b 2022-07-23 thomas else
8995 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL,
8996 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
8997 2a31b33b 2022-07-23 thomas break;
8998 2a31b33b 2022-07-23 thomas case TOG_VIEW_REF:
8999 2a31b33b 2022-07-23 thomas *new_view = view_open(0, 0, y, x, TOG_VIEW_REF);
9000 2a31b33b 2022-07-23 thomas if (*new_view == NULL)
9001 2a31b33b 2022-07-23 thomas return got_error_from_errno("view_open");
9002 2a31b33b 2022-07-23 thomas if (view->type == TOG_VIEW_LOG)
9003 2a31b33b 2022-07-23 thomas err = open_ref_view(*new_view, view->state.log.repo);
9004 2a31b33b 2022-07-23 thomas else if (view->type == TOG_VIEW_TREE)
9005 2a31b33b 2022-07-23 thomas err = open_ref_view(*new_view, view->state.tree.repo);
9006 2a31b33b 2022-07-23 thomas else
9007 2a31b33b 2022-07-23 thomas err = got_error_msg(GOT_ERR_NOT_IMPL,
9008 2a31b33b 2022-07-23 thomas "parent/child view pair not supported");
9009 2a31b33b 2022-07-23 thomas if (err)
9010 2a31b33b 2022-07-23 thomas view_close(*new_view);
9011 2a31b33b 2022-07-23 thomas break;
9012 fc2737d5 2022-09-15 thomas case TOG_VIEW_HELP:
9013 a7dd23ad 2022-09-19 thomas *new_view = view_open(0, 0, 0, 0, TOG_VIEW_HELP);
9014 fc2737d5 2022-09-15 thomas if (*new_view == NULL)
9015 fc2737d5 2022-09-15 thomas return got_error_from_errno("view_open");
9016 fc2737d5 2022-09-15 thomas err = open_help_view(*new_view, view);
9017 fc2737d5 2022-09-15 thomas if (err)
9018 fc2737d5 2022-09-15 thomas view_close(*new_view);
9019 fc2737d5 2022-09-15 thomas break;
9020 2a31b33b 2022-07-23 thomas default:
9021 2a31b33b 2022-07-23 thomas return got_error_msg(GOT_ERR_NOT_IMPL, "invalid view");
9022 2a31b33b 2022-07-23 thomas }
9023 2a31b33b 2022-07-23 thomas
9024 2a31b33b 2022-07-23 thomas return err;
9025 2a31b33b 2022-07-23 thomas }
9026 2a31b33b 2022-07-23 thomas
9027 a5d43cac 2022-07-01 thomas /*
9028 a5d43cac 2022-07-01 thomas * If view was scrolled down to move the selected line into view when opening a
9029 a5d43cac 2022-07-01 thomas * horizontal split, scroll back up when closing the split/toggling fullscreen.
9030 a5d43cac 2022-07-01 thomas */
9031 6458efa5 2020-11-24 stsp static void
9032 a5d43cac 2022-07-01 thomas offset_selection_up(struct tog_view *view)
9033 a5d43cac 2022-07-01 thomas {
9034 a5d43cac 2022-07-01 thomas switch (view->type) {
9035 a5d43cac 2022-07-01 thomas case TOG_VIEW_BLAME: {
9036 a5d43cac 2022-07-01 thomas struct tog_blame_view_state *s = &view->state.blame;
9037 a5d43cac 2022-07-01 thomas if (s->first_displayed_line == 1) {
9038 a5d43cac 2022-07-01 thomas s->selected_line = MAX(s->selected_line - view->offset,
9039 a5d43cac 2022-07-01 thomas 1);
9040 a5d43cac 2022-07-01 thomas break;
9041 a5d43cac 2022-07-01 thomas }
9042 a5d43cac 2022-07-01 thomas if (s->first_displayed_line > view->offset)
9043 a5d43cac 2022-07-01 thomas s->first_displayed_line -= view->offset;
9044 a5d43cac 2022-07-01 thomas else
9045 a5d43cac 2022-07-01 thomas s->first_displayed_line = 1;
9046 a5d43cac 2022-07-01 thomas s->selected_line += view->offset;
9047 a5d43cac 2022-07-01 thomas break;
9048 a5d43cac 2022-07-01 thomas }
9049 a5d43cac 2022-07-01 thomas case TOG_VIEW_LOG:
9050 a5d43cac 2022-07-01 thomas log_scroll_up(&view->state.log, view->offset);
9051 a5d43cac 2022-07-01 thomas view->state.log.selected += view->offset;
9052 a5d43cac 2022-07-01 thomas break;
9053 a5d43cac 2022-07-01 thomas case TOG_VIEW_REF:
9054 a5d43cac 2022-07-01 thomas ref_scroll_up(&view->state.ref, view->offset);
9055 a5d43cac 2022-07-01 thomas view->state.ref.selected += view->offset;
9056 a5d43cac 2022-07-01 thomas break;
9057 a5d43cac 2022-07-01 thomas case TOG_VIEW_TREE:
9058 a5d43cac 2022-07-01 thomas tree_scroll_up(&view->state.tree, view->offset);
9059 a5d43cac 2022-07-01 thomas view->state.tree.selected += view->offset;
9060 a5d43cac 2022-07-01 thomas break;
9061 a5d43cac 2022-07-01 thomas default:
9062 a5d43cac 2022-07-01 thomas break;
9063 a5d43cac 2022-07-01 thomas }
9064 a5d43cac 2022-07-01 thomas
9065 a5d43cac 2022-07-01 thomas view->offset = 0;
9066 a5d43cac 2022-07-01 thomas }
9067 a5d43cac 2022-07-01 thomas
9068 a5d43cac 2022-07-01 thomas /*
9069 a5d43cac 2022-07-01 thomas * If the selected line is in the section of screen covered by the bottom split,
9070 a5d43cac 2022-07-01 thomas * scroll down offset lines to move it into view and index its new position.
9071 a5d43cac 2022-07-01 thomas */
9072 a5d43cac 2022-07-01 thomas static const struct got_error *
9073 a5d43cac 2022-07-01 thomas offset_selection_down(struct tog_view *view)
9074 a5d43cac 2022-07-01 thomas {
9075 a5d43cac 2022-07-01 thomas const struct got_error *err = NULL;
9076 a5d43cac 2022-07-01 thomas const struct got_error *(*scrolld)(struct tog_view *, int);
9077 a5d43cac 2022-07-01 thomas int *selected = NULL;
9078 a5d43cac 2022-07-01 thomas int header, offset;
9079 a5d43cac 2022-07-01 thomas
9080 a5d43cac 2022-07-01 thomas switch (view->type) {
9081 a5d43cac 2022-07-01 thomas case TOG_VIEW_BLAME: {
9082 a5d43cac 2022-07-01 thomas struct tog_blame_view_state *s = &view->state.blame;
9083 a5d43cac 2022-07-01 thomas header = 3;
9084 a5d43cac 2022-07-01 thomas scrolld = NULL;
9085 a5d43cac 2022-07-01 thomas if (s->selected_line > view->nlines - header) {
9086 a5d43cac 2022-07-01 thomas offset = abs(view->nlines - s->selected_line - header);
9087 a5d43cac 2022-07-01 thomas s->first_displayed_line += offset;
9088 a5d43cac 2022-07-01 thomas s->selected_line -= offset;
9089 a5d43cac 2022-07-01 thomas view->offset = offset;
9090 a5d43cac 2022-07-01 thomas }
9091 a5d43cac 2022-07-01 thomas break;
9092 a5d43cac 2022-07-01 thomas }
9093 a5d43cac 2022-07-01 thomas case TOG_VIEW_LOG: {
9094 a5d43cac 2022-07-01 thomas struct tog_log_view_state *s = &view->state.log;
9095 a5d43cac 2022-07-01 thomas scrolld = &log_scroll_down;
9096 64486692 2022-07-07 thomas header = view_is_parent_view(view) ? 3 : 2;
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 case TOG_VIEW_REF: {
9101 a5d43cac 2022-07-01 thomas struct tog_ref_view_state *s = &view->state.ref;
9102 a5d43cac 2022-07-01 thomas scrolld = &ref_scroll_down;
9103 a5d43cac 2022-07-01 thomas header = 3;
9104 a5d43cac 2022-07-01 thomas selected = &s->selected;
9105 a5d43cac 2022-07-01 thomas break;
9106 a5d43cac 2022-07-01 thomas }
9107 a5d43cac 2022-07-01 thomas case TOG_VIEW_TREE: {
9108 a5d43cac 2022-07-01 thomas struct tog_tree_view_state *s = &view->state.tree;
9109 a5d43cac 2022-07-01 thomas scrolld = &tree_scroll_down;
9110 a5d43cac 2022-07-01 thomas header = 5;
9111 a5d43cac 2022-07-01 thomas selected = &s->selected;
9112 a5d43cac 2022-07-01 thomas break;
9113 a5d43cac 2022-07-01 thomas }
9114 a5d43cac 2022-07-01 thomas default:
9115 a5d43cac 2022-07-01 thomas selected = NULL;
9116 a5d43cac 2022-07-01 thomas scrolld = NULL;
9117 a5d43cac 2022-07-01 thomas header = 0;
9118 a5d43cac 2022-07-01 thomas break;
9119 a5d43cac 2022-07-01 thomas }
9120 a5d43cac 2022-07-01 thomas
9121 a5d43cac 2022-07-01 thomas if (selected && *selected > view->nlines - header) {
9122 a5d43cac 2022-07-01 thomas offset = abs(view->nlines - *selected - header);
9123 a5d43cac 2022-07-01 thomas view->offset = offset;
9124 a5d43cac 2022-07-01 thomas if (scrolld && offset) {
9125 a5d43cac 2022-07-01 thomas err = scrolld(view, offset);
9126 a5d43cac 2022-07-01 thomas *selected -= offset;
9127 a5d43cac 2022-07-01 thomas }
9128 a5d43cac 2022-07-01 thomas }
9129 a5d43cac 2022-07-01 thomas
9130 a5d43cac 2022-07-01 thomas return err;
9131 a5d43cac 2022-07-01 thomas }
9132 a5d43cac 2022-07-01 thomas
9133 a5d43cac 2022-07-01 thomas static void
9134 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
9135 ce5b7c56 2019-07-09 stsp {
9136 6059809a 2020-12-17 stsp size_t i;
9137 9f7d7167 2018-04-29 stsp
9138 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
9139 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
9140 641a8ee6 2022-02-16 thomas const struct tog_cmd *cmd = &tog_commands[i];
9141 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
9142 ce5b7c56 2019-07-09 stsp }
9143 6879ba42 2020-10-01 naddy fputc('\n', fp);
9144 ce5b7c56 2019-07-09 stsp }
9145 ce5b7c56 2019-07-09 stsp
9146 4ed7e80c 2018-05-20 stsp __dead static void
9147 6879ba42 2020-10-01 naddy usage(int hflag, int status)
9148 9f7d7167 2018-04-29 stsp {
9149 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
9150 6879ba42 2020-10-01 naddy
9151 0a58e722 2022-10-04 thomas fprintf(fp, "usage: %s [-hV] command [arg ...]\n",
9152 6879ba42 2020-10-01 naddy getprogname());
9153 6879ba42 2020-10-01 naddy if (hflag) {
9154 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
9155 6879ba42 2020-10-01 naddy list_commands(fp);
9156 ee85c5e8 2020-02-29 stsp }
9157 6879ba42 2020-10-01 naddy exit(status);
9158 9f7d7167 2018-04-29 stsp }
9159 9f7d7167 2018-04-29 stsp
9160 c2301be8 2018-04-30 stsp static char **
9161 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
9162 c2301be8 2018-04-30 stsp {
9163 ee85c5e8 2020-02-29 stsp va_list ap;
9164 c2301be8 2018-04-30 stsp char **argv;
9165 ee85c5e8 2020-02-29 stsp int i;
9166 c2301be8 2018-04-30 stsp
9167 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
9168 ee85c5e8 2020-02-29 stsp
9169 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
9170 c2301be8 2018-04-30 stsp if (argv == NULL)
9171 c2301be8 2018-04-30 stsp err(1, "calloc");
9172 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
9173 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
9174 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
9175 e10c916e 2019-09-15 hiltjo err(1, "strdup");
9176 c2301be8 2018-04-30 stsp }
9177 c2301be8 2018-04-30 stsp
9178 ee85c5e8 2020-02-29 stsp va_end(ap);
9179 c2301be8 2018-04-30 stsp return argv;
9180 ee85c5e8 2020-02-29 stsp }
9181 ee85c5e8 2020-02-29 stsp
9182 ee85c5e8 2020-02-29 stsp /*
9183 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
9184 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
9185 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
9186 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
9187 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
9188 ee85c5e8 2020-02-29 stsp */
9189 ee85c5e8 2020-02-29 stsp static const struct got_error *
9190 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
9191 ee85c5e8 2020-02-29 stsp {
9192 1d0f4054 2021-06-17 stsp const struct got_error *error = NULL, *close_err;
9193 641a8ee6 2022-02-16 thomas const struct tog_cmd *cmd = NULL;
9194 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
9195 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
9196 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
9197 945f9229 2022-04-16 thomas struct got_commit_object *commit = NULL;
9198 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
9199 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
9200 7cd52833 2022-06-23 thomas int *pack_fds = NULL;
9201 84de9106 2020-12-26 stsp
9202 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
9203 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
9204 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
9205 ee85c5e8 2020-02-29 stsp
9206 7cd52833 2022-06-23 thomas error = got_repo_pack_fds_open(&pack_fds);
9207 7cd52833 2022-06-23 thomas if (error != NULL)
9208 7cd52833 2022-06-23 thomas goto done;
9209 7cd52833 2022-06-23 thomas
9210 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
9211 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
9212 ee85c5e8 2020-02-29 stsp goto done;
9213 ee85c5e8 2020-02-29 stsp
9214 ee85c5e8 2020-02-29 stsp if (worktree)
9215 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
9216 ee85c5e8 2020-02-29 stsp else
9217 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
9218 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
9219 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
9220 ee85c5e8 2020-02-29 stsp goto done;
9221 ee85c5e8 2020-02-29 stsp }
9222 ee85c5e8 2020-02-29 stsp
9223 7cd52833 2022-06-23 thomas error = got_repo_open(&repo, repo_path, NULL, pack_fds);
9224 ee85c5e8 2020-02-29 stsp if (error != NULL)
9225 ee85c5e8 2020-02-29 stsp goto done;
9226 ee85c5e8 2020-02-29 stsp
9227 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
9228 ee85c5e8 2020-02-29 stsp repo, worktree);
9229 ee85c5e8 2020-02-29 stsp if (error)
9230 ee85c5e8 2020-02-29 stsp goto done;
9231 ee85c5e8 2020-02-29 stsp
9232 3bfadbd4 2021-11-20 thomas error = tog_load_refs(repo, 0);
9233 84de9106 2020-12-26 stsp if (error)
9234 84de9106 2020-12-26 stsp goto done;
9235 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
9236 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
9237 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
9238 ee85c5e8 2020-02-29 stsp if (error)
9239 ee85c5e8 2020-02-29 stsp goto done;
9240 ee85c5e8 2020-02-29 stsp
9241 ee85c5e8 2020-02-29 stsp if (worktree) {
9242 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9243 ee85c5e8 2020-02-29 stsp worktree = NULL;
9244 ee85c5e8 2020-02-29 stsp }
9245 ee85c5e8 2020-02-29 stsp
9246 945f9229 2022-04-16 thomas error = got_object_open_as_commit(&commit, repo, commit_id);
9247 945f9229 2022-04-16 thomas if (error)
9248 945f9229 2022-04-16 thomas goto done;
9249 945f9229 2022-04-16 thomas
9250 945f9229 2022-04-16 thomas error = got_object_id_by_path(&id, repo, commit, in_repo_path);
9251 ee85c5e8 2020-02-29 stsp if (error) {
9252 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
9253 ee85c5e8 2020-02-29 stsp goto done;
9254 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
9255 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
9256 6879ba42 2020-10-01 naddy usage(1, 1);
9257 ee85c5e8 2020-02-29 stsp /* not reached */
9258 ee85c5e8 2020-02-29 stsp }
9259 ee85c5e8 2020-02-29 stsp
9260 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
9261 ee85c5e8 2020-02-29 stsp if (error)
9262 ee85c5e8 2020-02-29 stsp goto done;
9263 ee85c5e8 2020-02-29 stsp
9264 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
9265 ee85c5e8 2020-02-29 stsp argc = 4;
9266 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
9267 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
9268 ee85c5e8 2020-02-29 stsp done:
9269 1d0f4054 2021-06-17 stsp if (repo) {
9270 1d0f4054 2021-06-17 stsp close_err = got_repo_close(repo);
9271 1d0f4054 2021-06-17 stsp if (error == NULL)
9272 1d0f4054 2021-06-17 stsp error = close_err;
9273 1d0f4054 2021-06-17 stsp }
9274 945f9229 2022-04-16 thomas if (commit)
9275 945f9229 2022-04-16 thomas got_object_commit_close(commit);
9276 ee85c5e8 2020-02-29 stsp if (worktree)
9277 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
9278 7cd52833 2022-06-23 thomas if (pack_fds) {
9279 7cd52833 2022-06-23 thomas const struct got_error *pack_err =
9280 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(pack_fds);
9281 7cd52833 2022-06-23 thomas if (error == NULL)
9282 7cd52833 2022-06-23 thomas error = pack_err;
9283 7cd52833 2022-06-23 thomas }
9284 ee85c5e8 2020-02-29 stsp free(id);
9285 ee85c5e8 2020-02-29 stsp free(commit_id_str);
9286 ee85c5e8 2020-02-29 stsp free(commit_id);
9287 ee85c5e8 2020-02-29 stsp free(cwd);
9288 ee85c5e8 2020-02-29 stsp free(repo_path);
9289 ee85c5e8 2020-02-29 stsp free(in_repo_path);
9290 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
9291 ee85c5e8 2020-02-29 stsp int i;
9292 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
9293 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
9294 ee85c5e8 2020-02-29 stsp free(cmd_argv);
9295 ee85c5e8 2020-02-29 stsp }
9296 87670572 2020-12-26 naddy tog_free_refs();
9297 ee85c5e8 2020-02-29 stsp return error;
9298 c2301be8 2018-04-30 stsp }
9299 c2301be8 2018-04-30 stsp
9300 9f7d7167 2018-04-29 stsp int
9301 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
9302 9f7d7167 2018-04-29 stsp {
9303 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
9304 641a8ee6 2022-02-16 thomas const struct tog_cmd *cmd = NULL;
9305 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
9306 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
9307 641a8ee6 2022-02-16 thomas static const struct option longopts[] = {
9308 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
9309 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
9310 83cd27f8 2020-01-13 stsp };
9311 adf4c9e0 2022-07-03 thomas char *diff_algo_str = NULL;
9312 9f7d7167 2018-04-29 stsp
9313 cacf1690 2022-09-06 thomas if (!isatty(STDIN_FILENO))
9314 cacf1690 2022-09-06 thomas errx(1, "standard input is not a tty");
9315 cacf1690 2022-09-06 thomas
9316 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
9317 9f7d7167 2018-04-29 stsp
9318 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
9319 9f7d7167 2018-04-29 stsp switch (ch) {
9320 9f7d7167 2018-04-29 stsp case 'h':
9321 9f7d7167 2018-04-29 stsp hflag = 1;
9322 9f7d7167 2018-04-29 stsp break;
9323 53ccebc2 2019-07-30 stsp case 'V':
9324 53ccebc2 2019-07-30 stsp Vflag = 1;
9325 53ccebc2 2019-07-30 stsp break;
9326 9f7d7167 2018-04-29 stsp default:
9327 6879ba42 2020-10-01 naddy usage(hflag, 1);
9328 9f7d7167 2018-04-29 stsp /* NOTREACHED */
9329 9f7d7167 2018-04-29 stsp }
9330 9f7d7167 2018-04-29 stsp }
9331 9f7d7167 2018-04-29 stsp
9332 9f7d7167 2018-04-29 stsp argc -= optind;
9333 9f7d7167 2018-04-29 stsp argv += optind;
9334 9814e6a3 2020-09-27 naddy optind = 1;
9335 c2301be8 2018-04-30 stsp optreset = 1;
9336 9f7d7167 2018-04-29 stsp
9337 53ccebc2 2019-07-30 stsp if (Vflag) {
9338 53ccebc2 2019-07-30 stsp got_version_print_str();
9339 6879ba42 2020-10-01 naddy return 0;
9340 53ccebc2 2019-07-30 stsp }
9341 4010e238 2020-12-04 stsp
9342 4010e238 2020-12-04 stsp #ifndef PROFILE
9343 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
9344 4010e238 2020-12-04 stsp NULL) == -1)
9345 4010e238 2020-12-04 stsp err(1, "pledge");
9346 4010e238 2020-12-04 stsp #endif
9347 53ccebc2 2019-07-30 stsp
9348 c2301be8 2018-04-30 stsp if (argc == 0) {
9349 f29d3e89 2018-06-23 stsp if (hflag)
9350 6879ba42 2020-10-01 naddy usage(hflag, 0);
9351 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
9352 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
9353 c2301be8 2018-04-30 stsp argc = 1;
9354 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
9355 c2301be8 2018-04-30 stsp } else {
9356 6059809a 2020-12-17 stsp size_t i;
9357 9f7d7167 2018-04-29 stsp
9358 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
9359 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
9360 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
9361 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
9362 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
9363 9f7d7167 2018-04-29 stsp break;
9364 9f7d7167 2018-04-29 stsp }
9365 9f7d7167 2018-04-29 stsp }
9366 ee85c5e8 2020-02-29 stsp }
9367 3642c4c6 2019-07-09 stsp
9368 adf4c9e0 2022-07-03 thomas diff_algo_str = getenv("TOG_DIFF_ALGORITHM");
9369 adf4c9e0 2022-07-03 thomas if (diff_algo_str) {
9370 adf4c9e0 2022-07-03 thomas if (strcasecmp(diff_algo_str, "patience") == 0)
9371 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_PATIENCE;
9372 adf4c9e0 2022-07-03 thomas if (strcasecmp(diff_algo_str, "myers") == 0)
9373 adf4c9e0 2022-07-03 thomas tog_diff_algo = GOT_DIFF_ALGORITHM_MYERS;
9374 adf4c9e0 2022-07-03 thomas }
9375 adf4c9e0 2022-07-03 thomas
9376 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
9377 ee85c5e8 2020-02-29 stsp if (argc != 1)
9378 6879ba42 2020-10-01 naddy usage(0, 1);
9379 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
9380 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
9381 ee85c5e8 2020-02-29 stsp } else {
9382 ee85c5e8 2020-02-29 stsp if (hflag)
9383 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
9384 ee85c5e8 2020-02-29 stsp else
9385 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
9386 9f7d7167 2018-04-29 stsp }
9387 9f7d7167 2018-04-29 stsp
9388 9f7d7167 2018-04-29 stsp endwin();
9389 b46c1e04 2020-09-20 naddy putchar('\n');
9390 a2f4a359 2020-02-28 stsp if (cmd_argv) {
9391 a2f4a359 2020-02-28 stsp int i;
9392 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
9393 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
9394 a2f4a359 2020-02-28 stsp free(cmd_argv);
9395 a2f4a359 2020-02-28 stsp }
9396 a2f4a359 2020-02-28 stsp
9397 27a7eb23 2022-10-24 thomas if (error && error->code != GOT_ERR_CANCELLED &&
9398 27a7eb23 2022-10-24 thomas error->code != GOT_ERR_EOF &&
9399 27a7eb23 2022-10-24 thomas error->code != GOT_ERR_PRIVSEP_EXIT &&
9400 27a7eb23 2022-10-24 thomas error->code != GOT_ERR_PRIVSEP_PIPE &&
9401 27a7eb23 2022-10-24 thomas !(error->code == GOT_ERR_ERRNO && errno == EINTR))
9402 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
9403 9f7d7167 2018-04-29 stsp return 0;
9404 9f7d7167 2018-04-29 stsp }