Blame


1 9f7d7167 2018-04-29 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 9f7d7167 2018-04-29 stsp *
4 9f7d7167 2018-04-29 stsp * Permission to use, copy, modify, and distribute this software for any
5 9f7d7167 2018-04-29 stsp * purpose with or without fee is hereby granted, provided that the above
6 9f7d7167 2018-04-29 stsp * copyright notice and this permission notice appear in all copies.
7 9f7d7167 2018-04-29 stsp *
8 9f7d7167 2018-04-29 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 9f7d7167 2018-04-29 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 9f7d7167 2018-04-29 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 9f7d7167 2018-04-29 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 9f7d7167 2018-04-29 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 9f7d7167 2018-04-29 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 9f7d7167 2018-04-29 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 9f7d7167 2018-04-29 stsp */
16 9f7d7167 2018-04-29 stsp
17 80ddbec8 2018-04-29 stsp #include <sys/queue.h>
18 ffd1d5e5 2018-06-23 stsp #include <sys/stat.h>
19 25791caa 2018-10-24 stsp #include <sys/ioctl.h>
20 80ddbec8 2018-04-29 stsp
21 0d6c6ee3 2020-05-20 stsp #include <ctype.h>
22 31120ada 2018-04-30 stsp #include <errno.h>
23 61e69b96 2018-05-20 stsp #define _XOPEN_SOURCE_EXTENDED
24 9f7d7167 2018-04-29 stsp #include <curses.h>
25 61e69b96 2018-05-20 stsp #undef _XOPEN_SOURCE_EXTENDED
26 9f7d7167 2018-04-29 stsp #include <panel.h>
27 9f7d7167 2018-04-29 stsp #include <locale.h>
28 61266923 2020-01-14 stsp #include <signal.h>
29 9f7d7167 2018-04-29 stsp #include <stdlib.h>
30 ee85c5e8 2020-02-29 stsp #include <stdarg.h>
31 26ed57b2 2018-05-19 stsp #include <stdio.h>
32 9f7d7167 2018-04-29 stsp #include <getopt.h>
33 9f7d7167 2018-04-29 stsp #include <string.h>
34 9f7d7167 2018-04-29 stsp #include <err.h>
35 80ddbec8 2018-04-29 stsp #include <unistd.h>
36 26ed57b2 2018-05-19 stsp #include <limits.h>
37 61e69b96 2018-05-20 stsp #include <wchar.h>
38 788c352e 2018-06-16 stsp #include <time.h>
39 84451b3e 2018-07-10 stsp #include <pthread.h>
40 5036bf37 2018-09-24 stsp #include <libgen.h>
41 60493ae3 2019-06-20 stsp #include <regex.h>
42 9f7d7167 2018-04-29 stsp
43 53ccebc2 2019-07-30 stsp #include "got_version.h"
44 9f7d7167 2018-04-29 stsp #include "got_error.h"
45 80ddbec8 2018-04-29 stsp #include "got_object.h"
46 80ddbec8 2018-04-29 stsp #include "got_reference.h"
47 80ddbec8 2018-04-29 stsp #include "got_repository.h"
48 80ddbec8 2018-04-29 stsp #include "got_diff.h"
49 511a516b 2018-05-19 stsp #include "got_opentemp.h"
50 00dfcb92 2018-06-11 stsp #include "got_utf8.h"
51 6fb7cd11 2019-08-22 stsp #include "got_cancel.h"
52 6fb7cd11 2019-08-22 stsp #include "got_commit_graph.h"
53 a70480e0 2018-06-23 stsp #include "got_blame.h"
54 c2db6724 2019-01-04 stsp #include "got_privsep.h"
55 1dd54920 2019-05-11 stsp #include "got_path.h"
56 b7165be3 2019-02-05 stsp #include "got_worktree.h"
57 9f7d7167 2018-04-29 stsp
58 881b2d3e 2018-04-30 stsp #ifndef MIN
59 881b2d3e 2018-04-30 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
60 881b2d3e 2018-04-30 stsp #endif
61 881b2d3e 2018-04-30 stsp
62 2bd27830 2018-10-22 stsp #ifndef MAX
63 2bd27830 2018-10-22 stsp #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
64 2bd27830 2018-10-22 stsp #endif
65 2bd27830 2018-10-22 stsp
66 a4292ac5 2019-05-12 jcs #define CTRL(x) ((x) & 0x1f)
67 2bd27830 2018-10-22 stsp
68 9f7d7167 2018-04-29 stsp #ifndef nitems
69 9f7d7167 2018-04-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
70 9f7d7167 2018-04-29 stsp #endif
71 9f7d7167 2018-04-29 stsp
72 9f7d7167 2018-04-29 stsp struct tog_cmd {
73 c2301be8 2018-04-30 stsp const char *name;
74 9f7d7167 2018-04-29 stsp const struct got_error *(*cmd_main)(int, char *[]);
75 9f7d7167 2018-04-29 stsp void (*cmd_usage)(void);
76 9f7d7167 2018-04-29 stsp };
77 9f7d7167 2018-04-29 stsp
78 6879ba42 2020-10-01 naddy __dead static void usage(int, int);
79 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
80 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
81 4ed7e80c 2018-05-20 stsp __dead static void usage_blame(void);
82 ffd1d5e5 2018-06-23 stsp __dead static void usage_tree(void);
83 6458efa5 2020-11-24 stsp __dead static void usage_ref(void);
84 9f7d7167 2018-04-29 stsp
85 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
86 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
87 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_blame(int, char *[]);
88 ffd1d5e5 2018-06-23 stsp static const struct got_error* cmd_tree(int, char *[]);
89 6458efa5 2020-11-24 stsp static const struct got_error* cmd_ref(int, char *[]);
90 9f7d7167 2018-04-29 stsp
91 4ed7e80c 2018-05-20 stsp static struct tog_cmd tog_commands[] = {
92 5e070240 2019-06-22 stsp { "log", cmd_log, usage_log },
93 5e070240 2019-06-22 stsp { "diff", cmd_diff, usage_diff },
94 5e070240 2019-06-22 stsp { "blame", cmd_blame, usage_blame },
95 5e070240 2019-06-22 stsp { "tree", cmd_tree, usage_tree },
96 6458efa5 2020-11-24 stsp { "ref", cmd_ref, usage_ref },
97 9f7d7167 2018-04-29 stsp };
98 9f7d7167 2018-04-29 stsp
99 d6b05b5b 2018-08-04 stsp enum tog_view_type {
100 d6b05b5b 2018-08-04 stsp TOG_VIEW_DIFF,
101 d6b05b5b 2018-08-04 stsp TOG_VIEW_LOG,
102 ad80ab7b 2018-08-04 stsp TOG_VIEW_BLAME,
103 6458efa5 2020-11-24 stsp TOG_VIEW_TREE,
104 6458efa5 2020-11-24 stsp TOG_VIEW_REF,
105 d6b05b5b 2018-08-04 stsp };
106 c3e9aa98 2019-05-13 jcs
107 c3e9aa98 2019-05-13 jcs #define TOG_EOF_STRING "(END)"
108 d6b05b5b 2018-08-04 stsp
109 ba4f502b 2018-08-04 stsp struct commit_queue_entry {
110 ba4f502b 2018-08-04 stsp TAILQ_ENTRY(commit_queue_entry) entry;
111 ba4f502b 2018-08-04 stsp struct got_object_id *id;
112 ba4f502b 2018-08-04 stsp struct got_commit_object *commit;
113 1a76625f 2018-10-22 stsp int idx;
114 ba4f502b 2018-08-04 stsp };
115 ba4f502b 2018-08-04 stsp TAILQ_HEAD(commit_queue_head, commit_queue_entry);
116 ba4f502b 2018-08-04 stsp struct commit_queue {
117 ba4f502b 2018-08-04 stsp int ncommits;
118 ba4f502b 2018-08-04 stsp struct commit_queue_head head;
119 6d17833f 2019-11-08 stsp };
120 6d17833f 2019-11-08 stsp
121 f26dddb7 2019-11-08 stsp struct tog_color {
122 f26dddb7 2019-11-08 stsp SIMPLEQ_ENTRY(tog_color) entry;
123 6d17833f 2019-11-08 stsp regex_t regex;
124 6d17833f 2019-11-08 stsp short colorpair;
125 15a087fe 2019-02-21 stsp };
126 f26dddb7 2019-11-08 stsp SIMPLEQ_HEAD(tog_colors, tog_color);
127 11b20872 2019-11-08 stsp
128 d9dff0e5 2020-12-26 stsp static struct got_reflist_head tog_refs = TAILQ_HEAD_INITIALIZER(tog_refs);
129 51a10b52 2020-12-26 stsp static struct got_reflist_object_id_map *tog_refs_idmap;
130 51a10b52 2020-12-26 stsp
131 11b20872 2019-11-08 stsp static const struct got_error *
132 51a10b52 2020-12-26 stsp tog_load_refs(struct got_repository *repo)
133 51a10b52 2020-12-26 stsp {
134 51a10b52 2020-12-26 stsp const struct got_error *err;
135 51a10b52 2020-12-26 stsp
136 51a10b52 2020-12-26 stsp err = got_ref_list(&tog_refs, repo, NULL, got_ref_cmp_by_name, NULL);
137 51a10b52 2020-12-26 stsp if (err)
138 51a10b52 2020-12-26 stsp return err;
139 51a10b52 2020-12-26 stsp
140 51a10b52 2020-12-26 stsp return got_reflist_object_id_map_create(&tog_refs_idmap, &tog_refs,
141 51a10b52 2020-12-26 stsp repo);
142 51a10b52 2020-12-26 stsp }
143 51a10b52 2020-12-26 stsp
144 51a10b52 2020-12-26 stsp static void
145 51a10b52 2020-12-26 stsp tog_free_refs(void)
146 51a10b52 2020-12-26 stsp {
147 51a10b52 2020-12-26 stsp if (tog_refs_idmap) {
148 f193b038 2020-12-26 stsp got_reflist_object_id_map_free(tog_refs_idmap);
149 51a10b52 2020-12-26 stsp tog_refs_idmap = NULL;
150 51a10b52 2020-12-26 stsp }
151 51a10b52 2020-12-26 stsp got_ref_list_free(&tog_refs);
152 51a10b52 2020-12-26 stsp }
153 51a10b52 2020-12-26 stsp
154 51a10b52 2020-12-26 stsp static const struct got_error *
155 11b20872 2019-11-08 stsp add_color(struct tog_colors *colors, const char *pattern,
156 11b20872 2019-11-08 stsp int idx, short color)
157 11b20872 2019-11-08 stsp {
158 11b20872 2019-11-08 stsp const struct got_error *err = NULL;
159 11b20872 2019-11-08 stsp struct tog_color *tc;
160 11b20872 2019-11-08 stsp int regerr = 0;
161 11b20872 2019-11-08 stsp
162 11b20872 2019-11-08 stsp if (idx < 1 || idx > COLOR_PAIRS - 1)
163 11b20872 2019-11-08 stsp return NULL;
164 11b20872 2019-11-08 stsp
165 11b20872 2019-11-08 stsp init_pair(idx, color, -1);
166 11b20872 2019-11-08 stsp
167 11b20872 2019-11-08 stsp tc = calloc(1, sizeof(*tc));
168 11b20872 2019-11-08 stsp if (tc == NULL)
169 11b20872 2019-11-08 stsp return got_error_from_errno("calloc");
170 11b20872 2019-11-08 stsp regerr = regcomp(&tc->regex, pattern,
171 11b20872 2019-11-08 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE);
172 11b20872 2019-11-08 stsp if (regerr) {
173 11b20872 2019-11-08 stsp static char regerr_msg[512];
174 11b20872 2019-11-08 stsp static char err_msg[512];
175 11b20872 2019-11-08 stsp regerror(regerr, &tc->regex, regerr_msg,
176 11b20872 2019-11-08 stsp sizeof(regerr_msg));
177 11b20872 2019-11-08 stsp snprintf(err_msg, sizeof(err_msg), "regcomp: %s",
178 11b20872 2019-11-08 stsp regerr_msg);
179 11b20872 2019-11-08 stsp err = got_error_msg(GOT_ERR_REGEX, err_msg);
180 11b20872 2019-11-08 stsp free(tc);
181 11b20872 2019-11-08 stsp return err;
182 11b20872 2019-11-08 stsp }
183 11b20872 2019-11-08 stsp tc->colorpair = idx;
184 11b20872 2019-11-08 stsp SIMPLEQ_INSERT_HEAD(colors, tc, entry);
185 11b20872 2019-11-08 stsp return NULL;
186 11b20872 2019-11-08 stsp }
187 11b20872 2019-11-08 stsp
188 11b20872 2019-11-08 stsp static void
189 11b20872 2019-11-08 stsp free_colors(struct tog_colors *colors)
190 11b20872 2019-11-08 stsp {
191 11b20872 2019-11-08 stsp struct tog_color *tc;
192 11b20872 2019-11-08 stsp
193 11b20872 2019-11-08 stsp while (!SIMPLEQ_EMPTY(colors)) {
194 11b20872 2019-11-08 stsp tc = SIMPLEQ_FIRST(colors);
195 11b20872 2019-11-08 stsp SIMPLEQ_REMOVE_HEAD(colors, entry);
196 11b20872 2019-11-08 stsp regfree(&tc->regex);
197 11b20872 2019-11-08 stsp free(tc);
198 11b20872 2019-11-08 stsp }
199 11b20872 2019-11-08 stsp }
200 11b20872 2019-11-08 stsp
201 11b20872 2019-11-08 stsp struct tog_color *
202 11b20872 2019-11-08 stsp get_color(struct tog_colors *colors, int colorpair)
203 11b20872 2019-11-08 stsp {
204 11b20872 2019-11-08 stsp struct tog_color *tc = NULL;
205 11b20872 2019-11-08 stsp
206 11b20872 2019-11-08 stsp SIMPLEQ_FOREACH(tc, colors, entry) {
207 11b20872 2019-11-08 stsp if (tc->colorpair == colorpair)
208 11b20872 2019-11-08 stsp return tc;
209 11b20872 2019-11-08 stsp }
210 11b20872 2019-11-08 stsp
211 11b20872 2019-11-08 stsp return NULL;
212 11b20872 2019-11-08 stsp }
213 11b20872 2019-11-08 stsp
214 11b20872 2019-11-08 stsp static int
215 11b20872 2019-11-08 stsp default_color_value(const char *envvar)
216 11b20872 2019-11-08 stsp {
217 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_MINUS") == 0)
218 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
219 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_PLUS") == 0)
220 11b20872 2019-11-08 stsp return COLOR_CYAN;
221 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_CHUNK_HEADER") == 0)
222 11b20872 2019-11-08 stsp return COLOR_YELLOW;
223 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DIFF_META") == 0)
224 11b20872 2019-11-08 stsp return COLOR_GREEN;
225 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SUBMODULE") == 0)
226 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
227 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_SYMLINK") == 0)
228 91b8c405 2020-01-25 stsp return COLOR_MAGENTA;
229 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_DIRECTORY") == 0)
230 91b8c405 2020-01-25 stsp return COLOR_CYAN;
231 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_TREE_EXECUTABLE") == 0)
232 11b20872 2019-11-08 stsp return COLOR_GREEN;
233 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_COMMIT") == 0)
234 11b20872 2019-11-08 stsp return COLOR_GREEN;
235 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_AUTHOR") == 0)
236 11b20872 2019-11-08 stsp return COLOR_CYAN;
237 11b20872 2019-11-08 stsp if (strcmp(envvar, "TOG_COLOR_DATE") == 0)
238 11b20872 2019-11-08 stsp return COLOR_YELLOW;
239 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_HEADS") == 0)
240 6458efa5 2020-11-24 stsp return COLOR_GREEN;
241 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_TAGS") == 0)
242 6458efa5 2020-11-24 stsp return COLOR_MAGENTA;
243 6458efa5 2020-11-24 stsp if (strcmp(envvar, "TOG_COLOR_REFS_REMOTES") == 0)
244 6458efa5 2020-11-24 stsp return COLOR_YELLOW;
245 11b20872 2019-11-08 stsp
246 11b20872 2019-11-08 stsp return -1;
247 11b20872 2019-11-08 stsp }
248 11b20872 2019-11-08 stsp
249 11b20872 2019-11-08 stsp static int
250 11b20872 2019-11-08 stsp get_color_value(const char *envvar)
251 11b20872 2019-11-08 stsp {
252 11b20872 2019-11-08 stsp const char *val = getenv(envvar);
253 11b20872 2019-11-08 stsp
254 11b20872 2019-11-08 stsp if (val == NULL)
255 11b20872 2019-11-08 stsp return default_color_value(envvar);
256 15a087fe 2019-02-21 stsp
257 11b20872 2019-11-08 stsp if (strcasecmp(val, "black") == 0)
258 11b20872 2019-11-08 stsp return COLOR_BLACK;
259 11b20872 2019-11-08 stsp if (strcasecmp(val, "red") == 0)
260 11b20872 2019-11-08 stsp return COLOR_RED;
261 11b20872 2019-11-08 stsp if (strcasecmp(val, "green") == 0)
262 11b20872 2019-11-08 stsp return COLOR_GREEN;
263 11b20872 2019-11-08 stsp if (strcasecmp(val, "yellow") == 0)
264 11b20872 2019-11-08 stsp return COLOR_YELLOW;
265 11b20872 2019-11-08 stsp if (strcasecmp(val, "blue") == 0)
266 11b20872 2019-11-08 stsp return COLOR_BLUE;
267 11b20872 2019-11-08 stsp if (strcasecmp(val, "magenta") == 0)
268 11b20872 2019-11-08 stsp return COLOR_MAGENTA;
269 11b20872 2019-11-08 stsp if (strcasecmp(val, "cyan") == 0)
270 11b20872 2019-11-08 stsp return COLOR_CYAN;
271 11b20872 2019-11-08 stsp if (strcasecmp(val, "white") == 0)
272 11b20872 2019-11-08 stsp return COLOR_WHITE;
273 11b20872 2019-11-08 stsp if (strcasecmp(val, "default") == 0)
274 11b20872 2019-11-08 stsp return -1;
275 11b20872 2019-11-08 stsp
276 11b20872 2019-11-08 stsp return default_color_value(envvar);
277 11b20872 2019-11-08 stsp }
278 11b20872 2019-11-08 stsp
279 11b20872 2019-11-08 stsp
280 15a087fe 2019-02-21 stsp struct tog_diff_view_state {
281 15a087fe 2019-02-21 stsp struct got_object_id *id1, *id2;
282 3dbaef42 2020-11-24 stsp const char *label1, *label2;
283 15a087fe 2019-02-21 stsp FILE *f;
284 15a087fe 2019-02-21 stsp int first_displayed_line;
285 15a087fe 2019-02-21 stsp int last_displayed_line;
286 15a087fe 2019-02-21 stsp int eof;
287 15a087fe 2019-02-21 stsp int diff_context;
288 3dbaef42 2020-11-24 stsp int ignore_whitespace;
289 64453f7e 2020-11-21 stsp int force_text_diff;
290 15a087fe 2019-02-21 stsp struct got_repository *repo;
291 bddb1296 2019-11-08 stsp struct tog_colors colors;
292 fe621944 2020-11-10 stsp size_t nlines;
293 f44b1f58 2020-02-02 tracey off_t *line_offsets;
294 f44b1f58 2020-02-02 tracey int matched_line;
295 f44b1f58 2020-02-02 tracey int selected_line;
296 15a087fe 2019-02-21 stsp
297 15a087fe 2019-02-21 stsp /* passed from log view; may be NULL */
298 fb872ab2 2019-02-21 stsp struct tog_view *log_view;
299 b01e7d3b 2018-08-04 stsp };
300 b01e7d3b 2018-08-04 stsp
301 1a76625f 2018-10-22 stsp pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
302 1a76625f 2018-10-22 stsp
303 1a76625f 2018-10-22 stsp struct tog_log_thread_args {
304 1a76625f 2018-10-22 stsp pthread_cond_t need_commits;
305 7c1452c1 2020-03-26 stsp pthread_cond_t commit_loaded;
306 1a76625f 2018-10-22 stsp int commits_needed;
307 b01e7d3b 2018-08-04 stsp struct got_commit_graph *graph;
308 1a76625f 2018-10-22 stsp struct commit_queue *commits;
309 1a76625f 2018-10-22 stsp const char *in_repo_path;
310 1a76625f 2018-10-22 stsp struct got_object_id *start_id;
311 1a76625f 2018-10-22 stsp struct got_repository *repo;
312 1a76625f 2018-10-22 stsp int log_complete;
313 1a76625f 2018-10-22 stsp sig_atomic_t *quit;
314 1a76625f 2018-10-22 stsp struct commit_queue_entry **first_displayed_entry;
315 1a76625f 2018-10-22 stsp struct commit_queue_entry **selected_entry;
316 13add988 2019-10-15 stsp int *searching;
317 13add988 2019-10-15 stsp int *search_next_done;
318 13add988 2019-10-15 stsp regex_t *regex;
319 1a76625f 2018-10-22 stsp };
320 1a76625f 2018-10-22 stsp
321 1a76625f 2018-10-22 stsp struct tog_log_view_state {
322 b01e7d3b 2018-08-04 stsp struct commit_queue commits;
323 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *first_displayed_entry;
324 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *last_displayed_entry;
325 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *selected_entry;
326 b01e7d3b 2018-08-04 stsp int selected;
327 b01e7d3b 2018-08-04 stsp char *in_repo_path;
328 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
329 b672a97a 2020-01-27 stsp int log_branches;
330 b01e7d3b 2018-08-04 stsp struct got_repository *repo;
331 5036bf37 2018-09-24 stsp struct got_object_id *start_id;
332 1a76625f 2018-10-22 stsp sig_atomic_t quit;
333 1a76625f 2018-10-22 stsp pthread_t thread;
334 1a76625f 2018-10-22 stsp struct tog_log_thread_args thread_args;
335 60493ae3 2019-06-20 stsp struct commit_queue_entry *matched_entry;
336 96e2b566 2019-07-08 stsp struct commit_queue_entry *search_entry;
337 11b20872 2019-11-08 stsp struct tog_colors colors;
338 ba4f502b 2018-08-04 stsp };
339 11b20872 2019-11-08 stsp
340 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_MINUS 1
341 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_PLUS 2
342 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_CHUNK_HEADER 3
343 11b20872 2019-11-08 stsp #define TOG_COLOR_DIFF_META 4
344 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SUBMODULE 5
345 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_SYMLINK 6
346 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_DIRECTORY 7
347 11b20872 2019-11-08 stsp #define TOG_COLOR_TREE_EXECUTABLE 8
348 11b20872 2019-11-08 stsp #define TOG_COLOR_COMMIT 9
349 11b20872 2019-11-08 stsp #define TOG_COLOR_AUTHOR 10
350 bf30f154 2020-12-07 naddy #define TOG_COLOR_DATE 11
351 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_HEADS 12
352 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_TAGS 13
353 6458efa5 2020-11-24 stsp #define TOG_COLOR_REFS_REMOTES 14
354 ba4f502b 2018-08-04 stsp
355 e9424729 2018-08-04 stsp struct tog_blame_cb_args {
356 e9424729 2018-08-04 stsp struct tog_blame_line *lines; /* one per line */
357 e9424729 2018-08-04 stsp int nlines;
358 e9424729 2018-08-04 stsp
359 e9424729 2018-08-04 stsp struct tog_view *view;
360 e9424729 2018-08-04 stsp struct got_object_id *commit_id;
361 e9424729 2018-08-04 stsp int *quit;
362 e9424729 2018-08-04 stsp };
363 e9424729 2018-08-04 stsp
364 e9424729 2018-08-04 stsp struct tog_blame_thread_args {
365 e9424729 2018-08-04 stsp const char *path;
366 e9424729 2018-08-04 stsp struct got_repository *repo;
367 e9424729 2018-08-04 stsp struct tog_blame_cb_args *cb_args;
368 e9424729 2018-08-04 stsp int *complete;
369 fc06ba56 2019-08-22 stsp got_cancel_cb cancel_cb;
370 fc06ba56 2019-08-22 stsp void *cancel_arg;
371 e9424729 2018-08-04 stsp };
372 e9424729 2018-08-04 stsp
373 e9424729 2018-08-04 stsp struct tog_blame {
374 e9424729 2018-08-04 stsp FILE *f;
375 be659d10 2020-11-18 stsp off_t filesize;
376 e9424729 2018-08-04 stsp struct tog_blame_line *lines;
377 6fcac457 2018-11-19 stsp int nlines;
378 6c4c42e0 2019-06-24 stsp off_t *line_offsets;
379 e9424729 2018-08-04 stsp pthread_t thread;
380 e9424729 2018-08-04 stsp struct tog_blame_thread_args thread_args;
381 e9424729 2018-08-04 stsp struct tog_blame_cb_args cb_args;
382 e9424729 2018-08-04 stsp const char *path;
383 e9424729 2018-08-04 stsp };
384 e9424729 2018-08-04 stsp
385 7cbe629d 2018-08-04 stsp struct tog_blame_view_state {
386 7cbe629d 2018-08-04 stsp int first_displayed_line;
387 7cbe629d 2018-08-04 stsp int last_displayed_line;
388 7cbe629d 2018-08-04 stsp int selected_line;
389 7cbe629d 2018-08-04 stsp int blame_complete;
390 e5a0f69f 2018-08-18 stsp int eof;
391 e5a0f69f 2018-08-18 stsp int done;
392 7cbe629d 2018-08-04 stsp struct got_object_id_queue blamed_commits;
393 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
394 e5a0f69f 2018-08-18 stsp char *path;
395 7cbe629d 2018-08-04 stsp struct got_repository *repo;
396 ad80ab7b 2018-08-04 stsp struct got_object_id *commit_id;
397 e9424729 2018-08-04 stsp struct tog_blame blame;
398 6c4c42e0 2019-06-24 stsp int matched_line;
399 11b20872 2019-11-08 stsp struct tog_colors colors;
400 ad80ab7b 2018-08-04 stsp };
401 ad80ab7b 2018-08-04 stsp
402 ad80ab7b 2018-08-04 stsp struct tog_parent_tree {
403 ad80ab7b 2018-08-04 stsp TAILQ_ENTRY(tog_parent_tree) entry;
404 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
405 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
406 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
407 ad80ab7b 2018-08-04 stsp int selected;
408 ad80ab7b 2018-08-04 stsp };
409 ad80ab7b 2018-08-04 stsp
410 ad80ab7b 2018-08-04 stsp TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
411 ad80ab7b 2018-08-04 stsp
412 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state {
413 ad80ab7b 2018-08-04 stsp char *tree_label;
414 ad80ab7b 2018-08-04 stsp struct got_tree_object *root;
415 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
416 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
417 ad80ab7b 2018-08-04 stsp struct got_tree_entry *last_displayed_entry;
418 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
419 416a95c5 2019-01-24 stsp int ndisplayed, selected, show_ids;
420 ad80ab7b 2018-08-04 stsp struct tog_parent_trees parents;
421 7cbe629d 2018-08-04 stsp struct got_object_id *commit_id;
422 9cd7cbd1 2020-12-07 stsp char *head_ref_name;
423 ad80ab7b 2018-08-04 stsp struct got_repository *repo;
424 7c32bd05 2019-06-22 stsp struct got_tree_entry *matched_entry;
425 6458efa5 2020-11-24 stsp struct tog_colors colors;
426 6458efa5 2020-11-24 stsp };
427 6458efa5 2020-11-24 stsp
428 6458efa5 2020-11-24 stsp struct tog_reflist_entry {
429 6458efa5 2020-11-24 stsp TAILQ_ENTRY(tog_reflist_entry) entry;
430 6458efa5 2020-11-24 stsp struct got_reference *ref;
431 6458efa5 2020-11-24 stsp int idx;
432 6458efa5 2020-11-24 stsp };
433 6458efa5 2020-11-24 stsp
434 6458efa5 2020-11-24 stsp TAILQ_HEAD(tog_reflist_head, tog_reflist_entry);
435 6458efa5 2020-11-24 stsp
436 6458efa5 2020-11-24 stsp struct tog_ref_view_state {
437 dae613fa 2020-12-26 stsp struct tog_reflist_head refs;
438 6458efa5 2020-11-24 stsp struct tog_reflist_entry *first_displayed_entry;
439 6458efa5 2020-11-24 stsp struct tog_reflist_entry *last_displayed_entry;
440 6458efa5 2020-11-24 stsp struct tog_reflist_entry *selected_entry;
441 6458efa5 2020-11-24 stsp int nrefs, ndisplayed, selected, show_ids;
442 6458efa5 2020-11-24 stsp struct got_repository *repo;
443 6458efa5 2020-11-24 stsp struct tog_reflist_entry *matched_entry;
444 bddb1296 2019-11-08 stsp struct tog_colors colors;
445 7cbe629d 2018-08-04 stsp };
446 7cbe629d 2018-08-04 stsp
447 669b5ffa 2018-10-07 stsp /*
448 669b5ffa 2018-10-07 stsp * We implement two types of views: parent views and child views.
449 669b5ffa 2018-10-07 stsp *
450 e78dc838 2020-12-04 stsp * The 'Tab' key switches focus between a parent view and its child view.
451 669b5ffa 2018-10-07 stsp * Child views are shown side-by-side to their parent view, provided
452 669b5ffa 2018-10-07 stsp * there is enough screen estate.
453 669b5ffa 2018-10-07 stsp *
454 669b5ffa 2018-10-07 stsp * When a new view is opened from within a parent view, this new view
455 669b5ffa 2018-10-07 stsp * becomes a child view of the parent view, replacing any existing child.
456 669b5ffa 2018-10-07 stsp *
457 669b5ffa 2018-10-07 stsp * When a new view is opened from within a child view, this new view
458 669b5ffa 2018-10-07 stsp * becomes a parent view which will obscure the views below until the
459 669b5ffa 2018-10-07 stsp * user quits the new parent view by typing 'q'.
460 669b5ffa 2018-10-07 stsp *
461 669b5ffa 2018-10-07 stsp * This list of views contains parent views only.
462 669b5ffa 2018-10-07 stsp * Child views are only pointed to by their parent view.
463 669b5ffa 2018-10-07 stsp */
464 bcbd79e2 2018-08-19 stsp TAILQ_HEAD(tog_view_list_head, tog_view);
465 669b5ffa 2018-10-07 stsp
466 cc3c9aac 2018-08-01 stsp struct tog_view {
467 e5a0f69f 2018-08-18 stsp TAILQ_ENTRY(tog_view) entry;
468 26ed57b2 2018-05-19 stsp WINDOW *window;
469 26ed57b2 2018-05-19 stsp PANEL *panel;
470 97ddc146 2018-08-01 stsp int nlines, ncols, begin_y, begin_x;
471 f7d12f7e 2018-08-01 stsp int lines, cols; /* copies of LINES and COLS */
472 e78dc838 2020-12-04 stsp int focussed; /* Only set on one parent or child view at a time. */
473 9970f7fc 2020-12-03 stsp int dying;
474 669b5ffa 2018-10-07 stsp struct tog_view *parent;
475 669b5ffa 2018-10-07 stsp struct tog_view *child;
476 5dc9f4bc 2018-08-04 stsp
477 e78dc838 2020-12-04 stsp /*
478 e78dc838 2020-12-04 stsp * This flag is initially set on parent views when a new child view
479 e78dc838 2020-12-04 stsp * is created. It gets toggled when the 'Tab' key switches focus
480 e78dc838 2020-12-04 stsp * between parent and child.
481 e78dc838 2020-12-04 stsp * The flag indicates whether focus should be passed on to our child
482 e78dc838 2020-12-04 stsp * view if this parent view gets picked for focus after another parent
483 e78dc838 2020-12-04 stsp * view was closed. This prevents child views from losing focus in such
484 e78dc838 2020-12-04 stsp * situations.
485 e78dc838 2020-12-04 stsp */
486 e78dc838 2020-12-04 stsp int focus_child;
487 e78dc838 2020-12-04 stsp
488 5dc9f4bc 2018-08-04 stsp /* type-specific state */
489 d6b05b5b 2018-08-04 stsp enum tog_view_type type;
490 5dc9f4bc 2018-08-04 stsp union {
491 b01e7d3b 2018-08-04 stsp struct tog_diff_view_state diff;
492 b01e7d3b 2018-08-04 stsp struct tog_log_view_state log;
493 7cbe629d 2018-08-04 stsp struct tog_blame_view_state blame;
494 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state tree;
495 6458efa5 2020-11-24 stsp struct tog_ref_view_state ref;
496 5dc9f4bc 2018-08-04 stsp } state;
497 e5a0f69f 2018-08-18 stsp
498 e5a0f69f 2018-08-18 stsp const struct got_error *(*show)(struct tog_view *);
499 e5a0f69f 2018-08-18 stsp const struct got_error *(*input)(struct tog_view **,
500 e78dc838 2020-12-04 stsp struct tog_view *, int);
501 e5a0f69f 2018-08-18 stsp const struct got_error *(*close)(struct tog_view *);
502 60493ae3 2019-06-20 stsp
503 60493ae3 2019-06-20 stsp const struct got_error *(*search_start)(struct tog_view *);
504 60493ae3 2019-06-20 stsp const struct got_error *(*search_next)(struct tog_view *);
505 60493ae3 2019-06-20 stsp int searching;
506 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_FORWARD 1
507 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_BACKWARD 2
508 60493ae3 2019-06-20 stsp int search_next_done;
509 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_HAVE_MORE 1
510 8f4ed634 2020-03-26 stsp #define TOG_SEARCH_NO_MORE 2
511 f9967bca 2020-03-27 stsp #define TOG_SEARCH_HAVE_NONE 3
512 1803e47f 2019-06-22 stsp regex_t regex;
513 41605754 2020-11-12 stsp regmatch_t regmatch;
514 cc3c9aac 2018-08-01 stsp };
515 cd0acaa7 2018-05-20 stsp
516 ba4f502b 2018-08-04 stsp static const struct got_error *open_diff_view(struct tog_view *,
517 3dbaef42 2020-11-24 stsp struct got_object_id *, struct got_object_id *,
518 3dbaef42 2020-11-24 stsp const char *, const char *, int, int, int, struct tog_view *,
519 78756c87 2020-11-24 stsp struct got_repository *);
520 5dc9f4bc 2018-08-04 stsp static const struct got_error *show_diff_view(struct tog_view *);
521 e5a0f69f 2018-08-18 stsp static const struct got_error *input_diff_view(struct tog_view **,
522 e78dc838 2020-12-04 stsp struct tog_view *, int);
523 e5a0f69f 2018-08-18 stsp static const struct got_error* close_diff_view(struct tog_view *);
524 f44b1f58 2020-02-02 tracey static const struct got_error *search_start_diff_view(struct tog_view *);
525 f44b1f58 2020-02-02 tracey static const struct got_error *search_next_diff_view(struct tog_view *);
526 e5a0f69f 2018-08-18 stsp
527 ba4f502b 2018-08-04 stsp static const struct got_error *open_log_view(struct tog_view *,
528 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *,
529 78756c87 2020-11-24 stsp const char *, const char *, int);
530 ba4f502b 2018-08-04 stsp static const struct got_error * show_log_view(struct tog_view *);
531 e5a0f69f 2018-08-18 stsp static const struct got_error *input_log_view(struct tog_view **,
532 e78dc838 2020-12-04 stsp struct tog_view *, int);
533 e5a0f69f 2018-08-18 stsp static const struct got_error *close_log_view(struct tog_view *);
534 60493ae3 2019-06-20 stsp static const struct got_error *search_start_log_view(struct tog_view *);
535 60493ae3 2019-06-20 stsp static const struct got_error *search_next_log_view(struct tog_view *);
536 e5a0f69f 2018-08-18 stsp
537 e5a0f69f 2018-08-18 stsp static const struct got_error *open_blame_view(struct tog_view *, char *,
538 78756c87 2020-11-24 stsp struct got_object_id *, struct got_repository *);
539 7cbe629d 2018-08-04 stsp static const struct got_error *show_blame_view(struct tog_view *);
540 e5a0f69f 2018-08-18 stsp static const struct got_error *input_blame_view(struct tog_view **,
541 e78dc838 2020-12-04 stsp struct tog_view *, int);
542 e5a0f69f 2018-08-18 stsp static const struct got_error *close_blame_view(struct tog_view *);
543 6c4c42e0 2019-06-24 stsp static const struct got_error *search_start_blame_view(struct tog_view *);
544 6c4c42e0 2019-06-24 stsp static const struct got_error *search_next_blame_view(struct tog_view *);
545 e5a0f69f 2018-08-18 stsp
546 ad80ab7b 2018-08-04 stsp static const struct got_error *open_tree_view(struct tog_view *,
547 4e97c21c 2020-12-06 stsp struct got_tree_object *, struct got_object_id *, const char *,
548 4e97c21c 2020-12-06 stsp struct got_repository *);
549 ad80ab7b 2018-08-04 stsp static const struct got_error *show_tree_view(struct tog_view *);
550 e5a0f69f 2018-08-18 stsp static const struct got_error *input_tree_view(struct tog_view **,
551 e78dc838 2020-12-04 stsp struct tog_view *, int);
552 e5a0f69f 2018-08-18 stsp static const struct got_error *close_tree_view(struct tog_view *);
553 7c32bd05 2019-06-22 stsp static const struct got_error *search_start_tree_view(struct tog_view *);
554 7c32bd05 2019-06-22 stsp static const struct got_error *search_next_tree_view(struct tog_view *);
555 6458efa5 2020-11-24 stsp
556 6458efa5 2020-11-24 stsp static const struct got_error *open_ref_view(struct tog_view *,
557 6458efa5 2020-11-24 stsp struct got_repository *);
558 6458efa5 2020-11-24 stsp static const struct got_error *show_ref_view(struct tog_view *);
559 6458efa5 2020-11-24 stsp static const struct got_error *input_ref_view(struct tog_view **,
560 e78dc838 2020-12-04 stsp struct tog_view *, int);
561 6458efa5 2020-11-24 stsp static const struct got_error *close_ref_view(struct tog_view *);
562 6458efa5 2020-11-24 stsp static const struct got_error *search_start_ref_view(struct tog_view *);
563 6458efa5 2020-11-24 stsp static const struct got_error *search_next_ref_view(struct tog_view *);
564 25791caa 2018-10-24 stsp
565 25791caa 2018-10-24 stsp static volatile sig_atomic_t tog_sigwinch_received;
566 83baff54 2019-08-12 stsp static volatile sig_atomic_t tog_sigpipe_received;
567 61266923 2020-01-14 stsp static volatile sig_atomic_t tog_sigcont_received;
568 25791caa 2018-10-24 stsp
569 25791caa 2018-10-24 stsp static void
570 25791caa 2018-10-24 stsp tog_sigwinch(int signo)
571 25791caa 2018-10-24 stsp {
572 25791caa 2018-10-24 stsp tog_sigwinch_received = 1;
573 83baff54 2019-08-12 stsp }
574 83baff54 2019-08-12 stsp
575 83baff54 2019-08-12 stsp static void
576 83baff54 2019-08-12 stsp tog_sigpipe(int signo)
577 83baff54 2019-08-12 stsp {
578 83baff54 2019-08-12 stsp tog_sigpipe_received = 1;
579 25791caa 2018-10-24 stsp }
580 26ed57b2 2018-05-19 stsp
581 61266923 2020-01-14 stsp static void
582 61266923 2020-01-14 stsp tog_sigcont(int signo)
583 61266923 2020-01-14 stsp {
584 61266923 2020-01-14 stsp tog_sigcont_received = 1;
585 61266923 2020-01-14 stsp }
586 61266923 2020-01-14 stsp
587 e5a0f69f 2018-08-18 stsp static const struct got_error *
588 96a765a8 2018-08-04 stsp view_close(struct tog_view *view)
589 ea5e7bb5 2018-08-01 stsp {
590 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
591 e5a0f69f 2018-08-18 stsp
592 669b5ffa 2018-10-07 stsp if (view->child) {
593 669b5ffa 2018-10-07 stsp view_close(view->child);
594 669b5ffa 2018-10-07 stsp view->child = NULL;
595 669b5ffa 2018-10-07 stsp }
596 e5a0f69f 2018-08-18 stsp if (view->close)
597 e5a0f69f 2018-08-18 stsp err = view->close(view);
598 ea5e7bb5 2018-08-01 stsp if (view->panel)
599 ea5e7bb5 2018-08-01 stsp del_panel(view->panel);
600 ea5e7bb5 2018-08-01 stsp if (view->window)
601 ea5e7bb5 2018-08-01 stsp delwin(view->window);
602 ea5e7bb5 2018-08-01 stsp free(view);
603 e5a0f69f 2018-08-18 stsp return err;
604 ea5e7bb5 2018-08-01 stsp }
605 ea5e7bb5 2018-08-01 stsp
606 ea5e7bb5 2018-08-01 stsp static struct tog_view *
607 b3665f43 2018-08-04 stsp view_open(int nlines, int ncols, int begin_y, int begin_x,
608 0cf4efb1 2018-09-29 stsp enum tog_view_type type)
609 ea5e7bb5 2018-08-01 stsp {
610 ad80ab7b 2018-08-04 stsp struct tog_view *view = calloc(1, sizeof(*view));
611 ea5e7bb5 2018-08-01 stsp
612 ea5e7bb5 2018-08-01 stsp if (view == NULL)
613 ea5e7bb5 2018-08-01 stsp return NULL;
614 ea5e7bb5 2018-08-01 stsp
615 d6b05b5b 2018-08-04 stsp view->type = type;
616 f7d12f7e 2018-08-01 stsp view->lines = LINES;
617 f7d12f7e 2018-08-01 stsp view->cols = COLS;
618 207b9029 2018-08-01 stsp view->nlines = nlines ? nlines : LINES - begin_y;
619 207b9029 2018-08-01 stsp view->ncols = ncols ? ncols : COLS - begin_x;
620 97ddc146 2018-08-01 stsp view->begin_y = begin_y;
621 97ddc146 2018-08-01 stsp view->begin_x = begin_x;
622 842167bf 2018-08-01 stsp view->window = newwin(nlines, ncols, begin_y, begin_x);
623 ea5e7bb5 2018-08-01 stsp if (view->window == NULL) {
624 96a765a8 2018-08-04 stsp view_close(view);
625 ea5e7bb5 2018-08-01 stsp return NULL;
626 ea5e7bb5 2018-08-01 stsp }
627 ea5e7bb5 2018-08-01 stsp view->panel = new_panel(view->window);
628 0cf4efb1 2018-09-29 stsp if (view->panel == NULL ||
629 0cf4efb1 2018-09-29 stsp set_panel_userptr(view->panel, view) != OK) {
630 96a765a8 2018-08-04 stsp view_close(view);
631 ea5e7bb5 2018-08-01 stsp return NULL;
632 ea5e7bb5 2018-08-01 stsp }
633 ea5e7bb5 2018-08-01 stsp
634 ea5e7bb5 2018-08-01 stsp keypad(view->window, TRUE);
635 ea5e7bb5 2018-08-01 stsp return view;
636 cdf1ee82 2018-08-01 stsp }
637 cdf1ee82 2018-08-01 stsp
638 0cf4efb1 2018-09-29 stsp static int
639 0cf4efb1 2018-09-29 stsp view_split_begin_x(int begin_x)
640 0cf4efb1 2018-09-29 stsp {
641 2bd27830 2018-10-22 stsp if (begin_x > 0 || COLS < 120)
642 0cf4efb1 2018-09-29 stsp return 0;
643 2bd27830 2018-10-22 stsp return (COLS - MAX(COLS / 2, 80));
644 5c60c32a 2018-10-18 stsp }
645 5c60c32a 2018-10-18 stsp
646 5c60c32a 2018-10-18 stsp static const struct got_error *view_resize(struct tog_view *);
647 5c60c32a 2018-10-18 stsp
648 5c60c32a 2018-10-18 stsp static const struct got_error *
649 5c60c32a 2018-10-18 stsp view_splitscreen(struct tog_view *view)
650 5c60c32a 2018-10-18 stsp {
651 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
652 5c60c32a 2018-10-18 stsp
653 5c60c32a 2018-10-18 stsp view->begin_y = 0;
654 5c60c32a 2018-10-18 stsp view->begin_x = view_split_begin_x(0);
655 5c60c32a 2018-10-18 stsp view->nlines = LINES;
656 5c60c32a 2018-10-18 stsp view->ncols = COLS - view->begin_x;
657 5c60c32a 2018-10-18 stsp view->lines = LINES;
658 5c60c32a 2018-10-18 stsp view->cols = COLS;
659 5c60c32a 2018-10-18 stsp err = view_resize(view);
660 5c60c32a 2018-10-18 stsp if (err)
661 5c60c32a 2018-10-18 stsp return err;
662 5c60c32a 2018-10-18 stsp
663 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
664 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
665 5c60c32a 2018-10-18 stsp
666 5c60c32a 2018-10-18 stsp return NULL;
667 5c60c32a 2018-10-18 stsp }
668 5c60c32a 2018-10-18 stsp
669 5c60c32a 2018-10-18 stsp static const struct got_error *
670 5c60c32a 2018-10-18 stsp view_fullscreen(struct tog_view *view)
671 5c60c32a 2018-10-18 stsp {
672 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
673 5c60c32a 2018-10-18 stsp
674 5c60c32a 2018-10-18 stsp view->begin_x = 0;
675 5c60c32a 2018-10-18 stsp view->begin_y = 0;
676 5c60c32a 2018-10-18 stsp view->nlines = LINES;
677 5c60c32a 2018-10-18 stsp view->ncols = COLS;
678 5c60c32a 2018-10-18 stsp view->lines = LINES;
679 5c60c32a 2018-10-18 stsp view->cols = COLS;
680 5c60c32a 2018-10-18 stsp err = view_resize(view);
681 5c60c32a 2018-10-18 stsp if (err)
682 5c60c32a 2018-10-18 stsp return err;
683 5c60c32a 2018-10-18 stsp
684 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
685 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
686 5c60c32a 2018-10-18 stsp
687 5c60c32a 2018-10-18 stsp return NULL;
688 0cf4efb1 2018-09-29 stsp }
689 0cf4efb1 2018-09-29 stsp
690 5c60c32a 2018-10-18 stsp static int
691 5c60c32a 2018-10-18 stsp view_is_parent_view(struct tog_view *view)
692 5c60c32a 2018-10-18 stsp {
693 5c60c32a 2018-10-18 stsp return view->parent == NULL;
694 5c60c32a 2018-10-18 stsp }
695 5c60c32a 2018-10-18 stsp
696 4d8c2215 2018-08-19 stsp static const struct got_error *
697 f7d12f7e 2018-08-01 stsp view_resize(struct tog_view *view)
698 f7d12f7e 2018-08-01 stsp {
699 f7d12f7e 2018-08-01 stsp int nlines, ncols;
700 f7d12f7e 2018-08-01 stsp
701 0cf4efb1 2018-09-29 stsp if (view->lines > LINES)
702 0cf4efb1 2018-09-29 stsp nlines = view->nlines - (view->lines - LINES);
703 0cf4efb1 2018-09-29 stsp else
704 0cf4efb1 2018-09-29 stsp nlines = view->nlines + (LINES - view->lines);
705 f7d12f7e 2018-08-01 stsp
706 0cf4efb1 2018-09-29 stsp if (view->cols > COLS)
707 0cf4efb1 2018-09-29 stsp ncols = view->ncols - (view->cols - COLS);
708 0cf4efb1 2018-09-29 stsp else
709 0cf4efb1 2018-09-29 stsp ncols = view->ncols + (COLS - view->cols);
710 f7d12f7e 2018-08-01 stsp
711 0cf4efb1 2018-09-29 stsp if (wresize(view->window, nlines, ncols) == ERR)
712 638f9024 2019-05-13 stsp return got_error_from_errno("wresize");
713 a6d7eb8d 2018-10-24 stsp if (replace_panel(view->panel, view->window) == ERR)
714 638f9024 2019-05-13 stsp return got_error_from_errno("replace_panel");
715 25791caa 2018-10-24 stsp wclear(view->window);
716 f7d12f7e 2018-08-01 stsp
717 0cf4efb1 2018-09-29 stsp view->nlines = nlines;
718 0cf4efb1 2018-09-29 stsp view->ncols = ncols;
719 0cf4efb1 2018-09-29 stsp view->lines = LINES;
720 0cf4efb1 2018-09-29 stsp view->cols = COLS;
721 6d0fee91 2018-08-01 stsp
722 6e3e5d9c 2018-10-18 stsp if (view->child) {
723 5c60c32a 2018-10-18 stsp view->child->begin_x = view_split_begin_x(view->begin_x);
724 5c60c32a 2018-10-18 stsp if (view->child->begin_x == 0) {
725 5c60c32a 2018-10-18 stsp view_fullscreen(view->child);
726 5c60c32a 2018-10-18 stsp if (view->child->focussed)
727 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
728 5c60c32a 2018-10-18 stsp else
729 5c60c32a 2018-10-18 stsp show_panel(view->panel);
730 5c60c32a 2018-10-18 stsp } else {
731 5c60c32a 2018-10-18 stsp view_splitscreen(view->child);
732 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
733 5c60c32a 2018-10-18 stsp }
734 5c60c32a 2018-10-18 stsp }
735 669b5ffa 2018-10-07 stsp
736 5c60c32a 2018-10-18 stsp return NULL;
737 669b5ffa 2018-10-07 stsp }
738 669b5ffa 2018-10-07 stsp
739 669b5ffa 2018-10-07 stsp static const struct got_error *
740 669b5ffa 2018-10-07 stsp view_close_child(struct tog_view *view)
741 669b5ffa 2018-10-07 stsp {
742 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
743 669b5ffa 2018-10-07 stsp
744 669b5ffa 2018-10-07 stsp if (view->child == NULL)
745 669b5ffa 2018-10-07 stsp return NULL;
746 669b5ffa 2018-10-07 stsp
747 669b5ffa 2018-10-07 stsp err = view_close(view->child);
748 669b5ffa 2018-10-07 stsp view->child = NULL;
749 669b5ffa 2018-10-07 stsp return err;
750 669b5ffa 2018-10-07 stsp }
751 669b5ffa 2018-10-07 stsp
752 72a9cb46 2020-12-03 stsp static void
753 669b5ffa 2018-10-07 stsp view_set_child(struct tog_view *view, struct tog_view *child)
754 669b5ffa 2018-10-07 stsp {
755 669b5ffa 2018-10-07 stsp view->child = child;
756 669b5ffa 2018-10-07 stsp child->parent = view;
757 bfddd0d9 2018-09-29 stsp }
758 bfddd0d9 2018-09-29 stsp
759 bfddd0d9 2018-09-29 stsp static int
760 bfddd0d9 2018-09-29 stsp view_is_splitscreen(struct tog_view *view)
761 bfddd0d9 2018-09-29 stsp {
762 f5215bb9 2019-02-22 stsp return view->begin_x > 0;
763 34bc9ec9 2019-02-22 stsp }
764 34bc9ec9 2019-02-22 stsp
765 34bc9ec9 2019-02-22 stsp static void
766 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
767 25791caa 2018-10-24 stsp {
768 25791caa 2018-10-24 stsp int cols, lines;
769 25791caa 2018-10-24 stsp struct winsize size;
770 25791caa 2018-10-24 stsp
771 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
772 25791caa 2018-10-24 stsp cols = 80; /* Default */
773 25791caa 2018-10-24 stsp lines = 24;
774 25791caa 2018-10-24 stsp } else {
775 25791caa 2018-10-24 stsp cols = size.ws_col;
776 25791caa 2018-10-24 stsp lines = size.ws_row;
777 25791caa 2018-10-24 stsp }
778 25791caa 2018-10-24 stsp resize_term(lines, cols);
779 2b49a8ae 2019-06-22 stsp }
780 2b49a8ae 2019-06-22 stsp
781 2b49a8ae 2019-06-22 stsp static const struct got_error *
782 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
783 2b49a8ae 2019-06-22 stsp {
784 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
785 2b49a8ae 2019-06-22 stsp char pattern[1024];
786 2b49a8ae 2019-06-22 stsp int ret;
787 2b49a8ae 2019-06-22 stsp
788 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
789 2b49a8ae 2019-06-22 stsp return NULL;
790 2b49a8ae 2019-06-22 stsp
791 cb1159f8 2020-02-19 stsp mvwaddstr(view->window, view->begin_y + view->nlines - 1, 0, "/");
792 2b49a8ae 2019-06-22 stsp wclrtoeol(view->window);
793 2b49a8ae 2019-06-22 stsp
794 2b49a8ae 2019-06-22 stsp nocbreak();
795 2b49a8ae 2019-06-22 stsp echo();
796 2b49a8ae 2019-06-22 stsp ret = wgetnstr(view->window, pattern, sizeof(pattern));
797 2b49a8ae 2019-06-22 stsp cbreak();
798 2b49a8ae 2019-06-22 stsp noecho();
799 2b49a8ae 2019-06-22 stsp if (ret == ERR)
800 2b49a8ae 2019-06-22 stsp return NULL;
801 2b49a8ae 2019-06-22 stsp
802 2b49a8ae 2019-06-22 stsp if (view->searching) {
803 2b49a8ae 2019-06-22 stsp regfree(&view->regex);
804 2b49a8ae 2019-06-22 stsp view->searching = 0;
805 2b49a8ae 2019-06-22 stsp }
806 2b49a8ae 2019-06-22 stsp
807 41605754 2020-11-12 stsp if (regcomp(&view->regex, pattern, REG_EXTENDED | REG_NEWLINE) == 0) {
808 7c32bd05 2019-06-22 stsp err = view->search_start(view);
809 7c32bd05 2019-06-22 stsp if (err) {
810 7c32bd05 2019-06-22 stsp regfree(&view->regex);
811 7c32bd05 2019-06-22 stsp return err;
812 7c32bd05 2019-06-22 stsp }
813 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
814 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
815 2b49a8ae 2019-06-22 stsp view->search_next(view);
816 2b49a8ae 2019-06-22 stsp }
817 2b49a8ae 2019-06-22 stsp
818 2b49a8ae 2019-06-22 stsp return NULL;
819 0cf4efb1 2018-09-29 stsp }
820 6d0fee91 2018-08-01 stsp
821 0cf4efb1 2018-09-29 stsp static const struct got_error *
822 e78dc838 2020-12-04 stsp view_input(struct tog_view **new, int *done, struct tog_view *view,
823 e78dc838 2020-12-04 stsp struct tog_view_list_head *views)
824 e5a0f69f 2018-08-18 stsp {
825 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
826 669b5ffa 2018-10-07 stsp struct tog_view *v;
827 1a76625f 2018-10-22 stsp int ch, errcode;
828 e5a0f69f 2018-08-18 stsp
829 e5a0f69f 2018-08-18 stsp *new = NULL;
830 8f4ed634 2020-03-26 stsp
831 f9967bca 2020-03-27 stsp /* Clear "no matches" indicator. */
832 f9967bca 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE ||
833 f9967bca 2020-03-27 stsp view->search_next_done == TOG_SEARCH_HAVE_NONE)
834 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
835 e5a0f69f 2018-08-18 stsp
836 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
837 82954512 2020-02-03 stsp errcode = pthread_mutex_unlock(&tog_mutex);
838 82954512 2020-02-03 stsp if (errcode)
839 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
840 82954512 2020-02-03 stsp "pthread_mutex_unlock");
841 82954512 2020-02-03 stsp pthread_yield();
842 82954512 2020-02-03 stsp errcode = pthread_mutex_lock(&tog_mutex);
843 82954512 2020-02-03 stsp if (errcode)
844 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
845 82954512 2020-02-03 stsp "pthread_mutex_lock");
846 60493ae3 2019-06-20 stsp view->search_next(view);
847 60493ae3 2019-06-20 stsp return NULL;
848 60493ae3 2019-06-20 stsp }
849 60493ae3 2019-06-20 stsp
850 e5a0f69f 2018-08-18 stsp nodelay(stdscr, FALSE);
851 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
852 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
853 1a76625f 2018-10-22 stsp if (errcode)
854 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
855 cc5bac66 2018-10-22 stsp ch = wgetch(view->window);
856 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
857 1a76625f 2018-10-22 stsp if (errcode)
858 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
859 e5a0f69f 2018-08-18 stsp nodelay(stdscr, TRUE);
860 25791caa 2018-10-24 stsp
861 61266923 2020-01-14 stsp if (tog_sigwinch_received || tog_sigcont_received) {
862 25791caa 2018-10-24 stsp tog_resizeterm();
863 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
864 61266923 2020-01-14 stsp tog_sigcont_received = 0;
865 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
866 25791caa 2018-10-24 stsp err = view_resize(v);
867 25791caa 2018-10-24 stsp if (err)
868 25791caa 2018-10-24 stsp return err;
869 e78dc838 2020-12-04 stsp err = v->input(new, v, KEY_RESIZE);
870 25791caa 2018-10-24 stsp if (err)
871 25791caa 2018-10-24 stsp return err;
872 cdfcfb03 2020-12-06 stsp if (v->child) {
873 cdfcfb03 2020-12-06 stsp err = view_resize(v->child);
874 cdfcfb03 2020-12-06 stsp if (err)
875 cdfcfb03 2020-12-06 stsp return err;
876 cdfcfb03 2020-12-06 stsp err = v->child->input(new, v->child,
877 cdfcfb03 2020-12-06 stsp KEY_RESIZE);
878 cdfcfb03 2020-12-06 stsp if (err)
879 cdfcfb03 2020-12-06 stsp return err;
880 cdfcfb03 2020-12-06 stsp }
881 25791caa 2018-10-24 stsp }
882 25791caa 2018-10-24 stsp }
883 25791caa 2018-10-24 stsp
884 e5a0f69f 2018-08-18 stsp switch (ch) {
885 1e37a5c2 2019-05-12 jcs case ERR:
886 1e37a5c2 2019-05-12 jcs break;
887 1e37a5c2 2019-05-12 jcs case '\t':
888 1e37a5c2 2019-05-12 jcs if (view->child) {
889 e78dc838 2020-12-04 stsp view->focussed = 0;
890 e78dc838 2020-12-04 stsp view->child->focussed = 1;
891 e78dc838 2020-12-04 stsp view->focus_child = 1;
892 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
893 e78dc838 2020-12-04 stsp view->focussed = 0;
894 e78dc838 2020-12-04 stsp view->parent->focussed = 1;
895 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
896 1e37a5c2 2019-05-12 jcs }
897 1e37a5c2 2019-05-12 jcs break;
898 1e37a5c2 2019-05-12 jcs case 'q':
899 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
900 9970f7fc 2020-12-03 stsp view->dying = 1;
901 1e37a5c2 2019-05-12 jcs break;
902 1e37a5c2 2019-05-12 jcs case 'Q':
903 1e37a5c2 2019-05-12 jcs *done = 1;
904 1e37a5c2 2019-05-12 jcs break;
905 1e37a5c2 2019-05-12 jcs case 'f':
906 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
907 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
908 1e37a5c2 2019-05-12 jcs break;
909 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
910 e78dc838 2020-12-04 stsp view->focussed = 0;
911 e78dc838 2020-12-04 stsp view->child->focussed = 1;
912 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
913 1e37a5c2 2019-05-12 jcs } else
914 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
915 1e37a5c2 2019-05-12 jcs if (err)
916 1e37a5c2 2019-05-12 jcs break;
917 e78dc838 2020-12-04 stsp err = view->child->input(new, view->child,
918 9970f7fc 2020-12-03 stsp KEY_RESIZE);
919 1e37a5c2 2019-05-12 jcs } else {
920 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
921 e78dc838 2020-12-04 stsp view->parent->focussed = 0;
922 e78dc838 2020-12-04 stsp view->focussed = 1;
923 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
924 1e37a5c2 2019-05-12 jcs } else {
925 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
926 669b5ffa 2018-10-07 stsp }
927 1e37a5c2 2019-05-12 jcs if (err)
928 1e37a5c2 2019-05-12 jcs break;
929 e78dc838 2020-12-04 stsp err = view->input(new, view, KEY_RESIZE);
930 1e37a5c2 2019-05-12 jcs }
931 1e37a5c2 2019-05-12 jcs break;
932 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
933 60493ae3 2019-06-20 stsp break;
934 60493ae3 2019-06-20 stsp case '/':
935 60493ae3 2019-06-20 stsp if (view->search_start)
936 2b49a8ae 2019-06-22 stsp view_search_start(view);
937 60493ae3 2019-06-20 stsp else
938 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
939 1e37a5c2 2019-05-12 jcs break;
940 b1bf1435 2019-06-21 stsp case 'N':
941 60493ae3 2019-06-20 stsp case 'n':
942 8f4ed634 2020-03-26 stsp if (view->search_next) {
943 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
944 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
945 60493ae3 2019-06-20 stsp view->search_next_done = 0;
946 60493ae3 2019-06-20 stsp view->search_next(view);
947 60493ae3 2019-06-20 stsp } else
948 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
949 60493ae3 2019-06-20 stsp break;
950 1e37a5c2 2019-05-12 jcs default:
951 e78dc838 2020-12-04 stsp err = view->input(new, view, ch);
952 1e37a5c2 2019-05-12 jcs break;
953 e5a0f69f 2018-08-18 stsp }
954 e5a0f69f 2018-08-18 stsp
955 e5a0f69f 2018-08-18 stsp return err;
956 e5a0f69f 2018-08-18 stsp }
957 e5a0f69f 2018-08-18 stsp
958 1a57306a 2018-09-02 stsp void
959 1a57306a 2018-09-02 stsp view_vborder(struct tog_view *view)
960 1a57306a 2018-09-02 stsp {
961 0cf4efb1 2018-09-29 stsp PANEL *panel;
962 7f64f4d6 2020-12-10 naddy const struct tog_view *view_above;
963 0cf4efb1 2018-09-29 stsp
964 669b5ffa 2018-10-07 stsp if (view->parent)
965 669b5ffa 2018-10-07 stsp return view_vborder(view->parent);
966 669b5ffa 2018-10-07 stsp
967 0cf4efb1 2018-09-29 stsp panel = panel_above(view->panel);
968 0cf4efb1 2018-09-29 stsp if (panel == NULL)
969 1a57306a 2018-09-02 stsp return;
970 1a57306a 2018-09-02 stsp
971 0cf4efb1 2018-09-29 stsp view_above = panel_userptr(panel);
972 0cf4efb1 2018-09-29 stsp mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
973 1a57306a 2018-09-02 stsp got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
974 bcbd79e2 2018-08-19 stsp }
975 bcbd79e2 2018-08-19 stsp
976 a3404814 2018-09-02 stsp int
977 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
978 a3404814 2018-09-02 stsp {
979 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
980 acdafe9c 2020-12-03 stsp if (view->child == NULL || view->child->focussed)
981 669b5ffa 2018-10-07 stsp return 0;
982 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
983 669b5ffa 2018-10-07 stsp return 0;
984 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
985 a3404814 2018-09-02 stsp return 0;
986 a3404814 2018-09-02 stsp
987 669b5ffa 2018-10-07 stsp return view->focussed;
988 a3404814 2018-09-02 stsp }
989 a3404814 2018-09-02 stsp
990 bcbd79e2 2018-08-19 stsp static const struct got_error *
991 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
992 e5a0f69f 2018-08-18 stsp {
993 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
994 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
995 fb59748f 2020-12-05 stsp struct tog_view *new_view;
996 fd823528 2018-10-22 stsp int fast_refresh = 10;
997 1a76625f 2018-10-22 stsp int done = 0, errcode;
998 e5a0f69f 2018-08-18 stsp
999 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1000 1a76625f 2018-10-22 stsp if (errcode)
1001 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
1002 1a76625f 2018-10-22 stsp
1003 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
1004 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
1005 e5a0f69f 2018-08-18 stsp
1006 1004088d 2018-09-29 stsp view->focussed = 1;
1007 878940b7 2018-09-29 stsp err = view->show(view);
1008 0cf4efb1 2018-09-29 stsp if (err)
1009 0cf4efb1 2018-09-29 stsp return err;
1010 0cf4efb1 2018-09-29 stsp update_panels();
1011 0cf4efb1 2018-09-29 stsp doupdate();
1012 83baff54 2019-08-12 stsp while (!TAILQ_EMPTY(&views) && !done && !tog_sigpipe_received) {
1013 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
1014 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
1015 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
1016 fd823528 2018-10-22 stsp
1017 e78dc838 2020-12-04 stsp err = view_input(&new_view, &done, view, &views);
1018 e5a0f69f 2018-08-18 stsp if (err)
1019 e5a0f69f 2018-08-18 stsp break;
1020 9970f7fc 2020-12-03 stsp if (view->dying) {
1021 e78dc838 2020-12-04 stsp struct tog_view *v, *prev = NULL;
1022 669b5ffa 2018-10-07 stsp
1023 9970f7fc 2020-12-03 stsp if (view_is_parent_view(view))
1024 9970f7fc 2020-12-03 stsp prev = TAILQ_PREV(view, tog_view_list_head,
1025 9970f7fc 2020-12-03 stsp entry);
1026 e78dc838 2020-12-04 stsp else if (view->parent)
1027 669b5ffa 2018-10-07 stsp prev = view->parent;
1028 669b5ffa 2018-10-07 stsp
1029 e78dc838 2020-12-04 stsp if (view->parent) {
1030 9970f7fc 2020-12-03 stsp view->parent->child = NULL;
1031 e78dc838 2020-12-04 stsp view->parent->focus_child = 0;
1032 e78dc838 2020-12-04 stsp } else
1033 9970f7fc 2020-12-03 stsp TAILQ_REMOVE(&views, view, entry);
1034 669b5ffa 2018-10-07 stsp
1035 9970f7fc 2020-12-03 stsp err = view_close(view);
1036 fb59748f 2020-12-05 stsp if (err)
1037 e5a0f69f 2018-08-18 stsp goto done;
1038 669b5ffa 2018-10-07 stsp
1039 e78dc838 2020-12-04 stsp view = NULL;
1040 e78dc838 2020-12-04 stsp TAILQ_FOREACH(v, &views, entry) {
1041 e78dc838 2020-12-04 stsp if (v->focussed)
1042 e78dc838 2020-12-04 stsp break;
1043 0cf4efb1 2018-09-29 stsp }
1044 e78dc838 2020-12-04 stsp if (view == NULL && new_view == NULL) {
1045 e78dc838 2020-12-04 stsp /* No view has focus. Try to pick one. */
1046 e78dc838 2020-12-04 stsp if (prev)
1047 e78dc838 2020-12-04 stsp view = prev;
1048 e78dc838 2020-12-04 stsp else if (!TAILQ_EMPTY(&views)) {
1049 e78dc838 2020-12-04 stsp view = TAILQ_LAST(&views,
1050 e78dc838 2020-12-04 stsp tog_view_list_head);
1051 e78dc838 2020-12-04 stsp }
1052 e78dc838 2020-12-04 stsp if (view) {
1053 e78dc838 2020-12-04 stsp if (view->focus_child) {
1054 e78dc838 2020-12-04 stsp view->child->focussed = 1;
1055 e78dc838 2020-12-04 stsp view = view->child;
1056 e78dc838 2020-12-04 stsp } else
1057 e78dc838 2020-12-04 stsp view->focussed = 1;
1058 e78dc838 2020-12-04 stsp }
1059 e78dc838 2020-12-04 stsp }
1060 e5a0f69f 2018-08-18 stsp }
1061 bcbd79e2 2018-08-19 stsp if (new_view) {
1062 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
1063 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
1064 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
1065 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
1066 86c66b02 2018-10-18 stsp continue;
1067 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
1068 86c66b02 2018-10-18 stsp err = view_close(v);
1069 86c66b02 2018-10-18 stsp if (err)
1070 86c66b02 2018-10-18 stsp goto done;
1071 86c66b02 2018-10-18 stsp break;
1072 86c66b02 2018-10-18 stsp }
1073 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
1074 fed7eaa8 2018-10-24 stsp view = new_view;
1075 e78dc838 2020-12-04 stsp }
1076 669b5ffa 2018-10-07 stsp if (view) {
1077 e78dc838 2020-12-04 stsp if (view_is_parent_view(view)) {
1078 e78dc838 2020-12-04 stsp if (view->child && view->child->focussed)
1079 e78dc838 2020-12-04 stsp view = view->child;
1080 e78dc838 2020-12-04 stsp } else {
1081 e78dc838 2020-12-04 stsp if (view->parent && view->parent->focussed)
1082 e78dc838 2020-12-04 stsp view = view->parent;
1083 1a76625f 2018-10-22 stsp }
1084 e78dc838 2020-12-04 stsp show_panel(view->panel);
1085 e78dc838 2020-12-04 stsp if (view->child && view_is_splitscreen(view->child))
1086 e78dc838 2020-12-04 stsp show_panel(view->child->panel);
1087 e78dc838 2020-12-04 stsp if (view->parent && view_is_splitscreen(view)) {
1088 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
1089 669b5ffa 2018-10-07 stsp if (err)
1090 1a76625f 2018-10-22 stsp goto done;
1091 669b5ffa 2018-10-07 stsp }
1092 669b5ffa 2018-10-07 stsp err = view->show(view);
1093 0cf4efb1 2018-09-29 stsp if (err)
1094 1a76625f 2018-10-22 stsp goto done;
1095 669b5ffa 2018-10-07 stsp if (view->child) {
1096 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
1097 669b5ffa 2018-10-07 stsp if (err)
1098 1a76625f 2018-10-22 stsp goto done;
1099 669b5ffa 2018-10-07 stsp }
1100 1a76625f 2018-10-22 stsp update_panels();
1101 1a76625f 2018-10-22 stsp doupdate();
1102 0cf4efb1 2018-09-29 stsp }
1103 e5a0f69f 2018-08-18 stsp }
1104 e5a0f69f 2018-08-18 stsp done:
1105 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
1106 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
1107 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
1108 e5a0f69f 2018-08-18 stsp view_close(view);
1109 e5a0f69f 2018-08-18 stsp }
1110 1a76625f 2018-10-22 stsp
1111 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1112 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
1113 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
1114 1a76625f 2018-10-22 stsp
1115 e5a0f69f 2018-08-18 stsp return err;
1116 ea5e7bb5 2018-08-01 stsp }
1117 ea5e7bb5 2018-08-01 stsp
1118 4ed7e80c 2018-05-20 stsp __dead static void
1119 9f7d7167 2018-04-29 stsp usage_log(void)
1120 9f7d7167 2018-04-29 stsp {
1121 80ddbec8 2018-04-29 stsp endwin();
1122 c70c5802 2018-08-01 stsp fprintf(stderr,
1123 b672a97a 2020-01-27 stsp "usage: %s log [-b] [-c commit] [-r repository-path] [path]\n",
1124 9f7d7167 2018-04-29 stsp getprogname());
1125 9f7d7167 2018-04-29 stsp exit(1);
1126 80ddbec8 2018-04-29 stsp }
1127 80ddbec8 2018-04-29 stsp
1128 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
1129 80ddbec8 2018-04-29 stsp static const struct got_error *
1130 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
1131 963b370f 2018-05-20 stsp {
1132 00dfcb92 2018-06-11 stsp char *vis = NULL;
1133 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1134 963b370f 2018-05-20 stsp
1135 963b370f 2018-05-20 stsp *ws = NULL;
1136 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
1137 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
1138 00dfcb92 2018-06-11 stsp int vislen;
1139 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
1140 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
1141 00dfcb92 2018-06-11 stsp
1142 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
1143 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
1144 00dfcb92 2018-06-11 stsp if (err)
1145 00dfcb92 2018-06-11 stsp return err;
1146 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
1147 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
1148 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
1149 a7f50699 2018-06-11 stsp goto done;
1150 a7f50699 2018-06-11 stsp }
1151 00dfcb92 2018-06-11 stsp }
1152 963b370f 2018-05-20 stsp
1153 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
1154 a7f50699 2018-06-11 stsp if (*ws == NULL) {
1155 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1156 a7f50699 2018-06-11 stsp goto done;
1157 a7f50699 2018-06-11 stsp }
1158 963b370f 2018-05-20 stsp
1159 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
1160 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
1161 a7f50699 2018-06-11 stsp done:
1162 00dfcb92 2018-06-11 stsp free(vis);
1163 963b370f 2018-05-20 stsp if (err) {
1164 963b370f 2018-05-20 stsp free(*ws);
1165 963b370f 2018-05-20 stsp *ws = NULL;
1166 963b370f 2018-05-20 stsp *wlen = 0;
1167 963b370f 2018-05-20 stsp }
1168 963b370f 2018-05-20 stsp return err;
1169 963b370f 2018-05-20 stsp }
1170 963b370f 2018-05-20 stsp
1171 963b370f 2018-05-20 stsp /* Format a line for display, ensuring that it won't overflow a width limit. */
1172 963b370f 2018-05-20 stsp static const struct got_error *
1173 27a741e5 2019-09-11 stsp format_line(wchar_t **wlinep, int *widthp, const char *line, int wlimit,
1174 27a741e5 2019-09-11 stsp int col_tab_align)
1175 963b370f 2018-05-20 stsp {
1176 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
1177 963b370f 2018-05-20 stsp int cols = 0;
1178 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
1179 963b370f 2018-05-20 stsp size_t wlen;
1180 963b370f 2018-05-20 stsp int i;
1181 963b370f 2018-05-20 stsp
1182 963b370f 2018-05-20 stsp *wlinep = NULL;
1183 b700b5d6 2018-07-10 stsp *widthp = 0;
1184 963b370f 2018-05-20 stsp
1185 963b370f 2018-05-20 stsp err = mbs2ws(&wline, &wlen, line);
1186 963b370f 2018-05-20 stsp if (err)
1187 963b370f 2018-05-20 stsp return err;
1188 963b370f 2018-05-20 stsp
1189 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\n') {
1190 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
1191 3f670bfb 2020-12-10 stsp wlen--;
1192 3f670bfb 2020-12-10 stsp }
1193 3f670bfb 2020-12-10 stsp if (wlen > 0 && wline[wlen - 1] == L'\r') {
1194 3f670bfb 2020-12-10 stsp wline[wlen - 1] = L'\0';
1195 3f670bfb 2020-12-10 stsp wlen--;
1196 3f670bfb 2020-12-10 stsp }
1197 3f670bfb 2020-12-10 stsp
1198 963b370f 2018-05-20 stsp i = 0;
1199 27a741e5 2019-09-11 stsp while (i < wlen) {
1200 963b370f 2018-05-20 stsp int width = wcwidth(wline[i]);
1201 27a741e5 2019-09-11 stsp
1202 27a741e5 2019-09-11 stsp if (width == 0) {
1203 b700b5d6 2018-07-10 stsp i++;
1204 27a741e5 2019-09-11 stsp continue;
1205 27a741e5 2019-09-11 stsp }
1206 27a741e5 2019-09-11 stsp
1207 27a741e5 2019-09-11 stsp if (width == 1 || width == 2) {
1208 27a741e5 2019-09-11 stsp if (cols + width > wlimit)
1209 27a741e5 2019-09-11 stsp break;
1210 27a741e5 2019-09-11 stsp cols += width;
1211 3c1f04f1 2018-09-13 stsp i++;
1212 27a741e5 2019-09-11 stsp } else if (width == -1) {
1213 27a741e5 2019-09-11 stsp if (wline[i] == L'\t') {
1214 27a741e5 2019-09-11 stsp width = TABSIZE -
1215 27a741e5 2019-09-11 stsp ((cols + col_tab_align) % TABSIZE);
1216 748d5cab 2020-12-14 naddy } else {
1217 748d5cab 2020-12-14 naddy width = 1;
1218 748d5cab 2020-12-14 naddy wline[i] = L'.';
1219 27a741e5 2019-09-11 stsp }
1220 748d5cab 2020-12-14 naddy if (cols + width > wlimit)
1221 748d5cab 2020-12-14 naddy break;
1222 748d5cab 2020-12-14 naddy cols += width;
1223 b700b5d6 2018-07-10 stsp i++;
1224 27a741e5 2019-09-11 stsp } else {
1225 638f9024 2019-05-13 stsp err = got_error_from_errno("wcwidth");
1226 963b370f 2018-05-20 stsp goto done;
1227 963b370f 2018-05-20 stsp }
1228 963b370f 2018-05-20 stsp }
1229 963b370f 2018-05-20 stsp wline[i] = L'\0';
1230 b700b5d6 2018-07-10 stsp if (widthp)
1231 b700b5d6 2018-07-10 stsp *widthp = cols;
1232 963b370f 2018-05-20 stsp done:
1233 963b370f 2018-05-20 stsp if (err)
1234 963b370f 2018-05-20 stsp free(wline);
1235 963b370f 2018-05-20 stsp else
1236 963b370f 2018-05-20 stsp *wlinep = wline;
1237 963b370f 2018-05-20 stsp return err;
1238 963b370f 2018-05-20 stsp }
1239 963b370f 2018-05-20 stsp
1240 8b473291 2019-02-21 stsp static const struct got_error*
1241 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
1242 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
1243 8b473291 2019-02-21 stsp {
1244 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
1245 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
1246 8b473291 2019-02-21 stsp char *s;
1247 8b473291 2019-02-21 stsp const char *name;
1248 8b473291 2019-02-21 stsp
1249 8b473291 2019-02-21 stsp *refs_str = NULL;
1250 8b473291 2019-02-21 stsp
1251 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
1252 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
1253 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
1254 52b5abe1 2019-08-13 stsp int cmp;
1255 52b5abe1 2019-08-13 stsp
1256 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
1257 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
1258 8b473291 2019-02-21 stsp continue;
1259 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
1260 8b473291 2019-02-21 stsp name += 5;
1261 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
1262 7143d404 2019-03-12 stsp continue;
1263 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
1264 8b473291 2019-02-21 stsp name += 6;
1265 79cc719f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
1266 8b473291 2019-02-21 stsp name += 8;
1267 79cc719f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
1268 79cc719f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
1269 79cc719f 2020-04-24 stsp continue;
1270 79cc719f 2020-04-24 stsp }
1271 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
1272 48cae60d 2020-09-22 stsp if (err)
1273 48cae60d 2020-09-22 stsp break;
1274 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
1275 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
1276 5d844a1e 2019-08-13 stsp if (err) {
1277 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
1278 48cae60d 2020-09-22 stsp free(ref_id);
1279 5d844a1e 2019-08-13 stsp break;
1280 48cae60d 2020-09-22 stsp }
1281 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
1282 5d844a1e 2019-08-13 stsp err = NULL;
1283 5d844a1e 2019-08-13 stsp tag = NULL;
1284 5d844a1e 2019-08-13 stsp }
1285 52b5abe1 2019-08-13 stsp }
1286 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
1287 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
1288 48cae60d 2020-09-22 stsp free(ref_id);
1289 52b5abe1 2019-08-13 stsp if (tag)
1290 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
1291 52b5abe1 2019-08-13 stsp if (cmp != 0)
1292 52b5abe1 2019-08-13 stsp continue;
1293 8b473291 2019-02-21 stsp s = *refs_str;
1294 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
1295 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
1296 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1297 8b473291 2019-02-21 stsp free(s);
1298 8b473291 2019-02-21 stsp *refs_str = NULL;
1299 8b473291 2019-02-21 stsp break;
1300 8b473291 2019-02-21 stsp }
1301 8b473291 2019-02-21 stsp free(s);
1302 8b473291 2019-02-21 stsp }
1303 8b473291 2019-02-21 stsp
1304 8b473291 2019-02-21 stsp return err;
1305 8b473291 2019-02-21 stsp }
1306 8b473291 2019-02-21 stsp
1307 963b370f 2018-05-20 stsp static const struct got_error *
1308 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
1309 27a741e5 2019-09-11 stsp int col_tab_align)
1310 5813d178 2019-03-09 stsp {
1311 e6b8b890 2020-12-29 naddy char *smallerthan;
1312 5813d178 2019-03-09 stsp
1313 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
1314 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
1315 5813d178 2019-03-09 stsp author = smallerthan + 1;
1316 e6b8b890 2020-12-29 naddy author[strcspn(author, "@>")] = '\0';
1317 27a741e5 2019-09-11 stsp return format_line(wauthor, author_width, author, limit, col_tab_align);
1318 5813d178 2019-03-09 stsp }
1319 5813d178 2019-03-09 stsp
1320 5813d178 2019-03-09 stsp static const struct got_error *
1321 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
1322 8fdc79fe 2020-12-01 naddy struct got_object_id *id, const size_t date_display_cols,
1323 8fdc79fe 2020-12-01 naddy int author_display_cols)
1324 80ddbec8 2018-04-29 stsp {
1325 8fdc79fe 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
1326 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
1327 6db9f7f6 2019-12-10 stsp char datebuf[12]; /* YYYY-MM-DD + SPACE + NUL */
1328 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
1329 5813d178 2019-03-09 stsp char *author = NULL;
1330 bb737323 2018-05-20 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
1331 bb737323 2018-05-20 stsp int author_width, logmsg_width;
1332 5813d178 2019-03-09 stsp char *newline, *line = NULL;
1333 bb737323 2018-05-20 stsp int col, limit;
1334 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
1335 ccb26ccd 2018-11-05 stsp struct tm tm;
1336 45d799e2 2018-12-23 stsp time_t committer_time;
1337 11b20872 2019-11-08 stsp struct tog_color *tc;
1338 80ddbec8 2018-04-29 stsp
1339 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
1340 45d799e2 2018-12-23 stsp if (localtime_r(&committer_time, &tm) == NULL)
1341 638f9024 2019-05-13 stsp return got_error_from_errno("localtime_r");
1342 6db9f7f6 2019-12-10 stsp if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d ", &tm)
1343 ccb26ccd 2018-11-05 stsp >= sizeof(datebuf))
1344 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
1345 b39d25c7 2018-07-10 stsp
1346 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
1347 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
1348 b39d25c7 2018-07-10 stsp else
1349 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
1350 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_DATE);
1351 11b20872 2019-11-08 stsp if (tc)
1352 11b20872 2019-11-08 stsp wattr_on(view->window,
1353 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1354 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
1355 11b20872 2019-11-08 stsp if (tc)
1356 11b20872 2019-11-08 stsp wattr_off(view->window,
1357 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1358 27a741e5 2019-09-11 stsp col = limit;
1359 b39d25c7 2018-07-10 stsp if (col > avail)
1360 b39d25c7 2018-07-10 stsp goto done;
1361 6570a66d 2019-11-08 stsp
1362 6570a66d 2019-11-08 stsp if (avail >= 120) {
1363 6570a66d 2019-11-08 stsp char *id_str;
1364 6570a66d 2019-11-08 stsp err = got_object_id_str(&id_str, id);
1365 6570a66d 2019-11-08 stsp if (err)
1366 6570a66d 2019-11-08 stsp goto done;
1367 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
1368 11b20872 2019-11-08 stsp if (tc)
1369 11b20872 2019-11-08 stsp wattr_on(view->window,
1370 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1371 6570a66d 2019-11-08 stsp wprintw(view->window, "%.8s ", id_str);
1372 11b20872 2019-11-08 stsp if (tc)
1373 11b20872 2019-11-08 stsp wattr_off(view->window,
1374 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1375 6570a66d 2019-11-08 stsp free(id_str);
1376 6570a66d 2019-11-08 stsp col += 9;
1377 6570a66d 2019-11-08 stsp if (col > avail)
1378 6570a66d 2019-11-08 stsp goto done;
1379 6570a66d 2019-11-08 stsp }
1380 b39d25c7 2018-07-10 stsp
1381 5813d178 2019-03-09 stsp author = strdup(got_object_commit_get_author(commit));
1382 5813d178 2019-03-09 stsp if (author == NULL) {
1383 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1384 80ddbec8 2018-04-29 stsp goto done;
1385 80ddbec8 2018-04-29 stsp }
1386 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
1387 bb737323 2018-05-20 stsp if (err)
1388 bb737323 2018-05-20 stsp goto done;
1389 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_AUTHOR);
1390 11b20872 2019-11-08 stsp if (tc)
1391 11b20872 2019-11-08 stsp wattr_on(view->window,
1392 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1393 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
1394 11b20872 2019-11-08 stsp if (tc)
1395 11b20872 2019-11-08 stsp wattr_off(view->window,
1396 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1397 bb737323 2018-05-20 stsp col += author_width;
1398 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
1399 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
1400 bb737323 2018-05-20 stsp col++;
1401 bb737323 2018-05-20 stsp author_width++;
1402 bb737323 2018-05-20 stsp }
1403 9c2eaf34 2018-05-20 stsp if (col > avail)
1404 9c2eaf34 2018-05-20 stsp goto done;
1405 80ddbec8 2018-04-29 stsp
1406 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
1407 5943eee2 2019-08-13 stsp if (err)
1408 6d9fbc00 2018-04-29 stsp goto done;
1409 bb737323 2018-05-20 stsp logmsg = logmsg0;
1410 bb737323 2018-05-20 stsp while (*logmsg == '\n')
1411 bb737323 2018-05-20 stsp logmsg++;
1412 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
1413 bb737323 2018-05-20 stsp if (newline)
1414 bb737323 2018-05-20 stsp *newline = '\0';
1415 bb737323 2018-05-20 stsp limit = avail - col;
1416 dee2c213 2019-11-13 stsp err = format_line(&wlogmsg, &logmsg_width, logmsg, limit, col);
1417 bb737323 2018-05-20 stsp if (err)
1418 bb737323 2018-05-20 stsp goto done;
1419 2814baeb 2018-08-01 stsp waddwstr(view->window, wlogmsg);
1420 bb737323 2018-05-20 stsp col += logmsg_width;
1421 27a741e5 2019-09-11 stsp while (col < avail) {
1422 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
1423 bb737323 2018-05-20 stsp col++;
1424 881b2d3e 2018-04-30 stsp }
1425 80ddbec8 2018-04-29 stsp done:
1426 80ddbec8 2018-04-29 stsp free(logmsg0);
1427 bb737323 2018-05-20 stsp free(wlogmsg);
1428 5813d178 2019-03-09 stsp free(author);
1429 bb737323 2018-05-20 stsp free(wauthor);
1430 80ddbec8 2018-04-29 stsp free(line);
1431 80ddbec8 2018-04-29 stsp return err;
1432 80ddbec8 2018-04-29 stsp }
1433 26ed57b2 2018-05-19 stsp
1434 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
1435 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
1436 899d86c2 2018-05-10 stsp struct got_object_id *id)
1437 80ddbec8 2018-04-29 stsp {
1438 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
1439 80ddbec8 2018-04-29 stsp
1440 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
1441 80ddbec8 2018-04-29 stsp if (entry == NULL)
1442 899d86c2 2018-05-10 stsp return NULL;
1443 99db9666 2018-05-07 stsp
1444 899d86c2 2018-05-10 stsp entry->id = id;
1445 99db9666 2018-05-07 stsp entry->commit = commit;
1446 899d86c2 2018-05-10 stsp return entry;
1447 99db9666 2018-05-07 stsp }
1448 80ddbec8 2018-04-29 stsp
1449 99db9666 2018-05-07 stsp static void
1450 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
1451 99db9666 2018-05-07 stsp {
1452 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
1453 99db9666 2018-05-07 stsp
1454 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
1455 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
1456 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
1457 ecb28ae0 2018-07-16 stsp commits->ncommits--;
1458 9ba79e04 2018-06-11 stsp /* Don't free entry->id! It is owned by the commit graph. */
1459 99db9666 2018-05-07 stsp free(entry);
1460 99db9666 2018-05-07 stsp }
1461 99db9666 2018-05-07 stsp
1462 99db9666 2018-05-07 stsp static void
1463 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
1464 99db9666 2018-05-07 stsp {
1465 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
1466 99db9666 2018-05-07 stsp pop_commit(commits);
1467 c4972b91 2018-05-07 stsp }
1468 c4972b91 2018-05-07 stsp
1469 c4972b91 2018-05-07 stsp static const struct got_error *
1470 13add988 2019-10-15 stsp match_commit(int *have_match, struct got_object_id *id,
1471 13add988 2019-10-15 stsp struct got_commit_object *commit, regex_t *regex)
1472 13add988 2019-10-15 stsp {
1473 13add988 2019-10-15 stsp const struct got_error *err = NULL;
1474 13add988 2019-10-15 stsp regmatch_t regmatch;
1475 13add988 2019-10-15 stsp char *id_str = NULL, *logmsg = NULL;
1476 13add988 2019-10-15 stsp
1477 13add988 2019-10-15 stsp *have_match = 0;
1478 13add988 2019-10-15 stsp
1479 13add988 2019-10-15 stsp err = got_object_id_str(&id_str, id);
1480 13add988 2019-10-15 stsp if (err)
1481 13add988 2019-10-15 stsp return err;
1482 13add988 2019-10-15 stsp
1483 13add988 2019-10-15 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
1484 13add988 2019-10-15 stsp if (err)
1485 13add988 2019-10-15 stsp goto done;
1486 13add988 2019-10-15 stsp
1487 13add988 2019-10-15 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
1488 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
1489 13add988 2019-10-15 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
1490 13add988 2019-10-15 stsp &regmatch, 0) == 0 ||
1491 13add988 2019-10-15 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
1492 13add988 2019-10-15 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
1493 13add988 2019-10-15 stsp *have_match = 1;
1494 13add988 2019-10-15 stsp done:
1495 13add988 2019-10-15 stsp free(id_str);
1496 13add988 2019-10-15 stsp free(logmsg);
1497 13add988 2019-10-15 stsp return err;
1498 13add988 2019-10-15 stsp }
1499 13add988 2019-10-15 stsp
1500 13add988 2019-10-15 stsp static const struct got_error *
1501 4e0d2870 2020-12-07 naddy queue_commits(struct tog_log_thread_args *a)
1502 c4972b91 2018-05-07 stsp {
1503 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
1504 9ba79e04 2018-06-11 stsp
1505 1a76625f 2018-10-22 stsp /*
1506 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
1507 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
1508 1a76625f 2018-10-22 stsp * while updating the display.
1509 1a76625f 2018-10-22 stsp */
1510 4e0d2870 2020-12-07 naddy do {
1511 93e45b7c 2018-09-24 stsp struct got_object_id *id;
1512 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
1513 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
1514 1a76625f 2018-10-22 stsp int errcode;
1515 899d86c2 2018-05-10 stsp
1516 4e0d2870 2020-12-07 naddy err = got_commit_graph_iter_next(&id, a->graph, a->repo,
1517 4e0d2870 2020-12-07 naddy NULL, NULL);
1518 ee780d5c 2020-01-04 stsp if (err || id == NULL)
1519 ecb28ae0 2018-07-16 stsp break;
1520 899d86c2 2018-05-10 stsp
1521 4e0d2870 2020-12-07 naddy err = got_object_open_as_commit(&commit, a->repo, id);
1522 9ba79e04 2018-06-11 stsp if (err)
1523 9ba79e04 2018-06-11 stsp break;
1524 9ba79e04 2018-06-11 stsp entry = alloc_commit_queue_entry(commit, id);
1525 9ba79e04 2018-06-11 stsp if (entry == NULL) {
1526 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
1527 9ba79e04 2018-06-11 stsp break;
1528 9ba79e04 2018-06-11 stsp }
1529 93e45b7c 2018-09-24 stsp
1530 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1531 1a76625f 2018-10-22 stsp if (errcode) {
1532 13add988 2019-10-15 stsp err = got_error_set_errno(errcode,
1533 13add988 2019-10-15 stsp "pthread_mutex_lock");
1534 1a76625f 2018-10-22 stsp break;
1535 1a76625f 2018-10-22 stsp }
1536 1a76625f 2018-10-22 stsp
1537 4e0d2870 2020-12-07 naddy entry->idx = a->commits->ncommits;
1538 4e0d2870 2020-12-07 naddy TAILQ_INSERT_TAIL(&a->commits->head, entry, entry);
1539 4e0d2870 2020-12-07 naddy a->commits->ncommits++;
1540 1a76625f 2018-10-22 stsp
1541 4e0d2870 2020-12-07 naddy if (*a->searching == TOG_SEARCH_FORWARD &&
1542 4e0d2870 2020-12-07 naddy !*a->search_next_done) {
1543 7c1452c1 2020-03-26 stsp int have_match;
1544 4e0d2870 2020-12-07 naddy err = match_commit(&have_match, id, commit, a->regex);
1545 7c1452c1 2020-03-26 stsp if (err)
1546 7c1452c1 2020-03-26 stsp break;
1547 7c1452c1 2020-03-26 stsp if (have_match)
1548 4e0d2870 2020-12-07 naddy *a->search_next_done = TOG_SEARCH_HAVE_MORE;
1549 13add988 2019-10-15 stsp }
1550 13add988 2019-10-15 stsp
1551 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1552 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
1553 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
1554 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
1555 7c1452c1 2020-03-26 stsp if (err)
1556 13add988 2019-10-15 stsp break;
1557 4e0d2870 2020-12-07 naddy } while (*a->searching == TOG_SEARCH_FORWARD && !*a->search_next_done);
1558 899d86c2 2018-05-10 stsp
1559 9ba79e04 2018-06-11 stsp return err;
1560 0553a4e3 2018-04-30 stsp }
1561 0553a4e3 2018-04-30 stsp
1562 2b779855 2020-12-05 naddy static void
1563 2b779855 2020-12-05 naddy select_commit(struct tog_log_view_state *s)
1564 2b779855 2020-12-05 naddy {
1565 2b779855 2020-12-05 naddy struct commit_queue_entry *entry;
1566 2b779855 2020-12-05 naddy int ncommits = 0;
1567 2b779855 2020-12-05 naddy
1568 2b779855 2020-12-05 naddy entry = s->first_displayed_entry;
1569 2b779855 2020-12-05 naddy while (entry) {
1570 2b779855 2020-12-05 naddy if (ncommits == s->selected) {
1571 2b779855 2020-12-05 naddy s->selected_entry = entry;
1572 2b779855 2020-12-05 naddy break;
1573 2b779855 2020-12-05 naddy }
1574 2b779855 2020-12-05 naddy entry = TAILQ_NEXT(entry, entry);
1575 2b779855 2020-12-05 naddy ncommits++;
1576 2b779855 2020-12-05 naddy }
1577 2b779855 2020-12-05 naddy }
1578 2b779855 2020-12-05 naddy
1579 0553a4e3 2018-04-30 stsp static const struct got_error *
1580 8fdc79fe 2020-12-01 naddy draw_commits(struct tog_view *view)
1581 0553a4e3 2018-04-30 stsp {
1582 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
1583 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
1584 2b779855 2020-12-05 naddy struct commit_queue_entry *entry = s->selected_entry;
1585 8fdc79fe 2020-12-01 naddy const int limit = view->nlines;
1586 60493ae3 2019-06-20 stsp int width;
1587 52e88aae 2019-11-08 stsp int ncommits, author_cols = 4;
1588 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
1589 8b473291 2019-02-21 stsp char *refs_str = NULL;
1590 ecb28ae0 2018-07-16 stsp wchar_t *wline;
1591 11b20872 2019-11-08 stsp struct tog_color *tc;
1592 6db9f7f6 2019-12-10 stsp static const size_t date_display_cols = 12;
1593 0553a4e3 2018-04-30 stsp
1594 8fdc79fe 2020-12-01 naddy if (s->selected_entry &&
1595 8fdc79fe 2020-12-01 naddy !(view->searching && view->search_next_done == 0)) {
1596 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
1597 8fdc79fe 2020-12-01 naddy err = got_object_id_str(&id_str, s->selected_entry->id);
1598 1a76625f 2018-10-22 stsp if (err)
1599 ecb28ae0 2018-07-16 stsp return err;
1600 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap,
1601 d2075bf3 2020-12-25 stsp s->selected_entry->id);
1602 d2075bf3 2020-12-25 stsp if (refs) {
1603 d2075bf3 2020-12-25 stsp err = build_refs_str(&refs_str, refs,
1604 d2075bf3 2020-12-25 stsp s->selected_entry->id, s->repo);
1605 d2075bf3 2020-12-25 stsp if (err)
1606 d2075bf3 2020-12-25 stsp goto done;
1607 d2075bf3 2020-12-25 stsp }
1608 867c6645 2018-07-10 stsp }
1609 359bfafd 2019-02-22 stsp
1610 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed == 0)
1611 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
1612 1a76625f 2018-10-22 stsp
1613 8fdc79fe 2020-12-01 naddy if (s->thread_args.commits_needed > 0) {
1614 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
1615 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
1616 d2ad595c 2020-04-09 stsp (view->searching && !view->search_next_done) ?
1617 d2ad595c 2020-04-09 stsp "searching..." : "loading...") == -1) {
1618 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
1619 8f4ed634 2020-03-26 stsp goto done;
1620 8f4ed634 2020-03-26 stsp }
1621 8f4ed634 2020-03-26 stsp } else {
1622 f9686aa5 2020-03-27 stsp const char *search_str = NULL;
1623 f9686aa5 2020-03-27 stsp
1624 f9686aa5 2020-03-27 stsp if (view->searching) {
1625 f9686aa5 2020-03-27 stsp if (view->search_next_done == TOG_SEARCH_NO_MORE)
1626 f9686aa5 2020-03-27 stsp search_str = "no more matches";
1627 f9686aa5 2020-03-27 stsp else if (view->search_next_done == TOG_SEARCH_HAVE_NONE)
1628 f9686aa5 2020-03-27 stsp search_str = "no matches found";
1629 f9686aa5 2020-03-27 stsp else if (!view->search_next_done)
1630 f9686aa5 2020-03-27 stsp search_str = "searching...";
1631 f9686aa5 2020-03-27 stsp }
1632 f9686aa5 2020-03-27 stsp
1633 8f4ed634 2020-03-26 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
1634 8fdc79fe 2020-12-01 naddy entry ? entry->idx + 1 : 0, s->commits.ncommits,
1635 f9686aa5 2020-03-27 stsp search_str ? search_str :
1636 f9686aa5 2020-03-27 stsp (refs_str ? refs_str : "")) == -1) {
1637 8f4ed634 2020-03-26 stsp err = got_error_from_errno("asprintf");
1638 8f4ed634 2020-03-26 stsp goto done;
1639 8f4ed634 2020-03-26 stsp }
1640 8b473291 2019-02-21 stsp }
1641 1a76625f 2018-10-22 stsp
1642 8fdc79fe 2020-12-01 naddy if (s->in_repo_path && strcmp(s->in_repo_path, "/") != 0) {
1643 c1124f18 2018-12-23 stsp if (asprintf(&header, "commit %s %s%s",
1644 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
1645 8fdc79fe 2020-12-01 naddy s->in_repo_path, ncommits_str) == -1) {
1646 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1647 1a76625f 2018-10-22 stsp header = NULL;
1648 1a76625f 2018-10-22 stsp goto done;
1649 1a76625f 2018-10-22 stsp }
1650 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
1651 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
1652 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
1653 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1654 1a76625f 2018-10-22 stsp header = NULL;
1655 1a76625f 2018-10-22 stsp goto done;
1656 ecb28ae0 2018-07-16 stsp }
1657 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, header, view->ncols, 0);
1658 1a76625f 2018-10-22 stsp if (err)
1659 1a76625f 2018-10-22 stsp goto done;
1660 867c6645 2018-07-10 stsp
1661 2814baeb 2018-08-01 stsp werase(view->window);
1662 867c6645 2018-07-10 stsp
1663 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
1664 a3404814 2018-09-02 stsp wstandout(view->window);
1665 8fdc79fe 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
1666 11b20872 2019-11-08 stsp if (tc)
1667 11b20872 2019-11-08 stsp wattr_on(view->window,
1668 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1669 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
1670 11b20872 2019-11-08 stsp if (tc)
1671 11b20872 2019-11-08 stsp wattr_off(view->window,
1672 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
1673 1a76625f 2018-10-22 stsp while (width < view->ncols) {
1674 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
1675 1a76625f 2018-10-22 stsp width++;
1676 1a76625f 2018-10-22 stsp }
1677 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
1678 a3404814 2018-09-02 stsp wstandend(view->window);
1679 ecb28ae0 2018-07-16 stsp free(wline);
1680 ecb28ae0 2018-07-16 stsp if (limit <= 1)
1681 1a76625f 2018-10-22 stsp goto done;
1682 0553a4e3 2018-04-30 stsp
1683 5813d178 2019-03-09 stsp /* Grow author column size if necessary. */
1684 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
1685 5813d178 2019-03-09 stsp ncommits = 0;
1686 5813d178 2019-03-09 stsp while (entry) {
1687 5813d178 2019-03-09 stsp char *author;
1688 5813d178 2019-03-09 stsp wchar_t *wauthor;
1689 5813d178 2019-03-09 stsp int width;
1690 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
1691 5813d178 2019-03-09 stsp break;
1692 5813d178 2019-03-09 stsp author = strdup(got_object_commit_get_author(entry->commit));
1693 5813d178 2019-03-09 stsp if (author == NULL) {
1694 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1695 5813d178 2019-03-09 stsp goto done;
1696 5813d178 2019-03-09 stsp }
1697 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
1698 27a741e5 2019-09-11 stsp date_display_cols);
1699 5813d178 2019-03-09 stsp if (author_cols < width)
1700 5813d178 2019-03-09 stsp author_cols = width;
1701 5813d178 2019-03-09 stsp free(wauthor);
1702 5813d178 2019-03-09 stsp free(author);
1703 7ca04879 2019-10-19 stsp ncommits++;
1704 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
1705 5813d178 2019-03-09 stsp }
1706 5813d178 2019-03-09 stsp
1707 8fdc79fe 2020-12-01 naddy entry = s->first_displayed_entry;
1708 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = s->first_displayed_entry;
1709 867c6645 2018-07-10 stsp ncommits = 0;
1710 899d86c2 2018-05-10 stsp while (entry) {
1711 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
1712 899d86c2 2018-05-10 stsp break;
1713 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
1714 2814baeb 2018-08-01 stsp wstandout(view->window);
1715 8fdc79fe 2020-12-01 naddy err = draw_commit(view, entry->commit, entry->id,
1716 8fdc79fe 2020-12-01 naddy date_display_cols, author_cols);
1717 8fdc79fe 2020-12-01 naddy if (ncommits == s->selected)
1718 2814baeb 2018-08-01 stsp wstandend(view->window);
1719 0553a4e3 2018-04-30 stsp if (err)
1720 60493ae3 2019-06-20 stsp goto done;
1721 0553a4e3 2018-04-30 stsp ncommits++;
1722 8fdc79fe 2020-12-01 naddy s->last_displayed_entry = entry;
1723 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
1724 80ddbec8 2018-04-29 stsp }
1725 80ddbec8 2018-04-29 stsp
1726 1a57306a 2018-09-02 stsp view_vborder(view);
1727 1a76625f 2018-10-22 stsp done:
1728 1a76625f 2018-10-22 stsp free(id_str);
1729 8b473291 2019-02-21 stsp free(refs_str);
1730 1a76625f 2018-10-22 stsp free(ncommits_str);
1731 1a76625f 2018-10-22 stsp free(header);
1732 80ddbec8 2018-04-29 stsp return err;
1733 9f7d7167 2018-04-29 stsp }
1734 07b55e75 2018-05-10 stsp
1735 07b55e75 2018-05-10 stsp static void
1736 3e135950 2020-12-01 naddy log_scroll_up(struct tog_log_view_state *s, int maxscroll)
1737 07b55e75 2018-05-10 stsp {
1738 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
1739 07b55e75 2018-05-10 stsp int nscrolled = 0;
1740 07b55e75 2018-05-10 stsp
1741 ffe38506 2020-12-01 naddy entry = TAILQ_FIRST(&s->commits.head);
1742 ffe38506 2020-12-01 naddy if (s->first_displayed_entry == entry)
1743 07b55e75 2018-05-10 stsp return;
1744 9f7d7167 2018-04-29 stsp
1745 ffe38506 2020-12-01 naddy entry = s->first_displayed_entry;
1746 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
1747 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
1748 07b55e75 2018-05-10 stsp if (entry) {
1749 ffe38506 2020-12-01 naddy s->first_displayed_entry = entry;
1750 07b55e75 2018-05-10 stsp nscrolled++;
1751 07b55e75 2018-05-10 stsp }
1752 07b55e75 2018-05-10 stsp }
1753 aa075928 2018-05-10 stsp }
1754 aa075928 2018-05-10 stsp
1755 aa075928 2018-05-10 stsp static const struct got_error *
1756 ffe38506 2020-12-01 naddy trigger_log_thread(struct tog_view *view, int wait)
1757 aa075928 2018-05-10 stsp {
1758 ffe38506 2020-12-01 naddy struct tog_log_thread_args *ta = &view->state.log.thread_args;
1759 5e224a3e 2019-02-22 stsp int errcode;
1760 8a42fca8 2019-02-22 stsp
1761 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
1762 aa075928 2018-05-10 stsp
1763 ffe38506 2020-12-01 naddy while (ta->commits_needed > 0) {
1764 ffe38506 2020-12-01 naddy if (ta->log_complete)
1765 5e224a3e 2019-02-22 stsp break;
1766 b295e71b 2019-02-22 stsp
1767 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
1768 ffe38506 2020-12-01 naddy errcode = pthread_cond_signal(&ta->need_commits);
1769 7aafa0d1 2019-02-22 stsp if (errcode)
1770 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1771 2af4a041 2019-05-11 jcs "pthread_cond_signal");
1772 7c1452c1 2020-03-26 stsp
1773 7c1452c1 2020-03-26 stsp /*
1774 7c1452c1 2020-03-26 stsp * The mutex will be released while the view loop waits
1775 7c1452c1 2020-03-26 stsp * in wgetch(), at which time the log thread will run.
1776 7c1452c1 2020-03-26 stsp */
1777 7c1452c1 2020-03-26 stsp if (!wait)
1778 7c1452c1 2020-03-26 stsp break;
1779 7c1452c1 2020-03-26 stsp
1780 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
1781 ffe38506 2020-12-01 naddy show_log_view(view);
1782 7c1452c1 2020-03-26 stsp update_panels();
1783 7c1452c1 2020-03-26 stsp doupdate();
1784 7c1452c1 2020-03-26 stsp
1785 7c1452c1 2020-03-26 stsp /* Wait right here while next commit is being loaded. */
1786 ffe38506 2020-12-01 naddy errcode = pthread_cond_wait(&ta->commit_loaded, &tog_mutex);
1787 82954512 2020-02-03 stsp if (errcode)
1788 82954512 2020-02-03 stsp return got_error_set_errno(errcode,
1789 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
1790 82954512 2020-02-03 stsp
1791 7c1452c1 2020-03-26 stsp /* Display progress update in log view. */
1792 ffe38506 2020-12-01 naddy show_log_view(view);
1793 7c1452c1 2020-03-26 stsp update_panels();
1794 7c1452c1 2020-03-26 stsp doupdate();
1795 5e224a3e 2019-02-22 stsp }
1796 5e224a3e 2019-02-22 stsp
1797 5e224a3e 2019-02-22 stsp return NULL;
1798 5e224a3e 2019-02-22 stsp }
1799 5e224a3e 2019-02-22 stsp
1800 5e224a3e 2019-02-22 stsp static const struct got_error *
1801 ffe38506 2020-12-01 naddy log_scroll_down(struct tog_view *view, int maxscroll)
1802 5e224a3e 2019-02-22 stsp {
1803 ffe38506 2020-12-01 naddy struct tog_log_view_state *s = &view->state.log;
1804 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
1805 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
1806 7c1452c1 2020-03-26 stsp int nscrolled = 0, ncommits_needed;
1807 5e224a3e 2019-02-22 stsp
1808 ffe38506 2020-12-01 naddy if (s->last_displayed_entry == NULL)
1809 5e224a3e 2019-02-22 stsp return NULL;
1810 5e224a3e 2019-02-22 stsp
1811 bf30f154 2020-12-07 naddy ncommits_needed = s->last_displayed_entry->idx + 1 + maxscroll;
1812 ffe38506 2020-12-01 naddy if (s->commits.ncommits < ncommits_needed &&
1813 ffe38506 2020-12-01 naddy !s->thread_args.log_complete) {
1814 08ebd0a9 2019-02-22 stsp /*
1815 7c1452c1 2020-03-26 stsp * Ask the log thread for required amount of commits.
1816 08ebd0a9 2019-02-22 stsp */
1817 ffe38506 2020-12-01 naddy s->thread_args.commits_needed += maxscroll;
1818 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
1819 5e224a3e 2019-02-22 stsp if (err)
1820 5e224a3e 2019-02-22 stsp return err;
1821 7aafa0d1 2019-02-22 stsp }
1822 b295e71b 2019-02-22 stsp
1823 7aafa0d1 2019-02-22 stsp do {
1824 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->last_displayed_entry, entry);
1825 00ba99a7 2019-05-12 jcs if (pentry == NULL)
1826 88048b54 2019-02-21 stsp break;
1827 88048b54 2019-02-21 stsp
1828 ffe38506 2020-12-01 naddy s->last_displayed_entry = pentry;
1829 aa075928 2018-05-10 stsp
1830 ffe38506 2020-12-01 naddy pentry = TAILQ_NEXT(s->first_displayed_entry, entry);
1831 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
1832 dd0a52c1 2018-05-20 stsp break;
1833 ffe38506 2020-12-01 naddy s->first_displayed_entry = pentry;
1834 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
1835 aa075928 2018-05-10 stsp
1836 dd0a52c1 2018-05-20 stsp return err;
1837 07b55e75 2018-05-10 stsp }
1838 4a7f7875 2018-05-10 stsp
1839 cd0acaa7 2018-05-20 stsp static const struct got_error *
1840 0cf4efb1 2018-09-29 stsp open_diff_view_for_commit(struct tog_view **new_view, int begin_x,
1841 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
1842 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
1843 cd0acaa7 2018-05-20 stsp {
1844 cd0acaa7 2018-05-20 stsp const struct got_error *err;
1845 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
1846 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
1847 cd0acaa7 2018-05-20 stsp
1848 669b5ffa 2018-10-07 stsp diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
1849 15a94983 2018-12-23 stsp if (diff_view == NULL)
1850 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
1851 ea5e7bb5 2018-08-01 stsp
1852 4acef5ee 2018-12-24 stsp parent_id = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
1853 4acef5ee 2018-12-24 stsp err = open_diff_view(diff_view, parent_id ? parent_id->id : NULL,
1854 78756c87 2020-11-24 stsp commit_id, NULL, NULL, 3, 0, 0, log_view, repo);
1855 e5a0f69f 2018-08-18 stsp if (err == NULL)
1856 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
1857 cd0acaa7 2018-05-20 stsp return err;
1858 4a7f7875 2018-05-10 stsp }
1859 4a7f7875 2018-05-10 stsp
1860 80ddbec8 2018-04-29 stsp static const struct got_error *
1861 42a2230c 2020-12-01 naddy tree_view_visit_subtree(struct tog_tree_view_state *s,
1862 42a2230c 2020-12-01 naddy struct got_tree_object *subtree)
1863 9343a5fb 2018-06-23 stsp {
1864 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
1865 941e9f74 2019-05-21 stsp
1866 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
1867 941e9f74 2019-05-21 stsp if (parent == NULL)
1868 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
1869 941e9f74 2019-05-21 stsp
1870 941e9f74 2019-05-21 stsp parent->tree = s->tree;
1871 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
1872 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
1873 941e9f74 2019-05-21 stsp parent->selected = s->selected;
1874 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
1875 941e9f74 2019-05-21 stsp s->tree = subtree;
1876 941e9f74 2019-05-21 stsp s->selected = 0;
1877 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
1878 941e9f74 2019-05-21 stsp return NULL;
1879 941e9f74 2019-05-21 stsp }
1880 941e9f74 2019-05-21 stsp
1881 941e9f74 2019-05-21 stsp static const struct got_error *
1882 55cccc34 2020-02-20 stsp tree_view_walk_path(struct tog_tree_view_state *s,
1883 d91faf3b 2020-12-01 naddy struct got_object_id *commit_id, const char *path)
1884 941e9f74 2019-05-21 stsp {
1885 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
1886 55cccc34 2020-02-20 stsp struct got_tree_object *tree = NULL;
1887 941e9f74 2019-05-21 stsp const char *p;
1888 55cccc34 2020-02-20 stsp char *slash, *subpath = NULL;
1889 9343a5fb 2018-06-23 stsp
1890 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
1891 941e9f74 2019-05-21 stsp p = path;
1892 941e9f74 2019-05-21 stsp while (*p) {
1893 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
1894 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
1895 56e0773d 2019-11-28 stsp char *te_name;
1896 33cbf02b 2020-01-12 stsp
1897 33cbf02b 2020-01-12 stsp while (p[0] == '/')
1898 33cbf02b 2020-01-12 stsp p++;
1899 941e9f74 2019-05-21 stsp
1900 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
1901 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
1902 941e9f74 2019-05-21 stsp if (slash == NULL)
1903 33cbf02b 2020-01-12 stsp te_name = strdup(p);
1904 33cbf02b 2020-01-12 stsp else
1905 33cbf02b 2020-01-12 stsp te_name = strndup(p, slash - p);
1906 56e0773d 2019-11-28 stsp if (te_name == NULL) {
1907 56e0773d 2019-11-28 stsp err = got_error_from_errno("strndup");
1908 56e0773d 2019-11-28 stsp break;
1909 941e9f74 2019-05-21 stsp }
1910 56e0773d 2019-11-28 stsp te = got_object_tree_find_entry(s->tree, te_name);
1911 56e0773d 2019-11-28 stsp if (te == NULL) {
1912 56e0773d 2019-11-28 stsp err = got_error_path(te_name, GOT_ERR_NO_TREE_ENTRY);
1913 56e0773d 2019-11-28 stsp free(te_name);
1914 941e9f74 2019-05-21 stsp break;
1915 941e9f74 2019-05-21 stsp }
1916 56e0773d 2019-11-28 stsp free(te_name);
1917 9a1d5146 2020-11-27 naddy s->first_displayed_entry = s->selected_entry = te;
1918 941e9f74 2019-05-21 stsp
1919 9a1d5146 2020-11-27 naddy if (!S_ISDIR(got_tree_entry_get_mode(s->selected_entry)))
1920 9a1d5146 2020-11-27 naddy break; /* jump to this file's entry */
1921 b03c880f 2019-05-21 stsp
1922 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
1923 941e9f74 2019-05-21 stsp if (slash)
1924 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
1925 941e9f74 2019-05-21 stsp else
1926 941e9f74 2019-05-21 stsp subpath = strdup(path);
1927 941e9f74 2019-05-21 stsp if (subpath == NULL) {
1928 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
1929 941e9f74 2019-05-21 stsp break;
1930 941e9f74 2019-05-21 stsp }
1931 941e9f74 2019-05-21 stsp
1932 d91faf3b 2020-12-01 naddy err = got_object_id_by_path(&tree_id, s->repo, commit_id,
1933 941e9f74 2019-05-21 stsp subpath);
1934 941e9f74 2019-05-21 stsp if (err)
1935 941e9f74 2019-05-21 stsp break;
1936 941e9f74 2019-05-21 stsp
1937 d91faf3b 2020-12-01 naddy err = got_object_open_as_tree(&tree, s->repo, tree_id);
1938 941e9f74 2019-05-21 stsp free(tree_id);
1939 941e9f74 2019-05-21 stsp if (err)
1940 941e9f74 2019-05-21 stsp break;
1941 941e9f74 2019-05-21 stsp
1942 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, tree);
1943 941e9f74 2019-05-21 stsp if (err) {
1944 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
1945 941e9f74 2019-05-21 stsp break;
1946 941e9f74 2019-05-21 stsp }
1947 941e9f74 2019-05-21 stsp if (slash == NULL)
1948 941e9f74 2019-05-21 stsp break;
1949 941e9f74 2019-05-21 stsp free(subpath);
1950 941e9f74 2019-05-21 stsp subpath = NULL;
1951 941e9f74 2019-05-21 stsp p = slash;
1952 941e9f74 2019-05-21 stsp }
1953 941e9f74 2019-05-21 stsp
1954 941e9f74 2019-05-21 stsp free(subpath);
1955 1a76625f 2018-10-22 stsp return err;
1956 61266923 2020-01-14 stsp }
1957 61266923 2020-01-14 stsp
1958 61266923 2020-01-14 stsp static const struct got_error *
1959 55cccc34 2020-02-20 stsp browse_commit_tree(struct tog_view **new_view, int begin_x,
1960 55cccc34 2020-02-20 stsp struct commit_queue_entry *entry, const char *path,
1961 4e97c21c 2020-12-06 stsp const char *head_ref_name, struct got_repository *repo)
1962 55cccc34 2020-02-20 stsp {
1963 55cccc34 2020-02-20 stsp const struct got_error *err = NULL;
1964 55cccc34 2020-02-20 stsp struct got_tree_object *tree;
1965 55cccc34 2020-02-20 stsp struct tog_tree_view_state *s;
1966 55cccc34 2020-02-20 stsp struct tog_view *tree_view;
1967 55cccc34 2020-02-20 stsp
1968 55cccc34 2020-02-20 stsp err = got_object_open_as_tree(&tree, repo,
1969 55cccc34 2020-02-20 stsp got_object_commit_get_tree_id(entry->commit));
1970 55cccc34 2020-02-20 stsp if (err)
1971 55cccc34 2020-02-20 stsp return err;
1972 55cccc34 2020-02-20 stsp
1973 55cccc34 2020-02-20 stsp tree_view = view_open(0, 0, 0, begin_x, TOG_VIEW_TREE);
1974 55cccc34 2020-02-20 stsp if (tree_view == NULL)
1975 55cccc34 2020-02-20 stsp return got_error_from_errno("view_open");
1976 55cccc34 2020-02-20 stsp
1977 4e97c21c 2020-12-06 stsp err = open_tree_view(tree_view, tree, entry->id, head_ref_name, repo);
1978 55cccc34 2020-02-20 stsp if (err) {
1979 55cccc34 2020-02-20 stsp got_object_tree_close(tree);
1980 55cccc34 2020-02-20 stsp return err;
1981 55cccc34 2020-02-20 stsp }
1982 55cccc34 2020-02-20 stsp s = &tree_view->state.tree;
1983 55cccc34 2020-02-20 stsp
1984 55cccc34 2020-02-20 stsp *new_view = tree_view;
1985 55cccc34 2020-02-20 stsp
1986 55cccc34 2020-02-20 stsp if (got_path_is_root_dir(path))
1987 55cccc34 2020-02-20 stsp return NULL;
1988 55cccc34 2020-02-20 stsp
1989 d91faf3b 2020-12-01 naddy return tree_view_walk_path(s, entry->id, path);
1990 55cccc34 2020-02-20 stsp }
1991 55cccc34 2020-02-20 stsp
1992 55cccc34 2020-02-20 stsp static const struct got_error *
1993 61266923 2020-01-14 stsp block_signals_used_by_main_thread(void)
1994 61266923 2020-01-14 stsp {
1995 61266923 2020-01-14 stsp sigset_t sigset;
1996 61266923 2020-01-14 stsp int errcode;
1997 61266923 2020-01-14 stsp
1998 61266923 2020-01-14 stsp if (sigemptyset(&sigset) == -1)
1999 61266923 2020-01-14 stsp return got_error_from_errno("sigemptyset");
2000 61266923 2020-01-14 stsp
2001 61266923 2020-01-14 stsp /* tog handles SIGWINCH and SIGCONT */
2002 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
2003 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2004 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGCONT) == -1)
2005 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2006 61266923 2020-01-14 stsp
2007 61266923 2020-01-14 stsp /* ncurses handles SIGTSTP */
2008 61266923 2020-01-14 stsp if (sigaddset(&sigset, SIGTSTP) == -1)
2009 61266923 2020-01-14 stsp return got_error_from_errno("sigaddset");
2010 61266923 2020-01-14 stsp
2011 61266923 2020-01-14 stsp errcode = pthread_sigmask(SIG_BLOCK, &sigset, NULL);
2012 61266923 2020-01-14 stsp if (errcode)
2013 61266923 2020-01-14 stsp return got_error_set_errno(errcode, "pthread_sigmask");
2014 61266923 2020-01-14 stsp
2015 61266923 2020-01-14 stsp return NULL;
2016 1a76625f 2018-10-22 stsp }
2017 1a76625f 2018-10-22 stsp
2018 1a76625f 2018-10-22 stsp static void *
2019 1a76625f 2018-10-22 stsp log_thread(void *arg)
2020 1a76625f 2018-10-22 stsp {
2021 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2022 1a76625f 2018-10-22 stsp int errcode = 0;
2023 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
2024 1a76625f 2018-10-22 stsp int done = 0;
2025 61266923 2020-01-14 stsp
2026 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
2027 61266923 2020-01-14 stsp if (err)
2028 61266923 2020-01-14 stsp return (void *)err;
2029 1a76625f 2018-10-22 stsp
2030 d264cece 2019-08-12 stsp while (!done && !err && !tog_sigpipe_received) {
2031 4e0d2870 2020-12-07 naddy err = queue_commits(a);
2032 1a76625f 2018-10-22 stsp if (err) {
2033 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
2034 1a76625f 2018-10-22 stsp return (void *)err;
2035 1a76625f 2018-10-22 stsp err = NULL;
2036 1a76625f 2018-10-22 stsp done = 1;
2037 1a76625f 2018-10-22 stsp } else if (a->commits_needed > 0)
2038 1a76625f 2018-10-22 stsp a->commits_needed--;
2039 1a76625f 2018-10-22 stsp
2040 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2041 3abe8080 2019-04-10 stsp if (errcode) {
2042 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2043 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2044 3abe8080 2019-04-10 stsp break;
2045 3abe8080 2019-04-10 stsp } else if (*a->quit)
2046 1a76625f 2018-10-22 stsp done = 1;
2047 3abe8080 2019-04-10 stsp else if (*a->first_displayed_entry == NULL) {
2048 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
2049 1a76625f 2018-10-22 stsp TAILQ_FIRST(&a->commits->head);
2050 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
2051 1a76625f 2018-10-22 stsp }
2052 1a76625f 2018-10-22 stsp
2053 7c1452c1 2020-03-26 stsp errcode = pthread_cond_signal(&a->commit_loaded);
2054 7c1452c1 2020-03-26 stsp if (errcode) {
2055 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2056 7c1452c1 2020-03-26 stsp "pthread_cond_signal");
2057 7c1452c1 2020-03-26 stsp pthread_mutex_unlock(&tog_mutex);
2058 7c1452c1 2020-03-26 stsp break;
2059 7c1452c1 2020-03-26 stsp }
2060 7c1452c1 2020-03-26 stsp
2061 1a76625f 2018-10-22 stsp if (done)
2062 1a76625f 2018-10-22 stsp a->commits_needed = 0;
2063 7c1452c1 2020-03-26 stsp else {
2064 7c1452c1 2020-03-26 stsp if (a->commits_needed == 0) {
2065 7c1452c1 2020-03-26 stsp errcode = pthread_cond_wait(&a->need_commits,
2066 7c1452c1 2020-03-26 stsp &tog_mutex);
2067 7c1452c1 2020-03-26 stsp if (errcode)
2068 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode,
2069 7c1452c1 2020-03-26 stsp "pthread_cond_wait");
2070 21355643 2020-12-06 stsp if (*a->quit)
2071 21355643 2020-12-06 stsp done = 1;
2072 7c1452c1 2020-03-26 stsp }
2073 1a76625f 2018-10-22 stsp }
2074 1a76625f 2018-10-22 stsp
2075 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2076 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
2077 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
2078 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2079 1a76625f 2018-10-22 stsp }
2080 3abe8080 2019-04-10 stsp a->log_complete = 1;
2081 1a76625f 2018-10-22 stsp return (void *)err;
2082 1a76625f 2018-10-22 stsp }
2083 1a76625f 2018-10-22 stsp
2084 1a76625f 2018-10-22 stsp static const struct got_error *
2085 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
2086 1a76625f 2018-10-22 stsp {
2087 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2088 1a76625f 2018-10-22 stsp int errcode;
2089 1a76625f 2018-10-22 stsp
2090 1a76625f 2018-10-22 stsp if (s->thread) {
2091 1a76625f 2018-10-22 stsp s->quit = 1;
2092 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
2093 1a76625f 2018-10-22 stsp if (errcode)
2094 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2095 2af4a041 2019-05-11 jcs "pthread_cond_signal");
2096 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2097 1a76625f 2018-10-22 stsp if (errcode)
2098 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2099 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
2100 1a76625f 2018-10-22 stsp errcode = pthread_join(s->thread, (void **)&err);
2101 1a76625f 2018-10-22 stsp if (errcode)
2102 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
2103 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
2104 1a76625f 2018-10-22 stsp if (errcode)
2105 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
2106 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
2107 1a76625f 2018-10-22 stsp s->thread = NULL;
2108 1a76625f 2018-10-22 stsp }
2109 1a76625f 2018-10-22 stsp
2110 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
2111 1a76625f 2018-10-22 stsp got_repo_close(s->thread_args.repo);
2112 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
2113 1a76625f 2018-10-22 stsp }
2114 1a76625f 2018-10-22 stsp
2115 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
2116 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
2117 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
2118 1a76625f 2018-10-22 stsp }
2119 1a76625f 2018-10-22 stsp
2120 9343a5fb 2018-06-23 stsp return err;
2121 9343a5fb 2018-06-23 stsp }
2122 9343a5fb 2018-06-23 stsp
2123 9343a5fb 2018-06-23 stsp static const struct got_error *
2124 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
2125 1a76625f 2018-10-22 stsp {
2126 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
2127 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
2128 276b94a1 2020-11-13 naddy int errcode;
2129 1a76625f 2018-10-22 stsp
2130 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
2131 276b94a1 2020-11-13 naddy
2132 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.need_commits);
2133 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2134 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2135 276b94a1 2020-11-13 naddy
2136 276b94a1 2020-11-13 naddy errcode = pthread_cond_destroy(&s->thread_args.commit_loaded);
2137 276b94a1 2020-11-13 naddy if (errcode && err == NULL)
2138 276b94a1 2020-11-13 naddy err = got_error_set_errno(errcode, "pthread_cond_destroy");
2139 276b94a1 2020-11-13 naddy
2140 1a76625f 2018-10-22 stsp free_commits(&s->commits);
2141 1a76625f 2018-10-22 stsp free(s->in_repo_path);
2142 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
2143 1a76625f 2018-10-22 stsp free(s->start_id);
2144 797bc7b9 2018-10-22 stsp s->start_id = NULL;
2145 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
2146 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
2147 1a76625f 2018-10-22 stsp return err;
2148 1a76625f 2018-10-22 stsp }
2149 1a76625f 2018-10-22 stsp
2150 1a76625f 2018-10-22 stsp static const struct got_error *
2151 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
2152 60493ae3 2019-06-20 stsp {
2153 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2154 60493ae3 2019-06-20 stsp
2155 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
2156 96e2b566 2019-07-08 stsp s->search_entry = NULL;
2157 60493ae3 2019-06-20 stsp return NULL;
2158 60493ae3 2019-06-20 stsp }
2159 60493ae3 2019-06-20 stsp
2160 60493ae3 2019-06-20 stsp static const struct got_error *
2161 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
2162 60493ae3 2019-06-20 stsp {
2163 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
2164 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
2165 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
2166 60493ae3 2019-06-20 stsp
2167 f9686aa5 2020-03-27 stsp /* Display progress update in log view. */
2168 f9686aa5 2020-03-27 stsp show_log_view(view);
2169 f9686aa5 2020-03-27 stsp update_panels();
2170 f9686aa5 2020-03-27 stsp doupdate();
2171 f9686aa5 2020-03-27 stsp
2172 96e2b566 2019-07-08 stsp if (s->search_entry) {
2173 13add988 2019-10-15 stsp int errcode, ch;
2174 13add988 2019-10-15 stsp errcode = pthread_mutex_unlock(&tog_mutex);
2175 13add988 2019-10-15 stsp if (errcode)
2176 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2177 13add988 2019-10-15 stsp "pthread_mutex_unlock");
2178 13add988 2019-10-15 stsp ch = wgetch(view->window);
2179 13add988 2019-10-15 stsp errcode = pthread_mutex_lock(&tog_mutex);
2180 13add988 2019-10-15 stsp if (errcode)
2181 13add988 2019-10-15 stsp return got_error_set_errno(errcode,
2182 13add988 2019-10-15 stsp "pthread_mutex_lock");
2183 13add988 2019-10-15 stsp if (ch == KEY_BACKSPACE) {
2184 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2185 678cbce5 2019-07-28 stsp return NULL;
2186 678cbce5 2019-07-28 stsp }
2187 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
2188 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
2189 96e2b566 2019-07-08 stsp else
2190 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
2191 96e2b566 2019-07-08 stsp commit_queue_head, entry);
2192 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
2193 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2194 8f4ed634 2020-03-26 stsp entry = TAILQ_NEXT(s->matched_entry, entry);
2195 b1bf1435 2019-06-21 stsp else
2196 8f4ed634 2020-03-26 stsp entry = TAILQ_PREV(s->matched_entry,
2197 b1bf1435 2019-06-21 stsp commit_queue_head, entry);
2198 20be8d96 2019-06-21 stsp } else {
2199 20be8d96 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2200 20be8d96 2019-06-21 stsp entry = TAILQ_FIRST(&s->commits.head);
2201 20be8d96 2019-06-21 stsp else
2202 20be8d96 2019-06-21 stsp entry = TAILQ_LAST(&s->commits.head, commit_queue_head);
2203 20be8d96 2019-06-21 stsp }
2204 60493ae3 2019-06-20 stsp
2205 60493ae3 2019-06-20 stsp while (1) {
2206 13add988 2019-10-15 stsp int have_match = 0;
2207 13add988 2019-10-15 stsp
2208 60493ae3 2019-06-20 stsp if (entry == NULL) {
2209 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
2210 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
2211 f9967bca 2020-03-27 stsp view->search_next_done =
2212 f9967bca 2020-03-27 stsp (s->matched_entry == NULL ?
2213 f9967bca 2020-03-27 stsp TOG_SEARCH_HAVE_NONE : TOG_SEARCH_NO_MORE);
2214 8f4ed634 2020-03-26 stsp s->search_entry = NULL;
2215 f801134a 2019-06-25 stsp return NULL;
2216 60493ae3 2019-06-20 stsp }
2217 96e2b566 2019-07-08 stsp /*
2218 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
2219 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
2220 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
2221 96e2b566 2019-07-08 stsp */
2222 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
2223 ffe38506 2020-12-01 naddy return trigger_log_thread(view, 0);
2224 60493ae3 2019-06-20 stsp }
2225 60493ae3 2019-06-20 stsp
2226 13add988 2019-10-15 stsp err = match_commit(&have_match, entry->id, entry->commit,
2227 13add988 2019-10-15 stsp &view->regex);
2228 5943eee2 2019-08-13 stsp if (err)
2229 13add988 2019-10-15 stsp break;
2230 13add988 2019-10-15 stsp if (have_match) {
2231 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
2232 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
2233 60493ae3 2019-06-20 stsp break;
2234 60493ae3 2019-06-20 stsp }
2235 13add988 2019-10-15 stsp
2236 96e2b566 2019-07-08 stsp s->search_entry = entry;
2237 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
2238 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
2239 b1bf1435 2019-06-21 stsp else
2240 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
2241 60493ae3 2019-06-20 stsp }
2242 60493ae3 2019-06-20 stsp
2243 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
2244 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
2245 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
2246 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_DOWN);
2247 60493ae3 2019-06-20 stsp if (err)
2248 60493ae3 2019-06-20 stsp return err;
2249 ead14cbe 2019-06-21 stsp cur++;
2250 ead14cbe 2019-06-21 stsp }
2251 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
2252 e78dc838 2020-12-04 stsp err = input_log_view(NULL, view, KEY_UP);
2253 60493ae3 2019-06-20 stsp if (err)
2254 60493ae3 2019-06-20 stsp return err;
2255 ead14cbe 2019-06-21 stsp cur--;
2256 60493ae3 2019-06-20 stsp }
2257 60493ae3 2019-06-20 stsp }
2258 60493ae3 2019-06-20 stsp
2259 96e2b566 2019-07-08 stsp s->search_entry = NULL;
2260 96e2b566 2019-07-08 stsp
2261 60493ae3 2019-06-20 stsp return NULL;
2262 60493ae3 2019-06-20 stsp }
2263 60493ae3 2019-06-20 stsp
2264 60493ae3 2019-06-20 stsp static const struct got_error *
2265 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
2266 78756c87 2020-11-24 stsp struct got_repository *repo, const char *head_ref_name,
2267 78756c87 2020-11-24 stsp const char *in_repo_path, int log_branches)
2268 80ddbec8 2018-04-29 stsp {
2269 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
2270 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
2271 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
2272 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
2273 1a76625f 2018-10-22 stsp int errcode;
2274 80ddbec8 2018-04-29 stsp
2275 f135c941 2020-02-20 stsp if (in_repo_path != s->in_repo_path) {
2276 f135c941 2020-02-20 stsp free(s->in_repo_path);
2277 f135c941 2020-02-20 stsp s->in_repo_path = strdup(in_repo_path);
2278 f135c941 2020-02-20 stsp if (s->in_repo_path == NULL)
2279 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
2280 f135c941 2020-02-20 stsp }
2281 ecb28ae0 2018-07-16 stsp
2282 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
2283 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->commits.head);
2284 fb2756b9 2018-08-04 stsp s->commits.ncommits = 0;
2285 78756c87 2020-11-24 stsp
2286 fb2756b9 2018-08-04 stsp s->repo = repo;
2287 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
2288 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
2289 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
2290 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
2291 9cd7cbd1 2020-12-07 stsp goto done;
2292 9cd7cbd1 2020-12-07 stsp }
2293 9cd7cbd1 2020-12-07 stsp }
2294 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
2295 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
2296 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
2297 5036bf37 2018-09-24 stsp goto done;
2298 5036bf37 2018-09-24 stsp }
2299 b672a97a 2020-01-27 stsp s->log_branches = log_branches;
2300 e5a0f69f 2018-08-18 stsp
2301 11b20872 2019-11-08 stsp SIMPLEQ_INIT(&s->colors);
2302 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
2303 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
2304 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
2305 11b20872 2019-11-08 stsp if (err)
2306 11b20872 2019-11-08 stsp goto done;
2307 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_AUTHOR,
2308 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
2309 11b20872 2019-11-08 stsp if (err) {
2310 11b20872 2019-11-08 stsp free_colors(&s->colors);
2311 11b20872 2019-11-08 stsp goto done;
2312 11b20872 2019-11-08 stsp }
2313 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_DATE,
2314 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
2315 11b20872 2019-11-08 stsp if (err) {
2316 11b20872 2019-11-08 stsp free_colors(&s->colors);
2317 11b20872 2019-11-08 stsp goto done;
2318 11b20872 2019-11-08 stsp }
2319 11b20872 2019-11-08 stsp }
2320 11b20872 2019-11-08 stsp
2321 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
2322 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
2323 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
2324 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
2325 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
2326 1a76625f 2018-10-22 stsp
2327 c9956ddf 2019-09-08 stsp err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL);
2328 1a76625f 2018-10-22 stsp if (err)
2329 1a76625f 2018-10-22 stsp goto done;
2330 b672a97a 2020-01-27 stsp err = got_commit_graph_open(&thread_graph, s->in_repo_path,
2331 b672a97a 2020-01-27 stsp !s->log_branches);
2332 1a76625f 2018-10-22 stsp if (err)
2333 1a76625f 2018-10-22 stsp goto done;
2334 62d463ca 2020-10-20 naddy err = got_commit_graph_iter_start(thread_graph, s->start_id,
2335 62d463ca 2020-10-20 naddy s->repo, NULL, NULL);
2336 c5b78334 2020-01-12 stsp if (err)
2337 c5b78334 2020-01-12 stsp goto done;
2338 1a76625f 2018-10-22 stsp
2339 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
2340 1a76625f 2018-10-22 stsp if (errcode) {
2341 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
2342 1a76625f 2018-10-22 stsp goto done;
2343 1a76625f 2018-10-22 stsp }
2344 7c1452c1 2020-03-26 stsp errcode = pthread_cond_init(&s->thread_args.commit_loaded, NULL);
2345 7c1452c1 2020-03-26 stsp if (errcode) {
2346 7c1452c1 2020-03-26 stsp err = got_error_set_errno(errcode, "pthread_cond_init");
2347 7c1452c1 2020-03-26 stsp goto done;
2348 7c1452c1 2020-03-26 stsp }
2349 1a76625f 2018-10-22 stsp
2350 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
2351 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
2352 1a76625f 2018-10-22 stsp s->thread_args.commits = &s->commits;
2353 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
2354 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
2355 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
2356 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
2357 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
2358 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
2359 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
2360 13add988 2019-10-15 stsp s->thread_args.searching = &view->searching;
2361 13add988 2019-10-15 stsp s->thread_args.search_next_done = &view->search_next_done;
2362 13add988 2019-10-15 stsp s->thread_args.regex = &view->regex;
2363 ba4f502b 2018-08-04 stsp done:
2364 1a76625f 2018-10-22 stsp if (err)
2365 1a76625f 2018-10-22 stsp close_log_view(view);
2366 ba4f502b 2018-08-04 stsp return err;
2367 ba4f502b 2018-08-04 stsp }
2368 ba4f502b 2018-08-04 stsp
2369 e5a0f69f 2018-08-18 stsp static const struct got_error *
2370 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
2371 ba4f502b 2018-08-04 stsp {
2372 f2f6d207 2020-11-24 stsp const struct got_error *err;
2373 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
2374 ba4f502b 2018-08-04 stsp
2375 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
2376 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
2377 2b380cc8 2018-10-24 stsp &s->thread_args);
2378 2b380cc8 2018-10-24 stsp if (errcode)
2379 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
2380 f2f6d207 2020-11-24 stsp if (s->thread_args.commits_needed > 0) {
2381 ffe38506 2020-12-01 naddy err = trigger_log_thread(view, 1);
2382 f2f6d207 2020-11-24 stsp if (err)
2383 f2f6d207 2020-11-24 stsp return err;
2384 f2f6d207 2020-11-24 stsp }
2385 2b380cc8 2018-10-24 stsp }
2386 2b380cc8 2018-10-24 stsp
2387 8fdc79fe 2020-12-01 naddy return draw_commits(view);
2388 e5a0f69f 2018-08-18 stsp }
2389 04cc582a 2018-08-01 stsp
2390 e5a0f69f 2018-08-18 stsp static const struct got_error *
2391 e78dc838 2020-12-04 stsp input_log_view(struct tog_view **new_view, struct tog_view *view, int ch)
2392 e5a0f69f 2018-08-18 stsp {
2393 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
2394 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
2395 21355643 2020-12-06 stsp struct tog_view *diff_view = NULL, *tree_view = NULL;
2396 6458efa5 2020-11-24 stsp struct tog_view *ref_view = NULL;
2397 669b5ffa 2018-10-07 stsp int begin_x = 0;
2398 80ddbec8 2018-04-29 stsp
2399 e5a0f69f 2018-08-18 stsp switch (ch) {
2400 1e37a5c2 2019-05-12 jcs case 'q':
2401 1e37a5c2 2019-05-12 jcs s->quit = 1;
2402 1e37a5c2 2019-05-12 jcs break;
2403 1e37a5c2 2019-05-12 jcs case 'k':
2404 1e37a5c2 2019-05-12 jcs case KEY_UP:
2405 1e37a5c2 2019-05-12 jcs case '<':
2406 1e37a5c2 2019-05-12 jcs case ',':
2407 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
2408 1a76625f 2018-10-22 stsp break;
2409 1e37a5c2 2019-05-12 jcs if (s->selected > 0)
2410 1e37a5c2 2019-05-12 jcs s->selected--;
2411 1144d21a 2019-06-21 stsp else
2412 3e135950 2020-12-01 naddy log_scroll_up(s, 1);
2413 2b779855 2020-12-05 naddy select_commit(s);
2414 1e37a5c2 2019-05-12 jcs break;
2415 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
2416 a4292ac5 2019-05-12 jcs case CTRL('b'):
2417 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
2418 e5a0f69f 2018-08-18 stsp break;
2419 2b779855 2020-12-05 naddy if (TAILQ_FIRST(&s->commits.head) == s->first_displayed_entry)
2420 1e37a5c2 2019-05-12 jcs s->selected = 0;
2421 2b779855 2020-12-05 naddy else
2422 2b779855 2020-12-05 naddy log_scroll_up(s, view->nlines - 1);
2423 2b779855 2020-12-05 naddy select_commit(s);
2424 1e37a5c2 2019-05-12 jcs break;
2425 1e37a5c2 2019-05-12 jcs case 'j':
2426 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
2427 1e37a5c2 2019-05-12 jcs case '>':
2428 1e37a5c2 2019-05-12 jcs case '.':
2429 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
2430 e5a0f69f 2018-08-18 stsp break;
2431 1e37a5c2 2019-05-12 jcs if (s->selected < MIN(view->nlines - 2,
2432 2b779855 2020-12-05 naddy s->commits.ncommits - 1))
2433 1e37a5c2 2019-05-12 jcs s->selected++;
2434 2b779855 2020-12-05 naddy else {
2435 2b779855 2020-12-05 naddy err = log_scroll_down(view, 1);
2436 2b779855 2020-12-05 naddy if (err)
2437 2b779855 2020-12-05 naddy break;
2438 80ddbec8 2018-04-29 stsp }
2439 2b779855 2020-12-05 naddy select_commit(s);
2440 1e37a5c2 2019-05-12 jcs break;
2441 a4292ac5 2019-05-12 jcs case KEY_NPAGE:
2442 a4292ac5 2019-05-12 jcs case CTRL('f'): {
2443 1e37a5c2 2019-05-12 jcs struct commit_queue_entry *first;
2444 1e37a5c2 2019-05-12 jcs first = s->first_displayed_entry;
2445 1e37a5c2 2019-05-12 jcs if (first == NULL)
2446 e5a0f69f 2018-08-18 stsp break;
2447 ffe38506 2020-12-01 naddy err = log_scroll_down(view, view->nlines - 1);
2448 1cae65b4 2019-09-22 stsp if (err)
2449 1cae65b4 2019-09-22 stsp break;
2450 1e37a5c2 2019-05-12 jcs if (first == s->first_displayed_entry &&
2451 1e37a5c2 2019-05-12 jcs s->selected < MIN(view->nlines - 2,
2452 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1)) {
2453 1e37a5c2 2019-05-12 jcs /* can't scroll further down */
2454 1e37a5c2 2019-05-12 jcs s->selected = MIN(view->nlines - 2,
2455 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1);
2456 1e37a5c2 2019-05-12 jcs }
2457 2b779855 2020-12-05 naddy select_commit(s);
2458 1e37a5c2 2019-05-12 jcs break;
2459 1e37a5c2 2019-05-12 jcs }
2460 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
2461 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
2462 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
2463 1e37a5c2 2019-05-12 jcs if (s->selected > s->commits.ncommits - 1)
2464 1e37a5c2 2019-05-12 jcs s->selected = s->commits.ncommits - 1;
2465 2b779855 2020-12-05 naddy select_commit(s);
2466 0bf7f153 2020-12-02 naddy if (s->commits.ncommits < view->nlines - 1 &&
2467 0bf7f153 2020-12-02 naddy !s->thread_args.log_complete) {
2468 0bf7f153 2020-12-02 naddy s->thread_args.commits_needed += (view->nlines - 1) -
2469 0bf7f153 2020-12-02 naddy s->commits.ncommits;
2470 0bf7f153 2020-12-02 naddy err = trigger_log_thread(view, 1);
2471 0bf7f153 2020-12-02 naddy }
2472 1e37a5c2 2019-05-12 jcs break;
2473 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
2474 87c7274c 2019-05-12 jcs case ' ':
2475 1e37a5c2 2019-05-12 jcs case '\r':
2476 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2477 e5a0f69f 2018-08-18 stsp break;
2478 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2479 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2480 1e37a5c2 2019-05-12 jcs err = open_diff_view_for_commit(&diff_view, begin_x,
2481 1e37a5c2 2019-05-12 jcs s->selected_entry->commit, s->selected_entry->id,
2482 78756c87 2020-11-24 stsp view, s->repo);
2483 1e37a5c2 2019-05-12 jcs if (err)
2484 1e37a5c2 2019-05-12 jcs break;
2485 e78dc838 2020-12-04 stsp view->focussed = 0;
2486 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
2487 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2488 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2489 f7013a22 2018-10-24 stsp if (err)
2490 1e37a5c2 2019-05-12 jcs return err;
2491 72a9cb46 2020-12-03 stsp view_set_child(view, diff_view);
2492 e78dc838 2020-12-04 stsp view->focus_child = 1;
2493 1e37a5c2 2019-05-12 jcs } else
2494 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
2495 1e37a5c2 2019-05-12 jcs break;
2496 1e37a5c2 2019-05-12 jcs case 't':
2497 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2498 5036bf37 2018-09-24 stsp break;
2499 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2500 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2501 941e9f74 2019-05-21 stsp err = browse_commit_tree(&tree_view, begin_x,
2502 4e97c21c 2020-12-06 stsp s->selected_entry, s->in_repo_path, s->head_ref_name,
2503 4e97c21c 2020-12-06 stsp s->repo);
2504 1e37a5c2 2019-05-12 jcs if (err)
2505 e5a0f69f 2018-08-18 stsp break;
2506 e78dc838 2020-12-04 stsp view->focussed = 0;
2507 e78dc838 2020-12-04 stsp tree_view->focussed = 1;
2508 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2509 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2510 1e37a5c2 2019-05-12 jcs if (err)
2511 1e37a5c2 2019-05-12 jcs return err;
2512 72a9cb46 2020-12-03 stsp view_set_child(view, tree_view);
2513 e78dc838 2020-12-04 stsp view->focus_child = 1;
2514 1e37a5c2 2019-05-12 jcs } else
2515 1e37a5c2 2019-05-12 jcs *new_view = tree_view;
2516 1e37a5c2 2019-05-12 jcs break;
2517 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
2518 21355643 2020-12-06 stsp case CTRL('l'):
2519 21355643 2020-12-06 stsp case 'B':
2520 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE &&
2521 21355643 2020-12-06 stsp got_path_is_root_dir(s->in_repo_path))
2522 1e37a5c2 2019-05-12 jcs break;
2523 21355643 2020-12-06 stsp err = stop_log_thread(s);
2524 74cfe85e 2020-10-20 stsp if (err)
2525 74cfe85e 2020-10-20 stsp return err;
2526 21355643 2020-12-06 stsp if (ch == KEY_BACKSPACE) {
2527 21355643 2020-12-06 stsp char *parent_path;
2528 21355643 2020-12-06 stsp err = got_path_dirname(&parent_path, s->in_repo_path);
2529 21355643 2020-12-06 stsp if (err)
2530 21355643 2020-12-06 stsp return err;
2531 21355643 2020-12-06 stsp free(s->in_repo_path);
2532 21355643 2020-12-06 stsp s->in_repo_path = parent_path;
2533 21355643 2020-12-06 stsp s->thread_args.in_repo_path = s->in_repo_path;
2534 21355643 2020-12-06 stsp } else if (ch == CTRL('l')) {
2535 21355643 2020-12-06 stsp struct got_object_id *start_id;
2536 21355643 2020-12-06 stsp err = got_repo_match_object_id(&start_id, NULL,
2537 21355643 2020-12-06 stsp s->head_ref_name ? s->head_ref_name : GOT_REF_HEAD,
2538 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &tog_refs, s->repo);
2539 21355643 2020-12-06 stsp if (err)
2540 21355643 2020-12-06 stsp return err;
2541 21355643 2020-12-06 stsp free(s->start_id);
2542 21355643 2020-12-06 stsp s->start_id = start_id;
2543 21355643 2020-12-06 stsp s->thread_args.start_id = s->start_id;
2544 21355643 2020-12-06 stsp } else /* 'B' */
2545 21355643 2020-12-06 stsp s->log_branches = !s->log_branches;
2546 21355643 2020-12-06 stsp
2547 21355643 2020-12-06 stsp err = got_repo_open(&s->thread_args.repo,
2548 21355643 2020-12-06 stsp got_repo_get_path(s->repo), NULL);
2549 74cfe85e 2020-10-20 stsp if (err)
2550 21355643 2020-12-06 stsp return err;
2551 51a10b52 2020-12-26 stsp tog_free_refs();
2552 51a10b52 2020-12-26 stsp err = tog_load_refs(s->repo);
2553 ca51c541 2020-12-07 stsp if (err)
2554 ca51c541 2020-12-07 stsp return err;
2555 21355643 2020-12-06 stsp err = got_commit_graph_open(&s->thread_args.graph,
2556 21355643 2020-12-06 stsp s->in_repo_path, !s->log_branches);
2557 d01904d4 2019-06-25 stsp if (err)
2558 d01904d4 2019-06-25 stsp return err;
2559 21355643 2020-12-06 stsp err = got_commit_graph_iter_start(s->thread_args.graph,
2560 21355643 2020-12-06 stsp s->start_id, s->repo, NULL, NULL);
2561 b672a97a 2020-01-27 stsp if (err)
2562 b672a97a 2020-01-27 stsp return err;
2563 21355643 2020-12-06 stsp free_commits(&s->commits);
2564 21355643 2020-12-06 stsp s->first_displayed_entry = NULL;
2565 21355643 2020-12-06 stsp s->last_displayed_entry = NULL;
2566 21355643 2020-12-06 stsp s->selected_entry = NULL;
2567 21355643 2020-12-06 stsp s->selected = 0;
2568 21355643 2020-12-06 stsp s->thread_args.log_complete = 0;
2569 21355643 2020-12-06 stsp s->quit = 0;
2570 21355643 2020-12-06 stsp s->thread_args.commits_needed = view->nlines;
2571 d01904d4 2019-06-25 stsp break;
2572 6458efa5 2020-11-24 stsp case 'r':
2573 6458efa5 2020-11-24 stsp if (view_is_parent_view(view))
2574 6458efa5 2020-11-24 stsp begin_x = view_split_begin_x(view->begin_x);
2575 6458efa5 2020-11-24 stsp ref_view = view_open(view->nlines, view->ncols,
2576 6458efa5 2020-11-24 stsp view->begin_y, begin_x, TOG_VIEW_REF);
2577 6458efa5 2020-11-24 stsp if (ref_view == NULL)
2578 6458efa5 2020-11-24 stsp return got_error_from_errno("view_open");
2579 6458efa5 2020-11-24 stsp err = open_ref_view(ref_view, s->repo);
2580 6458efa5 2020-11-24 stsp if (err) {
2581 6458efa5 2020-11-24 stsp view_close(ref_view);
2582 6458efa5 2020-11-24 stsp return err;
2583 6458efa5 2020-11-24 stsp }
2584 e78dc838 2020-12-04 stsp view->focussed = 0;
2585 e78dc838 2020-12-04 stsp ref_view->focussed = 1;
2586 6458efa5 2020-11-24 stsp if (view_is_parent_view(view)) {
2587 6458efa5 2020-11-24 stsp err = view_close_child(view);
2588 6458efa5 2020-11-24 stsp if (err)
2589 6458efa5 2020-11-24 stsp return err;
2590 72a9cb46 2020-12-03 stsp view_set_child(view, ref_view);
2591 e78dc838 2020-12-04 stsp view->focus_child = 1;
2592 6458efa5 2020-11-24 stsp } else
2593 6458efa5 2020-11-24 stsp *new_view = ref_view;
2594 6458efa5 2020-11-24 stsp break;
2595 1e37a5c2 2019-05-12 jcs default:
2596 1e37a5c2 2019-05-12 jcs break;
2597 899d86c2 2018-05-10 stsp }
2598 e5a0f69f 2018-08-18 stsp
2599 80ddbec8 2018-04-29 stsp return err;
2600 80ddbec8 2018-04-29 stsp }
2601 80ddbec8 2018-04-29 stsp
2602 4ed7e80c 2018-05-20 stsp static const struct got_error *
2603 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
2604 c2db6724 2019-01-04 stsp {
2605 c2db6724 2019-01-04 stsp const struct got_error *error;
2606 c2db6724 2019-01-04 stsp
2607 37c06ea4 2019-07-15 stsp #ifdef PROFILE
2608 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
2609 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
2610 37c06ea4 2019-07-15 stsp #endif
2611 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
2612 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
2613 c2db6724 2019-01-04 stsp
2614 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
2615 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
2616 c2db6724 2019-01-04 stsp
2617 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
2618 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
2619 c2db6724 2019-01-04 stsp
2620 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
2621 c2db6724 2019-01-04 stsp if (error != NULL)
2622 c2db6724 2019-01-04 stsp return error;
2623 c2db6724 2019-01-04 stsp
2624 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
2625 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
2626 c2db6724 2019-01-04 stsp
2627 c2db6724 2019-01-04 stsp return NULL;
2628 c2db6724 2019-01-04 stsp }
2629 c2db6724 2019-01-04 stsp
2630 a915003a 2019-02-05 stsp static void
2631 a915003a 2019-02-05 stsp init_curses(void)
2632 a915003a 2019-02-05 stsp {
2633 a915003a 2019-02-05 stsp initscr();
2634 a915003a 2019-02-05 stsp cbreak();
2635 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
2636 a915003a 2019-02-05 stsp noecho();
2637 a915003a 2019-02-05 stsp nonl();
2638 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
2639 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
2640 a915003a 2019-02-05 stsp curs_set(0);
2641 6d17833f 2019-11-08 stsp if (getenv("TOG_COLORS") != NULL) {
2642 6d17833f 2019-11-08 stsp start_color();
2643 6d17833f 2019-11-08 stsp use_default_colors();
2644 6d17833f 2019-11-08 stsp }
2645 a915003a 2019-02-05 stsp signal(SIGWINCH, tog_sigwinch);
2646 83baff54 2019-08-12 stsp signal(SIGPIPE, tog_sigpipe);
2647 61266923 2020-01-14 stsp signal(SIGCONT, tog_sigcont);
2648 a915003a 2019-02-05 stsp }
2649 a915003a 2019-02-05 stsp
2650 c2db6724 2019-01-04 stsp static const struct got_error *
2651 f135c941 2020-02-20 stsp get_in_repo_path_from_argv0(char **in_repo_path, int argc, char *argv[],
2652 f135c941 2020-02-20 stsp struct got_repository *repo, struct got_worktree *worktree)
2653 f135c941 2020-02-20 stsp {
2654 f135c941 2020-02-20 stsp const struct got_error *err = NULL;
2655 f135c941 2020-02-20 stsp
2656 f135c941 2020-02-20 stsp if (argc == 0) {
2657 f135c941 2020-02-20 stsp *in_repo_path = strdup("/");
2658 f135c941 2020-02-20 stsp if (*in_repo_path == NULL)
2659 f135c941 2020-02-20 stsp return got_error_from_errno("strdup");
2660 f135c941 2020-02-20 stsp return NULL;
2661 f135c941 2020-02-20 stsp }
2662 f135c941 2020-02-20 stsp
2663 f135c941 2020-02-20 stsp if (worktree) {
2664 f135c941 2020-02-20 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
2665 bfd61697 2020-11-14 stsp char *p;
2666 f135c941 2020-02-20 stsp
2667 bfd61697 2020-11-14 stsp err = got_worktree_resolve_path(&p, worktree, argv[0]);
2668 f135c941 2020-02-20 stsp if (err)
2669 f135c941 2020-02-20 stsp return err;
2670 bfd61697 2020-11-14 stsp if (asprintf(in_repo_path, "%s%s%s", prefix,
2671 bfd61697 2020-11-14 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
2672 bfd61697 2020-11-14 stsp p) == -1) {
2673 f135c941 2020-02-20 stsp err = got_error_from_errno("asprintf");
2674 bfd61697 2020-11-14 stsp *in_repo_path = NULL;
2675 f135c941 2020-02-20 stsp }
2676 f135c941 2020-02-20 stsp free(p);
2677 f135c941 2020-02-20 stsp } else
2678 8fa913ec 2020-11-14 stsp err = got_repo_map_path(in_repo_path, repo, argv[0]);
2679 f135c941 2020-02-20 stsp
2680 f135c941 2020-02-20 stsp return err;
2681 f135c941 2020-02-20 stsp }
2682 f135c941 2020-02-20 stsp
2683 f135c941 2020-02-20 stsp static const struct got_error *
2684 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
2685 9f7d7167 2018-04-29 stsp {
2686 80ddbec8 2018-04-29 stsp const struct got_error *error;
2687 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
2688 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
2689 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
2690 f135c941 2020-02-20 stsp char *in_repo_path = NULL, *repo_path = NULL, *cwd = NULL;
2691 d8f38dc4 2020-12-05 stsp char *start_commit = NULL, *label = NULL;
2692 d8f38dc4 2020-12-05 stsp struct got_reference *ref = NULL;
2693 d8f38dc4 2020-12-05 stsp const char *head_ref_name = NULL;
2694 f135c941 2020-02-20 stsp int ch, log_branches = 0;
2695 04cc582a 2018-08-01 stsp struct tog_view *view;
2696 80ddbec8 2018-04-29 stsp
2697 b672a97a 2020-01-27 stsp while ((ch = getopt(argc, argv, "bc:r:")) != -1) {
2698 80ddbec8 2018-04-29 stsp switch (ch) {
2699 b672a97a 2020-01-27 stsp case 'b':
2700 b672a97a 2020-01-27 stsp log_branches = 1;
2701 b672a97a 2020-01-27 stsp break;
2702 80ddbec8 2018-04-29 stsp case 'c':
2703 80ddbec8 2018-04-29 stsp start_commit = optarg;
2704 80ddbec8 2018-04-29 stsp break;
2705 ecb28ae0 2018-07-16 stsp case 'r':
2706 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
2707 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
2708 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
2709 9ba1d308 2019-10-21 stsp optarg);
2710 ecb28ae0 2018-07-16 stsp break;
2711 80ddbec8 2018-04-29 stsp default:
2712 17020d27 2019-03-07 stsp usage_log();
2713 80ddbec8 2018-04-29 stsp /* NOTREACHED */
2714 80ddbec8 2018-04-29 stsp }
2715 80ddbec8 2018-04-29 stsp }
2716 80ddbec8 2018-04-29 stsp
2717 80ddbec8 2018-04-29 stsp argc -= optind;
2718 80ddbec8 2018-04-29 stsp argv += optind;
2719 80ddbec8 2018-04-29 stsp
2720 f135c941 2020-02-20 stsp if (argc > 1)
2721 f135c941 2020-02-20 stsp usage_log();
2722 963f97a1 2019-03-18 stsp
2723 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
2724 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
2725 c156c7a4 2020-12-18 stsp if (cwd == NULL)
2726 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
2727 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
2728 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2729 c156c7a4 2020-12-18 stsp goto done;
2730 a1fbf39a 2019-08-11 stsp if (worktree)
2731 6962eb72 2020-02-20 stsp repo_path =
2732 6962eb72 2020-02-20 stsp strdup(got_worktree_get_repo_path(worktree));
2733 a1fbf39a 2019-08-11 stsp else
2734 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
2735 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
2736 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
2737 c156c7a4 2020-12-18 stsp goto done;
2738 c156c7a4 2020-12-18 stsp }
2739 ecb28ae0 2018-07-16 stsp }
2740 ecb28ae0 2018-07-16 stsp
2741 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2742 80ddbec8 2018-04-29 stsp if (error != NULL)
2743 ecb28ae0 2018-07-16 stsp goto done;
2744 80ddbec8 2018-04-29 stsp
2745 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
2746 f135c941 2020-02-20 stsp repo, worktree);
2747 f135c941 2020-02-20 stsp if (error)
2748 f135c941 2020-02-20 stsp goto done;
2749 f135c941 2020-02-20 stsp
2750 f135c941 2020-02-20 stsp init_curses();
2751 f135c941 2020-02-20 stsp
2752 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
2753 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
2754 c02c541e 2019-03-29 stsp if (error)
2755 c02c541e 2019-03-29 stsp goto done;
2756 c02c541e 2019-03-29 stsp
2757 87670572 2020-12-26 naddy /* already loaded by tog_log_with_path()? */
2758 d9dff0e5 2020-12-26 stsp if (TAILQ_EMPTY(&tog_refs)) {
2759 87670572 2020-12-26 naddy error = tog_load_refs(repo);
2760 87670572 2020-12-26 naddy if (error)
2761 87670572 2020-12-26 naddy goto done;
2762 87670572 2020-12-26 naddy }
2763 51a10b52 2020-12-26 stsp
2764 d8f38dc4 2020-12-05 stsp if (start_commit == NULL) {
2765 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, &label,
2766 d8f38dc4 2020-12-05 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
2767 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
2768 d8f38dc4 2020-12-05 stsp if (error)
2769 d8f38dc4 2020-12-05 stsp goto done;
2770 d8f38dc4 2020-12-05 stsp head_ref_name = label;
2771 d8f38dc4 2020-12-05 stsp } else {
2772 d8f38dc4 2020-12-05 stsp error = got_ref_open(&ref, repo, start_commit, 0);
2773 d8f38dc4 2020-12-05 stsp if (error == NULL)
2774 d8f38dc4 2020-12-05 stsp head_ref_name = got_ref_get_name(ref);
2775 d8f38dc4 2020-12-05 stsp else if (error->code != GOT_ERR_NOT_REF)
2776 d8f38dc4 2020-12-05 stsp goto done;
2777 d8f38dc4 2020-12-05 stsp error = got_repo_match_object_id(&start_id, NULL,
2778 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
2779 d8f38dc4 2020-12-05 stsp if (error)
2780 d8f38dc4 2020-12-05 stsp goto done;
2781 d8f38dc4 2020-12-05 stsp }
2782 8b473291 2019-02-21 stsp
2783 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
2784 04cc582a 2018-08-01 stsp if (view == NULL) {
2785 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
2786 04cc582a 2018-08-01 stsp goto done;
2787 04cc582a 2018-08-01 stsp }
2788 78756c87 2020-11-24 stsp error = open_log_view(view, start_id, repo, head_ref_name,
2789 f135c941 2020-02-20 stsp in_repo_path, log_branches);
2790 ba4f502b 2018-08-04 stsp if (error)
2791 ba4f502b 2018-08-04 stsp goto done;
2792 2fc00ff4 2019-08-31 stsp if (worktree) {
2793 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
2794 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
2795 2fc00ff4 2019-08-31 stsp worktree = NULL;
2796 2fc00ff4 2019-08-31 stsp }
2797 e5a0f69f 2018-08-18 stsp error = view_loop(view);
2798 ecb28ae0 2018-07-16 stsp done:
2799 f135c941 2020-02-20 stsp free(in_repo_path);
2800 ecb28ae0 2018-07-16 stsp free(repo_path);
2801 ecb28ae0 2018-07-16 stsp free(cwd);
2802 899d86c2 2018-05-10 stsp free(start_id);
2803 d8f38dc4 2020-12-05 stsp free(label);
2804 d8f38dc4 2020-12-05 stsp if (ref)
2805 d8f38dc4 2020-12-05 stsp got_ref_close(ref);
2806 ecb28ae0 2018-07-16 stsp if (repo)
2807 ecb28ae0 2018-07-16 stsp got_repo_close(repo);
2808 ec142235 2019-03-07 stsp if (worktree)
2809 ec142235 2019-03-07 stsp got_worktree_close(worktree);
2810 51a10b52 2020-12-26 stsp tog_free_refs();
2811 80ddbec8 2018-04-29 stsp return error;
2812 9f7d7167 2018-04-29 stsp }
2813 9f7d7167 2018-04-29 stsp
2814 4ed7e80c 2018-05-20 stsp __dead static void
2815 9f7d7167 2018-04-29 stsp usage_diff(void)
2816 9f7d7167 2018-04-29 stsp {
2817 80ddbec8 2018-04-29 stsp endwin();
2818 3dbaef42 2020-11-24 stsp fprintf(stderr, "usage: %s diff [-a] [-C number] [-r repository-path] "
2819 3dbaef42 2020-11-24 stsp "[-w] object1 object2\n", getprogname());
2820 9f7d7167 2018-04-29 stsp exit(1);
2821 b304db33 2018-05-20 stsp }
2822 b304db33 2018-05-20 stsp
2823 6d17833f 2019-11-08 stsp static int
2824 41605754 2020-11-12 stsp match_line(const char *line, regex_t *regex, size_t nmatch,
2825 41605754 2020-11-12 stsp regmatch_t *regmatch)
2826 6d17833f 2019-11-08 stsp {
2827 41605754 2020-11-12 stsp return regexec(regex, line, nmatch, regmatch, 0) == 0;
2828 6d17833f 2019-11-08 stsp }
2829 6d17833f 2019-11-08 stsp
2830 f26dddb7 2019-11-08 stsp struct tog_color *
2831 bddb1296 2019-11-08 stsp match_color(struct tog_colors *colors, const char *line)
2832 6d17833f 2019-11-08 stsp {
2833 f26dddb7 2019-11-08 stsp struct tog_color *tc = NULL;
2834 6d17833f 2019-11-08 stsp
2835 6d17833f 2019-11-08 stsp SIMPLEQ_FOREACH(tc, colors, entry) {
2836 41605754 2020-11-12 stsp if (match_line(line, &tc->regex, 0, NULL))
2837 6d17833f 2019-11-08 stsp return tc;
2838 6d17833f 2019-11-08 stsp }
2839 6d17833f 2019-11-08 stsp
2840 6d17833f 2019-11-08 stsp return NULL;
2841 6d17833f 2019-11-08 stsp }
2842 6d17833f 2019-11-08 stsp
2843 4ed7e80c 2018-05-20 stsp static const struct got_error *
2844 41605754 2020-11-12 stsp add_matched_line(int *wtotal, const char *line, int wlimit, int col_tab_align,
2845 41605754 2020-11-12 stsp WINDOW *window, regmatch_t *regmatch)
2846 41605754 2020-11-12 stsp {
2847 41605754 2020-11-12 stsp const struct got_error *err = NULL;
2848 41605754 2020-11-12 stsp wchar_t *wline;
2849 41605754 2020-11-12 stsp int width;
2850 41605754 2020-11-12 stsp char *s;
2851 41605754 2020-11-12 stsp
2852 41605754 2020-11-12 stsp *wtotal = 0;
2853 41605754 2020-11-12 stsp
2854 41605754 2020-11-12 stsp s = strndup(line, regmatch->rm_so);
2855 41605754 2020-11-12 stsp if (s == NULL)
2856 41605754 2020-11-12 stsp return got_error_from_errno("strndup");
2857 41605754 2020-11-12 stsp
2858 41605754 2020-11-12 stsp err = format_line(&wline, &width, s, wlimit, col_tab_align);
2859 41605754 2020-11-12 stsp if (err) {
2860 41605754 2020-11-12 stsp free(s);
2861 41605754 2020-11-12 stsp return err;
2862 41605754 2020-11-12 stsp }
2863 41605754 2020-11-12 stsp waddwstr(window, wline);
2864 41605754 2020-11-12 stsp free(wline);
2865 41605754 2020-11-12 stsp free(s);
2866 41605754 2020-11-12 stsp wlimit -= width;
2867 41605754 2020-11-12 stsp *wtotal += width;
2868 41605754 2020-11-12 stsp
2869 41605754 2020-11-12 stsp if (wlimit > 0) {
2870 41605754 2020-11-12 stsp s = strndup(line + regmatch->rm_so,
2871 41605754 2020-11-12 stsp regmatch->rm_eo - regmatch->rm_so);
2872 41605754 2020-11-12 stsp if (s == NULL) {
2873 41605754 2020-11-12 stsp err = got_error_from_errno("strndup");
2874 41605754 2020-11-12 stsp free(s);
2875 41605754 2020-11-12 stsp return err;
2876 41605754 2020-11-12 stsp }
2877 41605754 2020-11-12 stsp err = format_line(&wline, &width, s, wlimit, col_tab_align);
2878 41605754 2020-11-12 stsp if (err) {
2879 41605754 2020-11-12 stsp free(s);
2880 41605754 2020-11-12 stsp return err;
2881 41605754 2020-11-12 stsp }
2882 41605754 2020-11-12 stsp wattr_on(window, A_STANDOUT, NULL);
2883 41605754 2020-11-12 stsp waddwstr(window, wline);
2884 41605754 2020-11-12 stsp wattr_off(window, A_STANDOUT, NULL);
2885 41605754 2020-11-12 stsp free(wline);
2886 41605754 2020-11-12 stsp free(s);
2887 41605754 2020-11-12 stsp wlimit -= width;
2888 41605754 2020-11-12 stsp *wtotal += width;
2889 41605754 2020-11-12 stsp }
2890 41605754 2020-11-12 stsp
2891 41605754 2020-11-12 stsp if (wlimit > 0 && strlen(line) > regmatch->rm_eo) {
2892 41605754 2020-11-12 stsp err = format_line(&wline, &width,
2893 bf30f154 2020-12-07 naddy line + regmatch->rm_eo, wlimit, col_tab_align);
2894 41605754 2020-11-12 stsp if (err)
2895 41605754 2020-11-12 stsp return err;
2896 41605754 2020-11-12 stsp waddwstr(window, wline);
2897 41605754 2020-11-12 stsp free(wline);
2898 41605754 2020-11-12 stsp *wtotal += width;
2899 41605754 2020-11-12 stsp }
2900 41605754 2020-11-12 stsp
2901 41605754 2020-11-12 stsp return NULL;
2902 41605754 2020-11-12 stsp }
2903 41605754 2020-11-12 stsp
2904 41605754 2020-11-12 stsp static const struct got_error *
2905 89f1a395 2020-12-01 naddy draw_file(struct tog_view *view, const char *header)
2906 26ed57b2 2018-05-19 stsp {
2907 89f1a395 2020-12-01 naddy struct tog_diff_view_state *s = &view->state.diff;
2908 89f1a395 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
2909 61e69b96 2018-05-20 stsp const struct got_error *err;
2910 fe621944 2020-11-10 stsp int nprinted = 0;
2911 b304db33 2018-05-20 stsp char *line;
2912 826082fe 2020-12-10 stsp size_t linesize = 0;
2913 826082fe 2020-12-10 stsp ssize_t linelen;
2914 f26dddb7 2019-11-08 stsp struct tog_color *tc;
2915 61e69b96 2018-05-20 stsp wchar_t *wline;
2916 e0b650dd 2018-05-20 stsp int width;
2917 89f1a395 2020-12-01 naddy int max_lines = view->nlines;
2918 89f1a395 2020-12-01 naddy int nlines = s->nlines;
2919 fe621944 2020-11-10 stsp off_t line_offset;
2920 26ed57b2 2018-05-19 stsp
2921 89f1a395 2020-12-01 naddy line_offset = s->line_offsets[s->first_displayed_line - 1];
2922 89f1a395 2020-12-01 naddy if (fseeko(s->f, line_offset, SEEK_SET) == -1)
2923 fe621944 2020-11-10 stsp return got_error_from_errno("fseek");
2924 fe621944 2020-11-10 stsp
2925 f7d12f7e 2018-08-01 stsp werase(view->window);
2926 a3404814 2018-09-02 stsp
2927 a3404814 2018-09-02 stsp if (header) {
2928 135a2da0 2020-11-11 stsp if (asprintf(&line, "[%d/%d] %s",
2929 89f1a395 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, nlines,
2930 135a2da0 2020-11-11 stsp header) == -1)
2931 135a2da0 2020-11-11 stsp return got_error_from_errno("asprintf");
2932 135a2da0 2020-11-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
2933 135a2da0 2020-11-11 stsp free(line);
2934 135a2da0 2020-11-11 stsp if (err)
2935 a3404814 2018-09-02 stsp return err;
2936 a3404814 2018-09-02 stsp
2937 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2938 a3404814 2018-09-02 stsp wstandout(view->window);
2939 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
2940 e54cc94a 2020-11-11 stsp free(wline);
2941 e54cc94a 2020-11-11 stsp wline = NULL;
2942 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2943 a3404814 2018-09-02 stsp wstandend(view->window);
2944 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
2945 a3404814 2018-09-02 stsp waddch(view->window, '\n');
2946 26ed57b2 2018-05-19 stsp
2947 a3404814 2018-09-02 stsp if (max_lines <= 1)
2948 a3404814 2018-09-02 stsp return NULL;
2949 a3404814 2018-09-02 stsp max_lines--;
2950 a3404814 2018-09-02 stsp }
2951 a3404814 2018-09-02 stsp
2952 89f1a395 2020-12-01 naddy s->eof = 0;
2953 826082fe 2020-12-10 stsp line = NULL;
2954 fe621944 2020-11-10 stsp while (max_lines > 0 && nprinted < max_lines) {
2955 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
2956 826082fe 2020-12-10 stsp if (linelen == -1) {
2957 826082fe 2020-12-10 stsp if (feof(s->f)) {
2958 826082fe 2020-12-10 stsp s->eof = 1;
2959 826082fe 2020-12-10 stsp break;
2960 826082fe 2020-12-10 stsp }
2961 826082fe 2020-12-10 stsp free(line);
2962 826082fe 2020-12-10 stsp return got_ferror(s->f, GOT_ERR_IO);
2963 61e69b96 2018-05-20 stsp }
2964 6d17833f 2019-11-08 stsp
2965 89f1a395 2020-12-01 naddy tc = match_color(&s->colors, line);
2966 f26dddb7 2019-11-08 stsp if (tc)
2967 f26dddb7 2019-11-08 stsp wattr_on(view->window,
2968 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2969 89f1a395 2020-12-01 naddy if (s->first_displayed_line + nprinted == s->matched_line &&
2970 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
2971 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols, 0,
2972 41605754 2020-11-12 stsp view->window, regmatch);
2973 41605754 2020-11-12 stsp if (err) {
2974 41605754 2020-11-12 stsp free(line);
2975 41605754 2020-11-12 stsp return err;
2976 41605754 2020-11-12 stsp }
2977 41605754 2020-11-12 stsp } else {
2978 41605754 2020-11-12 stsp err = format_line(&wline, &width, line, view->ncols, 0);
2979 41605754 2020-11-12 stsp if (err) {
2980 41605754 2020-11-12 stsp free(line);
2981 41605754 2020-11-12 stsp return err;
2982 41605754 2020-11-12 stsp }
2983 41605754 2020-11-12 stsp waddwstr(view->window, wline);
2984 41605754 2020-11-12 stsp free(wline);
2985 41605754 2020-11-12 stsp wline = NULL;
2986 41605754 2020-11-12 stsp }
2987 f26dddb7 2019-11-08 stsp if (tc)
2988 6d17833f 2019-11-08 stsp wattr_off(view->window,
2989 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
2990 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
2991 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
2992 fe621944 2020-11-10 stsp nprinted++;
2993 826082fe 2020-12-10 stsp }
2994 826082fe 2020-12-10 stsp free(line);
2995 fe621944 2020-11-10 stsp if (nprinted >= 1)
2996 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line +
2997 89f1a395 2020-12-01 naddy (nprinted - 1);
2998 fe621944 2020-11-10 stsp else
2999 89f1a395 2020-12-01 naddy s->last_displayed_line = s->first_displayed_line;
3000 26ed57b2 2018-05-19 stsp
3001 1a57306a 2018-09-02 stsp view_vborder(view);
3002 c3e9aa98 2019-05-13 jcs
3003 89f1a395 2020-12-01 naddy if (s->eof) {
3004 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
3005 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
3006 c3e9aa98 2019-05-13 jcs nprinted++;
3007 c3e9aa98 2019-05-13 jcs }
3008 c3e9aa98 2019-05-13 jcs
3009 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, TOG_EOF_STRING, view->ncols, 0);
3010 c3e9aa98 2019-05-13 jcs if (err) {
3011 c3e9aa98 2019-05-13 jcs return err;
3012 c3e9aa98 2019-05-13 jcs }
3013 26ed57b2 2018-05-19 stsp
3014 c3e9aa98 2019-05-13 jcs wstandout(view->window);
3015 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
3016 e54cc94a 2020-11-11 stsp free(wline);
3017 e54cc94a 2020-11-11 stsp wline = NULL;
3018 c3e9aa98 2019-05-13 jcs wstandend(view->window);
3019 c3e9aa98 2019-05-13 jcs }
3020 c3e9aa98 2019-05-13 jcs
3021 26ed57b2 2018-05-19 stsp return NULL;
3022 abd2672a 2018-12-23 stsp }
3023 abd2672a 2018-12-23 stsp
3024 abd2672a 2018-12-23 stsp static char *
3025 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
3026 abd2672a 2018-12-23 stsp {
3027 09867e48 2019-08-13 stsp struct tm mytm, *tm;
3028 09867e48 2019-08-13 stsp char *p, *s;
3029 09867e48 2019-08-13 stsp
3030 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
3031 09867e48 2019-08-13 stsp if (tm == NULL)
3032 09867e48 2019-08-13 stsp return NULL;
3033 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
3034 09867e48 2019-08-13 stsp if (s == NULL)
3035 09867e48 2019-08-13 stsp return NULL;
3036 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
3037 abd2672a 2018-12-23 stsp if (p)
3038 abd2672a 2018-12-23 stsp *p = '\0';
3039 abd2672a 2018-12-23 stsp return s;
3040 9f7d7167 2018-04-29 stsp }
3041 9f7d7167 2018-04-29 stsp
3042 4ed7e80c 2018-05-20 stsp static const struct got_error *
3043 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
3044 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
3045 0208f208 2020-05-05 stsp {
3046 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
3047 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
3048 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3049 0208f208 2020-05-05 stsp struct got_object_qid *qid;
3050 0208f208 2020-05-05 stsp
3051 0208f208 2020-05-05 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
3052 0208f208 2020-05-05 stsp if (qid != NULL) {
3053 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
3054 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
3055 0208f208 2020-05-05 stsp qid->id);
3056 0208f208 2020-05-05 stsp if (err)
3057 0208f208 2020-05-05 stsp return err;
3058 0208f208 2020-05-05 stsp
3059 0208f208 2020-05-05 stsp tree_id1 = got_object_commit_get_tree_id(pcommit);
3060 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
3061 0208f208 2020-05-05 stsp
3062 0208f208 2020-05-05 stsp }
3063 0208f208 2020-05-05 stsp
3064 0208f208 2020-05-05 stsp if (tree_id1) {
3065 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
3066 0208f208 2020-05-05 stsp if (err)
3067 0208f208 2020-05-05 stsp goto done;
3068 0208f208 2020-05-05 stsp }
3069 0208f208 2020-05-05 stsp
3070 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
3071 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
3072 0208f208 2020-05-05 stsp if (err)
3073 0208f208 2020-05-05 stsp goto done;
3074 0208f208 2020-05-05 stsp
3075 0208f208 2020-05-05 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
3076 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
3077 0208f208 2020-05-05 stsp done:
3078 0208f208 2020-05-05 stsp if (tree1)
3079 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
3080 0208f208 2020-05-05 stsp if (tree2)
3081 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
3082 0208f208 2020-05-05 stsp return err;
3083 0208f208 2020-05-05 stsp }
3084 0208f208 2020-05-05 stsp
3085 0208f208 2020-05-05 stsp static const struct got_error *
3086 fe621944 2020-11-10 stsp add_line_offset(off_t **line_offsets, size_t *nlines, off_t off)
3087 abd2672a 2018-12-23 stsp {
3088 fe621944 2020-11-10 stsp off_t *p;
3089 fe621944 2020-11-10 stsp
3090 fe621944 2020-11-10 stsp p = reallocarray(*line_offsets, *nlines + 1, sizeof(off_t));
3091 fe621944 2020-11-10 stsp if (p == NULL)
3092 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
3093 fe621944 2020-11-10 stsp *line_offsets = p;
3094 fe621944 2020-11-10 stsp (*line_offsets)[*nlines] = off;
3095 fe621944 2020-11-10 stsp (*nlines)++;
3096 fe621944 2020-11-10 stsp return NULL;
3097 fe621944 2020-11-10 stsp }
3098 fe621944 2020-11-10 stsp
3099 fe621944 2020-11-10 stsp static const struct got_error *
3100 fe621944 2020-11-10 stsp write_commit_info(off_t **line_offsets, size_t *nlines,
3101 fe621944 2020-11-10 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
3102 fe621944 2020-11-10 stsp struct got_repository *repo, FILE *outfile)
3103 fe621944 2020-11-10 stsp {
3104 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
3105 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
3106 15a94983 2018-12-23 stsp struct got_commit_object *commit;
3107 fe621944 2020-11-10 stsp char *id_str = NULL, *logmsg = NULL, *s = NULL, *line;
3108 45d799e2 2018-12-23 stsp time_t committer_time;
3109 45d799e2 2018-12-23 stsp const char *author, *committer;
3110 8b473291 2019-02-21 stsp char *refs_str = NULL;
3111 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
3112 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
3113 fe621944 2020-11-10 stsp off_t outoff = 0;
3114 fe621944 2020-11-10 stsp int n;
3115 abd2672a 2018-12-23 stsp
3116 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
3117 0208f208 2020-05-05 stsp
3118 8b473291 2019-02-21 stsp if (refs) {
3119 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
3120 8b473291 2019-02-21 stsp if (err)
3121 8b473291 2019-02-21 stsp return err;
3122 8b473291 2019-02-21 stsp }
3123 8b473291 2019-02-21 stsp
3124 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
3125 abd2672a 2018-12-23 stsp if (err)
3126 abd2672a 2018-12-23 stsp return err;
3127 abd2672a 2018-12-23 stsp
3128 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
3129 15a94983 2018-12-23 stsp if (err) {
3130 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
3131 15a94983 2018-12-23 stsp goto done;
3132 15a94983 2018-12-23 stsp }
3133 abd2672a 2018-12-23 stsp
3134 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, 0);
3135 fe621944 2020-11-10 stsp if (err)
3136 fe621944 2020-11-10 stsp goto done;
3137 fe621944 2020-11-10 stsp
3138 fe621944 2020-11-10 stsp n = fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
3139 fe621944 2020-11-10 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
3140 fe621944 2020-11-10 stsp if (n < 0) {
3141 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
3142 abd2672a 2018-12-23 stsp goto done;
3143 abd2672a 2018-12-23 stsp }
3144 fe621944 2020-11-10 stsp outoff += n;
3145 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3146 fe621944 2020-11-10 stsp if (err)
3147 fe621944 2020-11-10 stsp goto done;
3148 fe621944 2020-11-10 stsp
3149 fe621944 2020-11-10 stsp n = fprintf(outfile, "from: %s\n",
3150 fe621944 2020-11-10 stsp got_object_commit_get_author(commit));
3151 fe621944 2020-11-10 stsp if (n < 0) {
3152 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
3153 abd2672a 2018-12-23 stsp goto done;
3154 abd2672a 2018-12-23 stsp }
3155 fe621944 2020-11-10 stsp outoff += n;
3156 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3157 fe621944 2020-11-10 stsp if (err)
3158 fe621944 2020-11-10 stsp goto done;
3159 fe621944 2020-11-10 stsp
3160 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
3161 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
3162 fe621944 2020-11-10 stsp if (datestr) {
3163 fe621944 2020-11-10 stsp n = fprintf(outfile, "date: %s UTC\n", datestr);
3164 fe621944 2020-11-10 stsp if (n < 0) {
3165 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3166 fe621944 2020-11-10 stsp goto done;
3167 fe621944 2020-11-10 stsp }
3168 fe621944 2020-11-10 stsp outoff += n;
3169 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3170 fe621944 2020-11-10 stsp if (err)
3171 fe621944 2020-11-10 stsp goto done;
3172 abd2672a 2018-12-23 stsp }
3173 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
3174 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
3175 fe621944 2020-11-10 stsp if (strcmp(author, committer) != 0) {
3176 fe621944 2020-11-10 stsp n = fprintf(outfile, "via: %s\n", committer);
3177 fe621944 2020-11-10 stsp if (n < 0) {
3178 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3179 fe621944 2020-11-10 stsp goto done;
3180 fe621944 2020-11-10 stsp }
3181 fe621944 2020-11-10 stsp outoff += n;
3182 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3183 fe621944 2020-11-10 stsp if (err)
3184 fe621944 2020-11-10 stsp goto done;
3185 abd2672a 2018-12-23 stsp }
3186 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
3187 5943eee2 2019-08-13 stsp if (err)
3188 5943eee2 2019-08-13 stsp goto done;
3189 fe621944 2020-11-10 stsp s = logmsg;
3190 fe621944 2020-11-10 stsp while ((line = strsep(&s, "\n")) != NULL) {
3191 fe621944 2020-11-10 stsp n = fprintf(outfile, "%s\n", line);
3192 fe621944 2020-11-10 stsp if (n < 0) {
3193 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3194 fe621944 2020-11-10 stsp goto done;
3195 fe621944 2020-11-10 stsp }
3196 fe621944 2020-11-10 stsp outoff += n;
3197 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3198 fe621944 2020-11-10 stsp if (err)
3199 fe621944 2020-11-10 stsp goto done;
3200 abd2672a 2018-12-23 stsp }
3201 fe621944 2020-11-10 stsp
3202 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
3203 0208f208 2020-05-05 stsp if (err)
3204 0208f208 2020-05-05 stsp goto done;
3205 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
3206 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
3207 fe621944 2020-11-10 stsp n = fprintf(outfile, "%c %s\n", cp->status, pe->path);
3208 fe621944 2020-11-10 stsp if (n < 0) {
3209 fe621944 2020-11-10 stsp err = got_error_from_errno("fprintf");
3210 fe621944 2020-11-10 stsp goto done;
3211 fe621944 2020-11-10 stsp }
3212 fe621944 2020-11-10 stsp outoff += n;
3213 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3214 fe621944 2020-11-10 stsp if (err)
3215 fe621944 2020-11-10 stsp goto done;
3216 0208f208 2020-05-05 stsp free((char *)pe->path);
3217 0208f208 2020-05-05 stsp free(pe->data);
3218 0208f208 2020-05-05 stsp }
3219 fe621944 2020-11-10 stsp
3220 0208f208 2020-05-05 stsp fputc('\n', outfile);
3221 fe621944 2020-11-10 stsp outoff++;
3222 fe621944 2020-11-10 stsp err = add_line_offset(line_offsets, nlines, outoff);
3223 abd2672a 2018-12-23 stsp done:
3224 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
3225 abd2672a 2018-12-23 stsp free(id_str);
3226 5943eee2 2019-08-13 stsp free(logmsg);
3227 8b473291 2019-02-21 stsp free(refs_str);
3228 15a94983 2018-12-23 stsp got_object_commit_close(commit);
3229 7510f233 2020-08-09 stsp if (err) {
3230 ae6a6978 2020-08-09 stsp free(*line_offsets);
3231 ae6a6978 2020-08-09 stsp *line_offsets = NULL;
3232 ae6a6978 2020-08-09 stsp *nlines = 0;
3233 7510f233 2020-08-09 stsp }
3234 fe621944 2020-11-10 stsp return err;
3235 abd2672a 2018-12-23 stsp }
3236 abd2672a 2018-12-23 stsp
3237 abd2672a 2018-12-23 stsp static const struct got_error *
3238 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
3239 26ed57b2 2018-05-19 stsp {
3240 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
3241 48ae06ee 2018-10-18 stsp FILE *f = NULL;
3242 15a94983 2018-12-23 stsp int obj_type;
3243 fe621944 2020-11-10 stsp
3244 fe621944 2020-11-10 stsp free(s->line_offsets);
3245 fe621944 2020-11-10 stsp s->line_offsets = malloc(sizeof(off_t));
3246 fe621944 2020-11-10 stsp if (s->line_offsets == NULL)
3247 fe621944 2020-11-10 stsp return got_error_from_errno("malloc");
3248 fe621944 2020-11-10 stsp s->nlines = 0;
3249 26ed57b2 2018-05-19 stsp
3250 511a516b 2018-05-19 stsp f = got_opentemp();
3251 48ae06ee 2018-10-18 stsp if (f == NULL) {
3252 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
3253 48ae06ee 2018-10-18 stsp goto done;
3254 48ae06ee 2018-10-18 stsp }
3255 fb43ecf1 2019-02-11 stsp if (s->f && fclose(s->f) != 0) {
3256 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
3257 fb43ecf1 2019-02-11 stsp goto done;
3258 fb43ecf1 2019-02-11 stsp }
3259 48ae06ee 2018-10-18 stsp s->f = f;
3260 26ed57b2 2018-05-19 stsp
3261 15a94983 2018-12-23 stsp if (s->id1)
3262 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
3263 15a94983 2018-12-23 stsp else
3264 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
3265 15a94983 2018-12-23 stsp if (err)
3266 15a94983 2018-12-23 stsp goto done;
3267 15a94983 2018-12-23 stsp
3268 15a94983 2018-12-23 stsp switch (obj_type) {
3269 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
3270 fe621944 2020-11-10 stsp err = got_diff_objects_as_blobs(&s->line_offsets, &s->nlines,
3271 3dbaef42 2020-11-24 stsp s->id1, s->id2, s->label1, s->label2, s->diff_context,
3272 3dbaef42 2020-11-24 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
3273 26ed57b2 2018-05-19 stsp break;
3274 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
3275 fe621944 2020-11-10 stsp err = got_diff_objects_as_trees(&s->line_offsets, &s->nlines,
3276 3dbaef42 2020-11-24 stsp s->id1, s->id2, "", "", s->diff_context,
3277 3dbaef42 2020-11-24 stsp s->ignore_whitespace, s->force_text_diff, s->repo, s->f);
3278 26ed57b2 2018-05-19 stsp break;
3279 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
3280 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
3281 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
3282 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
3283 d2075bf3 2020-12-25 stsp struct got_reflist_head *refs;
3284 abd2672a 2018-12-23 stsp
3285 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
3286 abd2672a 2018-12-23 stsp if (err)
3287 3ffacbe1 2020-02-02 tracey goto done;
3288 51a10b52 2020-12-26 stsp refs = got_reflist_object_id_map_lookup(tog_refs_idmap, s->id2);
3289 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
3290 f44b1f58 2020-02-02 tracey if (s->id1 == NULL) {
3291 fe621944 2020-11-10 stsp err = write_commit_info(&s->line_offsets, &s->nlines,
3292 d2075bf3 2020-12-25 stsp s->id2, refs, s->repo, s->f);
3293 f44b1f58 2020-02-02 tracey if (err)
3294 f44b1f58 2020-02-02 tracey goto done;
3295 f44b1f58 2020-02-02 tracey } else {
3296 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
3297 15a087fe 2019-02-21 stsp SIMPLEQ_FOREACH(pid, parent_ids, entry) {
3298 15a087fe 2019-02-21 stsp if (got_object_id_cmp(s->id1, pid->id) == 0) {
3299 fe621944 2020-11-10 stsp err = write_commit_info(
3300 fe621944 2020-11-10 stsp &s->line_offsets, &s->nlines,
3301 d2075bf3 2020-12-25 stsp s->id2, refs, s->repo, s->f);
3302 f44b1f58 2020-02-02 tracey if (err)
3303 f44b1f58 2020-02-02 tracey goto done;
3304 f5404e4e 2020-02-02 tracey break;
3305 15a087fe 2019-02-21 stsp }
3306 abd2672a 2018-12-23 stsp }
3307 abd2672a 2018-12-23 stsp }
3308 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
3309 abd2672a 2018-12-23 stsp
3310 fe621944 2020-11-10 stsp err = got_diff_objects_as_commits(&s->line_offsets, &s->nlines,
3311 3dbaef42 2020-11-24 stsp s->id1, s->id2, s->diff_context, s->ignore_whitespace,
3312 3dbaef42 2020-11-24 stsp s->force_text_diff, s->repo, s->f);
3313 26ed57b2 2018-05-19 stsp break;
3314 abd2672a 2018-12-23 stsp }
3315 26ed57b2 2018-05-19 stsp default:
3316 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
3317 48ae06ee 2018-10-18 stsp break;
3318 26ed57b2 2018-05-19 stsp }
3319 f44b1f58 2020-02-02 tracey if (err)
3320 f44b1f58 2020-02-02 tracey goto done;
3321 48ae06ee 2018-10-18 stsp done:
3322 f44b1f58 2020-02-02 tracey if (s->f && fflush(s->f) != 0 && err == NULL)
3323 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
3324 48ae06ee 2018-10-18 stsp return err;
3325 48ae06ee 2018-10-18 stsp }
3326 26ed57b2 2018-05-19 stsp
3327 f5215bb9 2019-02-22 stsp static void
3328 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
3329 f5215bb9 2019-02-22 stsp {
3330 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
3331 f5215bb9 2019-02-22 stsp update_panels();
3332 f5215bb9 2019-02-22 stsp doupdate();
3333 f44b1f58 2020-02-02 tracey }
3334 f44b1f58 2020-02-02 tracey
3335 f44b1f58 2020-02-02 tracey static const struct got_error *
3336 f44b1f58 2020-02-02 tracey search_start_diff_view(struct tog_view *view)
3337 f44b1f58 2020-02-02 tracey {
3338 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
3339 f44b1f58 2020-02-02 tracey
3340 f44b1f58 2020-02-02 tracey s->matched_line = 0;
3341 f44b1f58 2020-02-02 tracey return NULL;
3342 f44b1f58 2020-02-02 tracey }
3343 f44b1f58 2020-02-02 tracey
3344 f44b1f58 2020-02-02 tracey static const struct got_error *
3345 f44b1f58 2020-02-02 tracey search_next_diff_view(struct tog_view *view)
3346 f44b1f58 2020-02-02 tracey {
3347 f44b1f58 2020-02-02 tracey struct tog_diff_view_state *s = &view->state.diff;
3348 f44b1f58 2020-02-02 tracey int lineno;
3349 826082fe 2020-12-10 stsp char *line = NULL;
3350 826082fe 2020-12-10 stsp size_t linesize = 0;
3351 826082fe 2020-12-10 stsp ssize_t linelen;
3352 f44b1f58 2020-02-02 tracey
3353 f44b1f58 2020-02-02 tracey if (!view->searching) {
3354 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3355 f44b1f58 2020-02-02 tracey return NULL;
3356 f44b1f58 2020-02-02 tracey }
3357 f44b1f58 2020-02-02 tracey
3358 f44b1f58 2020-02-02 tracey if (s->matched_line) {
3359 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3360 f44b1f58 2020-02-02 tracey lineno = s->matched_line + 1;
3361 f44b1f58 2020-02-02 tracey else
3362 f44b1f58 2020-02-02 tracey lineno = s->matched_line - 1;
3363 f44b1f58 2020-02-02 tracey } else {
3364 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3365 f44b1f58 2020-02-02 tracey lineno = 1;
3366 f44b1f58 2020-02-02 tracey else
3367 f44b1f58 2020-02-02 tracey lineno = s->nlines;
3368 f44b1f58 2020-02-02 tracey }
3369 f44b1f58 2020-02-02 tracey
3370 f44b1f58 2020-02-02 tracey while (1) {
3371 f44b1f58 2020-02-02 tracey off_t offset;
3372 f44b1f58 2020-02-02 tracey
3373 f44b1f58 2020-02-02 tracey if (lineno <= 0 || lineno > s->nlines) {
3374 f44b1f58 2020-02-02 tracey if (s->matched_line == 0) {
3375 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3376 f44b1f58 2020-02-02 tracey break;
3377 f44b1f58 2020-02-02 tracey }
3378 f44b1f58 2020-02-02 tracey
3379 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3380 f44b1f58 2020-02-02 tracey lineno = 1;
3381 f44b1f58 2020-02-02 tracey else
3382 f44b1f58 2020-02-02 tracey lineno = s->nlines;
3383 f44b1f58 2020-02-02 tracey }
3384 f44b1f58 2020-02-02 tracey
3385 f44b1f58 2020-02-02 tracey offset = s->line_offsets[lineno - 1];
3386 f44b1f58 2020-02-02 tracey if (fseeko(s->f, offset, SEEK_SET) != 0) {
3387 f44b1f58 2020-02-02 tracey free(line);
3388 f44b1f58 2020-02-02 tracey return got_error_from_errno("fseeko");
3389 f44b1f58 2020-02-02 tracey }
3390 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
3391 826082fe 2020-12-10 stsp if (linelen != -1 &&
3392 41605754 2020-11-12 stsp match_line(line, &view->regex, 1, &view->regmatch)) {
3393 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
3394 f44b1f58 2020-02-02 tracey s->matched_line = lineno;
3395 f44b1f58 2020-02-02 tracey break;
3396 f44b1f58 2020-02-02 tracey }
3397 f44b1f58 2020-02-02 tracey if (view->searching == TOG_SEARCH_FORWARD)
3398 f44b1f58 2020-02-02 tracey lineno++;
3399 f44b1f58 2020-02-02 tracey else
3400 f44b1f58 2020-02-02 tracey lineno--;
3401 f44b1f58 2020-02-02 tracey }
3402 826082fe 2020-12-10 stsp free(line);
3403 f44b1f58 2020-02-02 tracey
3404 f44b1f58 2020-02-02 tracey if (s->matched_line) {
3405 f44b1f58 2020-02-02 tracey s->first_displayed_line = s->matched_line;
3406 f44b1f58 2020-02-02 tracey s->selected_line = 1;
3407 f44b1f58 2020-02-02 tracey }
3408 f44b1f58 2020-02-02 tracey
3409 f44b1f58 2020-02-02 tracey return NULL;
3410 f5215bb9 2019-02-22 stsp }
3411 f5215bb9 2019-02-22 stsp
3412 48ae06ee 2018-10-18 stsp static const struct got_error *
3413 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
3414 3dbaef42 2020-11-24 stsp struct got_object_id *id2, const char *label1, const char *label2,
3415 3dbaef42 2020-11-24 stsp int diff_context, int ignore_whitespace, int force_text_diff,
3416 78756c87 2020-11-24 stsp struct tog_view *log_view, struct got_repository *repo)
3417 48ae06ee 2018-10-18 stsp {
3418 48ae06ee 2018-10-18 stsp const struct got_error *err;
3419 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
3420 5dc9f4bc 2018-08-04 stsp
3421 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
3422 15a94983 2018-12-23 stsp int type1, type2;
3423 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
3424 15a94983 2018-12-23 stsp if (err)
3425 15a94983 2018-12-23 stsp return err;
3426 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
3427 15a94983 2018-12-23 stsp if (err)
3428 15a94983 2018-12-23 stsp return err;
3429 15a94983 2018-12-23 stsp
3430 15a94983 2018-12-23 stsp if (type1 != type2)
3431 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
3432 15a94983 2018-12-23 stsp }
3433 f44b1f58 2020-02-02 tracey s->first_displayed_line = 1;
3434 f44b1f58 2020-02-02 tracey s->last_displayed_line = view->nlines;
3435 f44b1f58 2020-02-02 tracey s->selected_line = 1;
3436 f44b1f58 2020-02-02 tracey s->repo = repo;
3437 f44b1f58 2020-02-02 tracey s->id1 = id1;
3438 f44b1f58 2020-02-02 tracey s->id2 = id2;
3439 3dbaef42 2020-11-24 stsp s->label1 = label1;
3440 3dbaef42 2020-11-24 stsp s->label2 = label2;
3441 48ae06ee 2018-10-18 stsp
3442 15a94983 2018-12-23 stsp if (id1) {
3443 5465d566 2020-02-01 tracey s->id1 = got_object_id_dup(id1);
3444 5465d566 2020-02-01 tracey if (s->id1 == NULL)
3445 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
3446 48ae06ee 2018-10-18 stsp } else
3447 5465d566 2020-02-01 tracey s->id1 = NULL;
3448 48ae06ee 2018-10-18 stsp
3449 5465d566 2020-02-01 tracey s->id2 = got_object_id_dup(id2);
3450 5465d566 2020-02-01 tracey if (s->id2 == NULL) {
3451 5465d566 2020-02-01 tracey free(s->id1);
3452 5465d566 2020-02-01 tracey s->id1 = NULL;
3453 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
3454 48ae06ee 2018-10-18 stsp }
3455 5465d566 2020-02-01 tracey s->f = NULL;
3456 5465d566 2020-02-01 tracey s->first_displayed_line = 1;
3457 5465d566 2020-02-01 tracey s->last_displayed_line = view->nlines;
3458 3dbaef42 2020-11-24 stsp s->diff_context = diff_context;
3459 3dbaef42 2020-11-24 stsp s->ignore_whitespace = ignore_whitespace;
3460 64453f7e 2020-11-21 stsp s->force_text_diff = force_text_diff;
3461 5465d566 2020-02-01 tracey s->log_view = log_view;
3462 5465d566 2020-02-01 tracey s->repo = repo;
3463 6d17833f 2019-11-08 stsp
3464 f44b1f58 2020-02-02 tracey SIMPLEQ_INIT(&s->colors);
3465 6d17833f 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
3466 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3467 11b20872 2019-11-08 stsp "^-", TOG_COLOR_DIFF_MINUS,
3468 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_MINUS"));
3469 6d17833f 2019-11-08 stsp if (err)
3470 6d17833f 2019-11-08 stsp return err;
3471 5465d566 2020-02-01 tracey err = add_color(&s->colors, "^\\+",
3472 11b20872 2019-11-08 stsp TOG_COLOR_DIFF_PLUS,
3473 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_PLUS"));
3474 6d17833f 2019-11-08 stsp if (err) {
3475 5465d566 2020-02-01 tracey free_colors(&s->colors);
3476 6d17833f 2019-11-08 stsp return err;
3477 6d17833f 2019-11-08 stsp }
3478 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3479 11b20872 2019-11-08 stsp "^@@", TOG_COLOR_DIFF_CHUNK_HEADER,
3480 6d17833f 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_CHUNK_HEADER"));
3481 6d17833f 2019-11-08 stsp if (err) {
3482 5465d566 2020-02-01 tracey free_colors(&s->colors);
3483 6d17833f 2019-11-08 stsp return err;
3484 6d17833f 2019-11-08 stsp }
3485 6d17833f 2019-11-08 stsp
3486 f44b1f58 2020-02-02 tracey err = add_color(&s->colors,
3487 528c17dd 2020-07-31 stsp "^(commit [0-9a-f]|(blob|file) [-+] |[MDmA] [^ ])",
3488 0208f208 2020-05-05 stsp TOG_COLOR_DIFF_META,
3489 6d17833f 2019-11-08 stsp get_color_value("TOG_COLOR_DIFF_META"));
3490 6d17833f 2019-11-08 stsp if (err) {
3491 5465d566 2020-02-01 tracey free_colors(&s->colors);
3492 6d17833f 2019-11-08 stsp return err;
3493 6d17833f 2019-11-08 stsp }
3494 11b20872 2019-11-08 stsp
3495 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3496 11b20872 2019-11-08 stsp "^(from|via): ", TOG_COLOR_AUTHOR,
3497 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_AUTHOR"));
3498 11b20872 2019-11-08 stsp if (err) {
3499 5465d566 2020-02-01 tracey free_colors(&s->colors);
3500 11b20872 2019-11-08 stsp return err;
3501 11b20872 2019-11-08 stsp }
3502 11b20872 2019-11-08 stsp
3503 5465d566 2020-02-01 tracey err = add_color(&s->colors,
3504 11b20872 2019-11-08 stsp "^date: ", TOG_COLOR_DATE,
3505 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_DATE"));
3506 11b20872 2019-11-08 stsp if (err) {
3507 5465d566 2020-02-01 tracey free_colors(&s->colors);
3508 11b20872 2019-11-08 stsp return err;
3509 11b20872 2019-11-08 stsp }
3510 6d17833f 2019-11-08 stsp }
3511 5dc9f4bc 2018-08-04 stsp
3512 f5215bb9 2019-02-22 stsp if (log_view && view_is_splitscreen(view))
3513 f5215bb9 2019-02-22 stsp show_log_view(log_view); /* draw vborder */
3514 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
3515 f5215bb9 2019-02-22 stsp
3516 fe621944 2020-11-10 stsp s->line_offsets = NULL;
3517 fe621944 2020-11-10 stsp s->nlines = 0;
3518 5465d566 2020-02-01 tracey err = create_diff(s);
3519 48ae06ee 2018-10-18 stsp if (err) {
3520 5465d566 2020-02-01 tracey free(s->id1);
3521 5465d566 2020-02-01 tracey s->id1 = NULL;
3522 5465d566 2020-02-01 tracey free(s->id2);
3523 5465d566 2020-02-01 tracey s->id2 = NULL;
3524 78756c87 2020-11-24 stsp free_colors(&s->colors);
3525 48ae06ee 2018-10-18 stsp return err;
3526 48ae06ee 2018-10-18 stsp }
3527 48ae06ee 2018-10-18 stsp
3528 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
3529 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
3530 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
3531 f44b1f58 2020-02-02 tracey view->search_start = search_start_diff_view;
3532 f44b1f58 2020-02-02 tracey view->search_next = search_next_diff_view;
3533 e5a0f69f 2018-08-18 stsp
3534 5dc9f4bc 2018-08-04 stsp return NULL;
3535 5dc9f4bc 2018-08-04 stsp }
3536 5dc9f4bc 2018-08-04 stsp
3537 e5a0f69f 2018-08-18 stsp static const struct got_error *
3538 5dc9f4bc 2018-08-04 stsp close_diff_view(struct tog_view *view)
3539 5dc9f4bc 2018-08-04 stsp {
3540 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3541 5465d566 2020-02-01 tracey struct tog_diff_view_state *s = &view->state.diff;
3542 5465d566 2020-02-01 tracey
3543 5465d566 2020-02-01 tracey free(s->id1);
3544 5465d566 2020-02-01 tracey s->id1 = NULL;
3545 5465d566 2020-02-01 tracey free(s->id2);
3546 5465d566 2020-02-01 tracey s->id2 = NULL;
3547 5465d566 2020-02-01 tracey if (s->f && fclose(s->f) == EOF)
3548 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
3549 5465d566 2020-02-01 tracey free_colors(&s->colors);
3550 f44b1f58 2020-02-02 tracey free(s->line_offsets);
3551 fe621944 2020-11-10 stsp s->line_offsets = NULL;
3552 fe621944 2020-11-10 stsp s->nlines = 0;
3553 e5a0f69f 2018-08-18 stsp return err;
3554 5dc9f4bc 2018-08-04 stsp }
3555 5dc9f4bc 2018-08-04 stsp
3556 5dc9f4bc 2018-08-04 stsp static const struct got_error *
3557 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
3558 5dc9f4bc 2018-08-04 stsp {
3559 a3404814 2018-09-02 stsp const struct got_error *err;
3560 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
3561 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
3562 3dbaef42 2020-11-24 stsp const char *label1, *label2;
3563 a3404814 2018-09-02 stsp
3564 a3404814 2018-09-02 stsp if (s->id1) {
3565 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
3566 a3404814 2018-09-02 stsp if (err)
3567 a3404814 2018-09-02 stsp return err;
3568 3dbaef42 2020-11-24 stsp label1 = s->label1 ? : id_str1;
3569 3dbaef42 2020-11-24 stsp } else
3570 3dbaef42 2020-11-24 stsp label1 = "/dev/null";
3571 3dbaef42 2020-11-24 stsp
3572 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
3573 a3404814 2018-09-02 stsp if (err)
3574 a3404814 2018-09-02 stsp return err;
3575 3dbaef42 2020-11-24 stsp label2 = s->label2 ? : id_str2;
3576 26ed57b2 2018-05-19 stsp
3577 3dbaef42 2020-11-24 stsp if (asprintf(&header, "diff %s %s", label1, label2) == -1) {
3578 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3579 a3404814 2018-09-02 stsp free(id_str1);
3580 a3404814 2018-09-02 stsp free(id_str2);
3581 a3404814 2018-09-02 stsp return err;
3582 a3404814 2018-09-02 stsp }
3583 a3404814 2018-09-02 stsp free(id_str1);
3584 a3404814 2018-09-02 stsp free(id_str2);
3585 a3404814 2018-09-02 stsp
3586 89f1a395 2020-12-01 naddy return draw_file(view, header);
3587 15a087fe 2019-02-21 stsp }
3588 15a087fe 2019-02-21 stsp
3589 15a087fe 2019-02-21 stsp static const struct got_error *
3590 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
3591 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
3592 15a087fe 2019-02-21 stsp {
3593 d7a04538 2019-02-21 stsp const struct got_error *err;
3594 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
3595 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
3596 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
3597 15a087fe 2019-02-21 stsp
3598 15a087fe 2019-02-21 stsp free(s->id2);
3599 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
3600 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
3601 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
3602 15a087fe 2019-02-21 stsp
3603 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
3604 d7a04538 2019-02-21 stsp if (err)
3605 d7a04538 2019-02-21 stsp return err;
3606 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
3607 15a087fe 2019-02-21 stsp free(s->id1);
3608 d7a04538 2019-02-21 stsp pid = SIMPLEQ_FIRST(parent_ids);
3609 d7a04538 2019-02-21 stsp s->id1 = pid ? got_object_id_dup(pid->id) : NULL;
3610 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
3611 15a087fe 2019-02-21 stsp return NULL;
3612 0cf4efb1 2018-09-29 stsp }
3613 0cf4efb1 2018-09-29 stsp
3614 0cf4efb1 2018-09-29 stsp static const struct got_error *
3615 e78dc838 2020-12-04 stsp input_diff_view(struct tog_view **new_view, struct tog_view *view, int ch)
3616 e5a0f69f 2018-08-18 stsp {
3617 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
3618 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
3619 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
3620 5a8b5076 2020-12-05 stsp struct commit_queue_entry *old_selected_entry;
3621 826082fe 2020-12-10 stsp char *line = NULL;
3622 826082fe 2020-12-10 stsp size_t linesize = 0;
3623 826082fe 2020-12-10 stsp ssize_t linelen;
3624 e5a0f69f 2018-08-18 stsp int i;
3625 e5a0f69f 2018-08-18 stsp
3626 e5a0f69f 2018-08-18 stsp switch (ch) {
3627 64453f7e 2020-11-21 stsp case 'a':
3628 3dbaef42 2020-11-24 stsp case 'w':
3629 3dbaef42 2020-11-24 stsp if (ch == 'a')
3630 3dbaef42 2020-11-24 stsp s->force_text_diff = !s->force_text_diff;
3631 3dbaef42 2020-11-24 stsp if (ch == 'w')
3632 3dbaef42 2020-11-24 stsp s->ignore_whitespace = !s->ignore_whitespace;
3633 64453f7e 2020-11-21 stsp wclear(view->window);
3634 64453f7e 2020-11-21 stsp s->first_displayed_line = 1;
3635 64453f7e 2020-11-21 stsp s->last_displayed_line = view->nlines;
3636 64453f7e 2020-11-21 stsp diff_view_indicate_progress(view);
3637 64453f7e 2020-11-21 stsp err = create_diff(s);
3638 64453f7e 2020-11-21 stsp break;
3639 1e37a5c2 2019-05-12 jcs case 'k':
3640 1e37a5c2 2019-05-12 jcs case KEY_UP:
3641 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
3642 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
3643 1e37a5c2 2019-05-12 jcs break;
3644 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3645 a60a9dc4 2019-05-13 jcs case CTRL('b'):
3646 00ba99a7 2019-05-12 jcs if (s->first_displayed_line == 1)
3647 26ed57b2 2018-05-19 stsp break;
3648 1e37a5c2 2019-05-12 jcs i = 0;
3649 1e37a5c2 2019-05-12 jcs while (i++ < view->nlines - 1 &&
3650 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
3651 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
3652 1e37a5c2 2019-05-12 jcs break;
3653 1e37a5c2 2019-05-12 jcs case 'j':
3654 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3655 1e37a5c2 2019-05-12 jcs if (!s->eof)
3656 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
3657 1e37a5c2 2019-05-12 jcs break;
3658 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
3659 a60a9dc4 2019-05-13 jcs case CTRL('f'):
3660 1e37a5c2 2019-05-12 jcs case ' ':
3661 00ba99a7 2019-05-12 jcs if (s->eof)
3662 1e37a5c2 2019-05-12 jcs break;
3663 1e37a5c2 2019-05-12 jcs i = 0;
3664 1e37a5c2 2019-05-12 jcs while (!s->eof && i++ < view->nlines - 1) {
3665 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->f);
3666 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
3667 826082fe 2020-12-10 stsp if (linelen == -1) {
3668 826082fe 2020-12-10 stsp if (feof(s->f)) {
3669 826082fe 2020-12-10 stsp s->eof = 1;
3670 826082fe 2020-12-10 stsp } else
3671 826082fe 2020-12-10 stsp err = got_ferror(s->f, GOT_ERR_IO);
3672 34bc9ec9 2019-02-22 stsp break;
3673 826082fe 2020-12-10 stsp }
3674 1e37a5c2 2019-05-12 jcs }
3675 826082fe 2020-12-10 stsp free(line);
3676 1e37a5c2 2019-05-12 jcs break;
3677 1e37a5c2 2019-05-12 jcs case '[':
3678 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
3679 1e37a5c2 2019-05-12 jcs s->diff_context--;
3680 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3681 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3682 27829c9e 2020-11-21 stsp if (s->first_displayed_line + view->nlines - 1 >
3683 27829c9e 2020-11-21 stsp s->nlines) {
3684 27829c9e 2020-11-21 stsp s->first_displayed_line = 1;
3685 27829c9e 2020-11-21 stsp s->last_displayed_line = view->nlines;
3686 27829c9e 2020-11-21 stsp }
3687 1e37a5c2 2019-05-12 jcs }
3688 1e37a5c2 2019-05-12 jcs break;
3689 1e37a5c2 2019-05-12 jcs case ']':
3690 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
3691 1e37a5c2 2019-05-12 jcs s->diff_context++;
3692 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3693 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3694 1e37a5c2 2019-05-12 jcs }
3695 1e37a5c2 2019-05-12 jcs break;
3696 1e37a5c2 2019-05-12 jcs case '<':
3697 1e37a5c2 2019-05-12 jcs case ',':
3698 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
3699 48ae06ee 2018-10-18 stsp break;
3700 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
3701 5a8b5076 2020-12-05 stsp old_selected_entry = ls->selected_entry;
3702 6524637e 2019-02-21 stsp
3703 e78dc838 2020-12-04 stsp err = input_log_view(NULL, s->log_view, KEY_UP);
3704 1e37a5c2 2019-05-12 jcs if (err)
3705 1e37a5c2 2019-05-12 jcs break;
3706 15a087fe 2019-02-21 stsp
3707 5a8b5076 2020-12-05 stsp if (old_selected_entry == ls->selected_entry)
3708 5a8b5076 2020-12-05 stsp break;
3709 5a8b5076 2020-12-05 stsp
3710 2b779855 2020-12-05 naddy err = set_selected_commit(s, ls->selected_entry);
3711 1e37a5c2 2019-05-12 jcs if (err)
3712 1e37a5c2 2019-05-12 jcs break;
3713 15a087fe 2019-02-21 stsp
3714 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
3715 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
3716 15a087fe 2019-02-21 stsp
3717 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3718 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3719 1e37a5c2 2019-05-12 jcs break;
3720 1e37a5c2 2019-05-12 jcs case '>':
3721 1e37a5c2 2019-05-12 jcs case '.':
3722 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
3723 15a087fe 2019-02-21 stsp break;
3724 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
3725 5a8b5076 2020-12-05 stsp old_selected_entry = ls->selected_entry;
3726 5e224a3e 2019-02-22 stsp
3727 e78dc838 2020-12-04 stsp err = input_log_view(NULL, s->log_view, KEY_DOWN);
3728 1e37a5c2 2019-05-12 jcs if (err)
3729 5a8b5076 2020-12-05 stsp break;
3730 5a8b5076 2020-12-05 stsp
3731 5a8b5076 2020-12-05 stsp if (old_selected_entry == ls->selected_entry)
3732 1e37a5c2 2019-05-12 jcs break;
3733 15a087fe 2019-02-21 stsp
3734 2b779855 2020-12-05 naddy err = set_selected_commit(s, ls->selected_entry);
3735 1e37a5c2 2019-05-12 jcs if (err)
3736 1e37a5c2 2019-05-12 jcs break;
3737 15a087fe 2019-02-21 stsp
3738 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
3739 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
3740 1e37a5c2 2019-05-12 jcs
3741 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
3742 1e37a5c2 2019-05-12 jcs err = create_diff(s);
3743 1e37a5c2 2019-05-12 jcs break;
3744 1e37a5c2 2019-05-12 jcs default:
3745 1e37a5c2 2019-05-12 jcs break;
3746 26ed57b2 2018-05-19 stsp }
3747 e5a0f69f 2018-08-18 stsp
3748 bcbd79e2 2018-08-19 stsp return err;
3749 26ed57b2 2018-05-19 stsp }
3750 26ed57b2 2018-05-19 stsp
3751 4ed7e80c 2018-05-20 stsp static const struct got_error *
3752 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
3753 9f7d7167 2018-04-29 stsp {
3754 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
3755 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
3756 a273ac94 2020-02-23 naddy struct got_worktree *worktree = NULL;
3757 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
3758 a273ac94 2020-02-23 naddy char *repo_path = NULL, *cwd = NULL;
3759 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
3760 3dbaef42 2020-11-24 stsp char *label1 = NULL, *label2 = NULL;
3761 3dbaef42 2020-11-24 stsp int diff_context = 3, ignore_whitespace = 0;
3762 64453f7e 2020-11-21 stsp int ch, force_text_diff = 0;
3763 3dbaef42 2020-11-24 stsp const char *errstr;
3764 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
3765 70ac5f84 2019-03-28 stsp
3766 3dbaef42 2020-11-24 stsp while ((ch = getopt(argc, argv, "aC:r:w")) != -1) {
3767 26ed57b2 2018-05-19 stsp switch (ch) {
3768 64453f7e 2020-11-21 stsp case 'a':
3769 64453f7e 2020-11-21 stsp force_text_diff = 1;
3770 3dbaef42 2020-11-24 stsp break;
3771 3dbaef42 2020-11-24 stsp case 'C':
3772 3dbaef42 2020-11-24 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
3773 3dbaef42 2020-11-24 stsp &errstr);
3774 3dbaef42 2020-11-24 stsp if (errstr != NULL)
3775 3dbaef42 2020-11-24 stsp err(1, "-C option %s", errstr);
3776 64453f7e 2020-11-21 stsp break;
3777 09b5bff8 2020-02-23 naddy case 'r':
3778 09b5bff8 2020-02-23 naddy repo_path = realpath(optarg, NULL);
3779 09b5bff8 2020-02-23 naddy if (repo_path == NULL)
3780 09b5bff8 2020-02-23 naddy return got_error_from_errno2("realpath",
3781 09b5bff8 2020-02-23 naddy optarg);
3782 3dbaef42 2020-11-24 stsp got_path_strip_trailing_slashes(repo_path);
3783 09b5bff8 2020-02-23 naddy break;
3784 3dbaef42 2020-11-24 stsp case 'w':
3785 3dbaef42 2020-11-24 stsp ignore_whitespace = 1;
3786 3dbaef42 2020-11-24 stsp break;
3787 26ed57b2 2018-05-19 stsp default:
3788 17020d27 2019-03-07 stsp usage_diff();
3789 26ed57b2 2018-05-19 stsp /* NOTREACHED */
3790 26ed57b2 2018-05-19 stsp }
3791 26ed57b2 2018-05-19 stsp }
3792 26ed57b2 2018-05-19 stsp
3793 26ed57b2 2018-05-19 stsp argc -= optind;
3794 26ed57b2 2018-05-19 stsp argv += optind;
3795 26ed57b2 2018-05-19 stsp
3796 26ed57b2 2018-05-19 stsp if (argc == 0) {
3797 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
3798 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
3799 15a94983 2018-12-23 stsp id_str1 = argv[0];
3800 15a94983 2018-12-23 stsp id_str2 = argv[1];
3801 26ed57b2 2018-05-19 stsp } else
3802 26ed57b2 2018-05-19 stsp usage_diff();
3803 eb6600df 2019-01-04 stsp
3804 a273ac94 2020-02-23 naddy if (repo_path == NULL) {
3805 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
3806 c156c7a4 2020-12-18 stsp if (cwd == NULL)
3807 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
3808 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
3809 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3810 c156c7a4 2020-12-18 stsp goto done;
3811 a273ac94 2020-02-23 naddy if (worktree)
3812 a273ac94 2020-02-23 naddy repo_path =
3813 a273ac94 2020-02-23 naddy strdup(got_worktree_get_repo_path(worktree));
3814 a273ac94 2020-02-23 naddy else
3815 a273ac94 2020-02-23 naddy repo_path = strdup(cwd);
3816 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
3817 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
3818 c156c7a4 2020-12-18 stsp goto done;
3819 c156c7a4 2020-12-18 stsp }
3820 a273ac94 2020-02-23 naddy }
3821 a273ac94 2020-02-23 naddy
3822 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3823 eb6600df 2019-01-04 stsp if (error)
3824 eb6600df 2019-01-04 stsp goto done;
3825 26ed57b2 2018-05-19 stsp
3826 a273ac94 2020-02-23 naddy init_curses();
3827 a273ac94 2020-02-23 naddy
3828 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
3829 51a10b52 2020-12-26 stsp if (error)
3830 51a10b52 2020-12-26 stsp goto done;
3831 51a10b52 2020-12-26 stsp
3832 51a10b52 2020-12-26 stsp error = tog_load_refs(repo);
3833 26ed57b2 2018-05-19 stsp if (error)
3834 26ed57b2 2018-05-19 stsp goto done;
3835 26ed57b2 2018-05-19 stsp
3836 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
3837 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
3838 26ed57b2 2018-05-19 stsp if (error)
3839 26ed57b2 2018-05-19 stsp goto done;
3840 26ed57b2 2018-05-19 stsp
3841 3dbaef42 2020-11-24 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
3842 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, &tog_refs, repo);
3843 26ed57b2 2018-05-19 stsp if (error)
3844 26ed57b2 2018-05-19 stsp goto done;
3845 26ed57b2 2018-05-19 stsp
3846 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
3847 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
3848 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
3849 ea5e7bb5 2018-08-01 stsp goto done;
3850 ea5e7bb5 2018-08-01 stsp }
3851 3dbaef42 2020-11-24 stsp error = open_diff_view(view, id1, id2, label1, label2, diff_context,
3852 78756c87 2020-11-24 stsp ignore_whitespace, force_text_diff, NULL, repo);
3853 5dc9f4bc 2018-08-04 stsp if (error)
3854 5dc9f4bc 2018-08-04 stsp goto done;
3855 e5a0f69f 2018-08-18 stsp error = view_loop(view);
3856 26ed57b2 2018-05-19 stsp done:
3857 3dbaef42 2020-11-24 stsp free(label1);
3858 3dbaef42 2020-11-24 stsp free(label2);
3859 c02c541e 2019-03-29 stsp free(repo_path);
3860 a273ac94 2020-02-23 naddy free(cwd);
3861 921be706 2019-06-28 stsp if (repo)
3862 921be706 2019-06-28 stsp got_repo_close(repo);
3863 a273ac94 2020-02-23 naddy if (worktree)
3864 a273ac94 2020-02-23 naddy got_worktree_close(worktree);
3865 51a10b52 2020-12-26 stsp tog_free_refs();
3866 26ed57b2 2018-05-19 stsp return error;
3867 9f7d7167 2018-04-29 stsp }
3868 9f7d7167 2018-04-29 stsp
3869 4ed7e80c 2018-05-20 stsp __dead static void
3870 9f7d7167 2018-04-29 stsp usage_blame(void)
3871 9f7d7167 2018-04-29 stsp {
3872 80ddbec8 2018-04-29 stsp endwin();
3873 69069811 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
3874 9f7d7167 2018-04-29 stsp getprogname());
3875 9f7d7167 2018-04-29 stsp exit(1);
3876 9f7d7167 2018-04-29 stsp }
3877 84451b3e 2018-07-10 stsp
3878 84451b3e 2018-07-10 stsp struct tog_blame_line {
3879 84451b3e 2018-07-10 stsp int annotated;
3880 84451b3e 2018-07-10 stsp struct got_object_id *id;
3881 84451b3e 2018-07-10 stsp };
3882 9f7d7167 2018-04-29 stsp
3883 4ed7e80c 2018-05-20 stsp static const struct got_error *
3884 4f7c3e5e 2020-12-01 naddy draw_blame(struct tog_view *view)
3885 84451b3e 2018-07-10 stsp {
3886 4f7c3e5e 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
3887 4f7c3e5e 2020-12-01 naddy struct tog_blame *blame = &s->blame;
3888 4f7c3e5e 2020-12-01 naddy regmatch_t *regmatch = &view->regmatch;
3889 84451b3e 2018-07-10 stsp const struct got_error *err;
3890 84451b3e 2018-07-10 stsp int lineno = 0, nprinted = 0;
3891 826082fe 2020-12-10 stsp char *line = NULL;
3892 826082fe 2020-12-10 stsp size_t linesize = 0;
3893 826082fe 2020-12-10 stsp ssize_t linelen;
3894 84451b3e 2018-07-10 stsp wchar_t *wline;
3895 27a741e5 2019-09-11 stsp int width;
3896 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
3897 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
3898 ab089a2a 2018-07-12 stsp char *id_str;
3899 11b20872 2019-11-08 stsp struct tog_color *tc;
3900 ab089a2a 2018-07-12 stsp
3901 4f7c3e5e 2020-12-01 naddy err = got_object_id_str(&id_str, s->blamed_commit->id);
3902 ab089a2a 2018-07-12 stsp if (err)
3903 ab089a2a 2018-07-12 stsp return err;
3904 84451b3e 2018-07-10 stsp
3905 4f7c3e5e 2020-12-01 naddy rewind(blame->f);
3906 f7d12f7e 2018-08-01 stsp werase(view->window);
3907 84451b3e 2018-07-10 stsp
3908 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
3909 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3910 ab089a2a 2018-07-12 stsp free(id_str);
3911 ab089a2a 2018-07-12 stsp return err;
3912 ab089a2a 2018-07-12 stsp }
3913 ab089a2a 2018-07-12 stsp
3914 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3915 ab089a2a 2018-07-12 stsp free(line);
3916 2550e4c3 2018-07-13 stsp line = NULL;
3917 1cae65b4 2019-09-22 stsp if (err)
3918 1cae65b4 2019-09-22 stsp return err;
3919 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3920 a3404814 2018-09-02 stsp wstandout(view->window);
3921 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
3922 11b20872 2019-11-08 stsp if (tc)
3923 11b20872 2019-11-08 stsp wattr_on(view->window,
3924 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
3925 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3926 11b20872 2019-11-08 stsp if (tc)
3927 11b20872 2019-11-08 stsp wattr_off(view->window,
3928 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
3929 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3930 a3404814 2018-09-02 stsp wstandend(view->window);
3931 2550e4c3 2018-07-13 stsp free(wline);
3932 2550e4c3 2018-07-13 stsp wline = NULL;
3933 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3934 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3935 ab089a2a 2018-07-12 stsp
3936 084063cd 2018-07-12 stsp if (asprintf(&line, "[%d/%d] %s%s",
3937 4f7c3e5e 2020-12-01 naddy s->first_displayed_line - 1 + s->selected_line, blame->nlines,
3938 4f7c3e5e 2020-12-01 naddy s->blame_complete ? "" : "annotating... ", s->path) == -1) {
3939 ab089a2a 2018-07-12 stsp free(id_str);
3940 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3941 ab089a2a 2018-07-12 stsp }
3942 ab089a2a 2018-07-12 stsp free(id_str);
3943 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3944 3f60a8ef 2018-07-10 stsp free(line);
3945 2550e4c3 2018-07-13 stsp line = NULL;
3946 3f60a8ef 2018-07-10 stsp if (err)
3947 3f60a8ef 2018-07-10 stsp return err;
3948 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3949 2550e4c3 2018-07-13 stsp free(wline);
3950 2550e4c3 2018-07-13 stsp wline = NULL;
3951 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3952 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3953 3f60a8ef 2018-07-10 stsp
3954 4f7c3e5e 2020-12-01 naddy s->eof = 0;
3955 4f7c3e5e 2020-12-01 naddy while (nprinted < view->nlines - 2) {
3956 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, blame->f);
3957 826082fe 2020-12-10 stsp if (linelen == -1) {
3958 826082fe 2020-12-10 stsp if (feof(blame->f)) {
3959 826082fe 2020-12-10 stsp s->eof = 1;
3960 826082fe 2020-12-10 stsp break;
3961 826082fe 2020-12-10 stsp }
3962 84451b3e 2018-07-10 stsp free(line);
3963 826082fe 2020-12-10 stsp return got_ferror(blame->f, GOT_ERR_IO);
3964 84451b3e 2018-07-10 stsp }
3965 826082fe 2020-12-10 stsp if (++lineno < s->first_displayed_line)
3966 826082fe 2020-12-10 stsp continue;
3967 84451b3e 2018-07-10 stsp
3968 4f7c3e5e 2020-12-01 naddy if (view->focussed && nprinted == s->selected_line - 1)
3969 f7d12f7e 2018-08-01 stsp wstandout(view->window);
3970 b700b5d6 2018-07-10 stsp
3971 4f7c3e5e 2020-12-01 naddy if (blame->nlines > 0) {
3972 4f7c3e5e 2020-12-01 naddy blame_line = &blame->lines[lineno - 1];
3973 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
3974 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
3975 27a741e5 2019-09-11 stsp !(view->focussed &&
3976 4f7c3e5e 2020-12-01 naddy nprinted == s->selected_line - 1)) {
3977 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
3978 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
3979 8d0fe45a 2019-08-12 stsp char *id_str;
3980 8d0fe45a 2019-08-12 stsp err = got_object_id_str(&id_str, blame_line->id);
3981 8d0fe45a 2019-08-12 stsp if (err) {
3982 8d0fe45a 2019-08-12 stsp free(line);
3983 8d0fe45a 2019-08-12 stsp return err;
3984 8d0fe45a 2019-08-12 stsp }
3985 4f7c3e5e 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
3986 11b20872 2019-11-08 stsp if (tc)
3987 11b20872 2019-11-08 stsp wattr_on(view->window,
3988 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
3989 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
3990 11b20872 2019-11-08 stsp if (tc)
3991 11b20872 2019-11-08 stsp wattr_off(view->window,
3992 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
3993 8d0fe45a 2019-08-12 stsp free(id_str);
3994 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
3995 8d0fe45a 2019-08-12 stsp } else {
3996 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
3997 8d0fe45a 2019-08-12 stsp prev_id = NULL;
3998 84451b3e 2018-07-10 stsp }
3999 ee41ec32 2018-07-10 stsp } else {
4000 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
4001 ee41ec32 2018-07-10 stsp prev_id = NULL;
4002 ee41ec32 2018-07-10 stsp }
4003 84451b3e 2018-07-10 stsp
4004 4f7c3e5e 2020-12-01 naddy if (view->focussed && nprinted == s->selected_line - 1)
4005 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4006 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
4007 27a741e5 2019-09-11 stsp
4008 41605754 2020-11-12 stsp if (view->ncols <= 9) {
4009 41605754 2020-11-12 stsp width = 9;
4010 41605754 2020-11-12 stsp wline = wcsdup(L"");
4011 41605754 2020-11-12 stsp if (wline == NULL) {
4012 41605754 2020-11-12 stsp err = got_error_from_errno("wcsdup");
4013 41605754 2020-11-12 stsp free(line);
4014 41605754 2020-11-12 stsp return err;
4015 41605754 2020-11-12 stsp }
4016 4f7c3e5e 2020-12-01 naddy } else if (s->first_displayed_line + nprinted ==
4017 4f7c3e5e 2020-12-01 naddy s->matched_line &&
4018 41605754 2020-11-12 stsp regmatch->rm_so >= 0 && regmatch->rm_so < regmatch->rm_eo) {
4019 41605754 2020-11-12 stsp err = add_matched_line(&width, line, view->ncols - 9, 9,
4020 41605754 2020-11-12 stsp view->window, regmatch);
4021 41605754 2020-11-12 stsp if (err) {
4022 41605754 2020-11-12 stsp free(line);
4023 41605754 2020-11-12 stsp return err;
4024 41605754 2020-11-12 stsp }
4025 41605754 2020-11-12 stsp width += 9;
4026 41605754 2020-11-12 stsp } else {
4027 41605754 2020-11-12 stsp err = format_line(&wline, &width, line,
4028 41605754 2020-11-12 stsp view->ncols - 9, 9);
4029 41605754 2020-11-12 stsp waddwstr(view->window, wline);
4030 41605754 2020-11-12 stsp free(wline);
4031 41605754 2020-11-12 stsp wline = NULL;
4032 41605754 2020-11-12 stsp width += 9;
4033 41605754 2020-11-12 stsp }
4034 41605754 2020-11-12 stsp
4035 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
4036 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
4037 84451b3e 2018-07-10 stsp if (++nprinted == 1)
4038 4f7c3e5e 2020-12-01 naddy s->first_displayed_line = lineno;
4039 84451b3e 2018-07-10 stsp }
4040 826082fe 2020-12-10 stsp free(line);
4041 4f7c3e5e 2020-12-01 naddy s->last_displayed_line = lineno;
4042 84451b3e 2018-07-10 stsp
4043 1a57306a 2018-09-02 stsp view_vborder(view);
4044 84451b3e 2018-07-10 stsp
4045 84451b3e 2018-07-10 stsp return NULL;
4046 84451b3e 2018-07-10 stsp }
4047 84451b3e 2018-07-10 stsp
4048 84451b3e 2018-07-10 stsp static const struct got_error *
4049 84451b3e 2018-07-10 stsp blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
4050 84451b3e 2018-07-10 stsp {
4051 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
4052 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
4053 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
4054 1a76625f 2018-10-22 stsp int errcode;
4055 84451b3e 2018-07-10 stsp
4056 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
4057 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
4058 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
4059 84451b3e 2018-07-10 stsp
4060 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4061 1a76625f 2018-10-22 stsp if (errcode)
4062 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
4063 84451b3e 2018-07-10 stsp
4064 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
4065 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
4066 d68a0a7d 2018-07-10 stsp goto done;
4067 d68a0a7d 2018-07-10 stsp }
4068 d68a0a7d 2018-07-10 stsp
4069 d68a0a7d 2018-07-10 stsp if (lineno == -1)
4070 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
4071 d68a0a7d 2018-07-10 stsp
4072 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
4073 d68a0a7d 2018-07-10 stsp if (line->annotated)
4074 d68a0a7d 2018-07-10 stsp goto done;
4075 d68a0a7d 2018-07-10 stsp
4076 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
4077 84451b3e 2018-07-10 stsp if (line->id == NULL) {
4078 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4079 84451b3e 2018-07-10 stsp goto done;
4080 84451b3e 2018-07-10 stsp }
4081 84451b3e 2018-07-10 stsp line->annotated = 1;
4082 84451b3e 2018-07-10 stsp done:
4083 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4084 1a76625f 2018-10-22 stsp if (errcode)
4085 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
4086 84451b3e 2018-07-10 stsp return err;
4087 84451b3e 2018-07-10 stsp }
4088 84451b3e 2018-07-10 stsp
4089 84451b3e 2018-07-10 stsp static void *
4090 84451b3e 2018-07-10 stsp blame_thread(void *arg)
4091 84451b3e 2018-07-10 stsp {
4092 18430de3 2018-07-10 stsp const struct got_error *err;
4093 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
4094 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
4095 1a76625f 2018-10-22 stsp int errcode;
4096 18430de3 2018-07-10 stsp
4097 61266923 2020-01-14 stsp err = block_signals_used_by_main_thread();
4098 61266923 2020-01-14 stsp if (err)
4099 61266923 2020-01-14 stsp return (void *)err;
4100 61266923 2020-01-14 stsp
4101 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
4102 fc06ba56 2019-08-22 stsp blame_cb, ta->cb_args, ta->cancel_cb, ta->cancel_arg);
4103 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
4104 fc06ba56 2019-08-22 stsp err = NULL;
4105 18430de3 2018-07-10 stsp
4106 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4107 1a76625f 2018-10-22 stsp if (errcode)
4108 2af4a041 2019-05-11 jcs return (void *)got_error_set_errno(errcode,
4109 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
4110 18430de3 2018-07-10 stsp
4111 c9beca56 2018-07-22 stsp got_repo_close(ta->repo);
4112 c9beca56 2018-07-22 stsp ta->repo = NULL;
4113 c9beca56 2018-07-22 stsp *ta->complete = 1;
4114 18430de3 2018-07-10 stsp
4115 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4116 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
4117 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
4118 18430de3 2018-07-10 stsp
4119 18430de3 2018-07-10 stsp return (void *)err;
4120 84451b3e 2018-07-10 stsp }
4121 84451b3e 2018-07-10 stsp
4122 245d91c1 2018-07-12 stsp static struct got_object_id *
4123 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
4124 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
4125 245d91c1 2018-07-12 stsp {
4126 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
4127 8d0fe45a 2019-08-12 stsp
4128 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
4129 8d0fe45a 2019-08-12 stsp return NULL;
4130 b880a918 2018-07-10 stsp
4131 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
4132 245d91c1 2018-07-12 stsp if (!line->annotated)
4133 245d91c1 2018-07-12 stsp return NULL;
4134 245d91c1 2018-07-12 stsp
4135 245d91c1 2018-07-12 stsp return line->id;
4136 b880a918 2018-07-10 stsp }
4137 245d91c1 2018-07-12 stsp
4138 b880a918 2018-07-10 stsp static const struct got_error *
4139 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
4140 a70480e0 2018-06-23 stsp {
4141 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
4142 245d91c1 2018-07-12 stsp int i;
4143 245d91c1 2018-07-12 stsp
4144 245d91c1 2018-07-12 stsp if (blame->thread) {
4145 1a76625f 2018-10-22 stsp int errcode;
4146 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4147 1a76625f 2018-10-22 stsp if (errcode)
4148 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
4149 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
4150 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
4151 1a76625f 2018-10-22 stsp if (errcode)
4152 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
4153 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4154 1a76625f 2018-10-22 stsp if (errcode)
4155 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
4156 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
4157 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
4158 245d91c1 2018-07-12 stsp err = NULL;
4159 245d91c1 2018-07-12 stsp blame->thread = NULL;
4160 245d91c1 2018-07-12 stsp }
4161 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
4162 245d91c1 2018-07-12 stsp got_repo_close(blame->thread_args.repo);
4163 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
4164 245d91c1 2018-07-12 stsp }
4165 245d91c1 2018-07-12 stsp if (blame->f) {
4166 fb43ecf1 2019-02-11 stsp if (fclose(blame->f) != 0 && err == NULL)
4167 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4168 245d91c1 2018-07-12 stsp blame->f = NULL;
4169 245d91c1 2018-07-12 stsp }
4170 57670559 2018-12-23 stsp if (blame->lines) {
4171 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
4172 57670559 2018-12-23 stsp free(blame->lines[i].id);
4173 57670559 2018-12-23 stsp free(blame->lines);
4174 57670559 2018-12-23 stsp blame->lines = NULL;
4175 57670559 2018-12-23 stsp }
4176 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
4177 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
4178 245d91c1 2018-07-12 stsp
4179 245d91c1 2018-07-12 stsp return err;
4180 245d91c1 2018-07-12 stsp }
4181 245d91c1 2018-07-12 stsp
4182 245d91c1 2018-07-12 stsp static const struct got_error *
4183 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
4184 fc06ba56 2019-08-22 stsp {
4185 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
4186 fc06ba56 2019-08-22 stsp int *done = arg;
4187 fc06ba56 2019-08-22 stsp int errcode;
4188 fc06ba56 2019-08-22 stsp
4189 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
4190 fc06ba56 2019-08-22 stsp if (errcode)
4191 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
4192 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
4193 fc06ba56 2019-08-22 stsp
4194 fc06ba56 2019-08-22 stsp if (*done)
4195 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
4196 fc06ba56 2019-08-22 stsp
4197 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
4198 fc06ba56 2019-08-22 stsp if (errcode)
4199 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
4200 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
4201 fc06ba56 2019-08-22 stsp
4202 fc06ba56 2019-08-22 stsp return err;
4203 fc06ba56 2019-08-22 stsp }
4204 fc06ba56 2019-08-22 stsp
4205 fc06ba56 2019-08-22 stsp static const struct got_error *
4206 a5388363 2020-12-01 naddy run_blame(struct tog_view *view)
4207 245d91c1 2018-07-12 stsp {
4208 a5388363 2020-12-01 naddy struct tog_blame_view_state *s = &view->state.blame;
4209 a5388363 2020-12-01 naddy struct tog_blame *blame = &s->blame;
4210 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
4211 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
4212 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
4213 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
4214 15a94983 2018-12-23 stsp int obj_type;
4215 a70480e0 2018-06-23 stsp
4216 a5388363 2020-12-01 naddy err = got_object_id_by_path(&obj_id, s->repo, s->blamed_commit->id,
4217 a5388363 2020-12-01 naddy s->path);
4218 27d434c2 2018-09-15 stsp if (err)
4219 15a94983 2018-12-23 stsp return err;
4220 27d434c2 2018-09-15 stsp
4221 a5388363 2020-12-01 naddy err = got_object_get_type(&obj_type, s->repo, obj_id);
4222 84451b3e 2018-07-10 stsp if (err)
4223 84451b3e 2018-07-10 stsp goto done;
4224 27d434c2 2018-09-15 stsp
4225 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
4226 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
4227 84451b3e 2018-07-10 stsp goto done;
4228 84451b3e 2018-07-10 stsp }
4229 a70480e0 2018-06-23 stsp
4230 a5388363 2020-12-01 naddy err = got_object_open_as_blob(&blob, s->repo, obj_id, 8192);
4231 a70480e0 2018-06-23 stsp if (err)
4232 a70480e0 2018-06-23 stsp goto done;
4233 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
4234 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
4235 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
4236 84451b3e 2018-07-10 stsp goto done;
4237 84451b3e 2018-07-10 stsp }
4238 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
4239 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
4240 b02560ec 2019-08-19 stsp if (err || blame->nlines == 0)
4241 84451b3e 2018-07-10 stsp goto done;
4242 b02560ec 2019-08-19 stsp
4243 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
4244 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
4245 b02560ec 2019-08-19 stsp blame->nlines--;
4246 a70480e0 2018-06-23 stsp
4247 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
4248 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
4249 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
4250 84451b3e 2018-07-10 stsp goto done;
4251 84451b3e 2018-07-10 stsp }
4252 a70480e0 2018-06-23 stsp
4253 a5388363 2020-12-01 naddy err = got_repo_open(&thread_repo, got_repo_get_path(s->repo), NULL);
4254 bd24772e 2018-07-11 stsp if (err)
4255 bd24772e 2018-07-11 stsp goto done;
4256 bd24772e 2018-07-11 stsp
4257 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
4258 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
4259 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
4260 a5388363 2020-12-01 naddy blame->cb_args.commit_id = got_object_id_dup(s->blamed_commit->id);
4261 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
4262 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4263 245d91c1 2018-07-12 stsp goto done;
4264 245d91c1 2018-07-12 stsp }
4265 a5388363 2020-12-01 naddy blame->cb_args.quit = &s->done;
4266 245d91c1 2018-07-12 stsp
4267 a5388363 2020-12-01 naddy blame->thread_args.path = s->path;
4268 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
4269 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
4270 a5388363 2020-12-01 naddy blame->thread_args.complete = &s->blame_complete;
4271 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
4272 a5388363 2020-12-01 naddy blame->thread_args.cancel_arg = &s->done;
4273 a5388363 2020-12-01 naddy s->blame_complete = 0;
4274 f5a09613 2020-12-13 naddy
4275 f5a09613 2020-12-13 naddy if (s->first_displayed_line + view->nlines - 1 > blame->nlines) {
4276 f5a09613 2020-12-13 naddy s->first_displayed_line = 1;
4277 f5a09613 2020-12-13 naddy s->last_displayed_line = view->nlines;
4278 f5a09613 2020-12-13 naddy s->selected_line = 1;
4279 f5a09613 2020-12-13 naddy }
4280 245d91c1 2018-07-12 stsp
4281 245d91c1 2018-07-12 stsp done:
4282 245d91c1 2018-07-12 stsp if (blob)
4283 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
4284 27d434c2 2018-09-15 stsp free(obj_id);
4285 245d91c1 2018-07-12 stsp if (err)
4286 245d91c1 2018-07-12 stsp stop_blame(blame);
4287 245d91c1 2018-07-12 stsp return err;
4288 245d91c1 2018-07-12 stsp }
4289 245d91c1 2018-07-12 stsp
4290 245d91c1 2018-07-12 stsp static const struct got_error *
4291 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
4292 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
4293 245d91c1 2018-07-12 stsp {
4294 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
4295 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
4296 dbc6a6b6 2018-07-12 stsp
4297 fb2756b9 2018-08-04 stsp SIMPLEQ_INIT(&s->blamed_commits);
4298 245d91c1 2018-07-12 stsp
4299 c4843652 2019-08-12 stsp s->path = strdup(path);
4300 c4843652 2019-08-12 stsp if (s->path == NULL)
4301 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
4302 c4843652 2019-08-12 stsp
4303 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
4304 c4843652 2019-08-12 stsp if (err) {
4305 c4843652 2019-08-12 stsp free(s->path);
4306 7cbe629d 2018-08-04 stsp return err;
4307 c4843652 2019-08-12 stsp }
4308 245d91c1 2018-07-12 stsp
4309 fb2756b9 2018-08-04 stsp SIMPLEQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
4310 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
4311 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
4312 fb2756b9 2018-08-04 stsp s->selected_line = 1;
4313 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
4314 fb2756b9 2018-08-04 stsp s->repo = repo;
4315 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
4316 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
4317 7cbe629d 2018-08-04 stsp
4318 11b20872 2019-11-08 stsp SIMPLEQ_INIT(&s->colors);
4319 11b20872 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
4320 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^", TOG_COLOR_COMMIT,
4321 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
4322 11b20872 2019-11-08 stsp if (err)
4323 11b20872 2019-11-08 stsp return err;
4324 11b20872 2019-11-08 stsp }
4325 11b20872 2019-11-08 stsp
4326 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
4327 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
4328 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
4329 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
4330 6c4c42e0 2019-06-24 stsp view->search_next = search_next_blame_view;
4331 e5a0f69f 2018-08-18 stsp
4332 a5388363 2020-12-01 naddy return run_blame(view);
4333 7cbe629d 2018-08-04 stsp }
4334 7cbe629d 2018-08-04 stsp
4335 e5a0f69f 2018-08-18 stsp static const struct got_error *
4336 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
4337 7cbe629d 2018-08-04 stsp {
4338 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
4339 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
4340 7cbe629d 2018-08-04 stsp
4341 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
4342 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
4343 e5a0f69f 2018-08-18 stsp
4344 fb2756b9 2018-08-04 stsp while (!SIMPLEQ_EMPTY(&s->blamed_commits)) {
4345 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
4346 fb2756b9 2018-08-04 stsp blamed_commit = SIMPLEQ_FIRST(&s->blamed_commits);
4347 fb2756b9 2018-08-04 stsp SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
4348 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
4349 7cbe629d 2018-08-04 stsp }
4350 e5a0f69f 2018-08-18 stsp
4351 e5a0f69f 2018-08-18 stsp free(s->path);
4352 11b20872 2019-11-08 stsp free_colors(&s->colors);
4353 e5a0f69f 2018-08-18 stsp
4354 e5a0f69f 2018-08-18 stsp return err;
4355 7cbe629d 2018-08-04 stsp }
4356 7cbe629d 2018-08-04 stsp
4357 7cbe629d 2018-08-04 stsp static const struct got_error *
4358 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
4359 6c4c42e0 2019-06-24 stsp {
4360 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
4361 6c4c42e0 2019-06-24 stsp
4362 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
4363 6c4c42e0 2019-06-24 stsp return NULL;
4364 6c4c42e0 2019-06-24 stsp }
4365 6c4c42e0 2019-06-24 stsp
4366 6c4c42e0 2019-06-24 stsp static const struct got_error *
4367 6c4c42e0 2019-06-24 stsp search_next_blame_view(struct tog_view *view)
4368 6c4c42e0 2019-06-24 stsp {
4369 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
4370 6c4c42e0 2019-06-24 stsp int lineno;
4371 826082fe 2020-12-10 stsp char *line = NULL;
4372 826082fe 2020-12-10 stsp size_t linesize = 0;
4373 826082fe 2020-12-10 stsp ssize_t linelen;
4374 6c4c42e0 2019-06-24 stsp
4375 6c4c42e0 2019-06-24 stsp if (!view->searching) {
4376 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4377 6c4c42e0 2019-06-24 stsp return NULL;
4378 6c4c42e0 2019-06-24 stsp }
4379 6c4c42e0 2019-06-24 stsp
4380 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
4381 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4382 2246482e 2019-06-25 stsp lineno = s->matched_line + 1;
4383 6c4c42e0 2019-06-24 stsp else
4384 2246482e 2019-06-25 stsp lineno = s->matched_line - 1;
4385 6c4c42e0 2019-06-24 stsp } else {
4386 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4387 6c4c42e0 2019-06-24 stsp lineno = 1;
4388 6c4c42e0 2019-06-24 stsp else
4389 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
4390 6c4c42e0 2019-06-24 stsp }
4391 6c4c42e0 2019-06-24 stsp
4392 6c4c42e0 2019-06-24 stsp while (1) {
4393 6c4c42e0 2019-06-24 stsp off_t offset;
4394 6c4c42e0 2019-06-24 stsp
4395 6c4c42e0 2019-06-24 stsp if (lineno <= 0 || lineno > s->blame.nlines) {
4396 6c4c42e0 2019-06-24 stsp if (s->matched_line == 0) {
4397 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4398 6c4c42e0 2019-06-24 stsp break;
4399 6c4c42e0 2019-06-24 stsp }
4400 2246482e 2019-06-25 stsp
4401 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4402 6c4c42e0 2019-06-24 stsp lineno = 1;
4403 6c4c42e0 2019-06-24 stsp else
4404 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
4405 6c4c42e0 2019-06-24 stsp }
4406 6c4c42e0 2019-06-24 stsp
4407 6c4c42e0 2019-06-24 stsp offset = s->blame.line_offsets[lineno - 1];
4408 6c4c42e0 2019-06-24 stsp if (fseeko(s->blame.f, offset, SEEK_SET) != 0) {
4409 6c4c42e0 2019-06-24 stsp free(line);
4410 6c4c42e0 2019-06-24 stsp return got_error_from_errno("fseeko");
4411 6c4c42e0 2019-06-24 stsp }
4412 826082fe 2020-12-10 stsp linelen = getline(&line, &linesize, s->blame.f);
4413 826082fe 2020-12-10 stsp if (linelen != -1 &&
4414 41605754 2020-11-12 stsp match_line(line, &view->regex, 1, &view->regmatch)) {
4415 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
4416 6c4c42e0 2019-06-24 stsp s->matched_line = lineno;
4417 6c4c42e0 2019-06-24 stsp break;
4418 6c4c42e0 2019-06-24 stsp }
4419 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
4420 6c4c42e0 2019-06-24 stsp lineno++;
4421 6c4c42e0 2019-06-24 stsp else
4422 6c4c42e0 2019-06-24 stsp lineno--;
4423 6c4c42e0 2019-06-24 stsp }
4424 826082fe 2020-12-10 stsp free(line);
4425 6c4c42e0 2019-06-24 stsp
4426 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
4427 6c4c42e0 2019-06-24 stsp s->first_displayed_line = s->matched_line;
4428 6c4c42e0 2019-06-24 stsp s->selected_line = 1;
4429 6c4c42e0 2019-06-24 stsp }
4430 6c4c42e0 2019-06-24 stsp
4431 6c4c42e0 2019-06-24 stsp return NULL;
4432 6c4c42e0 2019-06-24 stsp }
4433 6c4c42e0 2019-06-24 stsp
4434 6c4c42e0 2019-06-24 stsp static const struct got_error *
4435 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
4436 7cbe629d 2018-08-04 stsp {
4437 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
4438 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
4439 2b380cc8 2018-10-24 stsp int errcode;
4440 2b380cc8 2018-10-24 stsp
4441 2b380cc8 2018-10-24 stsp if (s->blame.thread == NULL) {
4442 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
4443 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
4444 2b380cc8 2018-10-24 stsp if (errcode)
4445 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
4446 51fe7530 2019-08-19 stsp
4447 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
4448 2b380cc8 2018-10-24 stsp }
4449 e5a0f69f 2018-08-18 stsp
4450 51fe7530 2019-08-19 stsp if (s->blame_complete)
4451 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
4452 51fe7530 2019-08-19 stsp
4453 4f7c3e5e 2020-12-01 naddy err = draw_blame(view);
4454 e5a0f69f 2018-08-18 stsp
4455 669b5ffa 2018-10-07 stsp view_vborder(view);
4456 e5a0f69f 2018-08-18 stsp return err;
4457 e5a0f69f 2018-08-18 stsp }
4458 e5a0f69f 2018-08-18 stsp
4459 e5a0f69f 2018-08-18 stsp static const struct got_error *
4460 e78dc838 2020-12-04 stsp input_blame_view(struct tog_view **new_view, struct tog_view *view, int ch)
4461 e5a0f69f 2018-08-18 stsp {
4462 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
4463 7cbe629d 2018-08-04 stsp struct tog_view *diff_view;
4464 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
4465 669b5ffa 2018-10-07 stsp int begin_x = 0;
4466 7cbe629d 2018-08-04 stsp
4467 e5a0f69f 2018-08-18 stsp switch (ch) {
4468 1e37a5c2 2019-05-12 jcs case 'q':
4469 1e37a5c2 2019-05-12 jcs s->done = 1;
4470 1e37a5c2 2019-05-12 jcs break;
4471 1e37a5c2 2019-05-12 jcs case 'k':
4472 1e37a5c2 2019-05-12 jcs case KEY_UP:
4473 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
4474 1e37a5c2 2019-05-12 jcs s->selected_line--;
4475 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
4476 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
4477 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
4478 1e37a5c2 2019-05-12 jcs break;
4479 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
4480 ea025d1d 2020-02-22 naddy case CTRL('b'):
4481 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
4482 1e37a5c2 2019-05-12 jcs s->selected_line = 1;
4483 e5a0f69f 2018-08-18 stsp break;
4484 1e37a5c2 2019-05-12 jcs }
4485 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > view->nlines - 2)
4486 1e37a5c2 2019-05-12 jcs s->first_displayed_line -=
4487 1e37a5c2 2019-05-12 jcs (view->nlines - 2);
4488 1e37a5c2 2019-05-12 jcs else
4489 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
4490 1e37a5c2 2019-05-12 jcs break;
4491 1e37a5c2 2019-05-12 jcs case 'j':
4492 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
4493 1e37a5c2 2019-05-12 jcs if (s->selected_line < view->nlines - 2 &&
4494 1e37a5c2 2019-05-12 jcs s->first_displayed_line +
4495 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
4496 1e37a5c2 2019-05-12 jcs s->selected_line++;
4497 1e37a5c2 2019-05-12 jcs else if (s->last_displayed_line <
4498 1e37a5c2 2019-05-12 jcs s->blame.nlines)
4499 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
4500 1e37a5c2 2019-05-12 jcs break;
4501 1e37a5c2 2019-05-12 jcs case 'b':
4502 1e37a5c2 2019-05-12 jcs case 'p': {
4503 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
4504 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
4505 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
4506 1e37a5c2 2019-05-12 jcs if (id == NULL)
4507 e5a0f69f 2018-08-18 stsp break;
4508 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
4509 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit;
4510 15a94983 2018-12-23 stsp struct got_object_qid *pid;
4511 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
4512 1e37a5c2 2019-05-12 jcs int obj_type;
4513 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
4514 1e37a5c2 2019-05-12 jcs s->repo, id);
4515 e5a0f69f 2018-08-18 stsp if (err)
4516 e5a0f69f 2018-08-18 stsp break;
4517 15a94983 2018-12-23 stsp pid = SIMPLEQ_FIRST(
4518 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
4519 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
4520 15a94983 2018-12-23 stsp got_object_commit_close(commit);
4521 e5a0f69f 2018-08-18 stsp break;
4522 e5a0f69f 2018-08-18 stsp }
4523 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
4524 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
4525 1e37a5c2 2019-05-12 jcs pid->id, s->path);
4526 e5a0f69f 2018-08-18 stsp if (err) {
4527 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
4528 1e37a5c2 2019-05-12 jcs err = NULL;
4529 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4530 e5a0f69f 2018-08-18 stsp break;
4531 e5a0f69f 2018-08-18 stsp }
4532 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
4533 1e37a5c2 2019-05-12 jcs blob_id);
4534 1e37a5c2 2019-05-12 jcs free(blob_id);
4535 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
4536 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
4537 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4538 e5a0f69f 2018-08-18 stsp break;
4539 1e37a5c2 2019-05-12 jcs }
4540 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
4541 1e37a5c2 2019-05-12 jcs pid->id);
4542 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4543 1e37a5c2 2019-05-12 jcs } else {
4544 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
4545 1e37a5c2 2019-05-12 jcs s->blamed_commit->id) == 0)
4546 1e37a5c2 2019-05-12 jcs break;
4547 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
4548 1e37a5c2 2019-05-12 jcs id);
4549 1e37a5c2 2019-05-12 jcs }
4550 1e37a5c2 2019-05-12 jcs if (err)
4551 e5a0f69f 2018-08-18 stsp break;
4552 1e37a5c2 2019-05-12 jcs s->done = 1;
4553 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
4554 1e37a5c2 2019-05-12 jcs s->done = 0;
4555 1e37a5c2 2019-05-12 jcs if (thread_err)
4556 1e37a5c2 2019-05-12 jcs break;
4557 1e37a5c2 2019-05-12 jcs SIMPLEQ_INSERT_HEAD(&s->blamed_commits,
4558 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
4559 a5388363 2020-12-01 naddy err = run_blame(view);
4560 1e37a5c2 2019-05-12 jcs if (err)
4561 1e37a5c2 2019-05-12 jcs break;
4562 1e37a5c2 2019-05-12 jcs break;
4563 1e37a5c2 2019-05-12 jcs }
4564 1e37a5c2 2019-05-12 jcs case 'B': {
4565 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
4566 1e37a5c2 2019-05-12 jcs first = SIMPLEQ_FIRST(&s->blamed_commits);
4567 1e37a5c2 2019-05-12 jcs if (!got_object_id_cmp(first->id, s->commit_id))
4568 1e37a5c2 2019-05-12 jcs break;
4569 1e37a5c2 2019-05-12 jcs s->done = 1;
4570 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
4571 1e37a5c2 2019-05-12 jcs s->done = 0;
4572 1e37a5c2 2019-05-12 jcs if (thread_err)
4573 1e37a5c2 2019-05-12 jcs break;
4574 1e37a5c2 2019-05-12 jcs SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
4575 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
4576 1e37a5c2 2019-05-12 jcs s->blamed_commit =
4577 1e37a5c2 2019-05-12 jcs SIMPLEQ_FIRST(&s->blamed_commits);
4578 a5388363 2020-12-01 naddy err = run_blame(view);
4579 1e37a5c2 2019-05-12 jcs if (err)
4580 1e37a5c2 2019-05-12 jcs break;
4581 1e37a5c2 2019-05-12 jcs break;
4582 1e37a5c2 2019-05-12 jcs }
4583 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
4584 1e37a5c2 2019-05-12 jcs case '\r': {
4585 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
4586 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
4587 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
4588 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
4589 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
4590 1e37a5c2 2019-05-12 jcs if (id == NULL)
4591 1e37a5c2 2019-05-12 jcs break;
4592 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
4593 1e37a5c2 2019-05-12 jcs if (err)
4594 1e37a5c2 2019-05-12 jcs break;
4595 1e37a5c2 2019-05-12 jcs pid = SIMPLEQ_FIRST(
4596 1e37a5c2 2019-05-12 jcs got_object_commit_get_parent_ids(commit));
4597 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
4598 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
4599 1e37a5c2 2019-05-12 jcs diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
4600 1e37a5c2 2019-05-12 jcs if (diff_view == NULL) {
4601 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4602 638f9024 2019-05-13 stsp err = got_error_from_errno("view_open");
4603 1e37a5c2 2019-05-12 jcs break;
4604 15a94983 2018-12-23 stsp }
4605 1e37a5c2 2019-05-12 jcs err = open_diff_view(diff_view, pid ? pid->id : NULL,
4606 78756c87 2020-11-24 stsp id, NULL, NULL, 3, 0, 0, NULL, s->repo);
4607 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
4608 1e37a5c2 2019-05-12 jcs if (err) {
4609 1e37a5c2 2019-05-12 jcs view_close(diff_view);
4610 1e37a5c2 2019-05-12 jcs break;
4611 1e37a5c2 2019-05-12 jcs }
4612 e78dc838 2020-12-04 stsp view->focussed = 0;
4613 e78dc838 2020-12-04 stsp diff_view->focussed = 1;
4614 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
4615 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
4616 1e37a5c2 2019-05-12 jcs if (err)
4617 34bc9ec9 2019-02-22 stsp break;
4618 72a9cb46 2020-12-03 stsp view_set_child(view, diff_view);
4619 e78dc838 2020-12-04 stsp view->focus_child = 1;
4620 1e37a5c2 2019-05-12 jcs } else
4621 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
4622 1e37a5c2 2019-05-12 jcs if (err)
4623 e5a0f69f 2018-08-18 stsp break;
4624 1e37a5c2 2019-05-12 jcs break;
4625 1e37a5c2 2019-05-12 jcs }
4626 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
4627 ea025d1d 2020-02-22 naddy case CTRL('f'):
4628 1e37a5c2 2019-05-12 jcs case ' ':
4629 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
4630 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
4631 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
4632 e5a0f69f 2018-08-18 stsp break;
4633 1e37a5c2 2019-05-12 jcs }
4634 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
4635 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
4636 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
4637 1e37a5c2 2019-05-12 jcs view->nlines - 2);
4638 e5a0f69f 2018-08-18 stsp break;
4639 1e37a5c2 2019-05-12 jcs }
4640 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line + view->nlines - 2
4641 1e37a5c2 2019-05-12 jcs <= s->blame.nlines)
4642 1e37a5c2 2019-05-12 jcs s->first_displayed_line +=
4643 1e37a5c2 2019-05-12 jcs view->nlines - 2;
4644 1e37a5c2 2019-05-12 jcs else
4645 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
4646 1e37a5c2 2019-05-12 jcs s->blame.nlines -
4647 1e37a5c2 2019-05-12 jcs (view->nlines - 3);
4648 1e37a5c2 2019-05-12 jcs break;
4649 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
4650 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
4651 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
4652 1e37a5c2 2019-05-12 jcs view->nlines - 2);
4653 1e37a5c2 2019-05-12 jcs }
4654 1e37a5c2 2019-05-12 jcs break;
4655 1e37a5c2 2019-05-12 jcs default:
4656 1e37a5c2 2019-05-12 jcs break;
4657 a70480e0 2018-06-23 stsp }
4658 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
4659 a70480e0 2018-06-23 stsp }
4660 a70480e0 2018-06-23 stsp
4661 a70480e0 2018-06-23 stsp static const struct got_error *
4662 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
4663 9f7d7167 2018-04-29 stsp {
4664 a70480e0 2018-06-23 stsp const struct got_error *error;
4665 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
4666 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
4667 f135c941 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
4668 0587e10c 2020-07-23 stsp char *link_target = NULL;
4669 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
4670 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
4671 a70480e0 2018-06-23 stsp int ch;
4672 e1cd8fed 2018-08-01 stsp struct tog_view *view;
4673 a70480e0 2018-06-23 stsp
4674 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
4675 a70480e0 2018-06-23 stsp switch (ch) {
4676 a70480e0 2018-06-23 stsp case 'c':
4677 a70480e0 2018-06-23 stsp commit_id_str = optarg;
4678 a70480e0 2018-06-23 stsp break;
4679 69069811 2018-08-02 stsp case 'r':
4680 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
4681 69069811 2018-08-02 stsp if (repo_path == NULL)
4682 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
4683 9ba1d308 2019-10-21 stsp optarg);
4684 69069811 2018-08-02 stsp break;
4685 a70480e0 2018-06-23 stsp default:
4686 17020d27 2019-03-07 stsp usage_blame();
4687 a70480e0 2018-06-23 stsp /* NOTREACHED */
4688 a70480e0 2018-06-23 stsp }
4689 a70480e0 2018-06-23 stsp }
4690 a70480e0 2018-06-23 stsp
4691 a70480e0 2018-06-23 stsp argc -= optind;
4692 a70480e0 2018-06-23 stsp argv += optind;
4693 a70480e0 2018-06-23 stsp
4694 f135c941 2020-02-20 stsp if (argc != 1)
4695 a70480e0 2018-06-23 stsp usage_blame();
4696 6962eb72 2020-02-20 stsp
4697 69069811 2018-08-02 stsp if (repo_path == NULL) {
4698 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
4699 c156c7a4 2020-12-18 stsp if (cwd == NULL)
4700 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
4701 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
4702 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4703 c156c7a4 2020-12-18 stsp goto done;
4704 f135c941 2020-02-20 stsp if (worktree)
4705 eb41ed75 2019-02-05 stsp repo_path =
4706 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
4707 f135c941 2020-02-20 stsp else
4708 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
4709 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
4710 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
4711 c156c7a4 2020-12-18 stsp goto done;
4712 c156c7a4 2020-12-18 stsp }
4713 f135c941 2020-02-20 stsp }
4714 a915003a 2019-02-05 stsp
4715 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4716 c02c541e 2019-03-29 stsp if (error != NULL)
4717 8e94dd5b 2019-01-04 stsp goto done;
4718 69069811 2018-08-02 stsp
4719 f135c941 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv, repo,
4720 f135c941 2020-02-20 stsp worktree);
4721 c02c541e 2019-03-29 stsp if (error)
4722 92205607 2019-01-04 stsp goto done;
4723 69069811 2018-08-02 stsp
4724 f135c941 2020-02-20 stsp init_curses();
4725 f135c941 2020-02-20 stsp
4726 f135c941 2020-02-20 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
4727 51a10b52 2020-12-26 stsp if (error)
4728 51a10b52 2020-12-26 stsp goto done;
4729 51a10b52 2020-12-26 stsp
4730 51a10b52 2020-12-26 stsp error = tog_load_refs(repo);
4731 eb41ed75 2019-02-05 stsp if (error)
4732 69069811 2018-08-02 stsp goto done;
4733 a70480e0 2018-06-23 stsp
4734 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
4735 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
4736 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
4737 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
4738 a70480e0 2018-06-23 stsp if (error != NULL)
4739 66b4983c 2018-06-23 stsp goto done;
4740 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
4741 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
4742 a70480e0 2018-06-23 stsp } else {
4743 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
4744 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
4745 a70480e0 2018-06-23 stsp }
4746 a19e88aa 2018-06-23 stsp if (error != NULL)
4747 8b473291 2019-02-21 stsp goto done;
4748 8b473291 2019-02-21 stsp
4749 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
4750 e1cd8fed 2018-08-01 stsp if (view == NULL) {
4751 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4752 e1cd8fed 2018-08-01 stsp goto done;
4753 e1cd8fed 2018-08-01 stsp }
4754 0587e10c 2020-07-23 stsp
4755 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
4756 0587e10c 2020-07-23 stsp commit_id, repo);
4757 7cbe629d 2018-08-04 stsp if (error)
4758 7cbe629d 2018-08-04 stsp goto done;
4759 0587e10c 2020-07-23 stsp
4760 0587e10c 2020-07-23 stsp error = open_blame_view(view, link_target ? link_target : in_repo_path,
4761 78756c87 2020-11-24 stsp commit_id, repo);
4762 0587e10c 2020-07-23 stsp if (error)
4763 0587e10c 2020-07-23 stsp goto done;
4764 12314ad4 2019-08-31 stsp if (worktree) {
4765 12314ad4 2019-08-31 stsp /* Release work tree lock. */
4766 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
4767 12314ad4 2019-08-31 stsp worktree = NULL;
4768 12314ad4 2019-08-31 stsp }
4769 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4770 a70480e0 2018-06-23 stsp done:
4771 69069811 2018-08-02 stsp free(repo_path);
4772 f135c941 2020-02-20 stsp free(in_repo_path);
4773 0587e10c 2020-07-23 stsp free(link_target);
4774 69069811 2018-08-02 stsp free(cwd);
4775 a70480e0 2018-06-23 stsp free(commit_id);
4776 eb41ed75 2019-02-05 stsp if (worktree)
4777 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
4778 a70480e0 2018-06-23 stsp if (repo)
4779 a70480e0 2018-06-23 stsp got_repo_close(repo);
4780 51a10b52 2020-12-26 stsp tog_free_refs();
4781 a70480e0 2018-06-23 stsp return error;
4782 ffd1d5e5 2018-06-23 stsp }
4783 ffd1d5e5 2018-06-23 stsp
4784 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4785 d86d3b18 2020-12-01 naddy draw_tree_entries(struct tog_view *view, const char *parent_path)
4786 ffd1d5e5 2018-06-23 stsp {
4787 d86d3b18 2020-12-01 naddy struct tog_tree_view_state *s = &view->state.tree;
4788 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
4789 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
4790 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
4791 f26dddb7 2019-11-08 stsp struct tog_color *tc;
4792 56e0773d 2019-11-28 stsp int width, n, i, nentries;
4793 d86d3b18 2020-12-01 naddy int limit = view->nlines;
4794 ffd1d5e5 2018-06-23 stsp
4795 d86d3b18 2020-12-01 naddy s->ndisplayed = 0;
4796 ffd1d5e5 2018-06-23 stsp
4797 f7d12f7e 2018-08-01 stsp werase(view->window);
4798 ffd1d5e5 2018-06-23 stsp
4799 ffd1d5e5 2018-06-23 stsp if (limit == 0)
4800 ffd1d5e5 2018-06-23 stsp return NULL;
4801 ffd1d5e5 2018-06-23 stsp
4802 d86d3b18 2020-12-01 naddy err = format_line(&wline, &width, s->tree_label, view->ncols, 0);
4803 ffd1d5e5 2018-06-23 stsp if (err)
4804 ffd1d5e5 2018-06-23 stsp return err;
4805 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4806 a3404814 2018-09-02 stsp wstandout(view->window);
4807 d86d3b18 2020-12-01 naddy tc = get_color(&s->colors, TOG_COLOR_COMMIT);
4808 11b20872 2019-11-08 stsp if (tc)
4809 11b20872 2019-11-08 stsp wattr_on(view->window,
4810 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4811 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4812 11b20872 2019-11-08 stsp if (tc)
4813 11b20872 2019-11-08 stsp wattr_off(view->window,
4814 11b20872 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4815 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
4816 a3404814 2018-09-02 stsp wstandend(view->window);
4817 2550e4c3 2018-07-13 stsp free(wline);
4818 2550e4c3 2018-07-13 stsp wline = NULL;
4819 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4820 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4821 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4822 ffd1d5e5 2018-06-23 stsp return NULL;
4823 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, parent_path, view->ncols, 0);
4824 ce52c690 2018-06-23 stsp if (err)
4825 ce52c690 2018-06-23 stsp return err;
4826 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4827 2550e4c3 2018-07-13 stsp free(wline);
4828 2550e4c3 2018-07-13 stsp wline = NULL;
4829 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4830 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4831 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4832 ffd1d5e5 2018-06-23 stsp return NULL;
4833 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4834 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
4835 a1eca9bb 2018-06-23 stsp return NULL;
4836 ffd1d5e5 2018-06-23 stsp
4837 d86d3b18 2020-12-01 naddy if (s->first_displayed_entry == NULL) {
4838 d86d3b18 2020-12-01 naddy te = got_object_tree_get_first_entry(s->tree);
4839 d86d3b18 2020-12-01 naddy if (s->selected == 0) {
4840 0cf4efb1 2018-09-29 stsp if (view->focussed)
4841 0cf4efb1 2018-09-29 stsp wstandout(view->window);
4842 d86d3b18 2020-12-01 naddy s->selected_entry = NULL;
4843 ffd1d5e5 2018-06-23 stsp }
4844 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
4845 d86d3b18 2020-12-01 naddy if (s->selected == 0 && view->focussed)
4846 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4847 d86d3b18 2020-12-01 naddy s->ndisplayed++;
4848 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4849 ffd1d5e5 2018-06-23 stsp return NULL;
4850 ffd1d5e5 2018-06-23 stsp n = 1;
4851 ffd1d5e5 2018-06-23 stsp } else {
4852 ffd1d5e5 2018-06-23 stsp n = 0;
4853 d86d3b18 2020-12-01 naddy te = s->first_displayed_entry;
4854 ffd1d5e5 2018-06-23 stsp }
4855 ffd1d5e5 2018-06-23 stsp
4856 d86d3b18 2020-12-01 naddy nentries = got_object_tree_get_nentries(s->tree);
4857 56e0773d 2019-11-28 stsp for (i = got_tree_entry_get_index(te); i < nentries; i++) {
4858 0d6c6ee3 2020-05-20 stsp char *line = NULL, *id_str = NULL, *link_target = NULL;
4859 848d6979 2019-08-12 stsp const char *modestr = "";
4860 56e0773d 2019-11-28 stsp mode_t mode;
4861 1d13200f 2018-07-12 stsp
4862 d86d3b18 2020-12-01 naddy te = got_object_tree_get_entry(s->tree, i);
4863 56e0773d 2019-11-28 stsp mode = got_tree_entry_get_mode(te);
4864 56e0773d 2019-11-28 stsp
4865 d86d3b18 2020-12-01 naddy if (s->show_ids) {
4866 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
4867 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
4868 1d13200f 2018-07-12 stsp if (err)
4869 638f9024 2019-05-13 stsp return got_error_from_errno(
4870 230a42bd 2019-05-11 jcs "got_object_id_str");
4871 1d13200f 2018-07-12 stsp }
4872 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
4873 63c5ca5d 2019-08-24 stsp modestr = "$";
4874 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
4875 0d6c6ee3 2020-05-20 stsp int i;
4876 0d6c6ee3 2020-05-20 stsp
4877 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target,
4878 d86d3b18 2020-12-01 naddy te, s->repo);
4879 0d6c6ee3 2020-05-20 stsp if (err) {
4880 0d6c6ee3 2020-05-20 stsp free(id_str);
4881 0d6c6ee3 2020-05-20 stsp return err;
4882 0d6c6ee3 2020-05-20 stsp }
4883 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
4884 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
4885 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
4886 0d6c6ee3 2020-05-20 stsp }
4887 848d6979 2019-08-12 stsp modestr = "@";
4888 0d6c6ee3 2020-05-20 stsp }
4889 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
4890 848d6979 2019-08-12 stsp modestr = "/";
4891 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
4892 848d6979 2019-08-12 stsp modestr = "*";
4893 0d6c6ee3 2020-05-20 stsp if (asprintf(&line, "%s %s%s%s%s", id_str ? id_str : "",
4894 0d6c6ee3 2020-05-20 stsp got_tree_entry_get_name(te), modestr,
4895 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "",
4896 0d6c6ee3 2020-05-20 stsp link_target ? link_target : "") == -1) {
4897 1d13200f 2018-07-12 stsp free(id_str);
4898 0d6c6ee3 2020-05-20 stsp free(link_target);
4899 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
4900 1d13200f 2018-07-12 stsp }
4901 1d13200f 2018-07-12 stsp free(id_str);
4902 0d6c6ee3 2020-05-20 stsp free(link_target);
4903 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
4904 ffd1d5e5 2018-06-23 stsp if (err) {
4905 ffd1d5e5 2018-06-23 stsp free(line);
4906 ffd1d5e5 2018-06-23 stsp break;
4907 ffd1d5e5 2018-06-23 stsp }
4908 d86d3b18 2020-12-01 naddy if (n == s->selected) {
4909 0cf4efb1 2018-09-29 stsp if (view->focussed)
4910 0cf4efb1 2018-09-29 stsp wstandout(view->window);
4911 d86d3b18 2020-12-01 naddy s->selected_entry = te;
4912 ffd1d5e5 2018-06-23 stsp }
4913 d86d3b18 2020-12-01 naddy tc = match_color(&s->colors, line);
4914 f26dddb7 2019-11-08 stsp if (tc)
4915 c0b01bdb 2019-11-08 stsp wattr_on(view->window,
4916 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4917 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4918 f26dddb7 2019-11-08 stsp if (tc)
4919 c0b01bdb 2019-11-08 stsp wattr_off(view->window,
4920 f26dddb7 2019-11-08 stsp COLOR_PAIR(tc->colorpair), NULL);
4921 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4922 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4923 d86d3b18 2020-12-01 naddy if (n == s->selected && view->focussed)
4924 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4925 ffd1d5e5 2018-06-23 stsp free(line);
4926 2550e4c3 2018-07-13 stsp free(wline);
4927 2550e4c3 2018-07-13 stsp wline = NULL;
4928 ffd1d5e5 2018-06-23 stsp n++;
4929 d86d3b18 2020-12-01 naddy s->ndisplayed++;
4930 d86d3b18 2020-12-01 naddy s->last_displayed_entry = te;
4931 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4932 ffd1d5e5 2018-06-23 stsp break;
4933 ffd1d5e5 2018-06-23 stsp }
4934 ffd1d5e5 2018-06-23 stsp
4935 ffd1d5e5 2018-06-23 stsp return err;
4936 ffd1d5e5 2018-06-23 stsp }
4937 ffd1d5e5 2018-06-23 stsp
4938 ffd1d5e5 2018-06-23 stsp static void
4939 3e135950 2020-12-01 naddy tree_scroll_up(struct tog_tree_view_state *s, int maxscroll)
4940 ffd1d5e5 2018-06-23 stsp {
4941 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
4942 694d3271 2020-12-01 naddy int isroot = s->tree == s->root;
4943 fa86c4bf 2020-11-29 stsp int i = 0;
4944 ffd1d5e5 2018-06-23 stsp
4945 694d3271 2020-12-01 naddy if (s->first_displayed_entry == NULL)
4946 ffd1d5e5 2018-06-23 stsp return;
4947 ffd1d5e5 2018-06-23 stsp
4948 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, s->first_displayed_entry);
4949 fa86c4bf 2020-11-29 stsp while (i++ < maxscroll) {
4950 fa86c4bf 2020-11-29 stsp if (te == NULL) {
4951 fa86c4bf 2020-11-29 stsp if (!isroot)
4952 694d3271 2020-12-01 naddy s->first_displayed_entry = NULL;
4953 fa86c4bf 2020-11-29 stsp break;
4954 fa86c4bf 2020-11-29 stsp }
4955 694d3271 2020-12-01 naddy s->first_displayed_entry = te;
4956 694d3271 2020-12-01 naddy te = got_tree_entry_get_prev(s->tree, te);
4957 ffd1d5e5 2018-06-23 stsp }
4958 ffd1d5e5 2018-06-23 stsp }
4959 ffd1d5e5 2018-06-23 stsp
4960 fa86c4bf 2020-11-29 stsp static void
4961 3e135950 2020-12-01 naddy tree_scroll_down(struct tog_tree_view_state *s, int maxscroll)
4962 ffd1d5e5 2018-06-23 stsp {
4963 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
4964 ffd1d5e5 2018-06-23 stsp int n = 0;
4965 ffd1d5e5 2018-06-23 stsp
4966 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
4967 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree,
4968 694d3271 2020-12-01 naddy s->first_displayed_entry);
4969 694d3271 2020-12-01 naddy else
4970 694d3271 2020-12-01 naddy next = got_object_tree_get_first_entry(s->tree);
4971 56e0773d 2019-11-28 stsp
4972 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
4973 768394f3 2019-01-24 stsp while (next && last && n++ < maxscroll) {
4974 694d3271 2020-12-01 naddy last = got_tree_entry_get_next(s->tree, last);
4975 768394f3 2019-01-24 stsp if (last) {
4976 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
4977 694d3271 2020-12-01 naddy next = got_tree_entry_get_next(s->tree, next);
4978 768394f3 2019-01-24 stsp }
4979 ffd1d5e5 2018-06-23 stsp }
4980 ffd1d5e5 2018-06-23 stsp }
4981 ffd1d5e5 2018-06-23 stsp
4982 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4983 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
4984 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
4985 ffd1d5e5 2018-06-23 stsp {
4986 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
4987 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
4988 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
4989 ffd1d5e5 2018-06-23 stsp
4990 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
4991 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(pt->selected_entry))
4992 56e0773d 2019-11-28 stsp + 1 /* slash */;
4993 ce52c690 2018-06-23 stsp if (te)
4994 56e0773d 2019-11-28 stsp len += strlen(got_tree_entry_get_name(te));
4995 ce52c690 2018-06-23 stsp
4996 ce52c690 2018-06-23 stsp *path = calloc(1, len);
4997 ffd1d5e5 2018-06-23 stsp if (path == NULL)
4998 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
4999 ffd1d5e5 2018-06-23 stsp
5000 ce52c690 2018-06-23 stsp (*path)[0] = '/';
5001 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
5002 d9765a41 2018-06-23 stsp while (pt) {
5003 56e0773d 2019-11-28 stsp const char *name = got_tree_entry_get_name(pt->selected_entry);
5004 56e0773d 2019-11-28 stsp if (strlcat(*path, name, len) >= len) {
5005 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
5006 cb2ebc8a 2018-06-23 stsp goto done;
5007 cb2ebc8a 2018-06-23 stsp }
5008 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
5009 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
5010 cb2ebc8a 2018-06-23 stsp goto done;
5011 cb2ebc8a 2018-06-23 stsp }
5012 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
5013 ffd1d5e5 2018-06-23 stsp }
5014 ce52c690 2018-06-23 stsp if (te) {
5015 56e0773d 2019-11-28 stsp if (strlcat(*path, got_tree_entry_get_name(te), len) >= len) {
5016 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
5017 ce52c690 2018-06-23 stsp goto done;
5018 ce52c690 2018-06-23 stsp }
5019 cb2ebc8a 2018-06-23 stsp }
5020 ce52c690 2018-06-23 stsp done:
5021 ce52c690 2018-06-23 stsp if (err) {
5022 ce52c690 2018-06-23 stsp free(*path);
5023 ce52c690 2018-06-23 stsp *path = NULL;
5024 ce52c690 2018-06-23 stsp }
5025 ce52c690 2018-06-23 stsp return err;
5026 ce52c690 2018-06-23 stsp }
5027 ce52c690 2018-06-23 stsp
5028 ce52c690 2018-06-23 stsp static const struct got_error *
5029 0cf4efb1 2018-09-29 stsp blame_tree_entry(struct tog_view **new_view, int begin_x,
5030 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
5031 78756c87 2020-11-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
5032 ce52c690 2018-06-23 stsp {
5033 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
5034 ce52c690 2018-06-23 stsp char *path;
5035 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
5036 a0de39f3 2019-08-09 stsp
5037 a0de39f3 2019-08-09 stsp *new_view = NULL;
5038 69efd4c4 2018-07-18 stsp
5039 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
5040 ce52c690 2018-06-23 stsp if (err)
5041 ce52c690 2018-06-23 stsp return err;
5042 ffd1d5e5 2018-06-23 stsp
5043 669b5ffa 2018-10-07 stsp blame_view = view_open(0, 0, 0, begin_x, TOG_VIEW_BLAME);
5044 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
5045 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
5046 83ce39e3 2019-08-12 stsp goto done;
5047 83ce39e3 2019-08-12 stsp }
5048 cdf1ee82 2018-08-01 stsp
5049 78756c87 2020-11-24 stsp err = open_blame_view(blame_view, path, commit_id, repo);
5050 e5a0f69f 2018-08-18 stsp if (err) {
5051 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
5052 fc06ba56 2019-08-22 stsp err = NULL;
5053 e5a0f69f 2018-08-18 stsp view_close(blame_view);
5054 e5a0f69f 2018-08-18 stsp } else
5055 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
5056 83ce39e3 2019-08-12 stsp done:
5057 83ce39e3 2019-08-12 stsp free(path);
5058 69efd4c4 2018-07-18 stsp return err;
5059 69efd4c4 2018-07-18 stsp }
5060 69efd4c4 2018-07-18 stsp
5061 69efd4c4 2018-07-18 stsp static const struct got_error *
5062 4e97c21c 2020-12-06 stsp log_selected_tree_entry(struct tog_view **new_view, int begin_x,
5063 4e97c21c 2020-12-06 stsp struct tog_tree_view_state *s)
5064 69efd4c4 2018-07-18 stsp {
5065 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
5066 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
5067 69efd4c4 2018-07-18 stsp char *path;
5068 a0de39f3 2019-08-09 stsp
5069 a0de39f3 2019-08-09 stsp *new_view = NULL;
5070 69efd4c4 2018-07-18 stsp
5071 669b5ffa 2018-10-07 stsp log_view = view_open(0, 0, 0, begin_x, TOG_VIEW_LOG);
5072 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
5073 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
5074 e5a0f69f 2018-08-18 stsp
5075 4e97c21c 2020-12-06 stsp err = tree_entry_path(&path, &s->parents, s->selected_entry);
5076 69efd4c4 2018-07-18 stsp if (err)
5077 69efd4c4 2018-07-18 stsp return err;
5078 69efd4c4 2018-07-18 stsp
5079 4e97c21c 2020-12-06 stsp err = open_log_view(log_view, s->commit_id, s->repo, s->head_ref_name,
5080 4e97c21c 2020-12-06 stsp path, 0);
5081 ba4f502b 2018-08-04 stsp if (err)
5082 e5a0f69f 2018-08-18 stsp view_close(log_view);
5083 e5a0f69f 2018-08-18 stsp else
5084 e5a0f69f 2018-08-18 stsp *new_view = log_view;
5085 cb2ebc8a 2018-06-23 stsp free(path);
5086 cb2ebc8a 2018-06-23 stsp return err;
5087 ffd1d5e5 2018-06-23 stsp }
5088 ffd1d5e5 2018-06-23 stsp
5089 ffd1d5e5 2018-06-23 stsp static const struct got_error *
5090 ad80ab7b 2018-08-04 stsp open_tree_view(struct tog_view *view, struct got_tree_object *root,
5091 4e97c21c 2020-12-06 stsp struct got_object_id *commit_id, const char *head_ref_name,
5092 4e97c21c 2020-12-06 stsp struct got_repository *repo)
5093 ffd1d5e5 2018-06-23 stsp {
5094 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
5095 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
5096 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
5097 ffd1d5e5 2018-06-23 stsp
5098 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
5099 ffd1d5e5 2018-06-23 stsp
5100 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
5101 ffd1d5e5 2018-06-23 stsp if (err != NULL)
5102 ffd1d5e5 2018-06-23 stsp goto done;
5103 ffd1d5e5 2018-06-23 stsp
5104 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
5105 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5106 ffd1d5e5 2018-06-23 stsp goto done;
5107 ffd1d5e5 2018-06-23 stsp }
5108 ffd1d5e5 2018-06-23 stsp
5109 fb2756b9 2018-08-04 stsp s->root = s->tree = root;
5110 56e0773d 2019-11-28 stsp s->first_displayed_entry = got_object_tree_get_entry(s->tree, 0);
5111 56e0773d 2019-11-28 stsp s->selected_entry = got_object_tree_get_entry(s->tree, 0);
5112 6484ec90 2018-09-29 stsp s->commit_id = got_object_id_dup(commit_id);
5113 6484ec90 2018-09-29 stsp if (s->commit_id == NULL) {
5114 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
5115 6484ec90 2018-09-29 stsp goto done;
5116 6484ec90 2018-09-29 stsp }
5117 9cd7cbd1 2020-12-07 stsp if (head_ref_name) {
5118 9cd7cbd1 2020-12-07 stsp s->head_ref_name = strdup(head_ref_name);
5119 9cd7cbd1 2020-12-07 stsp if (s->head_ref_name == NULL) {
5120 9cd7cbd1 2020-12-07 stsp err = got_error_from_errno("strdup");
5121 9cd7cbd1 2020-12-07 stsp goto done;
5122 9cd7cbd1 2020-12-07 stsp }
5123 9cd7cbd1 2020-12-07 stsp }
5124 fb2756b9 2018-08-04 stsp s->repo = repo;
5125 c0b01bdb 2019-11-08 stsp
5126 bddb1296 2019-11-08 stsp SIMPLEQ_INIT(&s->colors);
5127 c0b01bdb 2019-11-08 stsp
5128 c0b01bdb 2019-11-08 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5129 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\$$",
5130 11b20872 2019-11-08 stsp TOG_COLOR_TREE_SUBMODULE,
5131 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SUBMODULE"));
5132 c0b01bdb 2019-11-08 stsp if (err)
5133 c0b01bdb 2019-11-08 stsp goto done;
5134 11b20872 2019-11-08 stsp err = add_color(&s->colors, "@$", TOG_COLOR_TREE_SYMLINK,
5135 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_SYMLINK"));
5136 c0b01bdb 2019-11-08 stsp if (err) {
5137 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5138 c0b01bdb 2019-11-08 stsp goto done;
5139 c0b01bdb 2019-11-08 stsp }
5140 11b20872 2019-11-08 stsp err = add_color(&s->colors, "/$",
5141 11b20872 2019-11-08 stsp TOG_COLOR_TREE_DIRECTORY,
5142 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_DIRECTORY"));
5143 c0b01bdb 2019-11-08 stsp if (err) {
5144 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5145 c0b01bdb 2019-11-08 stsp goto done;
5146 c0b01bdb 2019-11-08 stsp }
5147 e5a0f69f 2018-08-18 stsp
5148 11b20872 2019-11-08 stsp err = add_color(&s->colors, "\\*$",
5149 11b20872 2019-11-08 stsp TOG_COLOR_TREE_EXECUTABLE,
5150 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_TREE_EXECUTABLE"));
5151 11b20872 2019-11-08 stsp if (err) {
5152 11b20872 2019-11-08 stsp free_colors(&s->colors);
5153 11b20872 2019-11-08 stsp goto done;
5154 11b20872 2019-11-08 stsp }
5155 11b20872 2019-11-08 stsp
5156 11b20872 2019-11-08 stsp err = add_color(&s->colors, "^$", TOG_COLOR_COMMIT,
5157 11b20872 2019-11-08 stsp get_color_value("TOG_COLOR_COMMIT"));
5158 c0b01bdb 2019-11-08 stsp if (err) {
5159 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5160 c0b01bdb 2019-11-08 stsp goto done;
5161 c0b01bdb 2019-11-08 stsp }
5162 c0b01bdb 2019-11-08 stsp }
5163 c0b01bdb 2019-11-08 stsp
5164 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
5165 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
5166 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
5167 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
5168 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
5169 ad80ab7b 2018-08-04 stsp done:
5170 ad80ab7b 2018-08-04 stsp free(commit_id_str);
5171 6484ec90 2018-09-29 stsp if (err) {
5172 fb2756b9 2018-08-04 stsp free(s->tree_label);
5173 6484ec90 2018-09-29 stsp s->tree_label = NULL;
5174 6484ec90 2018-09-29 stsp }
5175 ad80ab7b 2018-08-04 stsp return err;
5176 ad80ab7b 2018-08-04 stsp }
5177 ad80ab7b 2018-08-04 stsp
5178 e5a0f69f 2018-08-18 stsp static const struct got_error *
5179 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
5180 ad80ab7b 2018-08-04 stsp {
5181 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
5182 ad80ab7b 2018-08-04 stsp
5183 bddb1296 2019-11-08 stsp free_colors(&s->colors);
5184 fb2756b9 2018-08-04 stsp free(s->tree_label);
5185 6484ec90 2018-09-29 stsp s->tree_label = NULL;
5186 6484ec90 2018-09-29 stsp free(s->commit_id);
5187 6484ec90 2018-09-29 stsp s->commit_id = NULL;
5188 9cd7cbd1 2020-12-07 stsp free(s->head_ref_name);
5189 9cd7cbd1 2020-12-07 stsp s->head_ref_name = NULL;
5190 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
5191 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
5192 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
5193 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
5194 ad80ab7b 2018-08-04 stsp free(parent);
5195 ad80ab7b 2018-08-04 stsp
5196 ad80ab7b 2018-08-04 stsp }
5197 fb2756b9 2018-08-04 stsp if (s->tree != s->root)
5198 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
5199 e5a0f69f 2018-08-18 stsp got_object_tree_close(s->root);
5200 7c32bd05 2019-06-22 stsp return NULL;
5201 7c32bd05 2019-06-22 stsp }
5202 7c32bd05 2019-06-22 stsp
5203 7c32bd05 2019-06-22 stsp static const struct got_error *
5204 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
5205 7c32bd05 2019-06-22 stsp {
5206 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
5207 7c32bd05 2019-06-22 stsp
5208 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
5209 7c32bd05 2019-06-22 stsp return NULL;
5210 7c32bd05 2019-06-22 stsp }
5211 7c32bd05 2019-06-22 stsp
5212 7c32bd05 2019-06-22 stsp static int
5213 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
5214 7c32bd05 2019-06-22 stsp {
5215 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
5216 7c32bd05 2019-06-22 stsp
5217 56e0773d 2019-11-28 stsp return regexec(regex, got_tree_entry_get_name(te), 1, &regmatch,
5218 56e0773d 2019-11-28 stsp 0) == 0;
5219 7c32bd05 2019-06-22 stsp }
5220 7c32bd05 2019-06-22 stsp
5221 7c32bd05 2019-06-22 stsp static const struct got_error *
5222 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
5223 7c32bd05 2019-06-22 stsp {
5224 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
5225 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
5226 7c32bd05 2019-06-22 stsp
5227 7c32bd05 2019-06-22 stsp if (!view->searching) {
5228 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5229 7c32bd05 2019-06-22 stsp return NULL;
5230 7c32bd05 2019-06-22 stsp }
5231 7c32bd05 2019-06-22 stsp
5232 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
5233 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
5234 7c32bd05 2019-06-22 stsp if (s->selected_entry)
5235 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree,
5236 56e0773d 2019-11-28 stsp s->selected_entry);
5237 7c32bd05 2019-06-22 stsp else
5238 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
5239 56e0773d 2019-11-28 stsp } else {
5240 56e0773d 2019-11-28 stsp if (s->selected_entry == NULL)
5241 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
5242 56e0773d 2019-11-28 stsp else
5243 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree,
5244 56e0773d 2019-11-28 stsp s->selected_entry);
5245 7c32bd05 2019-06-22 stsp }
5246 7c32bd05 2019-06-22 stsp } else {
5247 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
5248 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
5249 56e0773d 2019-11-28 stsp else
5250 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
5251 7c32bd05 2019-06-22 stsp }
5252 7c32bd05 2019-06-22 stsp
5253 7c32bd05 2019-06-22 stsp while (1) {
5254 56e0773d 2019-11-28 stsp if (te == NULL) {
5255 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
5256 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5257 ac66afb8 2019-06-24 stsp return NULL;
5258 ac66afb8 2019-06-24 stsp }
5259 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
5260 56e0773d 2019-11-28 stsp te = got_object_tree_get_first_entry(s->tree);
5261 56e0773d 2019-11-28 stsp else
5262 56e0773d 2019-11-28 stsp te = got_object_tree_get_last_entry(s->tree);
5263 7c32bd05 2019-06-22 stsp }
5264 7c32bd05 2019-06-22 stsp
5265 56e0773d 2019-11-28 stsp if (match_tree_entry(te, &view->regex)) {
5266 8f4ed634 2020-03-26 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5267 56e0773d 2019-11-28 stsp s->matched_entry = te;
5268 7c32bd05 2019-06-22 stsp break;
5269 7c32bd05 2019-06-22 stsp }
5270 7c32bd05 2019-06-22 stsp
5271 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
5272 56e0773d 2019-11-28 stsp te = got_tree_entry_get_next(s->tree, te);
5273 56e0773d 2019-11-28 stsp else
5274 56e0773d 2019-11-28 stsp te = got_tree_entry_get_prev(s->tree, te);
5275 7c32bd05 2019-06-22 stsp }
5276 e5a0f69f 2018-08-18 stsp
5277 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
5278 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
5279 7c32bd05 2019-06-22 stsp s->selected = 0;
5280 7c32bd05 2019-06-22 stsp }
5281 7c32bd05 2019-06-22 stsp
5282 e5a0f69f 2018-08-18 stsp return NULL;
5283 ad80ab7b 2018-08-04 stsp }
5284 ad80ab7b 2018-08-04 stsp
5285 ad80ab7b 2018-08-04 stsp static const struct got_error *
5286 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
5287 ad80ab7b 2018-08-04 stsp {
5288 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
5289 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
5290 e5a0f69f 2018-08-18 stsp char *parent_path;
5291 ad80ab7b 2018-08-04 stsp
5292 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
5293 e5a0f69f 2018-08-18 stsp if (err)
5294 e5a0f69f 2018-08-18 stsp return err;
5295 ffd1d5e5 2018-06-23 stsp
5296 d86d3b18 2020-12-01 naddy err = draw_tree_entries(view, parent_path);
5297 e5a0f69f 2018-08-18 stsp free(parent_path);
5298 669b5ffa 2018-10-07 stsp
5299 669b5ffa 2018-10-07 stsp view_vborder(view);
5300 e5a0f69f 2018-08-18 stsp return err;
5301 e5a0f69f 2018-08-18 stsp }
5302 ce52c690 2018-06-23 stsp
5303 e5a0f69f 2018-08-18 stsp static const struct got_error *
5304 e78dc838 2020-12-04 stsp input_tree_view(struct tog_view **new_view, struct tog_view *view, int ch)
5305 e5a0f69f 2018-08-18 stsp {
5306 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
5307 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
5308 152c1c93 2020-11-29 stsp struct tog_view *log_view, *ref_view;
5309 fa86c4bf 2020-11-29 stsp int begin_x = 0;
5310 ffd1d5e5 2018-06-23 stsp
5311 e5a0f69f 2018-08-18 stsp switch (ch) {
5312 1e37a5c2 2019-05-12 jcs case 'i':
5313 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
5314 1e37a5c2 2019-05-12 jcs break;
5315 1e37a5c2 2019-05-12 jcs case 'l':
5316 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
5317 ffd1d5e5 2018-06-23 stsp break;
5318 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
5319 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
5320 4e97c21c 2020-12-06 stsp err = log_selected_tree_entry(&log_view, begin_x, s);
5321 e78dc838 2020-12-04 stsp view->focussed = 0;
5322 e78dc838 2020-12-04 stsp log_view->focussed = 1;
5323 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
5324 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
5325 1e37a5c2 2019-05-12 jcs if (err)
5326 1e37a5c2 2019-05-12 jcs return err;
5327 72a9cb46 2020-12-03 stsp view_set_child(view, log_view);
5328 e78dc838 2020-12-04 stsp view->focus_child = 1;
5329 1e37a5c2 2019-05-12 jcs } else
5330 1e37a5c2 2019-05-12 jcs *new_view = log_view;
5331 152c1c93 2020-11-29 stsp break;
5332 152c1c93 2020-11-29 stsp case 'r':
5333 152c1c93 2020-11-29 stsp if (view_is_parent_view(view))
5334 152c1c93 2020-11-29 stsp begin_x = view_split_begin_x(view->begin_x);
5335 152c1c93 2020-11-29 stsp ref_view = view_open(view->nlines, view->ncols,
5336 152c1c93 2020-11-29 stsp view->begin_y, begin_x, TOG_VIEW_REF);
5337 152c1c93 2020-11-29 stsp if (ref_view == NULL)
5338 152c1c93 2020-11-29 stsp return got_error_from_errno("view_open");
5339 152c1c93 2020-11-29 stsp err = open_ref_view(ref_view, s->repo);
5340 152c1c93 2020-11-29 stsp if (err) {
5341 152c1c93 2020-11-29 stsp view_close(ref_view);
5342 152c1c93 2020-11-29 stsp return err;
5343 152c1c93 2020-11-29 stsp }
5344 e78dc838 2020-12-04 stsp view->focussed = 0;
5345 e78dc838 2020-12-04 stsp ref_view->focussed = 1;
5346 152c1c93 2020-11-29 stsp if (view_is_parent_view(view)) {
5347 152c1c93 2020-11-29 stsp err = view_close_child(view);
5348 152c1c93 2020-11-29 stsp if (err)
5349 152c1c93 2020-11-29 stsp return err;
5350 72a9cb46 2020-12-03 stsp view_set_child(view, ref_view);
5351 e78dc838 2020-12-04 stsp view->focus_child = 1;
5352 152c1c93 2020-11-29 stsp } else
5353 152c1c93 2020-11-29 stsp *new_view = ref_view;
5354 1e37a5c2 2019-05-12 jcs break;
5355 1e37a5c2 2019-05-12 jcs case 'k':
5356 1e37a5c2 2019-05-12 jcs case KEY_UP:
5357 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
5358 1e37a5c2 2019-05-12 jcs s->selected--;
5359 fa86c4bf 2020-11-29 stsp break;
5360 1e37a5c2 2019-05-12 jcs }
5361 3e135950 2020-12-01 naddy tree_scroll_up(s, 1);
5362 1e37a5c2 2019-05-12 jcs break;
5363 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
5364 ea025d1d 2020-02-22 naddy case CTRL('b'):
5365 fa86c4bf 2020-11-29 stsp if (s->tree == s->root) {
5366 fa86c4bf 2020-11-29 stsp if (got_object_tree_get_first_entry(s->tree) ==
5367 fa86c4bf 2020-11-29 stsp s->first_displayed_entry)
5368 fa86c4bf 2020-11-29 stsp s->selected = 0;
5369 fa86c4bf 2020-11-29 stsp } else {
5370 fa86c4bf 2020-11-29 stsp if (s->first_displayed_entry == NULL)
5371 fa86c4bf 2020-11-29 stsp s->selected = 0;
5372 fa86c4bf 2020-11-29 stsp }
5373 3e135950 2020-12-01 naddy tree_scroll_up(s, MAX(0, view->nlines - 3));
5374 1e37a5c2 2019-05-12 jcs break;
5375 1e37a5c2 2019-05-12 jcs case 'j':
5376 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
5377 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
5378 1e37a5c2 2019-05-12 jcs s->selected++;
5379 1e37a5c2 2019-05-12 jcs break;
5380 1e37a5c2 2019-05-12 jcs }
5381 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
5382 56e0773d 2019-11-28 stsp == NULL)
5383 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
5384 1e37a5c2 2019-05-12 jcs break;
5385 3e135950 2020-12-01 naddy tree_scroll_down(s, 1);
5386 1e37a5c2 2019-05-12 jcs break;
5387 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
5388 ea025d1d 2020-02-22 naddy case CTRL('f'):
5389 56e0773d 2019-11-28 stsp if (got_tree_entry_get_next(s->tree, s->last_displayed_entry)
5390 1e37a5c2 2019-05-12 jcs == NULL) {
5391 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
5392 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
5393 1e37a5c2 2019-05-12 jcs s->selected = s->ndisplayed - 1;
5394 1e37a5c2 2019-05-12 jcs break;
5395 1e37a5c2 2019-05-12 jcs }
5396 3e135950 2020-12-01 naddy tree_scroll_down(s, view->nlines - 3);
5397 1e37a5c2 2019-05-12 jcs break;
5398 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
5399 1e37a5c2 2019-05-12 jcs case '\r':
5400 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
5401 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
5402 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
5403 1e37a5c2 2019-05-12 jcs /* user selected '..' */
5404 1e37a5c2 2019-05-12 jcs if (s->tree == s->root)
5405 1e37a5c2 2019-05-12 jcs break;
5406 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
5407 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
5408 1e37a5c2 2019-05-12 jcs entry);
5409 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
5410 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
5411 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
5412 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
5413 1e37a5c2 2019-05-12 jcs s->selected_entry =
5414 1e37a5c2 2019-05-12 jcs parent->selected_entry;
5415 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
5416 1e37a5c2 2019-05-12 jcs free(parent);
5417 56e0773d 2019-11-28 stsp } else if (S_ISDIR(got_tree_entry_get_mode(
5418 56e0773d 2019-11-28 stsp s->selected_entry))) {
5419 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
5420 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, s->repo,
5421 56e0773d 2019-11-28 stsp got_tree_entry_get_id(s->selected_entry));
5422 1e37a5c2 2019-05-12 jcs if (err)
5423 1e37a5c2 2019-05-12 jcs break;
5424 42a2230c 2020-12-01 naddy err = tree_view_visit_subtree(s, subtree);
5425 941e9f74 2019-05-21 stsp if (err) {
5426 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
5427 1e37a5c2 2019-05-12 jcs break;
5428 1e37a5c2 2019-05-12 jcs }
5429 56e0773d 2019-11-28 stsp } else if (S_ISREG(got_tree_entry_get_mode(
5430 56e0773d 2019-11-28 stsp s->selected_entry))) {
5431 1e37a5c2 2019-05-12 jcs struct tog_view *blame_view;
5432 1e37a5c2 2019-05-12 jcs int begin_x = view_is_parent_view(view) ?
5433 1e37a5c2 2019-05-12 jcs view_split_begin_x(view->begin_x) : 0;
5434 1e37a5c2 2019-05-12 jcs
5435 1e37a5c2 2019-05-12 jcs err = blame_tree_entry(&blame_view, begin_x,
5436 669b5ffa 2018-10-07 stsp s->selected_entry, &s->parents,
5437 78756c87 2020-11-24 stsp s->commit_id, s->repo);
5438 1e37a5c2 2019-05-12 jcs if (err)
5439 1e37a5c2 2019-05-12 jcs break;
5440 e78dc838 2020-12-04 stsp view->focussed = 0;
5441 e78dc838 2020-12-04 stsp blame_view->focussed = 1;
5442 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
5443 669b5ffa 2018-10-07 stsp err = view_close_child(view);
5444 669b5ffa 2018-10-07 stsp if (err)
5445 669b5ffa 2018-10-07 stsp return err;
5446 72a9cb46 2020-12-03 stsp view_set_child(view, blame_view);
5447 e78dc838 2020-12-04 stsp view->focus_child = 1;
5448 669b5ffa 2018-10-07 stsp } else
5449 1e37a5c2 2019-05-12 jcs *new_view = blame_view;
5450 1e37a5c2 2019-05-12 jcs }
5451 1e37a5c2 2019-05-12 jcs break;
5452 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
5453 1e1ff4ed 2020-12-07 stsp if (view->nlines >= 4 && s->selected >= view->nlines - 3)
5454 1e1ff4ed 2020-12-07 stsp s->selected = view->nlines - 4;
5455 1e37a5c2 2019-05-12 jcs break;
5456 1e37a5c2 2019-05-12 jcs default:
5457 1e37a5c2 2019-05-12 jcs break;
5458 ffd1d5e5 2018-06-23 stsp }
5459 e5a0f69f 2018-08-18 stsp
5460 ffd1d5e5 2018-06-23 stsp return err;
5461 9f7d7167 2018-04-29 stsp }
5462 9f7d7167 2018-04-29 stsp
5463 ffd1d5e5 2018-06-23 stsp __dead static void
5464 ffd1d5e5 2018-06-23 stsp usage_tree(void)
5465 ffd1d5e5 2018-06-23 stsp {
5466 ffd1d5e5 2018-06-23 stsp endwin();
5467 55cccc34 2020-02-20 stsp fprintf(stderr, "usage: %s tree [-c commit] [-r repository-path] [path]\n",
5468 ffd1d5e5 2018-06-23 stsp getprogname());
5469 ffd1d5e5 2018-06-23 stsp exit(1);
5470 ffd1d5e5 2018-06-23 stsp }
5471 ffd1d5e5 2018-06-23 stsp
5472 ffd1d5e5 2018-06-23 stsp static const struct got_error *
5473 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
5474 ffd1d5e5 2018-06-23 stsp {
5475 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
5476 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
5477 55cccc34 2020-02-20 stsp struct got_worktree *worktree = NULL;
5478 55cccc34 2020-02-20 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
5479 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
5480 4e97c21c 2020-12-06 stsp const char *commit_id_arg = NULL;
5481 4e97c21c 2020-12-06 stsp char *label = NULL;
5482 ffd1d5e5 2018-06-23 stsp struct got_commit_object *commit = NULL;
5483 ffd1d5e5 2018-06-23 stsp struct got_tree_object *tree = NULL;
5484 4e97c21c 2020-12-06 stsp struct got_reference *ref = NULL;
5485 4e97c21c 2020-12-06 stsp const char *head_ref_name = NULL;
5486 ffd1d5e5 2018-06-23 stsp int ch;
5487 5221c383 2018-08-01 stsp struct tog_view *view;
5488 70ac5f84 2019-03-28 stsp
5489 74283ab8 2020-02-07 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
5490 ffd1d5e5 2018-06-23 stsp switch (ch) {
5491 ffd1d5e5 2018-06-23 stsp case 'c':
5492 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
5493 74283ab8 2020-02-07 stsp break;
5494 74283ab8 2020-02-07 stsp case 'r':
5495 74283ab8 2020-02-07 stsp repo_path = realpath(optarg, NULL);
5496 74283ab8 2020-02-07 stsp if (repo_path == NULL)
5497 74283ab8 2020-02-07 stsp return got_error_from_errno2("realpath",
5498 74283ab8 2020-02-07 stsp optarg);
5499 ffd1d5e5 2018-06-23 stsp break;
5500 ffd1d5e5 2018-06-23 stsp default:
5501 e99e2d15 2020-11-24 naddy usage_tree();
5502 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
5503 ffd1d5e5 2018-06-23 stsp }
5504 ffd1d5e5 2018-06-23 stsp }
5505 ffd1d5e5 2018-06-23 stsp
5506 ffd1d5e5 2018-06-23 stsp argc -= optind;
5507 ffd1d5e5 2018-06-23 stsp argv += optind;
5508 ffd1d5e5 2018-06-23 stsp
5509 55cccc34 2020-02-20 stsp if (argc > 1)
5510 e99e2d15 2020-11-24 naddy usage_tree();
5511 74283ab8 2020-02-07 stsp
5512 74283ab8 2020-02-07 stsp if (repo_path == NULL) {
5513 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
5514 c156c7a4 2020-12-18 stsp if (cwd == NULL)
5515 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
5516 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
5517 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5518 c156c7a4 2020-12-18 stsp goto done;
5519 55cccc34 2020-02-20 stsp if (worktree)
5520 52185f70 2019-02-05 stsp repo_path =
5521 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
5522 55cccc34 2020-02-20 stsp else
5523 e4a0e26d 2020-02-20 stsp repo_path = strdup(cwd);
5524 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
5525 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
5526 c156c7a4 2020-12-18 stsp goto done;
5527 c156c7a4 2020-12-18 stsp }
5528 55cccc34 2020-02-20 stsp }
5529 a915003a 2019-02-05 stsp
5530 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
5531 c02c541e 2019-03-29 stsp if (error != NULL)
5532 52185f70 2019-02-05 stsp goto done;
5533 d188b9a6 2019-01-04 stsp
5534 55cccc34 2020-02-20 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
5535 55cccc34 2020-02-20 stsp repo, worktree);
5536 55cccc34 2020-02-20 stsp if (error)
5537 55cccc34 2020-02-20 stsp goto done;
5538 55cccc34 2020-02-20 stsp
5539 55cccc34 2020-02-20 stsp init_curses();
5540 55cccc34 2020-02-20 stsp
5541 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
5542 c02c541e 2019-03-29 stsp if (error)
5543 52185f70 2019-02-05 stsp goto done;
5544 ffd1d5e5 2018-06-23 stsp
5545 51a10b52 2020-12-26 stsp error = tog_load_refs(repo);
5546 51a10b52 2020-12-26 stsp if (error)
5547 51a10b52 2020-12-26 stsp goto done;
5548 51a10b52 2020-12-26 stsp
5549 4e97c21c 2020-12-06 stsp if (commit_id_arg == NULL) {
5550 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, &label,
5551 4e97c21c 2020-12-06 stsp worktree ? got_worktree_get_head_ref_name(worktree) :
5552 84de9106 2020-12-26 stsp GOT_REF_HEAD, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
5553 4e97c21c 2020-12-06 stsp if (error)
5554 4e97c21c 2020-12-06 stsp goto done;
5555 4e97c21c 2020-12-06 stsp head_ref_name = label;
5556 4e97c21c 2020-12-06 stsp } else {
5557 4e97c21c 2020-12-06 stsp error = got_ref_open(&ref, repo, commit_id_arg, 0);
5558 4e97c21c 2020-12-06 stsp if (error == NULL)
5559 4e97c21c 2020-12-06 stsp head_ref_name = got_ref_get_name(ref);
5560 4e97c21c 2020-12-06 stsp else if (error->code != GOT_ERR_NOT_REF)
5561 4e97c21c 2020-12-06 stsp goto done;
5562 4e97c21c 2020-12-06 stsp error = got_repo_match_object_id(&commit_id, NULL,
5563 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
5564 4e97c21c 2020-12-06 stsp if (error)
5565 4e97c21c 2020-12-06 stsp goto done;
5566 4e97c21c 2020-12-06 stsp }
5567 ffd1d5e5 2018-06-23 stsp
5568 ffd1d5e5 2018-06-23 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
5569 55cccc34 2020-02-20 stsp if (error)
5570 ffd1d5e5 2018-06-23 stsp goto done;
5571 ffd1d5e5 2018-06-23 stsp
5572 45d799e2 2018-12-23 stsp error = got_object_open_as_tree(&tree, repo,
5573 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
5574 55cccc34 2020-02-20 stsp if (error)
5575 8b473291 2019-02-21 stsp goto done;
5576 8b473291 2019-02-21 stsp
5577 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
5578 5221c383 2018-08-01 stsp if (view == NULL) {
5579 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
5580 5221c383 2018-08-01 stsp goto done;
5581 5221c383 2018-08-01 stsp }
5582 4e97c21c 2020-12-06 stsp error = open_tree_view(view, tree, commit_id, head_ref_name, repo);
5583 ad80ab7b 2018-08-04 stsp if (error)
5584 ad80ab7b 2018-08-04 stsp goto done;
5585 55cccc34 2020-02-20 stsp if (!got_path_is_root_dir(in_repo_path)) {
5586 55cccc34 2020-02-20 stsp error = tree_view_walk_path(&view->state.tree, commit_id,
5587 d91faf3b 2020-12-01 naddy in_repo_path);
5588 55cccc34 2020-02-20 stsp if (error)
5589 55cccc34 2020-02-20 stsp goto done;
5590 55cccc34 2020-02-20 stsp }
5591 55cccc34 2020-02-20 stsp
5592 55cccc34 2020-02-20 stsp if (worktree) {
5593 55cccc34 2020-02-20 stsp /* Release work tree lock. */
5594 55cccc34 2020-02-20 stsp got_worktree_close(worktree);
5595 55cccc34 2020-02-20 stsp worktree = NULL;
5596 55cccc34 2020-02-20 stsp }
5597 e5a0f69f 2018-08-18 stsp error = view_loop(view);
5598 ffd1d5e5 2018-06-23 stsp done:
5599 52185f70 2019-02-05 stsp free(repo_path);
5600 e4a0e26d 2020-02-20 stsp free(cwd);
5601 ffd1d5e5 2018-06-23 stsp free(commit_id);
5602 4e97c21c 2020-12-06 stsp free(label);
5603 486cd271 2020-12-06 stsp if (ref)
5604 486cd271 2020-12-06 stsp got_ref_close(ref);
5605 ffd1d5e5 2018-06-23 stsp if (commit)
5606 ffd1d5e5 2018-06-23 stsp got_object_commit_close(commit);
5607 ffd1d5e5 2018-06-23 stsp if (tree)
5608 ffd1d5e5 2018-06-23 stsp got_object_tree_close(tree);
5609 ffd1d5e5 2018-06-23 stsp if (repo)
5610 ffd1d5e5 2018-06-23 stsp got_repo_close(repo);
5611 51a10b52 2020-12-26 stsp tog_free_refs();
5612 ffd1d5e5 2018-06-23 stsp return error;
5613 6458efa5 2020-11-24 stsp }
5614 6458efa5 2020-11-24 stsp
5615 6458efa5 2020-11-24 stsp static const struct got_error *
5616 6458efa5 2020-11-24 stsp ref_view_load_refs(struct tog_ref_view_state *s)
5617 6458efa5 2020-11-24 stsp {
5618 6458efa5 2020-11-24 stsp struct got_reflist_entry *sre;
5619 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
5620 6458efa5 2020-11-24 stsp
5621 6458efa5 2020-11-24 stsp s->nrefs = 0;
5622 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(sre, &tog_refs, entry) {
5623 6458efa5 2020-11-24 stsp if (strncmp(got_ref_get_name(sre->ref), "refs/got/", 9) == 0)
5624 6458efa5 2020-11-24 stsp continue;
5625 6458efa5 2020-11-24 stsp
5626 6458efa5 2020-11-24 stsp re = malloc(sizeof(*re));
5627 6458efa5 2020-11-24 stsp if (re == NULL)
5628 6458efa5 2020-11-24 stsp return got_error_from_errno("malloc");
5629 6458efa5 2020-11-24 stsp
5630 8924d611 2020-12-26 stsp re->ref = got_ref_dup(sre->ref);
5631 8924d611 2020-12-26 stsp if (re->ref == NULL)
5632 8924d611 2020-12-26 stsp return got_error_from_errno("got_ref_dup");
5633 6458efa5 2020-11-24 stsp re->idx = s->nrefs++;
5634 6458efa5 2020-11-24 stsp TAILQ_INSERT_TAIL(&s->refs, re, entry);
5635 6458efa5 2020-11-24 stsp }
5636 6458efa5 2020-11-24 stsp
5637 8924d611 2020-12-26 stsp s->first_displayed_entry = TAILQ_FIRST(&s->refs);
5638 6458efa5 2020-11-24 stsp return NULL;
5639 6458efa5 2020-11-24 stsp }
5640 6458efa5 2020-11-24 stsp
5641 6458efa5 2020-11-24 stsp void
5642 6458efa5 2020-11-24 stsp ref_view_free_refs(struct tog_ref_view_state *s)
5643 6458efa5 2020-11-24 stsp {
5644 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
5645 6458efa5 2020-11-24 stsp
5646 6458efa5 2020-11-24 stsp while (!TAILQ_EMPTY(&s->refs)) {
5647 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
5648 6458efa5 2020-11-24 stsp TAILQ_REMOVE(&s->refs, re, entry);
5649 8924d611 2020-12-26 stsp got_ref_close(re->ref);
5650 6458efa5 2020-11-24 stsp free(re);
5651 6458efa5 2020-11-24 stsp }
5652 6458efa5 2020-11-24 stsp }
5653 6458efa5 2020-11-24 stsp
5654 6458efa5 2020-11-24 stsp static const struct got_error *
5655 6458efa5 2020-11-24 stsp open_ref_view(struct tog_view *view, struct got_repository *repo)
5656 6458efa5 2020-11-24 stsp {
5657 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
5658 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5659 6458efa5 2020-11-24 stsp
5660 6458efa5 2020-11-24 stsp s->selected_entry = 0;
5661 6458efa5 2020-11-24 stsp s->repo = repo;
5662 6458efa5 2020-11-24 stsp
5663 6458efa5 2020-11-24 stsp TAILQ_INIT(&s->refs);
5664 6458efa5 2020-11-24 stsp SIMPLEQ_INIT(&s->colors);
5665 6458efa5 2020-11-24 stsp
5666 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
5667 6458efa5 2020-11-24 stsp if (err)
5668 6458efa5 2020-11-24 stsp return err;
5669 34ba6917 2020-11-30 stsp
5670 6458efa5 2020-11-24 stsp if (has_colors() && getenv("TOG_COLORS") != NULL) {
5671 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/heads/",
5672 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_HEADS,
5673 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_HEADS"));
5674 6458efa5 2020-11-24 stsp if (err)
5675 6458efa5 2020-11-24 stsp goto done;
5676 6458efa5 2020-11-24 stsp
5677 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/tags/",
5678 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_TAGS,
5679 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_TAGS"));
5680 6458efa5 2020-11-24 stsp if (err)
5681 6458efa5 2020-11-24 stsp goto done;
5682 6458efa5 2020-11-24 stsp
5683 6458efa5 2020-11-24 stsp err = add_color(&s->colors, "^refs/remotes/",
5684 6458efa5 2020-11-24 stsp TOG_COLOR_REFS_REMOTES,
5685 6458efa5 2020-11-24 stsp get_color_value("TOG_COLOR_REFS_REMOTES"));
5686 6458efa5 2020-11-24 stsp if (err)
5687 6458efa5 2020-11-24 stsp goto done;
5688 6458efa5 2020-11-24 stsp }
5689 6458efa5 2020-11-24 stsp
5690 6458efa5 2020-11-24 stsp view->show = show_ref_view;
5691 6458efa5 2020-11-24 stsp view->input = input_ref_view;
5692 6458efa5 2020-11-24 stsp view->close = close_ref_view;
5693 6458efa5 2020-11-24 stsp view->search_start = search_start_ref_view;
5694 6458efa5 2020-11-24 stsp view->search_next = search_next_ref_view;
5695 6458efa5 2020-11-24 stsp done:
5696 6458efa5 2020-11-24 stsp if (err)
5697 6458efa5 2020-11-24 stsp free_colors(&s->colors);
5698 6458efa5 2020-11-24 stsp return err;
5699 6458efa5 2020-11-24 stsp }
5700 6458efa5 2020-11-24 stsp
5701 6458efa5 2020-11-24 stsp static const struct got_error *
5702 6458efa5 2020-11-24 stsp close_ref_view(struct tog_view *view)
5703 6458efa5 2020-11-24 stsp {
5704 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5705 6458efa5 2020-11-24 stsp
5706 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
5707 6458efa5 2020-11-24 stsp free_colors(&s->colors);
5708 6458efa5 2020-11-24 stsp
5709 6458efa5 2020-11-24 stsp return NULL;
5710 9f7d7167 2018-04-29 stsp }
5711 ce5b7c56 2019-07-09 stsp
5712 6458efa5 2020-11-24 stsp static const struct got_error *
5713 c42c9805 2020-11-24 stsp resolve_reflist_entry(struct got_object_id **commit_id,
5714 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
5715 6458efa5 2020-11-24 stsp {
5716 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
5717 c42c9805 2020-11-24 stsp struct got_object_id *obj_id;
5718 6458efa5 2020-11-24 stsp struct got_tag_object *tag = NULL;
5719 6458efa5 2020-11-24 stsp int obj_type;
5720 6458efa5 2020-11-24 stsp
5721 c42c9805 2020-11-24 stsp *commit_id = NULL;
5722 6458efa5 2020-11-24 stsp
5723 6458efa5 2020-11-24 stsp err = got_ref_resolve(&obj_id, repo, re->ref);
5724 6458efa5 2020-11-24 stsp if (err)
5725 6458efa5 2020-11-24 stsp return err;
5726 6458efa5 2020-11-24 stsp
5727 6458efa5 2020-11-24 stsp err = got_object_get_type(&obj_type, repo, obj_id);
5728 6458efa5 2020-11-24 stsp if (err)
5729 6458efa5 2020-11-24 stsp goto done;
5730 6458efa5 2020-11-24 stsp
5731 6458efa5 2020-11-24 stsp switch (obj_type) {
5732 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_COMMIT:
5733 c42c9805 2020-11-24 stsp *commit_id = obj_id;
5734 6458efa5 2020-11-24 stsp break;
5735 6458efa5 2020-11-24 stsp case GOT_OBJ_TYPE_TAG:
5736 6458efa5 2020-11-24 stsp err = got_object_open_as_tag(&tag, repo, obj_id);
5737 6458efa5 2020-11-24 stsp if (err)
5738 6458efa5 2020-11-24 stsp goto done;
5739 c42c9805 2020-11-24 stsp free(obj_id);
5740 c42c9805 2020-11-24 stsp err = got_object_get_type(&obj_type, repo,
5741 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
5742 c42c9805 2020-11-24 stsp if (err)
5743 6458efa5 2020-11-24 stsp goto done;
5744 c42c9805 2020-11-24 stsp if (obj_type != GOT_OBJ_TYPE_COMMIT) {
5745 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5746 c42c9805 2020-11-24 stsp goto done;
5747 c42c9805 2020-11-24 stsp }
5748 c42c9805 2020-11-24 stsp *commit_id = got_object_id_dup(
5749 c42c9805 2020-11-24 stsp got_object_tag_get_object_id(tag));
5750 c42c9805 2020-11-24 stsp if (*commit_id == NULL) {
5751 c42c9805 2020-11-24 stsp err = got_error_from_errno("got_object_id_dup");
5752 c42c9805 2020-11-24 stsp goto done;
5753 c42c9805 2020-11-24 stsp }
5754 6458efa5 2020-11-24 stsp break;
5755 6458efa5 2020-11-24 stsp default:
5756 c42c9805 2020-11-24 stsp err = got_error(GOT_ERR_OBJ_TYPE);
5757 c42c9805 2020-11-24 stsp break;
5758 6458efa5 2020-11-24 stsp }
5759 6458efa5 2020-11-24 stsp
5760 c42c9805 2020-11-24 stsp done:
5761 c42c9805 2020-11-24 stsp if (tag)
5762 c42c9805 2020-11-24 stsp got_object_tag_close(tag);
5763 c42c9805 2020-11-24 stsp if (err) {
5764 c42c9805 2020-11-24 stsp free(*commit_id);
5765 c42c9805 2020-11-24 stsp *commit_id = NULL;
5766 c42c9805 2020-11-24 stsp }
5767 c42c9805 2020-11-24 stsp return err;
5768 c42c9805 2020-11-24 stsp }
5769 c42c9805 2020-11-24 stsp
5770 c42c9805 2020-11-24 stsp static const struct got_error *
5771 c42c9805 2020-11-24 stsp log_ref_entry(struct tog_view **new_view, int begin_x,
5772 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
5773 c42c9805 2020-11-24 stsp {
5774 c42c9805 2020-11-24 stsp struct tog_view *log_view;
5775 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
5776 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL;
5777 c42c9805 2020-11-24 stsp
5778 c42c9805 2020-11-24 stsp *new_view = NULL;
5779 c42c9805 2020-11-24 stsp
5780 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
5781 c42c9805 2020-11-24 stsp if (err) {
5782 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
5783 c42c9805 2020-11-24 stsp return err;
5784 c42c9805 2020-11-24 stsp else
5785 c42c9805 2020-11-24 stsp return NULL;
5786 c42c9805 2020-11-24 stsp }
5787 c42c9805 2020-11-24 stsp
5788 6458efa5 2020-11-24 stsp log_view = view_open(0, 0, 0, begin_x, TOG_VIEW_LOG);
5789 6458efa5 2020-11-24 stsp if (log_view == NULL) {
5790 6458efa5 2020-11-24 stsp err = got_error_from_errno("view_open");
5791 6458efa5 2020-11-24 stsp goto done;
5792 6458efa5 2020-11-24 stsp }
5793 6458efa5 2020-11-24 stsp
5794 ee756517 2020-12-05 stsp err = open_log_view(log_view, commit_id, repo,
5795 ee756517 2020-12-05 stsp got_ref_get_name(re->ref), "", 0);
5796 6458efa5 2020-11-24 stsp done:
5797 6458efa5 2020-11-24 stsp if (err)
5798 6458efa5 2020-11-24 stsp view_close(log_view);
5799 6458efa5 2020-11-24 stsp else
5800 6458efa5 2020-11-24 stsp *new_view = log_view;
5801 c42c9805 2020-11-24 stsp free(commit_id);
5802 6458efa5 2020-11-24 stsp return err;
5803 6458efa5 2020-11-24 stsp }
5804 6458efa5 2020-11-24 stsp
5805 ce5b7c56 2019-07-09 stsp static void
5806 3e135950 2020-12-01 naddy ref_scroll_up(struct tog_ref_view_state *s, int maxscroll)
5807 6458efa5 2020-11-24 stsp {
5808 34ba6917 2020-11-30 stsp struct tog_reflist_entry *re;
5809 34ba6917 2020-11-30 stsp int i = 0;
5810 6458efa5 2020-11-24 stsp
5811 694d3271 2020-12-01 naddy if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
5812 6458efa5 2020-11-24 stsp return;
5813 6458efa5 2020-11-24 stsp
5814 694d3271 2020-12-01 naddy re = TAILQ_PREV(s->first_displayed_entry, tog_reflist_head, entry);
5815 34ba6917 2020-11-30 stsp while (i++ < maxscroll) {
5816 34ba6917 2020-11-30 stsp if (re == NULL)
5817 34ba6917 2020-11-30 stsp break;
5818 694d3271 2020-12-01 naddy s->first_displayed_entry = re;
5819 34ba6917 2020-11-30 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
5820 6458efa5 2020-11-24 stsp }
5821 6458efa5 2020-11-24 stsp }
5822 6458efa5 2020-11-24 stsp
5823 34ba6917 2020-11-30 stsp static void
5824 3e135950 2020-12-01 naddy ref_scroll_down(struct tog_ref_view_state *s, int maxscroll)
5825 6458efa5 2020-11-24 stsp {
5826 6458efa5 2020-11-24 stsp struct tog_reflist_entry *next, *last;
5827 6458efa5 2020-11-24 stsp int n = 0;
5828 6458efa5 2020-11-24 stsp
5829 694d3271 2020-12-01 naddy if (s->first_displayed_entry)
5830 694d3271 2020-12-01 naddy next = TAILQ_NEXT(s->first_displayed_entry, entry);
5831 6458efa5 2020-11-24 stsp else
5832 694d3271 2020-12-01 naddy next = TAILQ_FIRST(&s->refs);
5833 6458efa5 2020-11-24 stsp
5834 694d3271 2020-12-01 naddy last = s->last_displayed_entry;
5835 6458efa5 2020-11-24 stsp while (next && last && n++ < maxscroll) {
5836 6458efa5 2020-11-24 stsp last = TAILQ_NEXT(last, entry);
5837 6458efa5 2020-11-24 stsp if (last) {
5838 694d3271 2020-12-01 naddy s->first_displayed_entry = next;
5839 6458efa5 2020-11-24 stsp next = TAILQ_NEXT(next, entry);
5840 6458efa5 2020-11-24 stsp }
5841 6458efa5 2020-11-24 stsp }
5842 6458efa5 2020-11-24 stsp }
5843 6458efa5 2020-11-24 stsp
5844 6458efa5 2020-11-24 stsp static const struct got_error *
5845 6458efa5 2020-11-24 stsp search_start_ref_view(struct tog_view *view)
5846 6458efa5 2020-11-24 stsp {
5847 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5848 6458efa5 2020-11-24 stsp
5849 6458efa5 2020-11-24 stsp s->matched_entry = NULL;
5850 6458efa5 2020-11-24 stsp return NULL;
5851 6458efa5 2020-11-24 stsp }
5852 6458efa5 2020-11-24 stsp
5853 6458efa5 2020-11-24 stsp static int
5854 6458efa5 2020-11-24 stsp match_reflist_entry(struct tog_reflist_entry *re, regex_t *regex)
5855 6458efa5 2020-11-24 stsp {
5856 6458efa5 2020-11-24 stsp regmatch_t regmatch;
5857 6458efa5 2020-11-24 stsp
5858 6458efa5 2020-11-24 stsp return regexec(regex, got_ref_get_name(re->ref), 1, &regmatch,
5859 6458efa5 2020-11-24 stsp 0) == 0;
5860 6458efa5 2020-11-24 stsp }
5861 6458efa5 2020-11-24 stsp
5862 6458efa5 2020-11-24 stsp static const struct got_error *
5863 6458efa5 2020-11-24 stsp search_next_ref_view(struct tog_view *view)
5864 6458efa5 2020-11-24 stsp {
5865 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5866 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re = NULL;
5867 6458efa5 2020-11-24 stsp
5868 6458efa5 2020-11-24 stsp if (!view->searching) {
5869 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5870 6458efa5 2020-11-24 stsp return NULL;
5871 6458efa5 2020-11-24 stsp }
5872 6458efa5 2020-11-24 stsp
5873 6458efa5 2020-11-24 stsp if (s->matched_entry) {
5874 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD) {
5875 6458efa5 2020-11-24 stsp if (s->selected_entry)
5876 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(s->selected_entry, entry);
5877 6458efa5 2020-11-24 stsp else
5878 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
5879 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
5880 6458efa5 2020-11-24 stsp } else {
5881 6458efa5 2020-11-24 stsp if (s->selected_entry == NULL)
5882 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
5883 6458efa5 2020-11-24 stsp else
5884 6458efa5 2020-11-24 stsp re = TAILQ_PREV(s->selected_entry,
5885 6458efa5 2020-11-24 stsp tog_reflist_head, entry);
5886 6458efa5 2020-11-24 stsp }
5887 6458efa5 2020-11-24 stsp } else {
5888 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5889 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
5890 6458efa5 2020-11-24 stsp else
5891 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
5892 6458efa5 2020-11-24 stsp }
5893 6458efa5 2020-11-24 stsp
5894 6458efa5 2020-11-24 stsp while (1) {
5895 6458efa5 2020-11-24 stsp if (re == NULL) {
5896 6458efa5 2020-11-24 stsp if (s->matched_entry == NULL) {
5897 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5898 6458efa5 2020-11-24 stsp return NULL;
5899 6458efa5 2020-11-24 stsp }
5900 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5901 6458efa5 2020-11-24 stsp re = TAILQ_FIRST(&s->refs);
5902 6458efa5 2020-11-24 stsp else
5903 6458efa5 2020-11-24 stsp re = TAILQ_LAST(&s->refs, tog_reflist_head);
5904 6458efa5 2020-11-24 stsp }
5905 6458efa5 2020-11-24 stsp
5906 6458efa5 2020-11-24 stsp if (match_reflist_entry(re, &view->regex)) {
5907 6458efa5 2020-11-24 stsp view->search_next_done = TOG_SEARCH_HAVE_MORE;
5908 6458efa5 2020-11-24 stsp s->matched_entry = re;
5909 6458efa5 2020-11-24 stsp break;
5910 6458efa5 2020-11-24 stsp }
5911 6458efa5 2020-11-24 stsp
5912 6458efa5 2020-11-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
5913 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
5914 6458efa5 2020-11-24 stsp else
5915 6458efa5 2020-11-24 stsp re = TAILQ_PREV(re, tog_reflist_head, entry);
5916 6458efa5 2020-11-24 stsp }
5917 6458efa5 2020-11-24 stsp
5918 6458efa5 2020-11-24 stsp if (s->matched_entry) {
5919 6458efa5 2020-11-24 stsp s->first_displayed_entry = s->matched_entry;
5920 6458efa5 2020-11-24 stsp s->selected = 0;
5921 6458efa5 2020-11-24 stsp }
5922 6458efa5 2020-11-24 stsp
5923 6458efa5 2020-11-24 stsp return NULL;
5924 6458efa5 2020-11-24 stsp }
5925 6458efa5 2020-11-24 stsp
5926 6458efa5 2020-11-24 stsp static const struct got_error *
5927 6458efa5 2020-11-24 stsp show_ref_view(struct tog_view *view)
5928 6458efa5 2020-11-24 stsp {
5929 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
5930 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
5931 6458efa5 2020-11-24 stsp struct tog_reflist_entry *re;
5932 6458efa5 2020-11-24 stsp char *line = NULL;
5933 6458efa5 2020-11-24 stsp wchar_t *wline;
5934 6458efa5 2020-11-24 stsp struct tog_color *tc;
5935 6458efa5 2020-11-24 stsp int width, n;
5936 6458efa5 2020-11-24 stsp int limit = view->nlines;
5937 6458efa5 2020-11-24 stsp
5938 6458efa5 2020-11-24 stsp werase(view->window);
5939 6458efa5 2020-11-24 stsp
5940 6458efa5 2020-11-24 stsp s->ndisplayed = 0;
5941 6458efa5 2020-11-24 stsp
5942 6458efa5 2020-11-24 stsp if (limit == 0)
5943 6458efa5 2020-11-24 stsp return NULL;
5944 6458efa5 2020-11-24 stsp
5945 34ba6917 2020-11-30 stsp re = s->first_displayed_entry;
5946 6458efa5 2020-11-24 stsp
5947 6458efa5 2020-11-24 stsp if (asprintf(&line, "references [%d/%d]", re->idx + s->selected + 1,
5948 6458efa5 2020-11-24 stsp s->nrefs) == -1)
5949 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
5950 6458efa5 2020-11-24 stsp
5951 6458efa5 2020-11-24 stsp err = format_line(&wline, &width, line, view->ncols, 0);
5952 6458efa5 2020-11-24 stsp if (err) {
5953 6458efa5 2020-11-24 stsp free(line);
5954 6458efa5 2020-11-24 stsp return err;
5955 6458efa5 2020-11-24 stsp }
5956 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
5957 6458efa5 2020-11-24 stsp wstandout(view->window);
5958 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
5959 6458efa5 2020-11-24 stsp if (view_needs_focus_indication(view))
5960 6458efa5 2020-11-24 stsp wstandend(view->window);
5961 6458efa5 2020-11-24 stsp free(wline);
5962 6458efa5 2020-11-24 stsp wline = NULL;
5963 6458efa5 2020-11-24 stsp free(line);
5964 6458efa5 2020-11-24 stsp line = NULL;
5965 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
5966 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
5967 6458efa5 2020-11-24 stsp if (--limit <= 0)
5968 6458efa5 2020-11-24 stsp return NULL;
5969 6458efa5 2020-11-24 stsp
5970 6458efa5 2020-11-24 stsp n = 0;
5971 6458efa5 2020-11-24 stsp while (re && limit > 0) {
5972 6458efa5 2020-11-24 stsp char *line = NULL;
5973 6458efa5 2020-11-24 stsp
5974 6458efa5 2020-11-24 stsp if (got_ref_is_symbolic(re->ref)) {
5975 6458efa5 2020-11-24 stsp if (asprintf(&line, "%s -> %s",
5976 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref),
5977 6458efa5 2020-11-24 stsp got_ref_get_symref_target(re->ref)) == -1)
5978 6458efa5 2020-11-24 stsp return got_error_from_errno("asprintf");
5979 6458efa5 2020-11-24 stsp } else if (s->show_ids) {
5980 6458efa5 2020-11-24 stsp struct got_object_id *id;
5981 6458efa5 2020-11-24 stsp char *id_str;
5982 6458efa5 2020-11-24 stsp err = got_ref_resolve(&id, s->repo, re->ref);
5983 6458efa5 2020-11-24 stsp if (err)
5984 6458efa5 2020-11-24 stsp return err;
5985 6458efa5 2020-11-24 stsp err = got_object_id_str(&id_str, id);
5986 6458efa5 2020-11-24 stsp if (err) {
5987 6458efa5 2020-11-24 stsp free(id);
5988 6458efa5 2020-11-24 stsp return err;
5989 6458efa5 2020-11-24 stsp }
5990 6458efa5 2020-11-24 stsp if (asprintf(&line, "%s: %s",
5991 6458efa5 2020-11-24 stsp got_ref_get_name(re->ref), id_str) == -1) {
5992 6458efa5 2020-11-24 stsp err = got_error_from_errno("asprintf");
5993 6458efa5 2020-11-24 stsp free(id);
5994 6458efa5 2020-11-24 stsp free(id_str);
5995 6458efa5 2020-11-24 stsp return err;
5996 6458efa5 2020-11-24 stsp }
5997 6458efa5 2020-11-24 stsp free(id);
5998 6458efa5 2020-11-24 stsp free(id_str);
5999 6458efa5 2020-11-24 stsp } else {
6000 6458efa5 2020-11-24 stsp line = strdup(got_ref_get_name(re->ref));
6001 6458efa5 2020-11-24 stsp if (line == NULL)
6002 6458efa5 2020-11-24 stsp return got_error_from_errno("strdup");
6003 6458efa5 2020-11-24 stsp }
6004 6458efa5 2020-11-24 stsp
6005 6458efa5 2020-11-24 stsp err = format_line(&wline, &width, line, view->ncols, 0);
6006 6458efa5 2020-11-24 stsp if (err) {
6007 6458efa5 2020-11-24 stsp free(line);
6008 6458efa5 2020-11-24 stsp return err;
6009 6458efa5 2020-11-24 stsp }
6010 6458efa5 2020-11-24 stsp if (n == s->selected) {
6011 6458efa5 2020-11-24 stsp if (view->focussed)
6012 6458efa5 2020-11-24 stsp wstandout(view->window);
6013 6458efa5 2020-11-24 stsp s->selected_entry = re;
6014 6458efa5 2020-11-24 stsp }
6015 6458efa5 2020-11-24 stsp tc = match_color(&s->colors, got_ref_get_name(re->ref));
6016 6458efa5 2020-11-24 stsp if (tc)
6017 6458efa5 2020-11-24 stsp wattr_on(view->window,
6018 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
6019 6458efa5 2020-11-24 stsp waddwstr(view->window, wline);
6020 6458efa5 2020-11-24 stsp if (tc)
6021 6458efa5 2020-11-24 stsp wattr_off(view->window,
6022 6458efa5 2020-11-24 stsp COLOR_PAIR(tc->colorpair), NULL);
6023 6458efa5 2020-11-24 stsp if (width < view->ncols - 1)
6024 6458efa5 2020-11-24 stsp waddch(view->window, '\n');
6025 6458efa5 2020-11-24 stsp if (n == s->selected && view->focussed)
6026 6458efa5 2020-11-24 stsp wstandend(view->window);
6027 6458efa5 2020-11-24 stsp free(line);
6028 6458efa5 2020-11-24 stsp free(wline);
6029 6458efa5 2020-11-24 stsp wline = NULL;
6030 6458efa5 2020-11-24 stsp n++;
6031 6458efa5 2020-11-24 stsp s->ndisplayed++;
6032 6458efa5 2020-11-24 stsp s->last_displayed_entry = re;
6033 6458efa5 2020-11-24 stsp
6034 6458efa5 2020-11-24 stsp limit--;
6035 6458efa5 2020-11-24 stsp re = TAILQ_NEXT(re, entry);
6036 6458efa5 2020-11-24 stsp }
6037 6458efa5 2020-11-24 stsp
6038 6458efa5 2020-11-24 stsp view_vborder(view);
6039 6458efa5 2020-11-24 stsp return err;
6040 6458efa5 2020-11-24 stsp }
6041 6458efa5 2020-11-24 stsp
6042 6458efa5 2020-11-24 stsp static const struct got_error *
6043 c42c9805 2020-11-24 stsp browse_ref_tree(struct tog_view **new_view, int begin_x,
6044 c42c9805 2020-11-24 stsp struct tog_reflist_entry *re, struct got_repository *repo)
6045 c42c9805 2020-11-24 stsp {
6046 c42c9805 2020-11-24 stsp const struct got_error *err = NULL;
6047 c42c9805 2020-11-24 stsp struct got_object_id *commit_id = NULL, *tree_id = NULL;
6048 c42c9805 2020-11-24 stsp struct got_tree_object *tree = NULL;
6049 c42c9805 2020-11-24 stsp struct tog_view *tree_view;
6050 c42c9805 2020-11-24 stsp
6051 c42c9805 2020-11-24 stsp *new_view = NULL;
6052 c42c9805 2020-11-24 stsp
6053 c42c9805 2020-11-24 stsp err = resolve_reflist_entry(&commit_id, re, repo);
6054 c42c9805 2020-11-24 stsp if (err) {
6055 c42c9805 2020-11-24 stsp if (err->code != GOT_ERR_OBJ_TYPE)
6056 c42c9805 2020-11-24 stsp return err;
6057 c42c9805 2020-11-24 stsp else
6058 c42c9805 2020-11-24 stsp return NULL;
6059 c42c9805 2020-11-24 stsp }
6060 c42c9805 2020-11-24 stsp
6061 c42c9805 2020-11-24 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, "/");
6062 c42c9805 2020-11-24 stsp if (err)
6063 c42c9805 2020-11-24 stsp goto done;
6064 c42c9805 2020-11-24 stsp
6065 c42c9805 2020-11-24 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
6066 c42c9805 2020-11-24 stsp if (err)
6067 c42c9805 2020-11-24 stsp goto done;
6068 c42c9805 2020-11-24 stsp
6069 c42c9805 2020-11-24 stsp tree_view = view_open(0, 0, 0, begin_x, TOG_VIEW_TREE);
6070 c42c9805 2020-11-24 stsp if (tree_view == NULL) {
6071 c42c9805 2020-11-24 stsp err = got_error_from_errno("view_open");
6072 c42c9805 2020-11-24 stsp goto done;
6073 c42c9805 2020-11-24 stsp }
6074 c42c9805 2020-11-24 stsp
6075 4e97c21c 2020-12-06 stsp err = open_tree_view(tree_view, tree, commit_id,
6076 4e97c21c 2020-12-06 stsp got_ref_get_name(re->ref), repo);
6077 c42c9805 2020-11-24 stsp if (err)
6078 c42c9805 2020-11-24 stsp goto done;
6079 c42c9805 2020-11-24 stsp
6080 c42c9805 2020-11-24 stsp *new_view = tree_view;
6081 c42c9805 2020-11-24 stsp done:
6082 c42c9805 2020-11-24 stsp free(commit_id);
6083 c42c9805 2020-11-24 stsp free(tree_id);
6084 c42c9805 2020-11-24 stsp if (err) {
6085 c42c9805 2020-11-24 stsp if (tree)
6086 c42c9805 2020-11-24 stsp got_object_tree_close(tree);
6087 c42c9805 2020-11-24 stsp }
6088 c42c9805 2020-11-24 stsp return err;
6089 c42c9805 2020-11-24 stsp }
6090 c42c9805 2020-11-24 stsp static const struct got_error *
6091 e78dc838 2020-12-04 stsp input_ref_view(struct tog_view **new_view, struct tog_view *view, int ch)
6092 6458efa5 2020-11-24 stsp {
6093 6458efa5 2020-11-24 stsp const struct got_error *err = NULL;
6094 6458efa5 2020-11-24 stsp struct tog_ref_view_state *s = &view->state.ref;
6095 c42c9805 2020-11-24 stsp struct tog_view *log_view, *tree_view;
6096 34ba6917 2020-11-30 stsp int begin_x = 0;
6097 6458efa5 2020-11-24 stsp
6098 6458efa5 2020-11-24 stsp switch (ch) {
6099 6458efa5 2020-11-24 stsp case 'i':
6100 6458efa5 2020-11-24 stsp s->show_ids = !s->show_ids;
6101 6458efa5 2020-11-24 stsp break;
6102 6458efa5 2020-11-24 stsp case KEY_ENTER:
6103 6458efa5 2020-11-24 stsp case '\r':
6104 6458efa5 2020-11-24 stsp if (!s->selected_entry)
6105 6458efa5 2020-11-24 stsp break;
6106 6458efa5 2020-11-24 stsp if (view_is_parent_view(view))
6107 6458efa5 2020-11-24 stsp begin_x = view_split_begin_x(view->begin_x);
6108 6458efa5 2020-11-24 stsp err = log_ref_entry(&log_view, begin_x, s->selected_entry,
6109 6458efa5 2020-11-24 stsp s->repo);
6110 e78dc838 2020-12-04 stsp view->focussed = 0;
6111 e78dc838 2020-12-04 stsp log_view->focussed = 1;
6112 6458efa5 2020-11-24 stsp if (view_is_parent_view(view)) {
6113 6458efa5 2020-11-24 stsp err = view_close_child(view);
6114 6458efa5 2020-11-24 stsp if (err)
6115 6458efa5 2020-11-24 stsp return err;
6116 72a9cb46 2020-12-03 stsp view_set_child(view, log_view);
6117 e78dc838 2020-12-04 stsp view->focus_child = 1;
6118 6458efa5 2020-11-24 stsp } else
6119 6458efa5 2020-11-24 stsp *new_view = log_view;
6120 6458efa5 2020-11-24 stsp break;
6121 c42c9805 2020-11-24 stsp case 't':
6122 c42c9805 2020-11-24 stsp if (!s->selected_entry)
6123 c42c9805 2020-11-24 stsp break;
6124 c42c9805 2020-11-24 stsp if (view_is_parent_view(view))
6125 c42c9805 2020-11-24 stsp begin_x = view_split_begin_x(view->begin_x);
6126 c42c9805 2020-11-24 stsp err = browse_ref_tree(&tree_view, begin_x, s->selected_entry,
6127 c42c9805 2020-11-24 stsp s->repo);
6128 c42c9805 2020-11-24 stsp if (err || tree_view == NULL)
6129 c42c9805 2020-11-24 stsp break;
6130 e78dc838 2020-12-04 stsp view->focussed = 0;
6131 e78dc838 2020-12-04 stsp tree_view->focussed = 1;
6132 c42c9805 2020-11-24 stsp if (view_is_parent_view(view)) {
6133 c42c9805 2020-11-24 stsp err = view_close_child(view);
6134 c42c9805 2020-11-24 stsp if (err)
6135 c42c9805 2020-11-24 stsp return err;
6136 72a9cb46 2020-12-03 stsp view_set_child(view, tree_view);
6137 e78dc838 2020-12-04 stsp view->focus_child = 1;
6138 c42c9805 2020-11-24 stsp } else
6139 c42c9805 2020-11-24 stsp *new_view = tree_view;
6140 c42c9805 2020-11-24 stsp break;
6141 6458efa5 2020-11-24 stsp case 'k':
6142 6458efa5 2020-11-24 stsp case KEY_UP:
6143 6458efa5 2020-11-24 stsp if (s->selected > 0) {
6144 6458efa5 2020-11-24 stsp s->selected--;
6145 6458efa5 2020-11-24 stsp break;
6146 34ba6917 2020-11-30 stsp }
6147 3e135950 2020-12-01 naddy ref_scroll_up(s, 1);
6148 6458efa5 2020-11-24 stsp break;
6149 6458efa5 2020-11-24 stsp case KEY_PPAGE:
6150 6458efa5 2020-11-24 stsp case CTRL('b'):
6151 34ba6917 2020-11-30 stsp if (s->first_displayed_entry == TAILQ_FIRST(&s->refs))
6152 34ba6917 2020-11-30 stsp s->selected = 0;
6153 3e135950 2020-12-01 naddy ref_scroll_up(s, MAX(0, view->nlines - 1));
6154 6458efa5 2020-11-24 stsp break;
6155 6458efa5 2020-11-24 stsp case 'j':
6156 6458efa5 2020-11-24 stsp case KEY_DOWN:
6157 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1) {
6158 6458efa5 2020-11-24 stsp s->selected++;
6159 6458efa5 2020-11-24 stsp break;
6160 6458efa5 2020-11-24 stsp }
6161 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL)
6162 6458efa5 2020-11-24 stsp /* can't scroll any further */
6163 6458efa5 2020-11-24 stsp break;
6164 3e135950 2020-12-01 naddy ref_scroll_down(s, 1);
6165 6458efa5 2020-11-24 stsp break;
6166 6458efa5 2020-11-24 stsp case KEY_NPAGE:
6167 6458efa5 2020-11-24 stsp case CTRL('f'):
6168 6458efa5 2020-11-24 stsp if (TAILQ_NEXT(s->last_displayed_entry, entry) == NULL) {
6169 6458efa5 2020-11-24 stsp /* can't scroll any further; move cursor down */
6170 6458efa5 2020-11-24 stsp if (s->selected < s->ndisplayed - 1)
6171 6458efa5 2020-11-24 stsp s->selected = s->ndisplayed - 1;
6172 6458efa5 2020-11-24 stsp break;
6173 6458efa5 2020-11-24 stsp }
6174 3e135950 2020-12-01 naddy ref_scroll_down(s, view->nlines - 1);
6175 6458efa5 2020-11-24 stsp break;
6176 6458efa5 2020-11-24 stsp case CTRL('l'):
6177 8924d611 2020-12-26 stsp tog_free_refs();
6178 8924d611 2020-12-26 stsp err = tog_load_refs(s->repo);
6179 8924d611 2020-12-26 stsp if (err)
6180 8924d611 2020-12-26 stsp break;
6181 6458efa5 2020-11-24 stsp ref_view_free_refs(s);
6182 6458efa5 2020-11-24 stsp err = ref_view_load_refs(s);
6183 6458efa5 2020-11-24 stsp break;
6184 6458efa5 2020-11-24 stsp case KEY_RESIZE:
6185 8b5b8d0c 2020-12-06 stsp if (view->nlines >= 2 && s->selected >= view->nlines - 1)
6186 8b5b8d0c 2020-12-06 stsp s->selected = view->nlines - 2;
6187 6458efa5 2020-11-24 stsp break;
6188 6458efa5 2020-11-24 stsp default:
6189 6458efa5 2020-11-24 stsp break;
6190 6458efa5 2020-11-24 stsp }
6191 6458efa5 2020-11-24 stsp
6192 6458efa5 2020-11-24 stsp return err;
6193 6458efa5 2020-11-24 stsp }
6194 6458efa5 2020-11-24 stsp
6195 6458efa5 2020-11-24 stsp __dead static void
6196 6458efa5 2020-11-24 stsp usage_ref(void)
6197 6458efa5 2020-11-24 stsp {
6198 6458efa5 2020-11-24 stsp endwin();
6199 6458efa5 2020-11-24 stsp fprintf(stderr, "usage: %s ref [-r repository-path]\n",
6200 6458efa5 2020-11-24 stsp getprogname());
6201 6458efa5 2020-11-24 stsp exit(1);
6202 6458efa5 2020-11-24 stsp }
6203 6458efa5 2020-11-24 stsp
6204 6458efa5 2020-11-24 stsp static const struct got_error *
6205 6458efa5 2020-11-24 stsp cmd_ref(int argc, char *argv[])
6206 6458efa5 2020-11-24 stsp {
6207 6458efa5 2020-11-24 stsp const struct got_error *error;
6208 6458efa5 2020-11-24 stsp struct got_repository *repo = NULL;
6209 6458efa5 2020-11-24 stsp struct got_worktree *worktree = NULL;
6210 6458efa5 2020-11-24 stsp char *cwd = NULL, *repo_path = NULL;
6211 6458efa5 2020-11-24 stsp int ch;
6212 6458efa5 2020-11-24 stsp struct tog_view *view;
6213 6458efa5 2020-11-24 stsp
6214 6458efa5 2020-11-24 stsp while ((ch = getopt(argc, argv, "r:")) != -1) {
6215 6458efa5 2020-11-24 stsp switch (ch) {
6216 6458efa5 2020-11-24 stsp case 'r':
6217 6458efa5 2020-11-24 stsp repo_path = realpath(optarg, NULL);
6218 6458efa5 2020-11-24 stsp if (repo_path == NULL)
6219 6458efa5 2020-11-24 stsp return got_error_from_errno2("realpath",
6220 6458efa5 2020-11-24 stsp optarg);
6221 6458efa5 2020-11-24 stsp break;
6222 6458efa5 2020-11-24 stsp default:
6223 e99e2d15 2020-11-24 naddy usage_ref();
6224 6458efa5 2020-11-24 stsp /* NOTREACHED */
6225 6458efa5 2020-11-24 stsp }
6226 6458efa5 2020-11-24 stsp }
6227 6458efa5 2020-11-24 stsp
6228 6458efa5 2020-11-24 stsp argc -= optind;
6229 6458efa5 2020-11-24 stsp argv += optind;
6230 6458efa5 2020-11-24 stsp
6231 6458efa5 2020-11-24 stsp if (argc > 1)
6232 e99e2d15 2020-11-24 naddy usage_ref();
6233 6458efa5 2020-11-24 stsp
6234 6458efa5 2020-11-24 stsp if (repo_path == NULL) {
6235 c156c7a4 2020-12-18 stsp cwd = getcwd(NULL, 0);
6236 c156c7a4 2020-12-18 stsp if (cwd == NULL)
6237 c156c7a4 2020-12-18 stsp return got_error_from_errno("getcwd");
6238 c156c7a4 2020-12-18 stsp error = got_worktree_open(&worktree, cwd);
6239 c156c7a4 2020-12-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6240 c156c7a4 2020-12-18 stsp goto done;
6241 6458efa5 2020-11-24 stsp if (worktree)
6242 6458efa5 2020-11-24 stsp repo_path =
6243 6458efa5 2020-11-24 stsp strdup(got_worktree_get_repo_path(worktree));
6244 6458efa5 2020-11-24 stsp else
6245 6458efa5 2020-11-24 stsp repo_path = strdup(cwd);
6246 c156c7a4 2020-12-18 stsp if (repo_path == NULL) {
6247 c156c7a4 2020-12-18 stsp error = got_error_from_errno("strdup");
6248 c156c7a4 2020-12-18 stsp goto done;
6249 c156c7a4 2020-12-18 stsp }
6250 6458efa5 2020-11-24 stsp }
6251 6458efa5 2020-11-24 stsp
6252 6458efa5 2020-11-24 stsp error = got_repo_open(&repo, repo_path, NULL);
6253 6458efa5 2020-11-24 stsp if (error != NULL)
6254 6458efa5 2020-11-24 stsp goto done;
6255 6458efa5 2020-11-24 stsp
6256 6458efa5 2020-11-24 stsp init_curses();
6257 6458efa5 2020-11-24 stsp
6258 6458efa5 2020-11-24 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
6259 51a10b52 2020-12-26 stsp if (error)
6260 51a10b52 2020-12-26 stsp goto done;
6261 51a10b52 2020-12-26 stsp
6262 51a10b52 2020-12-26 stsp error = tog_load_refs(repo);
6263 6458efa5 2020-11-24 stsp if (error)
6264 6458efa5 2020-11-24 stsp goto done;
6265 6458efa5 2020-11-24 stsp
6266 6458efa5 2020-11-24 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_REF);
6267 6458efa5 2020-11-24 stsp if (view == NULL) {
6268 6458efa5 2020-11-24 stsp error = got_error_from_errno("view_open");
6269 6458efa5 2020-11-24 stsp goto done;
6270 6458efa5 2020-11-24 stsp }
6271 6458efa5 2020-11-24 stsp
6272 6458efa5 2020-11-24 stsp error = open_ref_view(view, repo);
6273 6458efa5 2020-11-24 stsp if (error)
6274 6458efa5 2020-11-24 stsp goto done;
6275 6458efa5 2020-11-24 stsp
6276 6458efa5 2020-11-24 stsp if (worktree) {
6277 6458efa5 2020-11-24 stsp /* Release work tree lock. */
6278 6458efa5 2020-11-24 stsp got_worktree_close(worktree);
6279 6458efa5 2020-11-24 stsp worktree = NULL;
6280 6458efa5 2020-11-24 stsp }
6281 6458efa5 2020-11-24 stsp error = view_loop(view);
6282 6458efa5 2020-11-24 stsp done:
6283 6458efa5 2020-11-24 stsp free(repo_path);
6284 6458efa5 2020-11-24 stsp free(cwd);
6285 6458efa5 2020-11-24 stsp if (repo)
6286 6458efa5 2020-11-24 stsp got_repo_close(repo);
6287 51a10b52 2020-12-26 stsp tog_free_refs();
6288 6458efa5 2020-11-24 stsp return error;
6289 6458efa5 2020-11-24 stsp }
6290 6458efa5 2020-11-24 stsp
6291 6458efa5 2020-11-24 stsp static void
6292 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
6293 ce5b7c56 2019-07-09 stsp {
6294 6059809a 2020-12-17 stsp size_t i;
6295 9f7d7167 2018-04-29 stsp
6296 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
6297 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
6298 ce5b7c56 2019-07-09 stsp struct tog_cmd *cmd = &tog_commands[i];
6299 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->name);
6300 ce5b7c56 2019-07-09 stsp }
6301 6879ba42 2020-10-01 naddy fputc('\n', fp);
6302 ce5b7c56 2019-07-09 stsp }
6303 ce5b7c56 2019-07-09 stsp
6304 4ed7e80c 2018-05-20 stsp __dead static void
6305 6879ba42 2020-10-01 naddy usage(int hflag, int status)
6306 9f7d7167 2018-04-29 stsp {
6307 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
6308 6879ba42 2020-10-01 naddy
6309 6879ba42 2020-10-01 naddy fprintf(fp, "usage: %s [-h] [-V | --version] [command] [arg ...]\n",
6310 6879ba42 2020-10-01 naddy getprogname());
6311 6879ba42 2020-10-01 naddy if (hflag) {
6312 6879ba42 2020-10-01 naddy fprintf(fp, "lazy usage: %s path\n", getprogname());
6313 6879ba42 2020-10-01 naddy list_commands(fp);
6314 ee85c5e8 2020-02-29 stsp }
6315 6879ba42 2020-10-01 naddy exit(status);
6316 9f7d7167 2018-04-29 stsp }
6317 9f7d7167 2018-04-29 stsp
6318 c2301be8 2018-04-30 stsp static char **
6319 ee85c5e8 2020-02-29 stsp make_argv(int argc, ...)
6320 c2301be8 2018-04-30 stsp {
6321 ee85c5e8 2020-02-29 stsp va_list ap;
6322 c2301be8 2018-04-30 stsp char **argv;
6323 ee85c5e8 2020-02-29 stsp int i;
6324 c2301be8 2018-04-30 stsp
6325 ee85c5e8 2020-02-29 stsp va_start(ap, argc);
6326 ee85c5e8 2020-02-29 stsp
6327 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
6328 c2301be8 2018-04-30 stsp if (argv == NULL)
6329 c2301be8 2018-04-30 stsp err(1, "calloc");
6330 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++) {
6331 ee85c5e8 2020-02-29 stsp argv[i] = strdup(va_arg(ap, char *));
6332 ee85c5e8 2020-02-29 stsp if (argv[i] == NULL)
6333 e10c916e 2019-09-15 hiltjo err(1, "strdup");
6334 c2301be8 2018-04-30 stsp }
6335 c2301be8 2018-04-30 stsp
6336 ee85c5e8 2020-02-29 stsp va_end(ap);
6337 c2301be8 2018-04-30 stsp return argv;
6338 ee85c5e8 2020-02-29 stsp }
6339 ee85c5e8 2020-02-29 stsp
6340 ee85c5e8 2020-02-29 stsp /*
6341 ee85c5e8 2020-02-29 stsp * Try to convert 'tog path' into a 'tog log path' command.
6342 ee85c5e8 2020-02-29 stsp * The user could simply have mistyped the command rather than knowingly
6343 ee85c5e8 2020-02-29 stsp * provided a path. So check whether argv[0] can in fact be resolved
6344 ee85c5e8 2020-02-29 stsp * to a path in the HEAD commit and print a special error if not.
6345 ee85c5e8 2020-02-29 stsp * This hack is for mpi@ <3
6346 ee85c5e8 2020-02-29 stsp */
6347 ee85c5e8 2020-02-29 stsp static const struct got_error *
6348 ee85c5e8 2020-02-29 stsp tog_log_with_path(int argc, char *argv[])
6349 ee85c5e8 2020-02-29 stsp {
6350 ee85c5e8 2020-02-29 stsp const struct got_error *error = NULL;
6351 ee85c5e8 2020-02-29 stsp struct tog_cmd *cmd = NULL;
6352 ee85c5e8 2020-02-29 stsp struct got_repository *repo = NULL;
6353 ee85c5e8 2020-02-29 stsp struct got_worktree *worktree = NULL;
6354 ee85c5e8 2020-02-29 stsp struct got_object_id *commit_id = NULL, *id = NULL;
6355 ee85c5e8 2020-02-29 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
6356 ee85c5e8 2020-02-29 stsp char *commit_id_str = NULL, **cmd_argv = NULL;
6357 84de9106 2020-12-26 stsp
6358 ee85c5e8 2020-02-29 stsp cwd = getcwd(NULL, 0);
6359 ee85c5e8 2020-02-29 stsp if (cwd == NULL)
6360 ee85c5e8 2020-02-29 stsp return got_error_from_errno("getcwd");
6361 ee85c5e8 2020-02-29 stsp
6362 ee85c5e8 2020-02-29 stsp error = got_worktree_open(&worktree, cwd);
6363 ee85c5e8 2020-02-29 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6364 ee85c5e8 2020-02-29 stsp goto done;
6365 ee85c5e8 2020-02-29 stsp
6366 ee85c5e8 2020-02-29 stsp if (worktree)
6367 ee85c5e8 2020-02-29 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
6368 ee85c5e8 2020-02-29 stsp else
6369 ee85c5e8 2020-02-29 stsp repo_path = strdup(cwd);
6370 ee85c5e8 2020-02-29 stsp if (repo_path == NULL) {
6371 ee85c5e8 2020-02-29 stsp error = got_error_from_errno("strdup");
6372 ee85c5e8 2020-02-29 stsp goto done;
6373 ee85c5e8 2020-02-29 stsp }
6374 ee85c5e8 2020-02-29 stsp
6375 ee85c5e8 2020-02-29 stsp error = got_repo_open(&repo, repo_path, NULL);
6376 ee85c5e8 2020-02-29 stsp if (error != NULL)
6377 ee85c5e8 2020-02-29 stsp goto done;
6378 ee85c5e8 2020-02-29 stsp
6379 ee85c5e8 2020-02-29 stsp error = get_in_repo_path_from_argv0(&in_repo_path, argc, argv,
6380 ee85c5e8 2020-02-29 stsp repo, worktree);
6381 ee85c5e8 2020-02-29 stsp if (error)
6382 ee85c5e8 2020-02-29 stsp goto done;
6383 ee85c5e8 2020-02-29 stsp
6384 87670572 2020-12-26 naddy error = tog_load_refs(repo);
6385 84de9106 2020-12-26 stsp if (error)
6386 84de9106 2020-12-26 stsp goto done;
6387 ee85c5e8 2020-02-29 stsp error = got_repo_match_object_id(&commit_id, NULL, worktree ?
6388 ee85c5e8 2020-02-29 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
6389 87670572 2020-12-26 naddy GOT_OBJ_TYPE_COMMIT, &tog_refs, repo);
6390 ee85c5e8 2020-02-29 stsp if (error)
6391 ee85c5e8 2020-02-29 stsp goto done;
6392 ee85c5e8 2020-02-29 stsp
6393 ee85c5e8 2020-02-29 stsp if (worktree) {
6394 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
6395 ee85c5e8 2020-02-29 stsp worktree = NULL;
6396 ee85c5e8 2020-02-29 stsp }
6397 ee85c5e8 2020-02-29 stsp
6398 ee85c5e8 2020-02-29 stsp error = got_object_id_by_path(&id, repo, commit_id, in_repo_path);
6399 ee85c5e8 2020-02-29 stsp if (error) {
6400 ee85c5e8 2020-02-29 stsp if (error->code != GOT_ERR_NO_TREE_ENTRY)
6401 ee85c5e8 2020-02-29 stsp goto done;
6402 ee85c5e8 2020-02-29 stsp fprintf(stderr, "%s: '%s' is no known command or path\n",
6403 ee85c5e8 2020-02-29 stsp getprogname(), argv[0]);
6404 6879ba42 2020-10-01 naddy usage(1, 1);
6405 ee85c5e8 2020-02-29 stsp /* not reached */
6406 ee85c5e8 2020-02-29 stsp }
6407 ee85c5e8 2020-02-29 stsp
6408 ee85c5e8 2020-02-29 stsp got_repo_close(repo);
6409 ee85c5e8 2020-02-29 stsp repo = NULL;
6410 ee85c5e8 2020-02-29 stsp
6411 ee85c5e8 2020-02-29 stsp error = got_object_id_str(&commit_id_str, commit_id);
6412 ee85c5e8 2020-02-29 stsp if (error)
6413 ee85c5e8 2020-02-29 stsp goto done;
6414 ee85c5e8 2020-02-29 stsp
6415 ee85c5e8 2020-02-29 stsp cmd = &tog_commands[0]; /* log */
6416 ee85c5e8 2020-02-29 stsp argc = 4;
6417 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name, "-c", commit_id_str, argv[0]);
6418 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv);
6419 ee85c5e8 2020-02-29 stsp done:
6420 ee85c5e8 2020-02-29 stsp if (repo)
6421 ee85c5e8 2020-02-29 stsp got_repo_close(repo);
6422 ee85c5e8 2020-02-29 stsp if (worktree)
6423 ee85c5e8 2020-02-29 stsp got_worktree_close(worktree);
6424 ee85c5e8 2020-02-29 stsp free(id);
6425 ee85c5e8 2020-02-29 stsp free(commit_id_str);
6426 ee85c5e8 2020-02-29 stsp free(commit_id);
6427 ee85c5e8 2020-02-29 stsp free(cwd);
6428 ee85c5e8 2020-02-29 stsp free(repo_path);
6429 ee85c5e8 2020-02-29 stsp free(in_repo_path);
6430 ee85c5e8 2020-02-29 stsp if (cmd_argv) {
6431 ee85c5e8 2020-02-29 stsp int i;
6432 ee85c5e8 2020-02-29 stsp for (i = 0; i < argc; i++)
6433 ee85c5e8 2020-02-29 stsp free(cmd_argv[i]);
6434 ee85c5e8 2020-02-29 stsp free(cmd_argv);
6435 ee85c5e8 2020-02-29 stsp }
6436 87670572 2020-12-26 naddy tog_free_refs();
6437 ee85c5e8 2020-02-29 stsp return error;
6438 c2301be8 2018-04-30 stsp }
6439 c2301be8 2018-04-30 stsp
6440 9f7d7167 2018-04-29 stsp int
6441 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
6442 9f7d7167 2018-04-29 stsp {
6443 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
6444 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = NULL;
6445 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
6446 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
6447 83cd27f8 2020-01-13 stsp static struct option longopts[] = {
6448 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
6449 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0}
6450 83cd27f8 2020-01-13 stsp };
6451 9f7d7167 2018-04-29 stsp
6452 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
6453 9f7d7167 2018-04-29 stsp
6454 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
6455 9f7d7167 2018-04-29 stsp switch (ch) {
6456 9f7d7167 2018-04-29 stsp case 'h':
6457 9f7d7167 2018-04-29 stsp hflag = 1;
6458 9f7d7167 2018-04-29 stsp break;
6459 53ccebc2 2019-07-30 stsp case 'V':
6460 53ccebc2 2019-07-30 stsp Vflag = 1;
6461 53ccebc2 2019-07-30 stsp break;
6462 9f7d7167 2018-04-29 stsp default:
6463 6879ba42 2020-10-01 naddy usage(hflag, 1);
6464 9f7d7167 2018-04-29 stsp /* NOTREACHED */
6465 9f7d7167 2018-04-29 stsp }
6466 9f7d7167 2018-04-29 stsp }
6467 9f7d7167 2018-04-29 stsp
6468 9f7d7167 2018-04-29 stsp argc -= optind;
6469 9f7d7167 2018-04-29 stsp argv += optind;
6470 9814e6a3 2020-09-27 naddy optind = 1;
6471 c2301be8 2018-04-30 stsp optreset = 1;
6472 9f7d7167 2018-04-29 stsp
6473 53ccebc2 2019-07-30 stsp if (Vflag) {
6474 53ccebc2 2019-07-30 stsp got_version_print_str();
6475 6879ba42 2020-10-01 naddy return 0;
6476 53ccebc2 2019-07-30 stsp }
6477 4010e238 2020-12-04 stsp
6478 4010e238 2020-12-04 stsp #ifndef PROFILE
6479 4010e238 2020-12-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
6480 4010e238 2020-12-04 stsp NULL) == -1)
6481 4010e238 2020-12-04 stsp err(1, "pledge");
6482 4010e238 2020-12-04 stsp #endif
6483 53ccebc2 2019-07-30 stsp
6484 c2301be8 2018-04-30 stsp if (argc == 0) {
6485 f29d3e89 2018-06-23 stsp if (hflag)
6486 6879ba42 2020-10-01 naddy usage(hflag, 0);
6487 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
6488 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
6489 c2301be8 2018-04-30 stsp argc = 1;
6490 ee85c5e8 2020-02-29 stsp cmd_argv = make_argv(argc, cmd->name);
6491 c2301be8 2018-04-30 stsp } else {
6492 6059809a 2020-12-17 stsp size_t i;
6493 9f7d7167 2018-04-29 stsp
6494 dfd6c250 2020-02-28 stsp /* Did the user specify a command? */
6495 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
6496 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
6497 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
6498 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
6499 9f7d7167 2018-04-29 stsp break;
6500 9f7d7167 2018-04-29 stsp }
6501 9f7d7167 2018-04-29 stsp }
6502 ee85c5e8 2020-02-29 stsp }
6503 3642c4c6 2019-07-09 stsp
6504 ee85c5e8 2020-02-29 stsp if (cmd == NULL) {
6505 ee85c5e8 2020-02-29 stsp if (argc != 1)
6506 6879ba42 2020-10-01 naddy usage(0, 1);
6507 ee85c5e8 2020-02-29 stsp /* No command specified; try log with a path */
6508 ee85c5e8 2020-02-29 stsp error = tog_log_with_path(argc, argv);
6509 ee85c5e8 2020-02-29 stsp } else {
6510 ee85c5e8 2020-02-29 stsp if (hflag)
6511 ee85c5e8 2020-02-29 stsp cmd->cmd_usage();
6512 ee85c5e8 2020-02-29 stsp else
6513 ee85c5e8 2020-02-29 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
6514 9f7d7167 2018-04-29 stsp }
6515 9f7d7167 2018-04-29 stsp
6516 9f7d7167 2018-04-29 stsp endwin();
6517 b46c1e04 2020-09-20 naddy putchar('\n');
6518 a2f4a359 2020-02-28 stsp if (cmd_argv) {
6519 a2f4a359 2020-02-28 stsp int i;
6520 a2f4a359 2020-02-28 stsp for (i = 0; i < argc; i++)
6521 a2f4a359 2020-02-28 stsp free(cmd_argv[i]);
6522 a2f4a359 2020-02-28 stsp free(cmd_argv);
6523 a2f4a359 2020-02-28 stsp }
6524 a2f4a359 2020-02-28 stsp
6525 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
6526 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
6527 9f7d7167 2018-04-29 stsp return 0;
6528 9f7d7167 2018-04-29 stsp }