Blame


1 9f7d7167 2018-04-29 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 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 31120ada 2018-04-30 stsp #include <errno.h>
22 61e69b96 2018-05-20 stsp #define _XOPEN_SOURCE_EXTENDED
23 9f7d7167 2018-04-29 stsp #include <curses.h>
24 61e69b96 2018-05-20 stsp #undef _XOPEN_SOURCE_EXTENDED
25 9f7d7167 2018-04-29 stsp #include <panel.h>
26 9f7d7167 2018-04-29 stsp #include <locale.h>
27 9f7d7167 2018-04-29 stsp #include <stdlib.h>
28 26ed57b2 2018-05-19 stsp #include <stdio.h>
29 9f7d7167 2018-04-29 stsp #include <getopt.h>
30 9f7d7167 2018-04-29 stsp #include <string.h>
31 9f7d7167 2018-04-29 stsp #include <err.h>
32 80ddbec8 2018-04-29 stsp #include <unistd.h>
33 26ed57b2 2018-05-19 stsp #include <util.h>
34 26ed57b2 2018-05-19 stsp #include <limits.h>
35 61e69b96 2018-05-20 stsp #include <wchar.h>
36 788c352e 2018-06-16 stsp #include <time.h>
37 84451b3e 2018-07-10 stsp #include <pthread.h>
38 5036bf37 2018-09-24 stsp #include <libgen.h>
39 60493ae3 2019-06-20 stsp #include <regex.h>
40 9f7d7167 2018-04-29 stsp
41 53ccebc2 2019-07-30 stsp #include "got_version.h"
42 9f7d7167 2018-04-29 stsp #include "got_error.h"
43 80ddbec8 2018-04-29 stsp #include "got_object.h"
44 80ddbec8 2018-04-29 stsp #include "got_reference.h"
45 80ddbec8 2018-04-29 stsp #include "got_repository.h"
46 80ddbec8 2018-04-29 stsp #include "got_diff.h"
47 511a516b 2018-05-19 stsp #include "got_opentemp.h"
48 00dfcb92 2018-06-11 stsp #include "got_utf8.h"
49 6fb7cd11 2019-08-22 stsp #include "got_cancel.h"
50 6fb7cd11 2019-08-22 stsp #include "got_commit_graph.h"
51 a70480e0 2018-06-23 stsp #include "got_blame.h"
52 c2db6724 2019-01-04 stsp #include "got_privsep.h"
53 1dd54920 2019-05-11 stsp #include "got_path.h"
54 b7165be3 2019-02-05 stsp #include "got_worktree.h"
55 9f7d7167 2018-04-29 stsp
56 881b2d3e 2018-04-30 stsp #ifndef MIN
57 881b2d3e 2018-04-30 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
58 881b2d3e 2018-04-30 stsp #endif
59 881b2d3e 2018-04-30 stsp
60 2bd27830 2018-10-22 stsp #ifndef MAX
61 2bd27830 2018-10-22 stsp #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
62 2bd27830 2018-10-22 stsp #endif
63 2bd27830 2018-10-22 stsp
64 a4292ac5 2019-05-12 jcs #define CTRL(x) ((x) & 0x1f)
65 2bd27830 2018-10-22 stsp
66 9f7d7167 2018-04-29 stsp #ifndef nitems
67 9f7d7167 2018-04-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
68 9f7d7167 2018-04-29 stsp #endif
69 9f7d7167 2018-04-29 stsp
70 9f7d7167 2018-04-29 stsp struct tog_cmd {
71 c2301be8 2018-04-30 stsp const char *name;
72 9f7d7167 2018-04-29 stsp const struct got_error *(*cmd_main)(int, char *[]);
73 9f7d7167 2018-04-29 stsp void (*cmd_usage)(void);
74 9f7d7167 2018-04-29 stsp };
75 9f7d7167 2018-04-29 stsp
76 ce5b7c56 2019-07-09 stsp __dead static void usage(int);
77 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
78 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
79 4ed7e80c 2018-05-20 stsp __dead static void usage_blame(void);
80 ffd1d5e5 2018-06-23 stsp __dead static void usage_tree(void);
81 9f7d7167 2018-04-29 stsp
82 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
83 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
84 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_blame(int, char *[]);
85 ffd1d5e5 2018-06-23 stsp static const struct got_error* cmd_tree(int, char *[]);
86 9f7d7167 2018-04-29 stsp
87 4ed7e80c 2018-05-20 stsp static struct tog_cmd tog_commands[] = {
88 5e070240 2019-06-22 stsp { "log", cmd_log, usage_log },
89 5e070240 2019-06-22 stsp { "diff", cmd_diff, usage_diff },
90 5e070240 2019-06-22 stsp { "blame", cmd_blame, usage_blame },
91 5e070240 2019-06-22 stsp { "tree", cmd_tree, usage_tree },
92 9f7d7167 2018-04-29 stsp };
93 9f7d7167 2018-04-29 stsp
94 d6b05b5b 2018-08-04 stsp enum tog_view_type {
95 d6b05b5b 2018-08-04 stsp TOG_VIEW_DIFF,
96 d6b05b5b 2018-08-04 stsp TOG_VIEW_LOG,
97 ad80ab7b 2018-08-04 stsp TOG_VIEW_BLAME,
98 ad80ab7b 2018-08-04 stsp TOG_VIEW_TREE
99 d6b05b5b 2018-08-04 stsp };
100 c3e9aa98 2019-05-13 jcs
101 c3e9aa98 2019-05-13 jcs #define TOG_EOF_STRING "(END)"
102 d6b05b5b 2018-08-04 stsp
103 ba4f502b 2018-08-04 stsp struct commit_queue_entry {
104 ba4f502b 2018-08-04 stsp TAILQ_ENTRY(commit_queue_entry) entry;
105 ba4f502b 2018-08-04 stsp struct got_object_id *id;
106 ba4f502b 2018-08-04 stsp struct got_commit_object *commit;
107 1a76625f 2018-10-22 stsp int idx;
108 ba4f502b 2018-08-04 stsp };
109 ba4f502b 2018-08-04 stsp TAILQ_HEAD(commit_queue_head, commit_queue_entry);
110 ba4f502b 2018-08-04 stsp struct commit_queue {
111 ba4f502b 2018-08-04 stsp int ncommits;
112 ba4f502b 2018-08-04 stsp struct commit_queue_head head;
113 15a087fe 2019-02-21 stsp };
114 15a087fe 2019-02-21 stsp
115 15a087fe 2019-02-21 stsp struct tog_diff_view_state {
116 15a087fe 2019-02-21 stsp struct got_object_id *id1, *id2;
117 15a087fe 2019-02-21 stsp FILE *f;
118 15a087fe 2019-02-21 stsp int first_displayed_line;
119 15a087fe 2019-02-21 stsp int last_displayed_line;
120 15a087fe 2019-02-21 stsp int eof;
121 15a087fe 2019-02-21 stsp int diff_context;
122 15a087fe 2019-02-21 stsp struct got_repository *repo;
123 8b473291 2019-02-21 stsp struct got_reflist_head *refs;
124 15a087fe 2019-02-21 stsp
125 15a087fe 2019-02-21 stsp /* passed from log view; may be NULL */
126 fb872ab2 2019-02-21 stsp struct tog_view *log_view;
127 b01e7d3b 2018-08-04 stsp };
128 b01e7d3b 2018-08-04 stsp
129 1a76625f 2018-10-22 stsp pthread_mutex_t tog_mutex = PTHREAD_MUTEX_INITIALIZER;
130 1a76625f 2018-10-22 stsp
131 1a76625f 2018-10-22 stsp struct tog_log_thread_args {
132 1a76625f 2018-10-22 stsp pthread_cond_t need_commits;
133 1a76625f 2018-10-22 stsp int commits_needed;
134 b01e7d3b 2018-08-04 stsp struct got_commit_graph *graph;
135 1a76625f 2018-10-22 stsp struct commit_queue *commits;
136 1a76625f 2018-10-22 stsp const char *in_repo_path;
137 1a76625f 2018-10-22 stsp struct got_object_id *start_id;
138 1a76625f 2018-10-22 stsp struct got_repository *repo;
139 1a76625f 2018-10-22 stsp int log_complete;
140 1a76625f 2018-10-22 stsp sig_atomic_t *quit;
141 1a76625f 2018-10-22 stsp struct tog_view *view;
142 1a76625f 2018-10-22 stsp struct commit_queue_entry **first_displayed_entry;
143 1a76625f 2018-10-22 stsp struct commit_queue_entry **selected_entry;
144 1a76625f 2018-10-22 stsp };
145 1a76625f 2018-10-22 stsp
146 1a76625f 2018-10-22 stsp struct tog_log_view_state {
147 b01e7d3b 2018-08-04 stsp struct commit_queue commits;
148 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *first_displayed_entry;
149 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *last_displayed_entry;
150 b01e7d3b 2018-08-04 stsp struct commit_queue_entry *selected_entry;
151 b01e7d3b 2018-08-04 stsp int selected;
152 b01e7d3b 2018-08-04 stsp char *in_repo_path;
153 d01904d4 2019-06-25 stsp const char *head_ref_name;
154 b01e7d3b 2018-08-04 stsp struct got_repository *repo;
155 8b473291 2019-02-21 stsp struct got_reflist_head *refs;
156 5036bf37 2018-09-24 stsp struct got_object_id *start_id;
157 1a76625f 2018-10-22 stsp sig_atomic_t quit;
158 1a76625f 2018-10-22 stsp pthread_t thread;
159 1a76625f 2018-10-22 stsp struct tog_log_thread_args thread_args;
160 60493ae3 2019-06-20 stsp struct commit_queue_entry *matched_entry;
161 96e2b566 2019-07-08 stsp struct commit_queue_entry *search_entry;
162 ba4f502b 2018-08-04 stsp };
163 ba4f502b 2018-08-04 stsp
164 e9424729 2018-08-04 stsp struct tog_blame_cb_args {
165 e9424729 2018-08-04 stsp struct tog_blame_line *lines; /* one per line */
166 e9424729 2018-08-04 stsp int nlines;
167 e9424729 2018-08-04 stsp
168 e9424729 2018-08-04 stsp struct tog_view *view;
169 e9424729 2018-08-04 stsp struct got_object_id *commit_id;
170 e9424729 2018-08-04 stsp int *quit;
171 e9424729 2018-08-04 stsp };
172 e9424729 2018-08-04 stsp
173 e9424729 2018-08-04 stsp struct tog_blame_thread_args {
174 e9424729 2018-08-04 stsp const char *path;
175 e9424729 2018-08-04 stsp struct got_repository *repo;
176 e9424729 2018-08-04 stsp struct tog_blame_cb_args *cb_args;
177 e9424729 2018-08-04 stsp int *complete;
178 fc06ba56 2019-08-22 stsp got_cancel_cb cancel_cb;
179 fc06ba56 2019-08-22 stsp void *cancel_arg;
180 e9424729 2018-08-04 stsp };
181 e9424729 2018-08-04 stsp
182 e9424729 2018-08-04 stsp struct tog_blame {
183 e9424729 2018-08-04 stsp FILE *f;
184 e9424729 2018-08-04 stsp size_t filesize;
185 e9424729 2018-08-04 stsp struct tog_blame_line *lines;
186 6fcac457 2018-11-19 stsp int nlines;
187 6c4c42e0 2019-06-24 stsp off_t *line_offsets;
188 e9424729 2018-08-04 stsp pthread_t thread;
189 e9424729 2018-08-04 stsp struct tog_blame_thread_args thread_args;
190 e9424729 2018-08-04 stsp struct tog_blame_cb_args cb_args;
191 e9424729 2018-08-04 stsp const char *path;
192 e9424729 2018-08-04 stsp };
193 e9424729 2018-08-04 stsp
194 7cbe629d 2018-08-04 stsp struct tog_blame_view_state {
195 7cbe629d 2018-08-04 stsp int first_displayed_line;
196 7cbe629d 2018-08-04 stsp int last_displayed_line;
197 7cbe629d 2018-08-04 stsp int selected_line;
198 7cbe629d 2018-08-04 stsp int blame_complete;
199 e5a0f69f 2018-08-18 stsp int eof;
200 e5a0f69f 2018-08-18 stsp int done;
201 7cbe629d 2018-08-04 stsp struct got_object_id_queue blamed_commits;
202 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
203 e5a0f69f 2018-08-18 stsp char *path;
204 7cbe629d 2018-08-04 stsp struct got_repository *repo;
205 8b473291 2019-02-21 stsp struct got_reflist_head *refs;
206 ad80ab7b 2018-08-04 stsp struct got_object_id *commit_id;
207 e9424729 2018-08-04 stsp struct tog_blame blame;
208 6c4c42e0 2019-06-24 stsp int matched_line;
209 ad80ab7b 2018-08-04 stsp };
210 ad80ab7b 2018-08-04 stsp
211 ad80ab7b 2018-08-04 stsp struct tog_parent_tree {
212 ad80ab7b 2018-08-04 stsp TAILQ_ENTRY(tog_parent_tree) entry;
213 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
214 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
215 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
216 ad80ab7b 2018-08-04 stsp int selected;
217 ad80ab7b 2018-08-04 stsp };
218 ad80ab7b 2018-08-04 stsp
219 ad80ab7b 2018-08-04 stsp TAILQ_HEAD(tog_parent_trees, tog_parent_tree);
220 ad80ab7b 2018-08-04 stsp
221 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state {
222 ad80ab7b 2018-08-04 stsp char *tree_label;
223 ad80ab7b 2018-08-04 stsp struct got_tree_object *root;
224 ad80ab7b 2018-08-04 stsp struct got_tree_object *tree;
225 ad80ab7b 2018-08-04 stsp const struct got_tree_entries *entries;
226 ad80ab7b 2018-08-04 stsp struct got_tree_entry *first_displayed_entry;
227 ad80ab7b 2018-08-04 stsp struct got_tree_entry *last_displayed_entry;
228 ad80ab7b 2018-08-04 stsp struct got_tree_entry *selected_entry;
229 416a95c5 2019-01-24 stsp int ndisplayed, selected, show_ids;
230 ad80ab7b 2018-08-04 stsp struct tog_parent_trees parents;
231 7cbe629d 2018-08-04 stsp struct got_object_id *commit_id;
232 ad80ab7b 2018-08-04 stsp struct got_repository *repo;
233 8b473291 2019-02-21 stsp struct got_reflist_head *refs;
234 7c32bd05 2019-06-22 stsp struct got_tree_entry *matched_entry;
235 7cbe629d 2018-08-04 stsp };
236 7cbe629d 2018-08-04 stsp
237 669b5ffa 2018-10-07 stsp /*
238 669b5ffa 2018-10-07 stsp * We implement two types of views: parent views and child views.
239 669b5ffa 2018-10-07 stsp *
240 669b5ffa 2018-10-07 stsp * The 'Tab' key switches between a parent view and its child view.
241 669b5ffa 2018-10-07 stsp * Child views are shown side-by-side to their parent view, provided
242 669b5ffa 2018-10-07 stsp * there is enough screen estate.
243 669b5ffa 2018-10-07 stsp *
244 669b5ffa 2018-10-07 stsp * When a new view is opened from within a parent view, this new view
245 669b5ffa 2018-10-07 stsp * becomes a child view of the parent view, replacing any existing child.
246 669b5ffa 2018-10-07 stsp *
247 669b5ffa 2018-10-07 stsp * When a new view is opened from within a child view, this new view
248 669b5ffa 2018-10-07 stsp * becomes a parent view which will obscure the views below until the
249 669b5ffa 2018-10-07 stsp * user quits the new parent view by typing 'q'.
250 669b5ffa 2018-10-07 stsp *
251 669b5ffa 2018-10-07 stsp * This list of views contains parent views only.
252 669b5ffa 2018-10-07 stsp * Child views are only pointed to by their parent view.
253 669b5ffa 2018-10-07 stsp */
254 bcbd79e2 2018-08-19 stsp TAILQ_HEAD(tog_view_list_head, tog_view);
255 669b5ffa 2018-10-07 stsp
256 cc3c9aac 2018-08-01 stsp struct tog_view {
257 e5a0f69f 2018-08-18 stsp TAILQ_ENTRY(tog_view) entry;
258 26ed57b2 2018-05-19 stsp WINDOW *window;
259 26ed57b2 2018-05-19 stsp PANEL *panel;
260 97ddc146 2018-08-01 stsp int nlines, ncols, begin_y, begin_x;
261 f7d12f7e 2018-08-01 stsp int lines, cols; /* copies of LINES and COLS */
262 1004088d 2018-09-29 stsp int focussed;
263 669b5ffa 2018-10-07 stsp struct tog_view *parent;
264 669b5ffa 2018-10-07 stsp struct tog_view *child;
265 669b5ffa 2018-10-07 stsp int child_focussed;
266 5dc9f4bc 2018-08-04 stsp
267 5dc9f4bc 2018-08-04 stsp /* type-specific state */
268 d6b05b5b 2018-08-04 stsp enum tog_view_type type;
269 5dc9f4bc 2018-08-04 stsp union {
270 b01e7d3b 2018-08-04 stsp struct tog_diff_view_state diff;
271 b01e7d3b 2018-08-04 stsp struct tog_log_view_state log;
272 7cbe629d 2018-08-04 stsp struct tog_blame_view_state blame;
273 ad80ab7b 2018-08-04 stsp struct tog_tree_view_state tree;
274 5dc9f4bc 2018-08-04 stsp } state;
275 e5a0f69f 2018-08-18 stsp
276 e5a0f69f 2018-08-18 stsp const struct got_error *(*show)(struct tog_view *);
277 e5a0f69f 2018-08-18 stsp const struct got_error *(*input)(struct tog_view **,
278 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view**, struct tog_view *, int);
279 e5a0f69f 2018-08-18 stsp const struct got_error *(*close)(struct tog_view *);
280 60493ae3 2019-06-20 stsp
281 60493ae3 2019-06-20 stsp const struct got_error *(*search_start)(struct tog_view *);
282 60493ae3 2019-06-20 stsp const struct got_error *(*search_next)(struct tog_view *);
283 60493ae3 2019-06-20 stsp int searching;
284 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_FORWARD 1
285 b1bf1435 2019-06-21 stsp #define TOG_SEARCH_BACKWARD 2
286 60493ae3 2019-06-20 stsp int search_next_done;
287 1803e47f 2019-06-22 stsp regex_t regex;
288 cc3c9aac 2018-08-01 stsp };
289 cd0acaa7 2018-05-20 stsp
290 ba4f502b 2018-08-04 stsp static const struct got_error *open_diff_view(struct tog_view *,
291 fb872ab2 2019-02-21 stsp struct got_object_id *, struct got_object_id *, struct tog_view *,
292 8b473291 2019-02-21 stsp struct got_reflist_head *, struct got_repository *);
293 5dc9f4bc 2018-08-04 stsp static const struct got_error *show_diff_view(struct tog_view *);
294 e5a0f69f 2018-08-18 stsp static const struct got_error *input_diff_view(struct tog_view **,
295 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
296 e5a0f69f 2018-08-18 stsp static const struct got_error* close_diff_view(struct tog_view *);
297 e5a0f69f 2018-08-18 stsp
298 ba4f502b 2018-08-04 stsp static const struct got_error *open_log_view(struct tog_view *,
299 8b473291 2019-02-21 stsp struct got_object_id *, struct got_reflist_head *,
300 d01904d4 2019-06-25 stsp struct got_repository *, const char *, const char *, int);
301 ba4f502b 2018-08-04 stsp static const struct got_error * show_log_view(struct tog_view *);
302 e5a0f69f 2018-08-18 stsp static const struct got_error *input_log_view(struct tog_view **,
303 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
304 e5a0f69f 2018-08-18 stsp static const struct got_error *close_log_view(struct tog_view *);
305 60493ae3 2019-06-20 stsp static const struct got_error *search_start_log_view(struct tog_view *);
306 60493ae3 2019-06-20 stsp static const struct got_error *search_next_log_view(struct tog_view *);
307 e5a0f69f 2018-08-18 stsp
308 e5a0f69f 2018-08-18 stsp static const struct got_error *open_blame_view(struct tog_view *, char *,
309 8b473291 2019-02-21 stsp struct got_object_id *, struct got_reflist_head *, struct got_repository *);
310 7cbe629d 2018-08-04 stsp static const struct got_error *show_blame_view(struct tog_view *);
311 e5a0f69f 2018-08-18 stsp static const struct got_error *input_blame_view(struct tog_view **,
312 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
313 e5a0f69f 2018-08-18 stsp static const struct got_error *close_blame_view(struct tog_view *);
314 6c4c42e0 2019-06-24 stsp static const struct got_error *search_start_blame_view(struct tog_view *);
315 6c4c42e0 2019-06-24 stsp static const struct got_error *search_next_blame_view(struct tog_view *);
316 e5a0f69f 2018-08-18 stsp
317 ad80ab7b 2018-08-04 stsp static const struct got_error *open_tree_view(struct tog_view *,
318 8b473291 2019-02-21 stsp struct got_tree_object *, struct got_object_id *,
319 8b473291 2019-02-21 stsp struct got_reflist_head *, struct got_repository *);
320 ad80ab7b 2018-08-04 stsp static const struct got_error *show_tree_view(struct tog_view *);
321 e5a0f69f 2018-08-18 stsp static const struct got_error *input_tree_view(struct tog_view **,
322 878940b7 2018-09-29 stsp struct tog_view **, struct tog_view **, struct tog_view *, int);
323 e5a0f69f 2018-08-18 stsp static const struct got_error *close_tree_view(struct tog_view *);
324 7c32bd05 2019-06-22 stsp static const struct got_error *search_start_tree_view(struct tog_view *);
325 7c32bd05 2019-06-22 stsp static const struct got_error *search_next_tree_view(struct tog_view *);
326 25791caa 2018-10-24 stsp
327 25791caa 2018-10-24 stsp static volatile sig_atomic_t tog_sigwinch_received;
328 83baff54 2019-08-12 stsp static volatile sig_atomic_t tog_sigpipe_received;
329 25791caa 2018-10-24 stsp
330 25791caa 2018-10-24 stsp static void
331 25791caa 2018-10-24 stsp tog_sigwinch(int signo)
332 25791caa 2018-10-24 stsp {
333 25791caa 2018-10-24 stsp tog_sigwinch_received = 1;
334 83baff54 2019-08-12 stsp }
335 83baff54 2019-08-12 stsp
336 83baff54 2019-08-12 stsp static void
337 83baff54 2019-08-12 stsp tog_sigpipe(int signo)
338 83baff54 2019-08-12 stsp {
339 83baff54 2019-08-12 stsp tog_sigpipe_received = 1;
340 25791caa 2018-10-24 stsp }
341 26ed57b2 2018-05-19 stsp
342 e5a0f69f 2018-08-18 stsp static const struct got_error *
343 96a765a8 2018-08-04 stsp view_close(struct tog_view *view)
344 ea5e7bb5 2018-08-01 stsp {
345 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
346 e5a0f69f 2018-08-18 stsp
347 669b5ffa 2018-10-07 stsp if (view->child) {
348 669b5ffa 2018-10-07 stsp view_close(view->child);
349 669b5ffa 2018-10-07 stsp view->child = NULL;
350 669b5ffa 2018-10-07 stsp }
351 e5a0f69f 2018-08-18 stsp if (view->close)
352 e5a0f69f 2018-08-18 stsp err = view->close(view);
353 ea5e7bb5 2018-08-01 stsp if (view->panel)
354 ea5e7bb5 2018-08-01 stsp del_panel(view->panel);
355 ea5e7bb5 2018-08-01 stsp if (view->window)
356 ea5e7bb5 2018-08-01 stsp delwin(view->window);
357 ea5e7bb5 2018-08-01 stsp free(view);
358 e5a0f69f 2018-08-18 stsp return err;
359 ea5e7bb5 2018-08-01 stsp }
360 ea5e7bb5 2018-08-01 stsp
361 ea5e7bb5 2018-08-01 stsp static struct tog_view *
362 b3665f43 2018-08-04 stsp view_open(int nlines, int ncols, int begin_y, int begin_x,
363 0cf4efb1 2018-09-29 stsp enum tog_view_type type)
364 ea5e7bb5 2018-08-01 stsp {
365 ad80ab7b 2018-08-04 stsp struct tog_view *view = calloc(1, sizeof(*view));
366 ea5e7bb5 2018-08-01 stsp
367 ea5e7bb5 2018-08-01 stsp if (view == NULL)
368 ea5e7bb5 2018-08-01 stsp return NULL;
369 ea5e7bb5 2018-08-01 stsp
370 d6b05b5b 2018-08-04 stsp view->type = type;
371 f7d12f7e 2018-08-01 stsp view->lines = LINES;
372 f7d12f7e 2018-08-01 stsp view->cols = COLS;
373 207b9029 2018-08-01 stsp view->nlines = nlines ? nlines : LINES - begin_y;
374 207b9029 2018-08-01 stsp view->ncols = ncols ? ncols : COLS - begin_x;
375 97ddc146 2018-08-01 stsp view->begin_y = begin_y;
376 97ddc146 2018-08-01 stsp view->begin_x = begin_x;
377 842167bf 2018-08-01 stsp view->window = newwin(nlines, ncols, begin_y, begin_x);
378 ea5e7bb5 2018-08-01 stsp if (view->window == NULL) {
379 96a765a8 2018-08-04 stsp view_close(view);
380 ea5e7bb5 2018-08-01 stsp return NULL;
381 ea5e7bb5 2018-08-01 stsp }
382 ea5e7bb5 2018-08-01 stsp view->panel = new_panel(view->window);
383 0cf4efb1 2018-09-29 stsp if (view->panel == NULL ||
384 0cf4efb1 2018-09-29 stsp set_panel_userptr(view->panel, view) != OK) {
385 96a765a8 2018-08-04 stsp view_close(view);
386 ea5e7bb5 2018-08-01 stsp return NULL;
387 ea5e7bb5 2018-08-01 stsp }
388 ea5e7bb5 2018-08-01 stsp
389 ea5e7bb5 2018-08-01 stsp keypad(view->window, TRUE);
390 ea5e7bb5 2018-08-01 stsp return view;
391 cdf1ee82 2018-08-01 stsp }
392 cdf1ee82 2018-08-01 stsp
393 0cf4efb1 2018-09-29 stsp static int
394 0cf4efb1 2018-09-29 stsp view_split_begin_x(int begin_x)
395 0cf4efb1 2018-09-29 stsp {
396 2bd27830 2018-10-22 stsp if (begin_x > 0 || COLS < 120)
397 0cf4efb1 2018-09-29 stsp return 0;
398 2bd27830 2018-10-22 stsp return (COLS - MAX(COLS / 2, 80));
399 5c60c32a 2018-10-18 stsp }
400 5c60c32a 2018-10-18 stsp
401 5c60c32a 2018-10-18 stsp static const struct got_error *view_resize(struct tog_view *);
402 5c60c32a 2018-10-18 stsp
403 5c60c32a 2018-10-18 stsp static const struct got_error *
404 5c60c32a 2018-10-18 stsp view_splitscreen(struct tog_view *view)
405 5c60c32a 2018-10-18 stsp {
406 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
407 5c60c32a 2018-10-18 stsp
408 5c60c32a 2018-10-18 stsp view->begin_y = 0;
409 5c60c32a 2018-10-18 stsp view->begin_x = view_split_begin_x(0);
410 5c60c32a 2018-10-18 stsp view->nlines = LINES;
411 5c60c32a 2018-10-18 stsp view->ncols = COLS - view->begin_x;
412 5c60c32a 2018-10-18 stsp view->lines = LINES;
413 5c60c32a 2018-10-18 stsp view->cols = COLS;
414 5c60c32a 2018-10-18 stsp err = view_resize(view);
415 5c60c32a 2018-10-18 stsp if (err)
416 5c60c32a 2018-10-18 stsp return err;
417 5c60c32a 2018-10-18 stsp
418 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
419 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
420 5c60c32a 2018-10-18 stsp
421 5c60c32a 2018-10-18 stsp return NULL;
422 5c60c32a 2018-10-18 stsp }
423 5c60c32a 2018-10-18 stsp
424 5c60c32a 2018-10-18 stsp static const struct got_error *
425 5c60c32a 2018-10-18 stsp view_fullscreen(struct tog_view *view)
426 5c60c32a 2018-10-18 stsp {
427 5c60c32a 2018-10-18 stsp const struct got_error *err = NULL;
428 5c60c32a 2018-10-18 stsp
429 5c60c32a 2018-10-18 stsp view->begin_x = 0;
430 5c60c32a 2018-10-18 stsp view->begin_y = 0;
431 5c60c32a 2018-10-18 stsp view->nlines = LINES;
432 5c60c32a 2018-10-18 stsp view->ncols = COLS;
433 5c60c32a 2018-10-18 stsp view->lines = LINES;
434 5c60c32a 2018-10-18 stsp view->cols = COLS;
435 5c60c32a 2018-10-18 stsp err = view_resize(view);
436 5c60c32a 2018-10-18 stsp if (err)
437 5c60c32a 2018-10-18 stsp return err;
438 5c60c32a 2018-10-18 stsp
439 5c60c32a 2018-10-18 stsp if (mvwin(view->window, view->begin_y, view->begin_x) == ERR)
440 638f9024 2019-05-13 stsp return got_error_from_errno("mvwin");
441 5c60c32a 2018-10-18 stsp
442 5c60c32a 2018-10-18 stsp return NULL;
443 0cf4efb1 2018-09-29 stsp }
444 0cf4efb1 2018-09-29 stsp
445 5c60c32a 2018-10-18 stsp static int
446 5c60c32a 2018-10-18 stsp view_is_parent_view(struct tog_view *view)
447 5c60c32a 2018-10-18 stsp {
448 5c60c32a 2018-10-18 stsp return view->parent == NULL;
449 5c60c32a 2018-10-18 stsp }
450 5c60c32a 2018-10-18 stsp
451 4d8c2215 2018-08-19 stsp static const struct got_error *
452 f7d12f7e 2018-08-01 stsp view_resize(struct tog_view *view)
453 f7d12f7e 2018-08-01 stsp {
454 f7d12f7e 2018-08-01 stsp int nlines, ncols;
455 f7d12f7e 2018-08-01 stsp
456 0cf4efb1 2018-09-29 stsp if (view->lines > LINES)
457 0cf4efb1 2018-09-29 stsp nlines = view->nlines - (view->lines - LINES);
458 0cf4efb1 2018-09-29 stsp else
459 0cf4efb1 2018-09-29 stsp nlines = view->nlines + (LINES - view->lines);
460 f7d12f7e 2018-08-01 stsp
461 0cf4efb1 2018-09-29 stsp if (view->cols > COLS)
462 0cf4efb1 2018-09-29 stsp ncols = view->ncols - (view->cols - COLS);
463 0cf4efb1 2018-09-29 stsp else
464 0cf4efb1 2018-09-29 stsp ncols = view->ncols + (COLS - view->cols);
465 f7d12f7e 2018-08-01 stsp
466 0cf4efb1 2018-09-29 stsp if (wresize(view->window, nlines, ncols) == ERR)
467 638f9024 2019-05-13 stsp return got_error_from_errno("wresize");
468 a6d7eb8d 2018-10-24 stsp if (replace_panel(view->panel, view->window) == ERR)
469 638f9024 2019-05-13 stsp return got_error_from_errno("replace_panel");
470 25791caa 2018-10-24 stsp wclear(view->window);
471 f7d12f7e 2018-08-01 stsp
472 0cf4efb1 2018-09-29 stsp view->nlines = nlines;
473 0cf4efb1 2018-09-29 stsp view->ncols = ncols;
474 0cf4efb1 2018-09-29 stsp view->lines = LINES;
475 0cf4efb1 2018-09-29 stsp view->cols = COLS;
476 6d0fee91 2018-08-01 stsp
477 6e3e5d9c 2018-10-18 stsp if (view->child) {
478 5c60c32a 2018-10-18 stsp view->child->begin_x = view_split_begin_x(view->begin_x);
479 5c60c32a 2018-10-18 stsp if (view->child->begin_x == 0) {
480 5c60c32a 2018-10-18 stsp view_fullscreen(view->child);
481 5c60c32a 2018-10-18 stsp if (view->child->focussed)
482 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
483 5c60c32a 2018-10-18 stsp else
484 5c60c32a 2018-10-18 stsp show_panel(view->panel);
485 5c60c32a 2018-10-18 stsp } else {
486 5c60c32a 2018-10-18 stsp view_splitscreen(view->child);
487 5c60c32a 2018-10-18 stsp show_panel(view->child->panel);
488 5c60c32a 2018-10-18 stsp }
489 5c60c32a 2018-10-18 stsp }
490 669b5ffa 2018-10-07 stsp
491 5c60c32a 2018-10-18 stsp return NULL;
492 669b5ffa 2018-10-07 stsp }
493 669b5ffa 2018-10-07 stsp
494 669b5ffa 2018-10-07 stsp static const struct got_error *
495 669b5ffa 2018-10-07 stsp view_close_child(struct tog_view *view)
496 669b5ffa 2018-10-07 stsp {
497 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
498 669b5ffa 2018-10-07 stsp
499 669b5ffa 2018-10-07 stsp if (view->child == NULL)
500 669b5ffa 2018-10-07 stsp return NULL;
501 669b5ffa 2018-10-07 stsp
502 669b5ffa 2018-10-07 stsp err = view_close(view->child);
503 669b5ffa 2018-10-07 stsp view->child = NULL;
504 669b5ffa 2018-10-07 stsp return err;
505 669b5ffa 2018-10-07 stsp }
506 669b5ffa 2018-10-07 stsp
507 669b5ffa 2018-10-07 stsp static const struct got_error *
508 669b5ffa 2018-10-07 stsp view_set_child(struct tog_view *view, struct tog_view *child)
509 669b5ffa 2018-10-07 stsp {
510 669b5ffa 2018-10-07 stsp const struct got_error *err = NULL;
511 669b5ffa 2018-10-07 stsp
512 669b5ffa 2018-10-07 stsp view->child = child;
513 669b5ffa 2018-10-07 stsp child->parent = view;
514 669b5ffa 2018-10-07 stsp return err;
515 bfddd0d9 2018-09-29 stsp }
516 bfddd0d9 2018-09-29 stsp
517 bfddd0d9 2018-09-29 stsp static int
518 bfddd0d9 2018-09-29 stsp view_is_splitscreen(struct tog_view *view)
519 bfddd0d9 2018-09-29 stsp {
520 f5215bb9 2019-02-22 stsp return view->begin_x > 0;
521 34bc9ec9 2019-02-22 stsp }
522 34bc9ec9 2019-02-22 stsp
523 34bc9ec9 2019-02-22 stsp static void
524 79fcf3e4 2018-11-04 stsp tog_resizeterm(void)
525 25791caa 2018-10-24 stsp {
526 25791caa 2018-10-24 stsp int cols, lines;
527 25791caa 2018-10-24 stsp struct winsize size;
528 25791caa 2018-10-24 stsp
529 25791caa 2018-10-24 stsp if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) < 0) {
530 25791caa 2018-10-24 stsp cols = 80; /* Default */
531 25791caa 2018-10-24 stsp lines = 24;
532 25791caa 2018-10-24 stsp } else {
533 25791caa 2018-10-24 stsp cols = size.ws_col;
534 25791caa 2018-10-24 stsp lines = size.ws_row;
535 25791caa 2018-10-24 stsp }
536 25791caa 2018-10-24 stsp resize_term(lines, cols);
537 2b49a8ae 2019-06-22 stsp }
538 2b49a8ae 2019-06-22 stsp
539 2b49a8ae 2019-06-22 stsp static const struct got_error *
540 2b49a8ae 2019-06-22 stsp view_search_start(struct tog_view *view)
541 2b49a8ae 2019-06-22 stsp {
542 7c32bd05 2019-06-22 stsp const struct got_error *err = NULL;
543 2b49a8ae 2019-06-22 stsp char pattern[1024];
544 2b49a8ae 2019-06-22 stsp int ret;
545 7d049c18 2019-08-21 stsp int begin_x = 0;
546 2b49a8ae 2019-06-22 stsp
547 2b49a8ae 2019-06-22 stsp if (view->nlines < 1)
548 2b49a8ae 2019-06-22 stsp return NULL;
549 2b49a8ae 2019-06-22 stsp
550 7d049c18 2019-08-21 stsp if (!view_is_parent_view(view))
551 7d049c18 2019-08-21 stsp begin_x = view_split_begin_x(view->begin_x);
552 2b49a8ae 2019-06-22 stsp mvwaddstr(view->window, view->begin_y + view->nlines - 1,
553 7d049c18 2019-08-21 stsp begin_x, "/");
554 2b49a8ae 2019-06-22 stsp wclrtoeol(view->window);
555 2b49a8ae 2019-06-22 stsp
556 2b49a8ae 2019-06-22 stsp nocbreak();
557 2b49a8ae 2019-06-22 stsp echo();
558 2b49a8ae 2019-06-22 stsp ret = wgetnstr(view->window, pattern, sizeof(pattern));
559 2b49a8ae 2019-06-22 stsp cbreak();
560 2b49a8ae 2019-06-22 stsp noecho();
561 2b49a8ae 2019-06-22 stsp if (ret == ERR)
562 2b49a8ae 2019-06-22 stsp return NULL;
563 2b49a8ae 2019-06-22 stsp
564 2b49a8ae 2019-06-22 stsp if (view->searching) {
565 2b49a8ae 2019-06-22 stsp regfree(&view->regex);
566 2b49a8ae 2019-06-22 stsp view->searching = 0;
567 2b49a8ae 2019-06-22 stsp }
568 2b49a8ae 2019-06-22 stsp
569 2b49a8ae 2019-06-22 stsp if (regcomp(&view->regex, pattern,
570 f5daf9b1 2019-06-24 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE) == 0) {
571 7c32bd05 2019-06-22 stsp err = view->search_start(view);
572 7c32bd05 2019-06-22 stsp if (err) {
573 7c32bd05 2019-06-22 stsp regfree(&view->regex);
574 7c32bd05 2019-06-22 stsp return err;
575 7c32bd05 2019-06-22 stsp }
576 2b49a8ae 2019-06-22 stsp view->searching = TOG_SEARCH_FORWARD;
577 2b49a8ae 2019-06-22 stsp view->search_next_done = 0;
578 2b49a8ae 2019-06-22 stsp view->search_next(view);
579 2b49a8ae 2019-06-22 stsp }
580 2b49a8ae 2019-06-22 stsp
581 2b49a8ae 2019-06-22 stsp return NULL;
582 0cf4efb1 2018-09-29 stsp }
583 6d0fee91 2018-08-01 stsp
584 0cf4efb1 2018-09-29 stsp static const struct got_error *
585 48fcc512 2018-08-18 stsp view_input(struct tog_view **new, struct tog_view **dead,
586 e4197bf9 2018-08-18 stsp struct tog_view **focus, int *done, struct tog_view *view,
587 48fcc512 2018-08-18 stsp struct tog_view_list_head *views)
588 e5a0f69f 2018-08-18 stsp {
589 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
590 669b5ffa 2018-10-07 stsp struct tog_view *v;
591 1a76625f 2018-10-22 stsp int ch, errcode;
592 e5a0f69f 2018-08-18 stsp
593 e5a0f69f 2018-08-18 stsp *new = NULL;
594 e5a0f69f 2018-08-18 stsp *dead = NULL;
595 0cf4efb1 2018-09-29 stsp *focus = NULL;
596 e5a0f69f 2018-08-18 stsp
597 60493ae3 2019-06-20 stsp if (view->searching && !view->search_next_done) {
598 60493ae3 2019-06-20 stsp errcode = pthread_mutex_unlock(&tog_mutex);
599 60493ae3 2019-06-20 stsp if (errcode)
600 60493ae3 2019-06-20 stsp return got_error_set_errno(errcode,
601 60493ae3 2019-06-20 stsp "pthread_mutex_unlock");
602 60493ae3 2019-06-20 stsp pthread_yield();
603 60493ae3 2019-06-20 stsp errcode = pthread_mutex_lock(&tog_mutex);
604 60493ae3 2019-06-20 stsp if (errcode)
605 60493ae3 2019-06-20 stsp return got_error_set_errno(errcode,
606 60493ae3 2019-06-20 stsp "pthread_mutex_lock");
607 60493ae3 2019-06-20 stsp view->search_next(view);
608 60493ae3 2019-06-20 stsp return NULL;
609 60493ae3 2019-06-20 stsp }
610 60493ae3 2019-06-20 stsp
611 e5a0f69f 2018-08-18 stsp nodelay(stdscr, FALSE);
612 1a76625f 2018-10-22 stsp /* Allow threads to make progress while we are waiting for input. */
613 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
614 1a76625f 2018-10-22 stsp if (errcode)
615 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_unlock");
616 cc5bac66 2018-10-22 stsp ch = wgetch(view->window);
617 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
618 1a76625f 2018-10-22 stsp if (errcode)
619 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
620 e5a0f69f 2018-08-18 stsp nodelay(stdscr, TRUE);
621 25791caa 2018-10-24 stsp
622 25791caa 2018-10-24 stsp if (tog_sigwinch_received) {
623 25791caa 2018-10-24 stsp tog_resizeterm();
624 25791caa 2018-10-24 stsp tog_sigwinch_received = 0;
625 25791caa 2018-10-24 stsp TAILQ_FOREACH(v, views, entry) {
626 25791caa 2018-10-24 stsp err = view_resize(v);
627 25791caa 2018-10-24 stsp if (err)
628 25791caa 2018-10-24 stsp return err;
629 25791caa 2018-10-24 stsp err = v->input(new, dead, focus, v, KEY_RESIZE);
630 25791caa 2018-10-24 stsp if (err)
631 25791caa 2018-10-24 stsp return err;
632 25791caa 2018-10-24 stsp }
633 25791caa 2018-10-24 stsp }
634 25791caa 2018-10-24 stsp
635 e5a0f69f 2018-08-18 stsp switch (ch) {
636 1e37a5c2 2019-05-12 jcs case ERR:
637 1e37a5c2 2019-05-12 jcs break;
638 1e37a5c2 2019-05-12 jcs case '\t':
639 1e37a5c2 2019-05-12 jcs if (view->child) {
640 1e37a5c2 2019-05-12 jcs *focus = view->child;
641 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
642 1e37a5c2 2019-05-12 jcs } else if (view->parent) {
643 1e37a5c2 2019-05-12 jcs *focus = view->parent;
644 1e37a5c2 2019-05-12 jcs view->parent->child_focussed = 0;
645 1e37a5c2 2019-05-12 jcs }
646 1e37a5c2 2019-05-12 jcs break;
647 1e37a5c2 2019-05-12 jcs case 'q':
648 1e37a5c2 2019-05-12 jcs err = view->input(new, dead, focus, view, ch);
649 1e37a5c2 2019-05-12 jcs *dead = view;
650 1e37a5c2 2019-05-12 jcs break;
651 1e37a5c2 2019-05-12 jcs case 'Q':
652 1e37a5c2 2019-05-12 jcs *done = 1;
653 1e37a5c2 2019-05-12 jcs break;
654 1e37a5c2 2019-05-12 jcs case 'f':
655 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
656 1e37a5c2 2019-05-12 jcs if (view->child == NULL)
657 1e37a5c2 2019-05-12 jcs break;
658 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view->child)) {
659 669b5ffa 2018-10-07 stsp *focus = view->child;
660 669b5ffa 2018-10-07 stsp view->child_focussed = 1;
661 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view->child);
662 1e37a5c2 2019-05-12 jcs } else
663 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view->child);
664 1e37a5c2 2019-05-12 jcs if (err)
665 1e37a5c2 2019-05-12 jcs break;
666 1e37a5c2 2019-05-12 jcs err = view->child->input(new, dead, focus,
667 1e37a5c2 2019-05-12 jcs view->child, KEY_RESIZE);
668 1e37a5c2 2019-05-12 jcs } else {
669 1e37a5c2 2019-05-12 jcs if (view_is_splitscreen(view)) {
670 1e37a5c2 2019-05-12 jcs *focus = view;
671 1e37a5c2 2019-05-12 jcs view->parent->child_focussed = 1;
672 1e37a5c2 2019-05-12 jcs err = view_fullscreen(view);
673 1e37a5c2 2019-05-12 jcs } else {
674 1e37a5c2 2019-05-12 jcs err = view_splitscreen(view);
675 669b5ffa 2018-10-07 stsp }
676 1e37a5c2 2019-05-12 jcs if (err)
677 1e37a5c2 2019-05-12 jcs break;
678 1e37a5c2 2019-05-12 jcs err = view->input(new, dead, focus, view,
679 1e37a5c2 2019-05-12 jcs KEY_RESIZE);
680 1e37a5c2 2019-05-12 jcs }
681 1e37a5c2 2019-05-12 jcs break;
682 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
683 60493ae3 2019-06-20 stsp break;
684 60493ae3 2019-06-20 stsp case '/':
685 60493ae3 2019-06-20 stsp if (view->search_start)
686 2b49a8ae 2019-06-22 stsp view_search_start(view);
687 60493ae3 2019-06-20 stsp else
688 60493ae3 2019-06-20 stsp err = view->input(new, dead, focus, view, ch);
689 1e37a5c2 2019-05-12 jcs break;
690 b1bf1435 2019-06-21 stsp case 'N':
691 60493ae3 2019-06-20 stsp case 'n':
692 60493ae3 2019-06-20 stsp if (view->search_next && view->searching) {
693 b1bf1435 2019-06-21 stsp view->searching = (ch == 'n' ?
694 b1bf1435 2019-06-21 stsp TOG_SEARCH_FORWARD : TOG_SEARCH_BACKWARD);
695 60493ae3 2019-06-20 stsp view->search_next_done = 0;
696 60493ae3 2019-06-20 stsp view->search_next(view);
697 60493ae3 2019-06-20 stsp } else
698 60493ae3 2019-06-20 stsp err = view->input(new, dead, focus, view, ch);
699 60493ae3 2019-06-20 stsp break;
700 1e37a5c2 2019-05-12 jcs default:
701 1e37a5c2 2019-05-12 jcs err = view->input(new, dead, focus, view, ch);
702 1e37a5c2 2019-05-12 jcs break;
703 e5a0f69f 2018-08-18 stsp }
704 e5a0f69f 2018-08-18 stsp
705 e5a0f69f 2018-08-18 stsp return err;
706 e5a0f69f 2018-08-18 stsp }
707 e5a0f69f 2018-08-18 stsp
708 1a57306a 2018-09-02 stsp void
709 1a57306a 2018-09-02 stsp view_vborder(struct tog_view *view)
710 1a57306a 2018-09-02 stsp {
711 0cf4efb1 2018-09-29 stsp PANEL *panel;
712 0cf4efb1 2018-09-29 stsp struct tog_view *view_above;
713 0cf4efb1 2018-09-29 stsp
714 669b5ffa 2018-10-07 stsp if (view->parent)
715 669b5ffa 2018-10-07 stsp return view_vborder(view->parent);
716 669b5ffa 2018-10-07 stsp
717 0cf4efb1 2018-09-29 stsp panel = panel_above(view->panel);
718 0cf4efb1 2018-09-29 stsp if (panel == NULL)
719 1a57306a 2018-09-02 stsp return;
720 1a57306a 2018-09-02 stsp
721 0cf4efb1 2018-09-29 stsp view_above = panel_userptr(panel);
722 0cf4efb1 2018-09-29 stsp mvwvline(view->window, view->begin_y, view_above->begin_x - 1,
723 1a57306a 2018-09-02 stsp got_locale_is_utf8() ? ACS_VLINE : '|', view->nlines);
724 bcbd79e2 2018-08-19 stsp }
725 bcbd79e2 2018-08-19 stsp
726 a3404814 2018-09-02 stsp int
727 a3404814 2018-09-02 stsp view_needs_focus_indication(struct tog_view *view)
728 a3404814 2018-09-02 stsp {
729 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
730 669b5ffa 2018-10-07 stsp if (view->child == NULL || view->child_focussed)
731 669b5ffa 2018-10-07 stsp return 0;
732 669b5ffa 2018-10-07 stsp if (!view_is_splitscreen(view->child))
733 669b5ffa 2018-10-07 stsp return 0;
734 669b5ffa 2018-10-07 stsp } else if (!view_is_splitscreen(view))
735 a3404814 2018-09-02 stsp return 0;
736 a3404814 2018-09-02 stsp
737 669b5ffa 2018-10-07 stsp return view->focussed;
738 a3404814 2018-09-02 stsp }
739 a3404814 2018-09-02 stsp
740 bcbd79e2 2018-08-19 stsp static const struct got_error *
741 e5a0f69f 2018-08-18 stsp view_loop(struct tog_view *view)
742 e5a0f69f 2018-08-18 stsp {
743 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
744 e5a0f69f 2018-08-18 stsp struct tog_view_list_head views;
745 669b5ffa 2018-10-07 stsp struct tog_view *new_view, *dead_view, *focus_view, *main_view;
746 fd823528 2018-10-22 stsp int fast_refresh = 10;
747 1a76625f 2018-10-22 stsp int done = 0, errcode;
748 e5a0f69f 2018-08-18 stsp
749 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
750 1a76625f 2018-10-22 stsp if (errcode)
751 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
752 1a76625f 2018-10-22 stsp
753 e5a0f69f 2018-08-18 stsp TAILQ_INIT(&views);
754 e5a0f69f 2018-08-18 stsp TAILQ_INSERT_HEAD(&views, view, entry);
755 e5a0f69f 2018-08-18 stsp
756 a81bf10d 2018-09-29 stsp main_view = view;
757 1004088d 2018-09-29 stsp view->focussed = 1;
758 878940b7 2018-09-29 stsp err = view->show(view);
759 0cf4efb1 2018-09-29 stsp if (err)
760 0cf4efb1 2018-09-29 stsp return err;
761 0cf4efb1 2018-09-29 stsp update_panels();
762 0cf4efb1 2018-09-29 stsp doupdate();
763 83baff54 2019-08-12 stsp while (!TAILQ_EMPTY(&views) && !done && !tog_sigpipe_received) {
764 fd823528 2018-10-22 stsp /* Refresh fast during initialization, then become slower. */
765 fd823528 2018-10-22 stsp if (fast_refresh && fast_refresh-- == 0)
766 fd823528 2018-10-22 stsp halfdelay(10); /* switch to once per second */
767 fd823528 2018-10-22 stsp
768 0cf4efb1 2018-09-29 stsp err = view_input(&new_view, &dead_view, &focus_view, &done,
769 e4197bf9 2018-08-18 stsp view, &views);
770 e5a0f69f 2018-08-18 stsp if (err)
771 e5a0f69f 2018-08-18 stsp break;
772 e5a0f69f 2018-08-18 stsp if (dead_view) {
773 669b5ffa 2018-10-07 stsp struct tog_view *prev = NULL;
774 669b5ffa 2018-10-07 stsp
775 669b5ffa 2018-10-07 stsp if (view_is_parent_view(dead_view))
776 669b5ffa 2018-10-07 stsp prev = TAILQ_PREV(dead_view,
777 669b5ffa 2018-10-07 stsp tog_view_list_head, entry);
778 f41eceb0 2018-10-24 stsp else if (view->parent != dead_view)
779 669b5ffa 2018-10-07 stsp prev = view->parent;
780 669b5ffa 2018-10-07 stsp
781 669b5ffa 2018-10-07 stsp if (dead_view->parent)
782 669b5ffa 2018-10-07 stsp dead_view->parent->child = NULL;
783 669b5ffa 2018-10-07 stsp else
784 669b5ffa 2018-10-07 stsp TAILQ_REMOVE(&views, dead_view, entry);
785 669b5ffa 2018-10-07 stsp
786 e5a0f69f 2018-08-18 stsp err = view_close(dead_view);
787 d01904d4 2019-06-25 stsp if (err || (dead_view == main_view && new_view == NULL))
788 e5a0f69f 2018-08-18 stsp goto done;
789 669b5ffa 2018-10-07 stsp
790 0cf4efb1 2018-09-29 stsp if (view == dead_view) {
791 0cf4efb1 2018-09-29 stsp if (focus_view)
792 0cf4efb1 2018-09-29 stsp view = focus_view;
793 669b5ffa 2018-10-07 stsp else if (prev)
794 669b5ffa 2018-10-07 stsp view = prev;
795 669b5ffa 2018-10-07 stsp else if (!TAILQ_EMPTY(&views))
796 0cf4efb1 2018-09-29 stsp view = TAILQ_LAST(&views,
797 0cf4efb1 2018-09-29 stsp tog_view_list_head);
798 669b5ffa 2018-10-07 stsp else
799 0cf4efb1 2018-09-29 stsp view = NULL;
800 669b5ffa 2018-10-07 stsp if (view) {
801 669b5ffa 2018-10-07 stsp if (view->child && view->child_focussed)
802 669b5ffa 2018-10-07 stsp focus_view = view->child;
803 669b5ffa 2018-10-07 stsp else
804 669b5ffa 2018-10-07 stsp focus_view = view;
805 669b5ffa 2018-10-07 stsp }
806 0cf4efb1 2018-09-29 stsp }
807 e5a0f69f 2018-08-18 stsp }
808 bcbd79e2 2018-08-19 stsp if (new_view) {
809 86c66b02 2018-10-18 stsp struct tog_view *v, *t;
810 86c66b02 2018-10-18 stsp /* Only allow one parent view per type. */
811 86c66b02 2018-10-18 stsp TAILQ_FOREACH_SAFE(v, &views, entry, t) {
812 86c66b02 2018-10-18 stsp if (v->type != new_view->type)
813 86c66b02 2018-10-18 stsp continue;
814 86c66b02 2018-10-18 stsp TAILQ_REMOVE(&views, v, entry);
815 86c66b02 2018-10-18 stsp err = view_close(v);
816 86c66b02 2018-10-18 stsp if (err)
817 86c66b02 2018-10-18 stsp goto done;
818 86c66b02 2018-10-18 stsp break;
819 86c66b02 2018-10-18 stsp }
820 bcbd79e2 2018-08-19 stsp TAILQ_INSERT_TAIL(&views, new_view, entry);
821 fed7eaa8 2018-10-24 stsp view = new_view;
822 878940b7 2018-09-29 stsp if (focus_view == NULL)
823 878940b7 2018-09-29 stsp focus_view = new_view;
824 1a76625f 2018-10-22 stsp }
825 0cf4efb1 2018-09-29 stsp if (focus_view) {
826 0cf4efb1 2018-09-29 stsp show_panel(focus_view->panel);
827 669b5ffa 2018-10-07 stsp if (view)
828 0cf4efb1 2018-09-29 stsp view->focussed = 0;
829 0cf4efb1 2018-09-29 stsp focus_view->focussed = 1;
830 0cf4efb1 2018-09-29 stsp view = focus_view;
831 878940b7 2018-09-29 stsp if (new_view)
832 878940b7 2018-09-29 stsp show_panel(new_view->panel);
833 669b5ffa 2018-10-07 stsp if (view->child && view_is_splitscreen(view->child))
834 669b5ffa 2018-10-07 stsp show_panel(view->child->panel);
835 bcbd79e2 2018-08-19 stsp }
836 669b5ffa 2018-10-07 stsp if (view) {
837 1a76625f 2018-10-22 stsp if (focus_view == NULL) {
838 758194b5 2018-10-24 stsp view->focussed = 1;
839 758194b5 2018-10-24 stsp show_panel(view->panel);
840 758194b5 2018-10-24 stsp if (view->child && view_is_splitscreen(view->child))
841 758194b5 2018-10-24 stsp show_panel(view->child->panel);
842 1a76625f 2018-10-22 stsp focus_view = view;
843 1a76625f 2018-10-22 stsp }
844 669b5ffa 2018-10-07 stsp if (view->parent) {
845 669b5ffa 2018-10-07 stsp err = view->parent->show(view->parent);
846 669b5ffa 2018-10-07 stsp if (err)
847 1a76625f 2018-10-22 stsp goto done;
848 669b5ffa 2018-10-07 stsp }
849 669b5ffa 2018-10-07 stsp err = view->show(view);
850 0cf4efb1 2018-09-29 stsp if (err)
851 1a76625f 2018-10-22 stsp goto done;
852 669b5ffa 2018-10-07 stsp if (view->child) {
853 669b5ffa 2018-10-07 stsp err = view->child->show(view->child);
854 669b5ffa 2018-10-07 stsp if (err)
855 1a76625f 2018-10-22 stsp goto done;
856 669b5ffa 2018-10-07 stsp }
857 1a76625f 2018-10-22 stsp update_panels();
858 1a76625f 2018-10-22 stsp doupdate();
859 0cf4efb1 2018-09-29 stsp }
860 e5a0f69f 2018-08-18 stsp }
861 e5a0f69f 2018-08-18 stsp done:
862 e5a0f69f 2018-08-18 stsp while (!TAILQ_EMPTY(&views)) {
863 e5a0f69f 2018-08-18 stsp view = TAILQ_FIRST(&views);
864 e5a0f69f 2018-08-18 stsp TAILQ_REMOVE(&views, view, entry);
865 e5a0f69f 2018-08-18 stsp view_close(view);
866 e5a0f69f 2018-08-18 stsp }
867 1a76625f 2018-10-22 stsp
868 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
869 963ecf2a 2019-08-12 stsp if (errcode && err == NULL)
870 963ecf2a 2019-08-12 stsp err = got_error_set_errno(errcode, "pthread_mutex_unlock");
871 1a76625f 2018-10-22 stsp
872 e5a0f69f 2018-08-18 stsp return err;
873 ea5e7bb5 2018-08-01 stsp }
874 ea5e7bb5 2018-08-01 stsp
875 4ed7e80c 2018-05-20 stsp __dead static void
876 9f7d7167 2018-04-29 stsp usage_log(void)
877 9f7d7167 2018-04-29 stsp {
878 80ddbec8 2018-04-29 stsp endwin();
879 c70c5802 2018-08-01 stsp fprintf(stderr,
880 c70c5802 2018-08-01 stsp "usage: %s log [-c commit] [-r repository-path] [path]\n",
881 9f7d7167 2018-04-29 stsp getprogname());
882 9f7d7167 2018-04-29 stsp exit(1);
883 80ddbec8 2018-04-29 stsp }
884 80ddbec8 2018-04-29 stsp
885 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
886 80ddbec8 2018-04-29 stsp static const struct got_error *
887 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
888 963b370f 2018-05-20 stsp {
889 00dfcb92 2018-06-11 stsp char *vis = NULL;
890 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
891 963b370f 2018-05-20 stsp
892 963b370f 2018-05-20 stsp *ws = NULL;
893 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
894 00dfcb92 2018-06-11 stsp if (*wlen == (size_t)-1) {
895 00dfcb92 2018-06-11 stsp int vislen;
896 00dfcb92 2018-06-11 stsp if (errno != EILSEQ)
897 638f9024 2019-05-13 stsp return got_error_from_errno("mbstowcs");
898 00dfcb92 2018-06-11 stsp
899 00dfcb92 2018-06-11 stsp /* byte string invalid in current encoding; try to "fix" it */
900 00dfcb92 2018-06-11 stsp err = got_mbsavis(&vis, &vislen, s);
901 00dfcb92 2018-06-11 stsp if (err)
902 00dfcb92 2018-06-11 stsp return err;
903 00dfcb92 2018-06-11 stsp *wlen = mbstowcs(NULL, vis, 0);
904 a7f50699 2018-06-11 stsp if (*wlen == (size_t)-1) {
905 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs"); /* give up */
906 a7f50699 2018-06-11 stsp goto done;
907 a7f50699 2018-06-11 stsp }
908 00dfcb92 2018-06-11 stsp }
909 963b370f 2018-05-20 stsp
910 fd9f4a2d 2019-08-28 hiltjo *ws = calloc(*wlen + 1, sizeof(**ws));
911 a7f50699 2018-06-11 stsp if (*ws == NULL) {
912 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
913 a7f50699 2018-06-11 stsp goto done;
914 a7f50699 2018-06-11 stsp }
915 963b370f 2018-05-20 stsp
916 00dfcb92 2018-06-11 stsp if (mbstowcs(*ws, vis ? vis : s, *wlen) != *wlen)
917 638f9024 2019-05-13 stsp err = got_error_from_errno("mbstowcs");
918 a7f50699 2018-06-11 stsp done:
919 00dfcb92 2018-06-11 stsp free(vis);
920 963b370f 2018-05-20 stsp if (err) {
921 963b370f 2018-05-20 stsp free(*ws);
922 963b370f 2018-05-20 stsp *ws = NULL;
923 963b370f 2018-05-20 stsp *wlen = 0;
924 963b370f 2018-05-20 stsp }
925 963b370f 2018-05-20 stsp return err;
926 963b370f 2018-05-20 stsp }
927 963b370f 2018-05-20 stsp
928 963b370f 2018-05-20 stsp /* Format a line for display, ensuring that it won't overflow a width limit. */
929 963b370f 2018-05-20 stsp static const struct got_error *
930 27a741e5 2019-09-11 stsp format_line(wchar_t **wlinep, int *widthp, const char *line, int wlimit,
931 27a741e5 2019-09-11 stsp int col_tab_align)
932 963b370f 2018-05-20 stsp {
933 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
934 963b370f 2018-05-20 stsp int cols = 0;
935 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
936 963b370f 2018-05-20 stsp size_t wlen;
937 963b370f 2018-05-20 stsp int i;
938 963b370f 2018-05-20 stsp
939 963b370f 2018-05-20 stsp *wlinep = NULL;
940 b700b5d6 2018-07-10 stsp *widthp = 0;
941 963b370f 2018-05-20 stsp
942 963b370f 2018-05-20 stsp err = mbs2ws(&wline, &wlen, line);
943 963b370f 2018-05-20 stsp if (err)
944 963b370f 2018-05-20 stsp return err;
945 963b370f 2018-05-20 stsp
946 963b370f 2018-05-20 stsp i = 0;
947 27a741e5 2019-09-11 stsp while (i < wlen) {
948 963b370f 2018-05-20 stsp int width = wcwidth(wline[i]);
949 27a741e5 2019-09-11 stsp
950 27a741e5 2019-09-11 stsp if (width == 0) {
951 b700b5d6 2018-07-10 stsp i++;
952 27a741e5 2019-09-11 stsp continue;
953 27a741e5 2019-09-11 stsp }
954 27a741e5 2019-09-11 stsp
955 27a741e5 2019-09-11 stsp if (width == 1 || width == 2) {
956 27a741e5 2019-09-11 stsp if (cols + width > wlimit)
957 27a741e5 2019-09-11 stsp break;
958 27a741e5 2019-09-11 stsp cols += width;
959 3c1f04f1 2018-09-13 stsp i++;
960 27a741e5 2019-09-11 stsp } else if (width == -1) {
961 27a741e5 2019-09-11 stsp if (wline[i] == L'\t') {
962 27a741e5 2019-09-11 stsp width = TABSIZE -
963 27a741e5 2019-09-11 stsp ((cols + col_tab_align) % TABSIZE);
964 27a741e5 2019-09-11 stsp if (cols + width > wlimit)
965 27a741e5 2019-09-11 stsp break;
966 27a741e5 2019-09-11 stsp cols += width;
967 27a741e5 2019-09-11 stsp }
968 b700b5d6 2018-07-10 stsp i++;
969 27a741e5 2019-09-11 stsp } else {
970 638f9024 2019-05-13 stsp err = got_error_from_errno("wcwidth");
971 963b370f 2018-05-20 stsp goto done;
972 963b370f 2018-05-20 stsp }
973 963b370f 2018-05-20 stsp }
974 963b370f 2018-05-20 stsp wline[i] = L'\0';
975 b700b5d6 2018-07-10 stsp if (widthp)
976 b700b5d6 2018-07-10 stsp *widthp = cols;
977 963b370f 2018-05-20 stsp done:
978 963b370f 2018-05-20 stsp if (err)
979 963b370f 2018-05-20 stsp free(wline);
980 963b370f 2018-05-20 stsp else
981 963b370f 2018-05-20 stsp *wlinep = wline;
982 963b370f 2018-05-20 stsp return err;
983 963b370f 2018-05-20 stsp }
984 963b370f 2018-05-20 stsp
985 8b473291 2019-02-21 stsp static const struct got_error*
986 8b473291 2019-02-21 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
987 52b5abe1 2019-08-13 stsp struct got_object_id *id, struct got_repository *repo)
988 8b473291 2019-02-21 stsp {
989 8b473291 2019-02-21 stsp static const struct got_error *err = NULL;
990 8b473291 2019-02-21 stsp struct got_reflist_entry *re;
991 8b473291 2019-02-21 stsp char *s;
992 8b473291 2019-02-21 stsp const char *name;
993 8b473291 2019-02-21 stsp
994 8b473291 2019-02-21 stsp *refs_str = NULL;
995 8b473291 2019-02-21 stsp
996 8b473291 2019-02-21 stsp SIMPLEQ_FOREACH(re, refs, entry) {
997 52b5abe1 2019-08-13 stsp struct got_tag_object *tag = NULL;
998 52b5abe1 2019-08-13 stsp int cmp;
999 52b5abe1 2019-08-13 stsp
1000 8b473291 2019-02-21 stsp name = got_ref_get_name(re->ref);
1001 8b473291 2019-02-21 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
1002 8b473291 2019-02-21 stsp continue;
1003 8b473291 2019-02-21 stsp if (strncmp(name, "refs/", 5) == 0)
1004 8b473291 2019-02-21 stsp name += 5;
1005 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
1006 7143d404 2019-03-12 stsp continue;
1007 8b473291 2019-02-21 stsp if (strncmp(name, "heads/", 6) == 0)
1008 8b473291 2019-02-21 stsp name += 6;
1009 8b473291 2019-02-21 stsp if (strncmp(name, "remotes/", 8) == 0)
1010 8b473291 2019-02-21 stsp name += 8;
1011 52b5abe1 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
1012 52b5abe1 2019-08-13 stsp err = got_object_open_as_tag(&tag, repo, re->id);
1013 5d844a1e 2019-08-13 stsp if (err) {
1014 5d844a1e 2019-08-13 stsp if (err->code != GOT_ERR_OBJ_TYPE)
1015 5d844a1e 2019-08-13 stsp break;
1016 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
1017 5d844a1e 2019-08-13 stsp err = NULL;
1018 5d844a1e 2019-08-13 stsp tag = NULL;
1019 5d844a1e 2019-08-13 stsp }
1020 52b5abe1 2019-08-13 stsp }
1021 52b5abe1 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
1022 52b5abe1 2019-08-13 stsp got_object_tag_get_object_id(tag) : re->id, id);
1023 52b5abe1 2019-08-13 stsp if (tag)
1024 52b5abe1 2019-08-13 stsp got_object_tag_close(tag);
1025 52b5abe1 2019-08-13 stsp if (cmp != 0)
1026 52b5abe1 2019-08-13 stsp continue;
1027 8b473291 2019-02-21 stsp s = *refs_str;
1028 8b473291 2019-02-21 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
1029 8b473291 2019-02-21 stsp s ? ", " : "", name) == -1) {
1030 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1031 8b473291 2019-02-21 stsp free(s);
1032 8b473291 2019-02-21 stsp *refs_str = NULL;
1033 8b473291 2019-02-21 stsp break;
1034 8b473291 2019-02-21 stsp }
1035 8b473291 2019-02-21 stsp free(s);
1036 8b473291 2019-02-21 stsp }
1037 8b473291 2019-02-21 stsp
1038 8b473291 2019-02-21 stsp return err;
1039 8b473291 2019-02-21 stsp }
1040 8b473291 2019-02-21 stsp
1041 963b370f 2018-05-20 stsp static const struct got_error *
1042 27a741e5 2019-09-11 stsp format_author(wchar_t **wauthor, int *author_width, char *author, int limit,
1043 27a741e5 2019-09-11 stsp int col_tab_align)
1044 5813d178 2019-03-09 stsp {
1045 5813d178 2019-03-09 stsp char *smallerthan, *at;
1046 5813d178 2019-03-09 stsp
1047 5813d178 2019-03-09 stsp smallerthan = strchr(author, '<');
1048 5813d178 2019-03-09 stsp if (smallerthan && smallerthan[1] != '\0')
1049 5813d178 2019-03-09 stsp author = smallerthan + 1;
1050 5813d178 2019-03-09 stsp at = strchr(author, '@');
1051 5813d178 2019-03-09 stsp if (at)
1052 5813d178 2019-03-09 stsp *at = '\0';
1053 27a741e5 2019-09-11 stsp return format_line(wauthor, author_width, author, limit, col_tab_align);
1054 5813d178 2019-03-09 stsp }
1055 5813d178 2019-03-09 stsp
1056 5813d178 2019-03-09 stsp static const struct got_error *
1057 2814baeb 2018-08-01 stsp draw_commit(struct tog_view *view, struct got_commit_object *commit,
1058 5813d178 2019-03-09 stsp struct got_object_id *id, struct got_reflist_head *refs,
1059 27a741e5 2019-09-11 stsp const size_t date_display_cols, int author_display_cols)
1060 80ddbec8 2018-04-29 stsp {
1061 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
1062 b39d25c7 2018-07-10 stsp char datebuf[10]; /* YY-MM-DD + SPACE + NUL */
1063 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
1064 5813d178 2019-03-09 stsp char *author = NULL;
1065 bb737323 2018-05-20 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
1066 bb737323 2018-05-20 stsp int author_width, logmsg_width;
1067 5813d178 2019-03-09 stsp char *newline, *line = NULL;
1068 bb737323 2018-05-20 stsp int col, limit;
1069 f7d12f7e 2018-08-01 stsp const int avail = view->ncols;
1070 ccb26ccd 2018-11-05 stsp struct tm tm;
1071 45d799e2 2018-12-23 stsp time_t committer_time;
1072 80ddbec8 2018-04-29 stsp
1073 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
1074 45d799e2 2018-12-23 stsp if (localtime_r(&committer_time, &tm) == NULL)
1075 638f9024 2019-05-13 stsp return got_error_from_errno("localtime_r");
1076 ccb26ccd 2018-11-05 stsp if (strftime(datebuf, sizeof(datebuf), "%g/%m/%d ", &tm)
1077 ccb26ccd 2018-11-05 stsp >= sizeof(datebuf))
1078 b39d25c7 2018-07-10 stsp return got_error(GOT_ERR_NO_SPACE);
1079 b39d25c7 2018-07-10 stsp
1080 27a741e5 2019-09-11 stsp if (avail <= date_display_cols)
1081 b39d25c7 2018-07-10 stsp limit = MIN(sizeof(datebuf) - 1, avail);
1082 b39d25c7 2018-07-10 stsp else
1083 b39d25c7 2018-07-10 stsp limit = MIN(date_display_cols, sizeof(datebuf) - 1);
1084 2814baeb 2018-08-01 stsp waddnstr(view->window, datebuf, limit);
1085 27a741e5 2019-09-11 stsp col = limit;
1086 b39d25c7 2018-07-10 stsp if (col > avail)
1087 b39d25c7 2018-07-10 stsp goto done;
1088 b39d25c7 2018-07-10 stsp
1089 5813d178 2019-03-09 stsp author = strdup(got_object_commit_get_author(commit));
1090 5813d178 2019-03-09 stsp if (author == NULL) {
1091 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1092 80ddbec8 2018-04-29 stsp goto done;
1093 80ddbec8 2018-04-29 stsp }
1094 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &author_width, author, avail - col, col);
1095 bb737323 2018-05-20 stsp if (err)
1096 bb737323 2018-05-20 stsp goto done;
1097 2814baeb 2018-08-01 stsp waddwstr(view->window, wauthor);
1098 bb737323 2018-05-20 stsp col += author_width;
1099 27a741e5 2019-09-11 stsp while (col < avail && author_width < author_display_cols + 2) {
1100 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
1101 bb737323 2018-05-20 stsp col++;
1102 bb737323 2018-05-20 stsp author_width++;
1103 bb737323 2018-05-20 stsp }
1104 9c2eaf34 2018-05-20 stsp if (col > avail)
1105 9c2eaf34 2018-05-20 stsp goto done;
1106 80ddbec8 2018-04-29 stsp
1107 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
1108 5943eee2 2019-08-13 stsp if (err)
1109 6d9fbc00 2018-04-29 stsp goto done;
1110 bb737323 2018-05-20 stsp logmsg = logmsg0;
1111 bb737323 2018-05-20 stsp while (*logmsg == '\n')
1112 bb737323 2018-05-20 stsp logmsg++;
1113 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
1114 bb737323 2018-05-20 stsp if (newline)
1115 bb737323 2018-05-20 stsp *newline = '\0';
1116 bb737323 2018-05-20 stsp limit = avail - col;
1117 27a741e5 2019-09-11 stsp err = format_line(&wlogmsg, &logmsg_width, logmsg, limit, 0);
1118 bb737323 2018-05-20 stsp if (err)
1119 bb737323 2018-05-20 stsp goto done;
1120 2814baeb 2018-08-01 stsp waddwstr(view->window, wlogmsg);
1121 bb737323 2018-05-20 stsp col += logmsg_width;
1122 27a741e5 2019-09-11 stsp while (col < avail) {
1123 2814baeb 2018-08-01 stsp waddch(view->window, ' ');
1124 bb737323 2018-05-20 stsp col++;
1125 881b2d3e 2018-04-30 stsp }
1126 80ddbec8 2018-04-29 stsp done:
1127 80ddbec8 2018-04-29 stsp free(logmsg0);
1128 bb737323 2018-05-20 stsp free(wlogmsg);
1129 5813d178 2019-03-09 stsp free(author);
1130 bb737323 2018-05-20 stsp free(wauthor);
1131 80ddbec8 2018-04-29 stsp free(line);
1132 80ddbec8 2018-04-29 stsp return err;
1133 80ddbec8 2018-04-29 stsp }
1134 26ed57b2 2018-05-19 stsp
1135 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
1136 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
1137 899d86c2 2018-05-10 stsp struct got_object_id *id)
1138 80ddbec8 2018-04-29 stsp {
1139 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
1140 80ddbec8 2018-04-29 stsp
1141 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
1142 80ddbec8 2018-04-29 stsp if (entry == NULL)
1143 899d86c2 2018-05-10 stsp return NULL;
1144 99db9666 2018-05-07 stsp
1145 899d86c2 2018-05-10 stsp entry->id = id;
1146 99db9666 2018-05-07 stsp entry->commit = commit;
1147 899d86c2 2018-05-10 stsp return entry;
1148 99db9666 2018-05-07 stsp }
1149 80ddbec8 2018-04-29 stsp
1150 99db9666 2018-05-07 stsp static void
1151 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
1152 99db9666 2018-05-07 stsp {
1153 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
1154 99db9666 2018-05-07 stsp
1155 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
1156 ecb28ae0 2018-07-16 stsp TAILQ_REMOVE(&commits->head, entry, entry);
1157 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
1158 ecb28ae0 2018-07-16 stsp commits->ncommits--;
1159 9ba79e04 2018-06-11 stsp /* Don't free entry->id! It is owned by the commit graph. */
1160 99db9666 2018-05-07 stsp free(entry);
1161 99db9666 2018-05-07 stsp }
1162 99db9666 2018-05-07 stsp
1163 99db9666 2018-05-07 stsp static void
1164 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
1165 99db9666 2018-05-07 stsp {
1166 ecb28ae0 2018-07-16 stsp while (!TAILQ_EMPTY(&commits->head))
1167 99db9666 2018-05-07 stsp pop_commit(commits);
1168 c4972b91 2018-05-07 stsp }
1169 c4972b91 2018-05-07 stsp
1170 c4972b91 2018-05-07 stsp static const struct got_error *
1171 9ba79e04 2018-06-11 stsp queue_commits(struct got_commit_graph *graph, struct commit_queue *commits,
1172 1a76625f 2018-10-22 stsp int minqueue, struct got_repository *repo, const char *path)
1173 c4972b91 2018-05-07 stsp {
1174 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
1175 93e45b7c 2018-09-24 stsp int nqueued = 0;
1176 9ba79e04 2018-06-11 stsp
1177 1a76625f 2018-10-22 stsp /*
1178 1a76625f 2018-10-22 stsp * We keep all commits open throughout the lifetime of the log
1179 1a76625f 2018-10-22 stsp * view in order to avoid having to re-fetch commits from disk
1180 1a76625f 2018-10-22 stsp * while updating the display.
1181 1a76625f 2018-10-22 stsp */
1182 93e45b7c 2018-09-24 stsp while (nqueued < minqueue) {
1183 93e45b7c 2018-09-24 stsp struct got_object_id *id;
1184 9ba79e04 2018-06-11 stsp struct got_commit_object *commit;
1185 93e45b7c 2018-09-24 stsp struct commit_queue_entry *entry;
1186 1a76625f 2018-10-22 stsp int errcode;
1187 899d86c2 2018-05-10 stsp
1188 9ba79e04 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
1189 9ba79e04 2018-06-11 stsp if (err) {
1190 93e45b7c 2018-09-24 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
1191 93e45b7c 2018-09-24 stsp break;
1192 93e45b7c 2018-09-24 stsp err = got_commit_graph_fetch_commits(graph,
1193 6fb7cd11 2019-08-22 stsp minqueue, repo, NULL, NULL);
1194 ecb28ae0 2018-07-16 stsp if (err)
1195 ecb28ae0 2018-07-16 stsp return err;
1196 ecb28ae0 2018-07-16 stsp continue;
1197 9ba79e04 2018-06-11 stsp }
1198 93e45b7c 2018-09-24 stsp
1199 ecb28ae0 2018-07-16 stsp if (id == NULL)
1200 ecb28ae0 2018-07-16 stsp break;
1201 899d86c2 2018-05-10 stsp
1202 9ba79e04 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
1203 9ba79e04 2018-06-11 stsp if (err)
1204 9ba79e04 2018-06-11 stsp break;
1205 9ba79e04 2018-06-11 stsp entry = alloc_commit_queue_entry(commit, id);
1206 9ba79e04 2018-06-11 stsp if (entry == NULL) {
1207 638f9024 2019-05-13 stsp err = got_error_from_errno("alloc_commit_queue_entry");
1208 9ba79e04 2018-06-11 stsp break;
1209 9ba79e04 2018-06-11 stsp }
1210 93e45b7c 2018-09-24 stsp
1211 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1212 1a76625f 2018-10-22 stsp if (errcode) {
1213 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_lock");
1214 1a76625f 2018-10-22 stsp break;
1215 1a76625f 2018-10-22 stsp }
1216 1a76625f 2018-10-22 stsp
1217 1a76625f 2018-10-22 stsp entry->idx = commits->ncommits;
1218 ecb28ae0 2018-07-16 stsp TAILQ_INSERT_TAIL(&commits->head, entry, entry);
1219 ecb28ae0 2018-07-16 stsp nqueued++;
1220 ecb28ae0 2018-07-16 stsp commits->ncommits++;
1221 1a76625f 2018-10-22 stsp
1222 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1223 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
1224 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
1225 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
1226 899d86c2 2018-05-10 stsp }
1227 899d86c2 2018-05-10 stsp
1228 9ba79e04 2018-06-11 stsp return err;
1229 99db9666 2018-05-07 stsp }
1230 99db9666 2018-05-07 stsp
1231 99db9666 2018-05-07 stsp static const struct got_error *
1232 19e70ad6 2019-05-14 stsp get_head_commit_id(struct got_object_id **head_id, const char *branch_name,
1233 19e70ad6 2019-05-14 stsp struct got_repository *repo)
1234 99db9666 2018-05-07 stsp {
1235 9ba79e04 2018-06-11 stsp const struct got_error *err = NULL;
1236 9ba79e04 2018-06-11 stsp struct got_reference *head_ref;
1237 99db9666 2018-05-07 stsp
1238 9ba79e04 2018-06-11 stsp *head_id = NULL;
1239 899d86c2 2018-05-10 stsp
1240 19e70ad6 2019-05-14 stsp err = got_ref_open(&head_ref, repo, branch_name, 0);
1241 99db9666 2018-05-07 stsp if (err)
1242 99db9666 2018-05-07 stsp return err;
1243 99db9666 2018-05-07 stsp
1244 9ba79e04 2018-06-11 stsp err = got_ref_resolve(head_id, repo, head_ref);
1245 9ba79e04 2018-06-11 stsp got_ref_close(head_ref);
1246 9ba79e04 2018-06-11 stsp if (err) {
1247 9ba79e04 2018-06-11 stsp *head_id = NULL;
1248 99db9666 2018-05-07 stsp return err;
1249 0553a4e3 2018-04-30 stsp }
1250 80ddbec8 2018-04-29 stsp
1251 9ba79e04 2018-06-11 stsp return NULL;
1252 0553a4e3 2018-04-30 stsp }
1253 0553a4e3 2018-04-30 stsp
1254 0553a4e3 2018-04-30 stsp static const struct got_error *
1255 2814baeb 2018-08-01 stsp draw_commits(struct tog_view *view, struct commit_queue_entry **last,
1256 ecb28ae0 2018-07-16 stsp struct commit_queue_entry **selected, struct commit_queue_entry *first,
1257 a7f40148 2018-07-18 stsp struct commit_queue *commits, int selected_idx, int limit,
1258 8b473291 2019-02-21 stsp struct got_reflist_head *refs, const char *path, int commits_needed)
1259 0553a4e3 2018-04-30 stsp {
1260 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
1261 52b5abe1 2019-08-13 stsp struct tog_log_view_state *s = &view->state.log;
1262 0553a4e3 2018-04-30 stsp struct commit_queue_entry *entry;
1263 60493ae3 2019-06-20 stsp int width;
1264 60493ae3 2019-06-20 stsp int ncommits, author_cols = 10;
1265 1a76625f 2018-10-22 stsp char *id_str = NULL, *header = NULL, *ncommits_str = NULL;
1266 8b473291 2019-02-21 stsp char *refs_str = NULL;
1267 ecb28ae0 2018-07-16 stsp wchar_t *wline;
1268 27a741e5 2019-09-11 stsp static const size_t date_display_cols = 9;
1269 0553a4e3 2018-04-30 stsp
1270 e0d42f60 2018-07-22 stsp entry = first;
1271 e0d42f60 2018-07-22 stsp ncommits = 0;
1272 e0d42f60 2018-07-22 stsp while (entry) {
1273 e0d42f60 2018-07-22 stsp if (ncommits == selected_idx) {
1274 e0d42f60 2018-07-22 stsp *selected = entry;
1275 e0d42f60 2018-07-22 stsp break;
1276 e0d42f60 2018-07-22 stsp }
1277 e0d42f60 2018-07-22 stsp entry = TAILQ_NEXT(entry, entry);
1278 e0d42f60 2018-07-22 stsp ncommits++;
1279 e0d42f60 2018-07-22 stsp }
1280 e0d42f60 2018-07-22 stsp
1281 60493ae3 2019-06-20 stsp if (*selected && !(view->searching && view->search_next_done == 0)) {
1282 1a76625f 2018-10-22 stsp err = got_object_id_str(&id_str, (*selected)->id);
1283 1a76625f 2018-10-22 stsp if (err)
1284 ecb28ae0 2018-07-16 stsp return err;
1285 8b473291 2019-02-21 stsp if (refs) {
1286 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, (*selected)->id,
1287 52b5abe1 2019-08-13 stsp s->repo);
1288 8b473291 2019-02-21 stsp if (err)
1289 8b473291 2019-02-21 stsp goto done;
1290 8b473291 2019-02-21 stsp }
1291 867c6645 2018-07-10 stsp }
1292 359bfafd 2019-02-22 stsp
1293 359bfafd 2019-02-22 stsp if (commits_needed == 0)
1294 359bfafd 2019-02-22 stsp halfdelay(10); /* disable fast refresh */
1295 1a76625f 2018-10-22 stsp
1296 8b473291 2019-02-21 stsp if (asprintf(&ncommits_str, " [%d/%d] %s",
1297 1a76625f 2018-10-22 stsp entry ? entry->idx + 1 : 0, commits->ncommits,
1298 60493ae3 2019-06-20 stsp commits_needed > 0 ?
1299 60493ae3 2019-06-20 stsp (view->searching && view->search_next_done == 0
1300 60493ae3 2019-06-20 stsp ? "searching..." : "loading... ") :
1301 8b473291 2019-02-21 stsp (refs_str ? refs_str : "")) == -1) {
1302 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1303 8b473291 2019-02-21 stsp goto done;
1304 8b473291 2019-02-21 stsp }
1305 1a76625f 2018-10-22 stsp
1306 1a76625f 2018-10-22 stsp if (path && strcmp(path, "/") != 0) {
1307 c1124f18 2018-12-23 stsp if (asprintf(&header, "commit %s %s%s",
1308 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
1309 1a76625f 2018-10-22 stsp path, ncommits_str) == -1) {
1310 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1311 1a76625f 2018-10-22 stsp header = NULL;
1312 1a76625f 2018-10-22 stsp goto done;
1313 1a76625f 2018-10-22 stsp }
1314 c1124f18 2018-12-23 stsp } else if (asprintf(&header, "commit %s%s",
1315 1a76625f 2018-10-22 stsp id_str ? id_str : "........................................",
1316 1a76625f 2018-10-22 stsp ncommits_str) == -1) {
1317 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1318 1a76625f 2018-10-22 stsp header = NULL;
1319 1a76625f 2018-10-22 stsp goto done;
1320 ecb28ae0 2018-07-16 stsp }
1321 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, header, view->ncols, 0);
1322 1a76625f 2018-10-22 stsp if (err)
1323 1a76625f 2018-10-22 stsp goto done;
1324 867c6645 2018-07-10 stsp
1325 2814baeb 2018-08-01 stsp werase(view->window);
1326 867c6645 2018-07-10 stsp
1327 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
1328 a3404814 2018-09-02 stsp wstandout(view->window);
1329 2814baeb 2018-08-01 stsp waddwstr(view->window, wline);
1330 1a76625f 2018-10-22 stsp while (width < view->ncols) {
1331 1a76625f 2018-10-22 stsp waddch(view->window, ' ');
1332 1a76625f 2018-10-22 stsp width++;
1333 1a76625f 2018-10-22 stsp }
1334 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
1335 a3404814 2018-09-02 stsp wstandend(view->window);
1336 ecb28ae0 2018-07-16 stsp free(wline);
1337 ecb28ae0 2018-07-16 stsp if (limit <= 1)
1338 1a76625f 2018-10-22 stsp goto done;
1339 0553a4e3 2018-04-30 stsp
1340 5813d178 2019-03-09 stsp /* Grow author column size if necessary. */
1341 899d86c2 2018-05-10 stsp entry = first;
1342 5813d178 2019-03-09 stsp ncommits = 0;
1343 5813d178 2019-03-09 stsp while (entry) {
1344 5813d178 2019-03-09 stsp char *author;
1345 5813d178 2019-03-09 stsp wchar_t *wauthor;
1346 5813d178 2019-03-09 stsp int width;
1347 5813d178 2019-03-09 stsp if (ncommits >= limit - 1)
1348 5813d178 2019-03-09 stsp break;
1349 5813d178 2019-03-09 stsp author = strdup(got_object_commit_get_author(entry->commit));
1350 5813d178 2019-03-09 stsp if (author == NULL) {
1351 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1352 5813d178 2019-03-09 stsp goto done;
1353 5813d178 2019-03-09 stsp }
1354 27a741e5 2019-09-11 stsp err = format_author(&wauthor, &width, author, COLS,
1355 27a741e5 2019-09-11 stsp date_display_cols);
1356 5813d178 2019-03-09 stsp if (author_cols < width)
1357 5813d178 2019-03-09 stsp author_cols = width;
1358 5813d178 2019-03-09 stsp free(wauthor);
1359 5813d178 2019-03-09 stsp free(author);
1360 5813d178 2019-03-09 stsp entry = TAILQ_NEXT(entry, entry);
1361 5813d178 2019-03-09 stsp }
1362 5813d178 2019-03-09 stsp
1363 5813d178 2019-03-09 stsp entry = first;
1364 899d86c2 2018-05-10 stsp *last = first;
1365 867c6645 2018-07-10 stsp ncommits = 0;
1366 899d86c2 2018-05-10 stsp while (entry) {
1367 ecb28ae0 2018-07-16 stsp if (ncommits >= limit - 1)
1368 899d86c2 2018-05-10 stsp break;
1369 b51189f7 2019-03-01 stsp if (ncommits == selected_idx)
1370 2814baeb 2018-08-01 stsp wstandout(view->window);
1371 5813d178 2019-03-09 stsp err = draw_commit(view, entry->commit, entry->id, refs,
1372 27a741e5 2019-09-11 stsp date_display_cols, author_cols);
1373 b51189f7 2019-03-01 stsp if (ncommits == selected_idx)
1374 2814baeb 2018-08-01 stsp wstandend(view->window);
1375 0553a4e3 2018-04-30 stsp if (err)
1376 60493ae3 2019-06-20 stsp goto done;
1377 0553a4e3 2018-04-30 stsp ncommits++;
1378 899d86c2 2018-05-10 stsp *last = entry;
1379 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
1380 80ddbec8 2018-04-29 stsp }
1381 80ddbec8 2018-04-29 stsp
1382 1a57306a 2018-09-02 stsp view_vborder(view);
1383 1a76625f 2018-10-22 stsp done:
1384 1a76625f 2018-10-22 stsp free(id_str);
1385 8b473291 2019-02-21 stsp free(refs_str);
1386 1a76625f 2018-10-22 stsp free(ncommits_str);
1387 1a76625f 2018-10-22 stsp free(header);
1388 80ddbec8 2018-04-29 stsp return err;
1389 9f7d7167 2018-04-29 stsp }
1390 07b55e75 2018-05-10 stsp
1391 07b55e75 2018-05-10 stsp static void
1392 34bc9ec9 2019-02-22 stsp scroll_up(struct tog_view *view,
1393 34bc9ec9 2019-02-22 stsp struct commit_queue_entry **first_displayed_entry, int maxscroll,
1394 07b55e75 2018-05-10 stsp struct commit_queue *commits)
1395 07b55e75 2018-05-10 stsp {
1396 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
1397 07b55e75 2018-05-10 stsp int nscrolled = 0;
1398 07b55e75 2018-05-10 stsp
1399 ecb28ae0 2018-07-16 stsp entry = TAILQ_FIRST(&commits->head);
1400 00ba99a7 2019-05-12 jcs if (*first_displayed_entry == entry)
1401 07b55e75 2018-05-10 stsp return;
1402 9f7d7167 2018-04-29 stsp
1403 07b55e75 2018-05-10 stsp entry = *first_displayed_entry;
1404 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
1405 ecb28ae0 2018-07-16 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
1406 07b55e75 2018-05-10 stsp if (entry) {
1407 07b55e75 2018-05-10 stsp *first_displayed_entry = entry;
1408 07b55e75 2018-05-10 stsp nscrolled++;
1409 07b55e75 2018-05-10 stsp }
1410 07b55e75 2018-05-10 stsp }
1411 aa075928 2018-05-10 stsp }
1412 aa075928 2018-05-10 stsp
1413 aa075928 2018-05-10 stsp static const struct got_error *
1414 5e224a3e 2019-02-22 stsp trigger_log_thread(int load_all, int *commits_needed, int *log_complete,
1415 1a76625f 2018-10-22 stsp pthread_cond_t *need_commits)
1416 aa075928 2018-05-10 stsp {
1417 5e224a3e 2019-02-22 stsp int errcode;
1418 8a42fca8 2019-02-22 stsp int max_wait = 20;
1419 8a42fca8 2019-02-22 stsp
1420 8a42fca8 2019-02-22 stsp halfdelay(1); /* fast refresh while loading commits */
1421 aa075928 2018-05-10 stsp
1422 5e224a3e 2019-02-22 stsp while (*commits_needed > 0) {
1423 5e224a3e 2019-02-22 stsp if (*log_complete)
1424 5e224a3e 2019-02-22 stsp break;
1425 b295e71b 2019-02-22 stsp
1426 5e224a3e 2019-02-22 stsp /* Wake the log thread. */
1427 7aafa0d1 2019-02-22 stsp errcode = pthread_cond_signal(need_commits);
1428 7aafa0d1 2019-02-22 stsp if (errcode)
1429 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1430 2af4a041 2019-05-11 jcs "pthread_cond_signal");
1431 7aafa0d1 2019-02-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1432 7aafa0d1 2019-02-22 stsp if (errcode)
1433 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1434 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
1435 7aafa0d1 2019-02-22 stsp pthread_yield();
1436 7aafa0d1 2019-02-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1437 7aafa0d1 2019-02-22 stsp if (errcode)
1438 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1439 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
1440 5e224a3e 2019-02-22 stsp
1441 8a42fca8 2019-02-22 stsp if (*commits_needed > 0 && (!load_all || --max_wait <= 0)) {
1442 5e224a3e 2019-02-22 stsp /*
1443 5e224a3e 2019-02-22 stsp * Thread is not done yet; lose a key press
1444 5e224a3e 2019-02-22 stsp * and let the user retry... this way the GUI
1445 5e224a3e 2019-02-22 stsp * remains interactive while logging deep paths
1446 5e224a3e 2019-02-22 stsp * with few commits in history.
1447 5e224a3e 2019-02-22 stsp */
1448 7aafa0d1 2019-02-22 stsp return NULL;
1449 7aafa0d1 2019-02-22 stsp }
1450 5e224a3e 2019-02-22 stsp }
1451 5e224a3e 2019-02-22 stsp
1452 5e224a3e 2019-02-22 stsp return NULL;
1453 5e224a3e 2019-02-22 stsp }
1454 5e224a3e 2019-02-22 stsp
1455 5e224a3e 2019-02-22 stsp static const struct got_error *
1456 34bc9ec9 2019-02-22 stsp scroll_down(struct tog_view *view,
1457 34bc9ec9 2019-02-22 stsp struct commit_queue_entry **first_displayed_entry, int maxscroll,
1458 5e224a3e 2019-02-22 stsp struct commit_queue_entry **last_displayed_entry,
1459 5e224a3e 2019-02-22 stsp struct commit_queue *commits, int *log_complete, int *commits_needed,
1460 5e224a3e 2019-02-22 stsp pthread_cond_t *need_commits)
1461 5e224a3e 2019-02-22 stsp {
1462 5e224a3e 2019-02-22 stsp const struct got_error *err = NULL;
1463 5e224a3e 2019-02-22 stsp struct commit_queue_entry *pentry;
1464 5e224a3e 2019-02-22 stsp int nscrolled = 0;
1465 5e224a3e 2019-02-22 stsp
1466 5e224a3e 2019-02-22 stsp if (*last_displayed_entry == NULL)
1467 5e224a3e 2019-02-22 stsp return NULL;
1468 5e224a3e 2019-02-22 stsp
1469 5e224a3e 2019-02-22 stsp pentry = TAILQ_NEXT(*last_displayed_entry, entry);
1470 5e224a3e 2019-02-22 stsp if (pentry == NULL && !*log_complete) {
1471 08ebd0a9 2019-02-22 stsp /*
1472 08ebd0a9 2019-02-22 stsp * Ask the log thread for required amount of commits
1473 08ebd0a9 2019-02-22 stsp * plus some amount of pre-fetching.
1474 08ebd0a9 2019-02-22 stsp */
1475 08ebd0a9 2019-02-22 stsp (*commits_needed) += maxscroll + 20;
1476 5e224a3e 2019-02-22 stsp err = trigger_log_thread(0, commits_needed, log_complete,
1477 5e224a3e 2019-02-22 stsp need_commits);
1478 5e224a3e 2019-02-22 stsp if (err)
1479 5e224a3e 2019-02-22 stsp return err;
1480 7aafa0d1 2019-02-22 stsp }
1481 b295e71b 2019-02-22 stsp
1482 7aafa0d1 2019-02-22 stsp do {
1483 7226d972 2019-02-21 stsp pentry = TAILQ_NEXT(*last_displayed_entry, entry);
1484 00ba99a7 2019-05-12 jcs if (pentry == NULL)
1485 88048b54 2019-02-21 stsp break;
1486 88048b54 2019-02-21 stsp
1487 93e45b7c 2018-09-24 stsp *last_displayed_entry = pentry;
1488 aa075928 2018-05-10 stsp
1489 dd0a52c1 2018-05-20 stsp pentry = TAILQ_NEXT(*first_displayed_entry, entry);
1490 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
1491 dd0a52c1 2018-05-20 stsp break;
1492 aa075928 2018-05-10 stsp *first_displayed_entry = pentry;
1493 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
1494 aa075928 2018-05-10 stsp
1495 dd0a52c1 2018-05-20 stsp return err;
1496 07b55e75 2018-05-10 stsp }
1497 4a7f7875 2018-05-10 stsp
1498 cd0acaa7 2018-05-20 stsp static const struct got_error *
1499 0cf4efb1 2018-09-29 stsp open_diff_view_for_commit(struct tog_view **new_view, int begin_x,
1500 fb872ab2 2019-02-21 stsp struct got_commit_object *commit, struct got_object_id *commit_id,
1501 8b473291 2019-02-21 stsp struct tog_view *log_view, struct got_reflist_head *refs,
1502 8b473291 2019-02-21 stsp struct got_repository *repo)
1503 cd0acaa7 2018-05-20 stsp {
1504 cd0acaa7 2018-05-20 stsp const struct got_error *err;
1505 9ba79e04 2018-06-11 stsp struct got_object_qid *parent_id;
1506 e5a0f69f 2018-08-18 stsp struct tog_view *diff_view;
1507 cd0acaa7 2018-05-20 stsp
1508 669b5ffa 2018-10-07 stsp diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
1509 15a94983 2018-12-23 stsp if (diff_view == NULL)
1510 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
1511 ea5e7bb5 2018-08-01 stsp
1512 4acef5ee 2018-12-24 stsp parent_id = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
1513 4acef5ee 2018-12-24 stsp err = open_diff_view(diff_view, parent_id ? parent_id->id : NULL,
1514 8b473291 2019-02-21 stsp commit_id, log_view, refs, repo);
1515 e5a0f69f 2018-08-18 stsp if (err == NULL)
1516 e5a0f69f 2018-08-18 stsp *new_view = diff_view;
1517 cd0acaa7 2018-05-20 stsp return err;
1518 4a7f7875 2018-05-10 stsp }
1519 4a7f7875 2018-05-10 stsp
1520 80ddbec8 2018-04-29 stsp static const struct got_error *
1521 941e9f74 2019-05-21 stsp tree_view_visit_subtree(struct got_tree_object *subtree,
1522 941e9f74 2019-05-21 stsp struct tog_tree_view_state *s)
1523 9343a5fb 2018-06-23 stsp {
1524 941e9f74 2019-05-21 stsp struct tog_parent_tree *parent;
1525 941e9f74 2019-05-21 stsp
1526 941e9f74 2019-05-21 stsp parent = calloc(1, sizeof(*parent));
1527 941e9f74 2019-05-21 stsp if (parent == NULL)
1528 941e9f74 2019-05-21 stsp return got_error_from_errno("calloc");
1529 941e9f74 2019-05-21 stsp
1530 941e9f74 2019-05-21 stsp parent->tree = s->tree;
1531 941e9f74 2019-05-21 stsp parent->first_displayed_entry = s->first_displayed_entry;
1532 941e9f74 2019-05-21 stsp parent->selected_entry = s->selected_entry;
1533 941e9f74 2019-05-21 stsp parent->selected = s->selected;
1534 941e9f74 2019-05-21 stsp TAILQ_INSERT_HEAD(&s->parents, parent, entry);
1535 941e9f74 2019-05-21 stsp s->tree = subtree;
1536 941e9f74 2019-05-21 stsp s->entries = got_object_tree_get_entries(s->tree);
1537 941e9f74 2019-05-21 stsp s->selected = 0;
1538 941e9f74 2019-05-21 stsp s->first_displayed_entry = NULL;
1539 941e9f74 2019-05-21 stsp return NULL;
1540 941e9f74 2019-05-21 stsp }
1541 941e9f74 2019-05-21 stsp
1542 941e9f74 2019-05-21 stsp
1543 941e9f74 2019-05-21 stsp static const struct got_error *
1544 941e9f74 2019-05-21 stsp browse_commit_tree(struct tog_view **new_view, int begin_x,
1545 941e9f74 2019-05-21 stsp struct commit_queue_entry *entry, const char *path,
1546 941e9f74 2019-05-21 stsp struct got_reflist_head *refs, struct got_repository *repo)
1547 941e9f74 2019-05-21 stsp {
1548 9343a5fb 2018-06-23 stsp const struct got_error *err = NULL;
1549 9343a5fb 2018-06-23 stsp struct got_tree_object *tree;
1550 941e9f74 2019-05-21 stsp struct got_tree_entry *te;
1551 941e9f74 2019-05-21 stsp struct tog_tree_view_state *s;
1552 e5a0f69f 2018-08-18 stsp struct tog_view *tree_view;
1553 b03c880f 2019-05-21 stsp char *slash, *subpath = NULL;
1554 941e9f74 2019-05-21 stsp const char *p;
1555 9343a5fb 2018-06-23 stsp
1556 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree, repo,
1557 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(entry->commit));
1558 9343a5fb 2018-06-23 stsp if (err)
1559 9343a5fb 2018-06-23 stsp return err;
1560 9343a5fb 2018-06-23 stsp
1561 669b5ffa 2018-10-07 stsp tree_view = view_open(0, 0, 0, begin_x, TOG_VIEW_TREE);
1562 e5a0f69f 2018-08-18 stsp if (tree_view == NULL)
1563 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
1564 e5a0f69f 2018-08-18 stsp
1565 8b473291 2019-02-21 stsp err = open_tree_view(tree_view, tree, entry->id, refs, repo);
1566 941e9f74 2019-05-21 stsp if (err) {
1567 e5a0f69f 2018-08-18 stsp got_object_tree_close(tree);
1568 941e9f74 2019-05-21 stsp return err;
1569 941e9f74 2019-05-21 stsp }
1570 941e9f74 2019-05-21 stsp s = &tree_view->state.tree;
1571 941e9f74 2019-05-21 stsp
1572 941e9f74 2019-05-21 stsp *new_view = tree_view;
1573 941e9f74 2019-05-21 stsp
1574 941e9f74 2019-05-21 stsp /* Walk the path and open corresponding tree objects. */
1575 941e9f74 2019-05-21 stsp p = path;
1576 8d0fe45a 2019-08-12 stsp while (p[0] == '/')
1577 8d0fe45a 2019-08-12 stsp p++;
1578 941e9f74 2019-05-21 stsp while (*p) {
1579 941e9f74 2019-05-21 stsp struct got_object_id *tree_id;
1580 941e9f74 2019-05-21 stsp
1581 941e9f74 2019-05-21 stsp /* Ensure the correct subtree entry is selected. */
1582 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
1583 941e9f74 2019-05-21 stsp if (slash == NULL)
1584 941e9f74 2019-05-21 stsp slash = strchr(p, '\0');
1585 941e9f74 2019-05-21 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry) {
1586 941e9f74 2019-05-21 stsp if (strncmp(p, te->name, slash - p) == 0) {
1587 941e9f74 2019-05-21 stsp s->selected_entry = te;
1588 941e9f74 2019-05-21 stsp break;
1589 941e9f74 2019-05-21 stsp }
1590 b03c880f 2019-05-21 stsp s->selected++;
1591 941e9f74 2019-05-21 stsp }
1592 941e9f74 2019-05-21 stsp if (s->selected_entry == NULL) {
1593 941e9f74 2019-05-21 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1594 941e9f74 2019-05-21 stsp break;
1595 941e9f74 2019-05-21 stsp }
1596 b03c880f 2019-05-21 stsp if (s->tree != s->root)
1597 b03c880f 2019-05-21 stsp s->selected++; /* skip '..' */
1598 941e9f74 2019-05-21 stsp
1599 67409a31 2019-05-24 stsp if (!S_ISDIR(s->selected_entry->mode)) {
1600 67409a31 2019-05-24 stsp /* Jump to this file's entry. */
1601 67409a31 2019-05-24 stsp s->first_displayed_entry = s->selected_entry;
1602 67409a31 2019-05-24 stsp s->selected = 0;
1603 b03c880f 2019-05-21 stsp break;
1604 67409a31 2019-05-24 stsp }
1605 b03c880f 2019-05-21 stsp
1606 941e9f74 2019-05-21 stsp slash = strchr(p, '/');
1607 941e9f74 2019-05-21 stsp if (slash)
1608 941e9f74 2019-05-21 stsp subpath = strndup(path, slash - path);
1609 941e9f74 2019-05-21 stsp else
1610 941e9f74 2019-05-21 stsp subpath = strdup(path);
1611 941e9f74 2019-05-21 stsp if (subpath == NULL) {
1612 941e9f74 2019-05-21 stsp err = got_error_from_errno("strdup");
1613 941e9f74 2019-05-21 stsp break;
1614 941e9f74 2019-05-21 stsp }
1615 941e9f74 2019-05-21 stsp
1616 941e9f74 2019-05-21 stsp err = got_object_id_by_path(&tree_id, repo, entry->id,
1617 941e9f74 2019-05-21 stsp subpath);
1618 941e9f74 2019-05-21 stsp if (err)
1619 941e9f74 2019-05-21 stsp break;
1620 941e9f74 2019-05-21 stsp
1621 941e9f74 2019-05-21 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1622 941e9f74 2019-05-21 stsp free(tree_id);
1623 941e9f74 2019-05-21 stsp if (err)
1624 941e9f74 2019-05-21 stsp break;
1625 941e9f74 2019-05-21 stsp
1626 941e9f74 2019-05-21 stsp err = tree_view_visit_subtree(tree, s);
1627 941e9f74 2019-05-21 stsp if (err) {
1628 941e9f74 2019-05-21 stsp got_object_tree_close(tree);
1629 941e9f74 2019-05-21 stsp break;
1630 941e9f74 2019-05-21 stsp }
1631 941e9f74 2019-05-21 stsp if (slash == NULL)
1632 941e9f74 2019-05-21 stsp break;
1633 941e9f74 2019-05-21 stsp free(subpath);
1634 941e9f74 2019-05-21 stsp subpath = NULL;
1635 941e9f74 2019-05-21 stsp p = slash;
1636 941e9f74 2019-05-21 stsp }
1637 941e9f74 2019-05-21 stsp
1638 941e9f74 2019-05-21 stsp free(subpath);
1639 1a76625f 2018-10-22 stsp return err;
1640 1a76625f 2018-10-22 stsp }
1641 1a76625f 2018-10-22 stsp
1642 1a76625f 2018-10-22 stsp static void *
1643 1a76625f 2018-10-22 stsp log_thread(void *arg)
1644 1a76625f 2018-10-22 stsp {
1645 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1646 1a76625f 2018-10-22 stsp int errcode = 0;
1647 1a76625f 2018-10-22 stsp struct tog_log_thread_args *a = arg;
1648 1a76625f 2018-10-22 stsp int done = 0;
1649 1a76625f 2018-10-22 stsp
1650 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(a->graph, a->start_id, a->repo,
1651 6fb7cd11 2019-08-22 stsp NULL, NULL);
1652 1a76625f 2018-10-22 stsp if (err)
1653 1a76625f 2018-10-22 stsp return (void *)err;
1654 1a76625f 2018-10-22 stsp
1655 d264cece 2019-08-12 stsp while (!done && !err && !tog_sigpipe_received) {
1656 1a76625f 2018-10-22 stsp err = queue_commits(a->graph, a->commits, 1, a->repo,
1657 1a76625f 2018-10-22 stsp a->in_repo_path);
1658 1a76625f 2018-10-22 stsp if (err) {
1659 1a76625f 2018-10-22 stsp if (err->code != GOT_ERR_ITER_COMPLETED)
1660 1a76625f 2018-10-22 stsp return (void *)err;
1661 1a76625f 2018-10-22 stsp err = NULL;
1662 1a76625f 2018-10-22 stsp done = 1;
1663 1a76625f 2018-10-22 stsp } else if (a->commits_needed > 0)
1664 1a76625f 2018-10-22 stsp a->commits_needed--;
1665 1a76625f 2018-10-22 stsp
1666 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1667 3abe8080 2019-04-10 stsp if (errcode) {
1668 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
1669 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
1670 3abe8080 2019-04-10 stsp break;
1671 3abe8080 2019-04-10 stsp } else if (*a->quit)
1672 1a76625f 2018-10-22 stsp done = 1;
1673 3abe8080 2019-04-10 stsp else if (*a->first_displayed_entry == NULL) {
1674 1a76625f 2018-10-22 stsp *a->first_displayed_entry =
1675 1a76625f 2018-10-22 stsp TAILQ_FIRST(&a->commits->head);
1676 1a76625f 2018-10-22 stsp *a->selected_entry = *a->first_displayed_entry;
1677 1a76625f 2018-10-22 stsp }
1678 1a76625f 2018-10-22 stsp
1679 1a76625f 2018-10-22 stsp if (done)
1680 1a76625f 2018-10-22 stsp a->commits_needed = 0;
1681 1a76625f 2018-10-22 stsp else if (a->commits_needed == 0) {
1682 1a76625f 2018-10-22 stsp errcode = pthread_cond_wait(&a->need_commits,
1683 1a76625f 2018-10-22 stsp &tog_mutex);
1684 1a76625f 2018-10-22 stsp if (errcode)
1685 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
1686 2af4a041 2019-05-11 jcs "pthread_cond_wait");
1687 1a76625f 2018-10-22 stsp }
1688 1a76625f 2018-10-22 stsp
1689 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1690 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
1691 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode,
1692 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
1693 1a76625f 2018-10-22 stsp }
1694 3abe8080 2019-04-10 stsp a->log_complete = 1;
1695 1a76625f 2018-10-22 stsp return (void *)err;
1696 1a76625f 2018-10-22 stsp }
1697 1a76625f 2018-10-22 stsp
1698 1a76625f 2018-10-22 stsp static const struct got_error *
1699 1a76625f 2018-10-22 stsp stop_log_thread(struct tog_log_view_state *s)
1700 1a76625f 2018-10-22 stsp {
1701 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1702 1a76625f 2018-10-22 stsp int errcode;
1703 1a76625f 2018-10-22 stsp
1704 1a76625f 2018-10-22 stsp if (s->thread) {
1705 1a76625f 2018-10-22 stsp s->quit = 1;
1706 1a76625f 2018-10-22 stsp errcode = pthread_cond_signal(&s->thread_args.need_commits);
1707 1a76625f 2018-10-22 stsp if (errcode)
1708 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1709 2af4a041 2019-05-11 jcs "pthread_cond_signal");
1710 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
1711 1a76625f 2018-10-22 stsp if (errcode)
1712 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1713 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
1714 1a76625f 2018-10-22 stsp errcode = pthread_join(s->thread, (void **)&err);
1715 1a76625f 2018-10-22 stsp if (errcode)
1716 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
1717 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
1718 1a76625f 2018-10-22 stsp if (errcode)
1719 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
1720 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
1721 1a76625f 2018-10-22 stsp s->thread = NULL;
1722 1a76625f 2018-10-22 stsp }
1723 1a76625f 2018-10-22 stsp
1724 1a76625f 2018-10-22 stsp errcode = pthread_cond_destroy(&s->thread_args.need_commits);
1725 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
1726 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_destroy");
1727 1a76625f 2018-10-22 stsp
1728 1a76625f 2018-10-22 stsp if (s->thread_args.repo) {
1729 1a76625f 2018-10-22 stsp got_repo_close(s->thread_args.repo);
1730 1a76625f 2018-10-22 stsp s->thread_args.repo = NULL;
1731 1a76625f 2018-10-22 stsp }
1732 1a76625f 2018-10-22 stsp
1733 1a76625f 2018-10-22 stsp if (s->thread_args.graph) {
1734 1a76625f 2018-10-22 stsp got_commit_graph_close(s->thread_args.graph);
1735 1a76625f 2018-10-22 stsp s->thread_args.graph = NULL;
1736 1a76625f 2018-10-22 stsp }
1737 1a76625f 2018-10-22 stsp
1738 9343a5fb 2018-06-23 stsp return err;
1739 9343a5fb 2018-06-23 stsp }
1740 9343a5fb 2018-06-23 stsp
1741 9343a5fb 2018-06-23 stsp static const struct got_error *
1742 1a76625f 2018-10-22 stsp close_log_view(struct tog_view *view)
1743 1a76625f 2018-10-22 stsp {
1744 1a76625f 2018-10-22 stsp const struct got_error *err = NULL;
1745 1a76625f 2018-10-22 stsp struct tog_log_view_state *s = &view->state.log;
1746 1a76625f 2018-10-22 stsp
1747 1a76625f 2018-10-22 stsp err = stop_log_thread(s);
1748 1a76625f 2018-10-22 stsp free_commits(&s->commits);
1749 1a76625f 2018-10-22 stsp free(s->in_repo_path);
1750 797bc7b9 2018-10-22 stsp s->in_repo_path = NULL;
1751 1a76625f 2018-10-22 stsp free(s->start_id);
1752 797bc7b9 2018-10-22 stsp s->start_id = NULL;
1753 1a76625f 2018-10-22 stsp return err;
1754 1a76625f 2018-10-22 stsp }
1755 1a76625f 2018-10-22 stsp
1756 1a76625f 2018-10-22 stsp static const struct got_error *
1757 60493ae3 2019-06-20 stsp search_start_log_view(struct tog_view *view)
1758 60493ae3 2019-06-20 stsp {
1759 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
1760 60493ae3 2019-06-20 stsp
1761 60493ae3 2019-06-20 stsp s->matched_entry = NULL;
1762 96e2b566 2019-07-08 stsp s->search_entry = NULL;
1763 60493ae3 2019-06-20 stsp return NULL;
1764 60493ae3 2019-06-20 stsp }
1765 60493ae3 2019-06-20 stsp
1766 60493ae3 2019-06-20 stsp static int
1767 df0b3d8a 2019-06-28 stsp match_commit(struct got_commit_object *commit, const char *id_str,
1768 5943eee2 2019-08-13 stsp const char *logmsg, regex_t *regex)
1769 60493ae3 2019-06-20 stsp {
1770 60493ae3 2019-06-20 stsp regmatch_t regmatch;
1771 60493ae3 2019-06-20 stsp
1772 60493ae3 2019-06-20 stsp if (regexec(regex, got_object_commit_get_author(commit), 1,
1773 60493ae3 2019-06-20 stsp &regmatch, 0) == 0 ||
1774 60493ae3 2019-06-20 stsp regexec(regex, got_object_commit_get_committer(commit), 1,
1775 60493ae3 2019-06-20 stsp &regmatch, 0) == 0 ||
1776 5943eee2 2019-08-13 stsp regexec(regex, id_str, 1, &regmatch, 0) == 0 ||
1777 5943eee2 2019-08-13 stsp regexec(regex, logmsg, 1, &regmatch, 0) == 0)
1778 60493ae3 2019-06-20 stsp return 1;
1779 60493ae3 2019-06-20 stsp
1780 60493ae3 2019-06-20 stsp return 0;
1781 60493ae3 2019-06-20 stsp }
1782 60493ae3 2019-06-20 stsp
1783 60493ae3 2019-06-20 stsp static const struct got_error *
1784 60493ae3 2019-06-20 stsp search_next_log_view(struct tog_view *view)
1785 60493ae3 2019-06-20 stsp {
1786 60493ae3 2019-06-20 stsp const struct got_error *err = NULL;
1787 60493ae3 2019-06-20 stsp struct tog_log_view_state *s = &view->state.log;
1788 60493ae3 2019-06-20 stsp struct commit_queue_entry *entry;
1789 60493ae3 2019-06-20 stsp
1790 60493ae3 2019-06-20 stsp if (!view->searching) {
1791 60493ae3 2019-06-20 stsp view->search_next_done = 1;
1792 60493ae3 2019-06-20 stsp return NULL;
1793 60493ae3 2019-06-20 stsp }
1794 60493ae3 2019-06-20 stsp
1795 96e2b566 2019-07-08 stsp if (s->search_entry) {
1796 678cbce5 2019-07-28 stsp if (wgetch(view->window) == KEY_BACKSPACE) {
1797 678cbce5 2019-07-28 stsp view->search_next_done = 1;
1798 678cbce5 2019-07-28 stsp return NULL;
1799 678cbce5 2019-07-28 stsp }
1800 96e2b566 2019-07-08 stsp if (view->searching == TOG_SEARCH_FORWARD)
1801 96e2b566 2019-07-08 stsp entry = TAILQ_NEXT(s->search_entry, entry);
1802 96e2b566 2019-07-08 stsp else
1803 96e2b566 2019-07-08 stsp entry = TAILQ_PREV(s->search_entry,
1804 96e2b566 2019-07-08 stsp commit_queue_head, entry);
1805 96e2b566 2019-07-08 stsp } else if (s->matched_entry) {
1806 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
1807 b55df7bc 2019-06-21 stsp entry = TAILQ_NEXT(s->selected_entry, entry);
1808 b1bf1435 2019-06-21 stsp else
1809 b55df7bc 2019-06-21 stsp entry = TAILQ_PREV(s->selected_entry,
1810 b1bf1435 2019-06-21 stsp commit_queue_head, entry);
1811 20be8d96 2019-06-21 stsp } else {
1812 20be8d96 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
1813 20be8d96 2019-06-21 stsp entry = TAILQ_FIRST(&s->commits.head);
1814 20be8d96 2019-06-21 stsp else
1815 20be8d96 2019-06-21 stsp entry = TAILQ_LAST(&s->commits.head, commit_queue_head);
1816 20be8d96 2019-06-21 stsp }
1817 60493ae3 2019-06-20 stsp
1818 60493ae3 2019-06-20 stsp while (1) {
1819 5943eee2 2019-08-13 stsp char *id_str, *logmsg;
1820 60493ae3 2019-06-20 stsp if (entry == NULL) {
1821 f801134a 2019-06-25 stsp if (s->thread_args.log_complete ||
1822 f801134a 2019-06-25 stsp view->searching == TOG_SEARCH_BACKWARD) {
1823 f801134a 2019-06-25 stsp view->search_next_done = 1;
1824 f801134a 2019-06-25 stsp return NULL;
1825 60493ae3 2019-06-20 stsp }
1826 96e2b566 2019-07-08 stsp /*
1827 96e2b566 2019-07-08 stsp * Poke the log thread for more commits and return,
1828 96e2b566 2019-07-08 stsp * allowing the main loop to make progress. Search
1829 96e2b566 2019-07-08 stsp * will resume at s->search_entry once we come back.
1830 96e2b566 2019-07-08 stsp */
1831 57b33b64 2019-07-08 stsp s->thread_args.commits_needed++;
1832 57b33b64 2019-07-08 stsp return trigger_log_thread(1,
1833 f801134a 2019-06-25 stsp &s->thread_args.commits_needed,
1834 f801134a 2019-06-25 stsp &s->thread_args.log_complete,
1835 f801134a 2019-06-25 stsp &s->thread_args.need_commits);
1836 60493ae3 2019-06-20 stsp }
1837 60493ae3 2019-06-20 stsp
1838 df0b3d8a 2019-06-28 stsp err = got_object_id_str(&id_str, entry->id);
1839 df0b3d8a 2019-06-28 stsp if (err)
1840 df0b3d8a 2019-06-28 stsp return err;
1841 df0b3d8a 2019-06-28 stsp
1842 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, entry->commit);
1843 5943eee2 2019-08-13 stsp if (err)
1844 5943eee2 2019-08-13 stsp return err;
1845 5943eee2 2019-08-13 stsp if (match_commit(entry->commit, id_str, logmsg, &view->regex)) {
1846 5943eee2 2019-08-13 stsp free(logmsg);
1847 60493ae3 2019-06-20 stsp view->search_next_done = 1;
1848 bcf2df4d 2019-06-21 stsp s->matched_entry = entry;
1849 df0b3d8a 2019-06-28 stsp free(id_str);
1850 60493ae3 2019-06-20 stsp break;
1851 60493ae3 2019-06-20 stsp }
1852 5943eee2 2019-08-13 stsp free(logmsg);
1853 df0b3d8a 2019-06-28 stsp free(id_str);
1854 96e2b566 2019-07-08 stsp s->search_entry = entry;
1855 b1bf1435 2019-06-21 stsp if (view->searching == TOG_SEARCH_FORWARD)
1856 b1bf1435 2019-06-21 stsp entry = TAILQ_NEXT(entry, entry);
1857 b1bf1435 2019-06-21 stsp else
1858 b1bf1435 2019-06-21 stsp entry = TAILQ_PREV(entry, commit_queue_head, entry);
1859 60493ae3 2019-06-20 stsp }
1860 60493ae3 2019-06-20 stsp
1861 bcf2df4d 2019-06-21 stsp if (s->matched_entry) {
1862 ead14cbe 2019-06-21 stsp int cur = s->selected_entry->idx;
1863 ead14cbe 2019-06-21 stsp while (cur < s->matched_entry->idx) {
1864 60493ae3 2019-06-20 stsp err = input_log_view(NULL, NULL, NULL, view, KEY_DOWN);
1865 60493ae3 2019-06-20 stsp if (err)
1866 60493ae3 2019-06-20 stsp return err;
1867 ead14cbe 2019-06-21 stsp cur++;
1868 ead14cbe 2019-06-21 stsp }
1869 ead14cbe 2019-06-21 stsp while (cur > s->matched_entry->idx) {
1870 ead14cbe 2019-06-21 stsp err = input_log_view(NULL, NULL, NULL, view, KEY_UP);
1871 60493ae3 2019-06-20 stsp if (err)
1872 60493ae3 2019-06-20 stsp return err;
1873 ead14cbe 2019-06-21 stsp cur--;
1874 60493ae3 2019-06-20 stsp }
1875 60493ae3 2019-06-20 stsp }
1876 60493ae3 2019-06-20 stsp
1877 96e2b566 2019-07-08 stsp s->search_entry = NULL;
1878 96e2b566 2019-07-08 stsp
1879 60493ae3 2019-06-20 stsp return NULL;
1880 60493ae3 2019-06-20 stsp }
1881 60493ae3 2019-06-20 stsp
1882 60493ae3 2019-06-20 stsp static const struct got_error *
1883 ba4f502b 2018-08-04 stsp open_log_view(struct tog_view *view, struct got_object_id *start_id,
1884 8b473291 2019-02-21 stsp struct got_reflist_head *refs, struct got_repository *repo,
1885 d01904d4 2019-06-25 stsp const char *head_ref_name, const char *path, int check_disk)
1886 80ddbec8 2018-04-29 stsp {
1887 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
1888 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
1889 1a76625f 2018-10-22 stsp struct got_repository *thread_repo = NULL;
1890 1a76625f 2018-10-22 stsp struct got_commit_graph *thread_graph = NULL;
1891 1a76625f 2018-10-22 stsp int errcode;
1892 80ddbec8 2018-04-29 stsp
1893 23721109 2018-10-22 stsp err = got_repo_map_path(&s->in_repo_path, repo, path, check_disk);
1894 ecb28ae0 2018-07-16 stsp if (err != NULL)
1895 ecb28ae0 2018-07-16 stsp goto done;
1896 ecb28ae0 2018-07-16 stsp
1897 93e45b7c 2018-09-24 stsp /* The commit queue only contains commits being displayed. */
1898 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->commits.head);
1899 fb2756b9 2018-08-04 stsp s->commits.ncommits = 0;
1900 9ba79e04 2018-06-11 stsp
1901 8b473291 2019-02-21 stsp s->refs = refs;
1902 fb2756b9 2018-08-04 stsp s->repo = repo;
1903 d01904d4 2019-06-25 stsp s->head_ref_name = head_ref_name;
1904 5036bf37 2018-09-24 stsp s->start_id = got_object_id_dup(start_id);
1905 5036bf37 2018-09-24 stsp if (s->start_id == NULL) {
1906 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
1907 5036bf37 2018-09-24 stsp goto done;
1908 5036bf37 2018-09-24 stsp }
1909 e5a0f69f 2018-08-18 stsp
1910 e5a0f69f 2018-08-18 stsp view->show = show_log_view;
1911 e5a0f69f 2018-08-18 stsp view->input = input_log_view;
1912 e5a0f69f 2018-08-18 stsp view->close = close_log_view;
1913 60493ae3 2019-06-20 stsp view->search_start = search_start_log_view;
1914 60493ae3 2019-06-20 stsp view->search_next = search_next_log_view;
1915 1a76625f 2018-10-22 stsp
1916 c9956ddf 2019-09-08 stsp err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL);
1917 1a76625f 2018-10-22 stsp if (err)
1918 1a76625f 2018-10-22 stsp goto done;
1919 1a76625f 2018-10-22 stsp err = got_commit_graph_open(&thread_graph, start_id, s->in_repo_path,
1920 1a76625f 2018-10-22 stsp 0, thread_repo);
1921 1a76625f 2018-10-22 stsp if (err)
1922 1a76625f 2018-10-22 stsp goto done;
1923 1a76625f 2018-10-22 stsp
1924 1a76625f 2018-10-22 stsp errcode = pthread_cond_init(&s->thread_args.need_commits, NULL);
1925 1a76625f 2018-10-22 stsp if (errcode) {
1926 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_cond_init");
1927 1a76625f 2018-10-22 stsp goto done;
1928 1a76625f 2018-10-22 stsp }
1929 1a76625f 2018-10-22 stsp
1930 1a76625f 2018-10-22 stsp s->thread_args.commits_needed = view->nlines;
1931 1a76625f 2018-10-22 stsp s->thread_args.graph = thread_graph;
1932 1a76625f 2018-10-22 stsp s->thread_args.commits = &s->commits;
1933 1a76625f 2018-10-22 stsp s->thread_args.in_repo_path = s->in_repo_path;
1934 1a76625f 2018-10-22 stsp s->thread_args.start_id = s->start_id;
1935 1a76625f 2018-10-22 stsp s->thread_args.repo = thread_repo;
1936 1a76625f 2018-10-22 stsp s->thread_args.log_complete = 0;
1937 1a76625f 2018-10-22 stsp s->thread_args.quit = &s->quit;
1938 1a76625f 2018-10-22 stsp s->thread_args.view = view;
1939 1a76625f 2018-10-22 stsp s->thread_args.first_displayed_entry = &s->first_displayed_entry;
1940 1a76625f 2018-10-22 stsp s->thread_args.selected_entry = &s->selected_entry;
1941 ba4f502b 2018-08-04 stsp done:
1942 1a76625f 2018-10-22 stsp if (err)
1943 1a76625f 2018-10-22 stsp close_log_view(view);
1944 ba4f502b 2018-08-04 stsp return err;
1945 ba4f502b 2018-08-04 stsp }
1946 ba4f502b 2018-08-04 stsp
1947 e5a0f69f 2018-08-18 stsp static const struct got_error *
1948 ba4f502b 2018-08-04 stsp show_log_view(struct tog_view *view)
1949 ba4f502b 2018-08-04 stsp {
1950 fb2756b9 2018-08-04 stsp struct tog_log_view_state *s = &view->state.log;
1951 ba4f502b 2018-08-04 stsp
1952 2b380cc8 2018-10-24 stsp if (s->thread == NULL) {
1953 2b380cc8 2018-10-24 stsp int errcode = pthread_create(&s->thread, NULL, log_thread,
1954 2b380cc8 2018-10-24 stsp &s->thread_args);
1955 2b380cc8 2018-10-24 stsp if (errcode)
1956 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
1957 2b380cc8 2018-10-24 stsp }
1958 2b380cc8 2018-10-24 stsp
1959 0cf4efb1 2018-09-29 stsp return draw_commits(view, &s->last_displayed_entry,
1960 e5a0f69f 2018-08-18 stsp &s->selected_entry, s->first_displayed_entry,
1961 8b473291 2019-02-21 stsp &s->commits, s->selected, view->nlines, s->refs,
1962 1a76625f 2018-10-22 stsp s->in_repo_path, s->thread_args.commits_needed);
1963 e5a0f69f 2018-08-18 stsp }
1964 04cc582a 2018-08-01 stsp
1965 e5a0f69f 2018-08-18 stsp static const struct got_error *
1966 e5a0f69f 2018-08-18 stsp input_log_view(struct tog_view **new_view, struct tog_view **dead_view,
1967 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
1968 e5a0f69f 2018-08-18 stsp {
1969 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
1970 e5a0f69f 2018-08-18 stsp struct tog_log_view_state *s = &view->state.log;
1971 d01904d4 2019-06-25 stsp char *parent_path, *in_repo_path = NULL;
1972 d01904d4 2019-06-25 stsp struct tog_view *diff_view = NULL, *tree_view = NULL, *lv = NULL;
1973 669b5ffa 2018-10-07 stsp int begin_x = 0;
1974 d01904d4 2019-06-25 stsp struct got_object_id *start_id;
1975 80ddbec8 2018-04-29 stsp
1976 e5a0f69f 2018-08-18 stsp switch (ch) {
1977 1e37a5c2 2019-05-12 jcs case 'q':
1978 1e37a5c2 2019-05-12 jcs s->quit = 1;
1979 1e37a5c2 2019-05-12 jcs break;
1980 1e37a5c2 2019-05-12 jcs case 'k':
1981 1e37a5c2 2019-05-12 jcs case KEY_UP:
1982 1e37a5c2 2019-05-12 jcs case '<':
1983 1e37a5c2 2019-05-12 jcs case ',':
1984 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
1985 1a76625f 2018-10-22 stsp break;
1986 1e37a5c2 2019-05-12 jcs if (s->selected > 0)
1987 1e37a5c2 2019-05-12 jcs s->selected--;
1988 1144d21a 2019-06-21 stsp else
1989 1144d21a 2019-06-21 stsp scroll_up(view, &s->first_displayed_entry, 1,
1990 1144d21a 2019-06-21 stsp &s->commits);
1991 1e37a5c2 2019-05-12 jcs break;
1992 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
1993 a4292ac5 2019-05-12 jcs case CTRL('b'):
1994 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
1995 e5a0f69f 2018-08-18 stsp break;
1996 1e37a5c2 2019-05-12 jcs if (TAILQ_FIRST(&s->commits.head) ==
1997 1e37a5c2 2019-05-12 jcs s->first_displayed_entry) {
1998 1e37a5c2 2019-05-12 jcs s->selected = 0;
1999 e5a0f69f 2018-08-18 stsp break;
2000 1e37a5c2 2019-05-12 jcs }
2001 1e37a5c2 2019-05-12 jcs scroll_up(view, &s->first_displayed_entry,
2002 1e37a5c2 2019-05-12 jcs view->nlines, &s->commits);
2003 1e37a5c2 2019-05-12 jcs break;
2004 1e37a5c2 2019-05-12 jcs case 'j':
2005 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
2006 1e37a5c2 2019-05-12 jcs case '>':
2007 1e37a5c2 2019-05-12 jcs case '.':
2008 1e37a5c2 2019-05-12 jcs if (s->first_displayed_entry == NULL)
2009 e5a0f69f 2018-08-18 stsp break;
2010 1e37a5c2 2019-05-12 jcs if (s->selected < MIN(view->nlines - 2,
2011 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1)) {
2012 1e37a5c2 2019-05-12 jcs s->selected++;
2013 1e37a5c2 2019-05-12 jcs break;
2014 80ddbec8 2018-04-29 stsp }
2015 1e37a5c2 2019-05-12 jcs err = scroll_down(view, &s->first_displayed_entry, 1,
2016 1e37a5c2 2019-05-12 jcs &s->last_displayed_entry, &s->commits,
2017 1e37a5c2 2019-05-12 jcs &s->thread_args.log_complete,
2018 1e37a5c2 2019-05-12 jcs &s->thread_args.commits_needed,
2019 1e37a5c2 2019-05-12 jcs &s->thread_args.need_commits);
2020 1e37a5c2 2019-05-12 jcs break;
2021 a4292ac5 2019-05-12 jcs case KEY_NPAGE:
2022 a4292ac5 2019-05-12 jcs case CTRL('f'): {
2023 1e37a5c2 2019-05-12 jcs struct commit_queue_entry *first;
2024 1e37a5c2 2019-05-12 jcs first = s->first_displayed_entry;
2025 1e37a5c2 2019-05-12 jcs if (first == NULL)
2026 e5a0f69f 2018-08-18 stsp break;
2027 1e37a5c2 2019-05-12 jcs err = scroll_down(view, &s->first_displayed_entry,
2028 1e37a5c2 2019-05-12 jcs view->nlines, &s->last_displayed_entry,
2029 1e37a5c2 2019-05-12 jcs &s->commits, &s->thread_args.log_complete,
2030 1e37a5c2 2019-05-12 jcs &s->thread_args.commits_needed,
2031 1e37a5c2 2019-05-12 jcs &s->thread_args.need_commits);
2032 1e37a5c2 2019-05-12 jcs if (first == s->first_displayed_entry &&
2033 1e37a5c2 2019-05-12 jcs s->selected < MIN(view->nlines - 2,
2034 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1)) {
2035 1e37a5c2 2019-05-12 jcs /* can't scroll further down */
2036 1e37a5c2 2019-05-12 jcs s->selected = MIN(view->nlines - 2,
2037 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1);
2038 1e37a5c2 2019-05-12 jcs }
2039 1e37a5c2 2019-05-12 jcs err = NULL;
2040 1e37a5c2 2019-05-12 jcs break;
2041 1e37a5c2 2019-05-12 jcs }
2042 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
2043 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
2044 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
2045 1e37a5c2 2019-05-12 jcs if (s->selected > s->commits.ncommits - 1)
2046 1e37a5c2 2019-05-12 jcs s->selected = s->commits.ncommits - 1;
2047 1e37a5c2 2019-05-12 jcs break;
2048 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
2049 87c7274c 2019-05-12 jcs case ' ':
2050 1e37a5c2 2019-05-12 jcs case '\r':
2051 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2052 e5a0f69f 2018-08-18 stsp break;
2053 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2054 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2055 1e37a5c2 2019-05-12 jcs err = open_diff_view_for_commit(&diff_view, begin_x,
2056 1e37a5c2 2019-05-12 jcs s->selected_entry->commit, s->selected_entry->id,
2057 1e37a5c2 2019-05-12 jcs view, s->refs, s->repo);
2058 1e37a5c2 2019-05-12 jcs if (err)
2059 1e37a5c2 2019-05-12 jcs break;
2060 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2061 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2062 f7013a22 2018-10-24 stsp if (err)
2063 1e37a5c2 2019-05-12 jcs return err;
2064 1e37a5c2 2019-05-12 jcs err = view_set_child(view, diff_view);
2065 1e37a5c2 2019-05-12 jcs if (err) {
2066 1e37a5c2 2019-05-12 jcs view_close(diff_view);
2067 f7013a22 2018-10-24 stsp break;
2068 5036bf37 2018-09-24 stsp }
2069 1e37a5c2 2019-05-12 jcs *focus_view = diff_view;
2070 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
2071 1e37a5c2 2019-05-12 jcs } else
2072 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
2073 1e37a5c2 2019-05-12 jcs break;
2074 1e37a5c2 2019-05-12 jcs case 't':
2075 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2076 5036bf37 2018-09-24 stsp break;
2077 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2078 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2079 941e9f74 2019-05-21 stsp err = browse_commit_tree(&tree_view, begin_x,
2080 941e9f74 2019-05-21 stsp s->selected_entry, s->in_repo_path, s->refs, s->repo);
2081 1e37a5c2 2019-05-12 jcs if (err)
2082 e5a0f69f 2018-08-18 stsp break;
2083 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2084 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2085 1e37a5c2 2019-05-12 jcs if (err)
2086 1e37a5c2 2019-05-12 jcs return err;
2087 1e37a5c2 2019-05-12 jcs err = view_set_child(view, tree_view);
2088 1e37a5c2 2019-05-12 jcs if (err) {
2089 1e37a5c2 2019-05-12 jcs view_close(tree_view);
2090 1e37a5c2 2019-05-12 jcs break;
2091 1e37a5c2 2019-05-12 jcs }
2092 1e37a5c2 2019-05-12 jcs *focus_view = tree_view;
2093 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
2094 1e37a5c2 2019-05-12 jcs } else
2095 1e37a5c2 2019-05-12 jcs *new_view = tree_view;
2096 1e37a5c2 2019-05-12 jcs break;
2097 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
2098 1e37a5c2 2019-05-12 jcs if (strcmp(s->in_repo_path, "/") == 0)
2099 1e37a5c2 2019-05-12 jcs break;
2100 1e37a5c2 2019-05-12 jcs parent_path = dirname(s->in_repo_path);
2101 1e37a5c2 2019-05-12 jcs if (parent_path && strcmp(parent_path, ".") != 0) {
2102 1e37a5c2 2019-05-12 jcs err = stop_log_thread(s);
2103 1e37a5c2 2019-05-12 jcs if (err)
2104 1e37a5c2 2019-05-12 jcs return err;
2105 1e37a5c2 2019-05-12 jcs lv = view_open(view->nlines, view->ncols,
2106 1e37a5c2 2019-05-12 jcs view->begin_y, view->begin_x, TOG_VIEW_LOG);
2107 1e37a5c2 2019-05-12 jcs if (lv == NULL)
2108 638f9024 2019-05-13 stsp return got_error_from_errno(
2109 1e37a5c2 2019-05-12 jcs "view_open");
2110 1e37a5c2 2019-05-12 jcs err = open_log_view(lv, s->start_id, s->refs,
2111 d01904d4 2019-06-25 stsp s->repo, s->head_ref_name, parent_path, 0);
2112 1e37a5c2 2019-05-12 jcs if (err)
2113 1e37a5c2 2019-05-12 jcs return err;;
2114 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2115 1e37a5c2 2019-05-12 jcs *new_view = lv;
2116 1e37a5c2 2019-05-12 jcs else {
2117 1e37a5c2 2019-05-12 jcs view_set_child(view->parent, lv);
2118 1e37a5c2 2019-05-12 jcs *focus_view = lv;
2119 1e37a5c2 2019-05-12 jcs }
2120 1e37a5c2 2019-05-12 jcs return NULL;
2121 1e37a5c2 2019-05-12 jcs }
2122 1e37a5c2 2019-05-12 jcs break;
2123 e3d2a5c6 2019-06-26 stsp case CTRL('l'):
2124 d01904d4 2019-06-25 stsp err = stop_log_thread(s);
2125 d01904d4 2019-06-25 stsp if (err)
2126 d01904d4 2019-06-25 stsp return err;
2127 d01904d4 2019-06-25 stsp lv = view_open(view->nlines, view->ncols,
2128 d01904d4 2019-06-25 stsp view->begin_y, view->begin_x, TOG_VIEW_LOG);
2129 d01904d4 2019-06-25 stsp if (lv == NULL)
2130 d01904d4 2019-06-25 stsp return got_error_from_errno("view_open");
2131 d01904d4 2019-06-25 stsp err = get_head_commit_id(&start_id, s->head_ref_name ?
2132 d01904d4 2019-06-25 stsp s->head_ref_name : GOT_REF_HEAD, s->repo);
2133 ef129c5e 2019-08-03 stsp if (err) {
2134 ef129c5e 2019-08-03 stsp view_close(lv);
2135 d01904d4 2019-06-25 stsp return err;
2136 ef129c5e 2019-08-03 stsp }
2137 d01904d4 2019-06-25 stsp in_repo_path = strdup(s->in_repo_path);
2138 d01904d4 2019-06-25 stsp if (in_repo_path == NULL) {
2139 d01904d4 2019-06-25 stsp free(start_id);
2140 ef129c5e 2019-08-03 stsp view_close(lv);
2141 d01904d4 2019-06-25 stsp return got_error_from_errno("strdup");
2142 d01904d4 2019-06-25 stsp }
2143 d01904d4 2019-06-25 stsp err = open_log_view(lv, start_id, s->refs, s->repo,
2144 d01904d4 2019-06-25 stsp s->head_ref_name, in_repo_path, 0);
2145 ef129c5e 2019-08-03 stsp if (err) {
2146 ef129c5e 2019-08-03 stsp free(start_id);
2147 ef129c5e 2019-08-03 stsp view_close(lv);
2148 d01904d4 2019-06-25 stsp return err;;
2149 ef129c5e 2019-08-03 stsp }
2150 d01904d4 2019-06-25 stsp *dead_view = view;
2151 d01904d4 2019-06-25 stsp *new_view = lv;
2152 d01904d4 2019-06-25 stsp break;
2153 1e37a5c2 2019-05-12 jcs default:
2154 1e37a5c2 2019-05-12 jcs break;
2155 899d86c2 2018-05-10 stsp }
2156 e5a0f69f 2018-08-18 stsp
2157 80ddbec8 2018-04-29 stsp return err;
2158 80ddbec8 2018-04-29 stsp }
2159 80ddbec8 2018-04-29 stsp
2160 4ed7e80c 2018-05-20 stsp static const struct got_error *
2161 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
2162 c2db6724 2019-01-04 stsp {
2163 c2db6724 2019-01-04 stsp const struct got_error *error;
2164 c2db6724 2019-01-04 stsp
2165 37c06ea4 2019-07-15 stsp #ifdef PROFILE
2166 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
2167 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
2168 37c06ea4 2019-07-15 stsp #endif
2169 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
2170 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
2171 c2db6724 2019-01-04 stsp
2172 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
2173 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
2174 c2db6724 2019-01-04 stsp
2175 f12d0dbe 2019-01-04 stsp if (unveil("/tmp", "rwc") != 0)
2176 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", "/tmp");
2177 c2db6724 2019-01-04 stsp
2178 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
2179 c2db6724 2019-01-04 stsp if (error != NULL)
2180 c2db6724 2019-01-04 stsp return error;
2181 c2db6724 2019-01-04 stsp
2182 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
2183 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
2184 c2db6724 2019-01-04 stsp
2185 c2db6724 2019-01-04 stsp return NULL;
2186 c2db6724 2019-01-04 stsp }
2187 c2db6724 2019-01-04 stsp
2188 a915003a 2019-02-05 stsp static void
2189 a915003a 2019-02-05 stsp init_curses(void)
2190 a915003a 2019-02-05 stsp {
2191 a915003a 2019-02-05 stsp initscr();
2192 a915003a 2019-02-05 stsp cbreak();
2193 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
2194 a915003a 2019-02-05 stsp noecho();
2195 a915003a 2019-02-05 stsp nonl();
2196 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
2197 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
2198 a915003a 2019-02-05 stsp curs_set(0);
2199 a915003a 2019-02-05 stsp signal(SIGWINCH, tog_sigwinch);
2200 83baff54 2019-08-12 stsp signal(SIGPIPE, tog_sigpipe);
2201 a915003a 2019-02-05 stsp }
2202 a915003a 2019-02-05 stsp
2203 c2db6724 2019-01-04 stsp static const struct got_error *
2204 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
2205 9f7d7167 2018-04-29 stsp {
2206 80ddbec8 2018-04-29 stsp const struct got_error *error;
2207 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
2208 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
2209 8b473291 2019-02-21 stsp struct got_reflist_head refs;
2210 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
2211 ecb28ae0 2018-07-16 stsp char *path = NULL, *repo_path = NULL, *cwd = NULL;
2212 2fc00ff4 2019-08-31 stsp char *start_commit = NULL, *head_ref_name = NULL;
2213 80ddbec8 2018-04-29 stsp int ch;
2214 04cc582a 2018-08-01 stsp struct tog_view *view;
2215 a55555f2 2019-03-28 stsp
2216 a55555f2 2019-03-28 stsp SIMPLEQ_INIT(&refs);
2217 80ddbec8 2018-04-29 stsp
2218 80ddbec8 2018-04-29 stsp #ifndef PROFILE
2219 c2db6724 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
2220 c2db6724 2019-01-04 stsp NULL) == -1)
2221 80ddbec8 2018-04-29 stsp err(1, "pledge");
2222 80ddbec8 2018-04-29 stsp #endif
2223 80ddbec8 2018-04-29 stsp
2224 ecb28ae0 2018-07-16 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
2225 80ddbec8 2018-04-29 stsp switch (ch) {
2226 80ddbec8 2018-04-29 stsp case 'c':
2227 80ddbec8 2018-04-29 stsp start_commit = optarg;
2228 80ddbec8 2018-04-29 stsp break;
2229 ecb28ae0 2018-07-16 stsp case 'r':
2230 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
2231 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
2232 ecb28ae0 2018-07-16 stsp err(1, "-r option");
2233 ecb28ae0 2018-07-16 stsp break;
2234 80ddbec8 2018-04-29 stsp default:
2235 17020d27 2019-03-07 stsp usage_log();
2236 80ddbec8 2018-04-29 stsp /* NOTREACHED */
2237 80ddbec8 2018-04-29 stsp }
2238 80ddbec8 2018-04-29 stsp }
2239 80ddbec8 2018-04-29 stsp
2240 80ddbec8 2018-04-29 stsp argc -= optind;
2241 80ddbec8 2018-04-29 stsp argv += optind;
2242 80ddbec8 2018-04-29 stsp
2243 ecb28ae0 2018-07-16 stsp cwd = getcwd(NULL, 0);
2244 ecb28ae0 2018-07-16 stsp if (cwd == NULL) {
2245 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2246 ecb28ae0 2018-07-16 stsp goto done;
2247 ecb28ae0 2018-07-16 stsp }
2248 963f97a1 2019-03-18 stsp error = got_worktree_open(&worktree, cwd);
2249 963f97a1 2019-03-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2250 963f97a1 2019-03-18 stsp goto done;
2251 963f97a1 2019-03-18 stsp error = NULL;
2252 963f97a1 2019-03-18 stsp
2253 963f97a1 2019-03-18 stsp if (argc == 0) {
2254 963f97a1 2019-03-18 stsp path = strdup("");
2255 963f97a1 2019-03-18 stsp if (path == NULL) {
2256 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2257 ecb28ae0 2018-07-16 stsp goto done;
2258 ecb28ae0 2018-07-16 stsp }
2259 963f97a1 2019-03-18 stsp } else if (argc == 1) {
2260 963f97a1 2019-03-18 stsp if (worktree) {
2261 963f97a1 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
2262 963f97a1 2019-03-18 stsp argv[0]);
2263 963f97a1 2019-03-18 stsp if (error)
2264 963f97a1 2019-03-18 stsp goto done;
2265 963f97a1 2019-03-18 stsp } else {
2266 963f97a1 2019-03-18 stsp path = strdup(argv[0]);
2267 963f97a1 2019-03-18 stsp if (path == NULL) {
2268 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2269 963f97a1 2019-03-18 stsp goto done;
2270 963f97a1 2019-03-18 stsp }
2271 963f97a1 2019-03-18 stsp }
2272 963f97a1 2019-03-18 stsp } else
2273 963f97a1 2019-03-18 stsp usage_log();
2274 963f97a1 2019-03-18 stsp
2275 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
2276 a1fbf39a 2019-08-11 stsp if (worktree)
2277 b9d7675a 2019-08-11 stsp repo_path = strdup(
2278 b9d7675a 2019-08-11 stsp got_worktree_get_repo_path(worktree));
2279 a1fbf39a 2019-08-11 stsp else
2280 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
2281 a1fbf39a 2019-08-11 stsp }
2282 963f97a1 2019-03-18 stsp if (repo_path == NULL) {
2283 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2284 963f97a1 2019-03-18 stsp goto done;
2285 ecb28ae0 2018-07-16 stsp }
2286 c2db6724 2019-01-04 stsp
2287 a915003a 2019-02-05 stsp init_curses();
2288 ecb28ae0 2018-07-16 stsp
2289 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2290 80ddbec8 2018-04-29 stsp if (error != NULL)
2291 ecb28ae0 2018-07-16 stsp goto done;
2292 80ddbec8 2018-04-29 stsp
2293 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
2294 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
2295 c02c541e 2019-03-29 stsp if (error)
2296 c02c541e 2019-03-29 stsp goto done;
2297 c02c541e 2019-03-29 stsp
2298 15a94983 2018-12-23 stsp if (start_commit == NULL)
2299 19e70ad6 2019-05-14 stsp error = get_head_commit_id(&start_id, worktree ?
2300 19e70ad6 2019-05-14 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
2301 19e70ad6 2019-05-14 stsp repo);
2302 f2b6a97d 2019-07-15 stsp else {
2303 f2b6a97d 2019-07-15 stsp error = get_head_commit_id(&start_id, start_commit, repo);
2304 f2b6a97d 2019-07-15 stsp if (error) {
2305 f2b6a97d 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
2306 f2b6a97d 2019-07-15 stsp goto done;
2307 f2b6a97d 2019-07-15 stsp error = got_repo_match_object_id_prefix(&start_id,
2308 f2b6a97d 2019-07-15 stsp start_commit, GOT_OBJ_TYPE_COMMIT, repo);
2309 f2b6a97d 2019-07-15 stsp }
2310 f2b6a97d 2019-07-15 stsp }
2311 80ddbec8 2018-04-29 stsp if (error != NULL)
2312 8b473291 2019-02-21 stsp goto done;
2313 8b473291 2019-02-21 stsp
2314 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
2315 8b473291 2019-02-21 stsp if (error)
2316 ecb28ae0 2018-07-16 stsp goto done;
2317 ecb28ae0 2018-07-16 stsp
2318 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
2319 04cc582a 2018-08-01 stsp if (view == NULL) {
2320 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
2321 04cc582a 2018-08-01 stsp goto done;
2322 04cc582a 2018-08-01 stsp }
2323 2fc00ff4 2019-08-31 stsp if (worktree) {
2324 2fc00ff4 2019-08-31 stsp head_ref_name = strdup(
2325 2fc00ff4 2019-08-31 stsp got_worktree_get_head_ref_name(worktree));
2326 2fc00ff4 2019-08-31 stsp if (head_ref_name == NULL) {
2327 2fc00ff4 2019-08-31 stsp error = got_error_from_errno("strdup");
2328 2fc00ff4 2019-08-31 stsp goto done;
2329 2fc00ff4 2019-08-31 stsp }
2330 2fc00ff4 2019-08-31 stsp }
2331 2fc00ff4 2019-08-31 stsp error = open_log_view(view, start_id, &refs, repo, head_ref_name,
2332 2fc00ff4 2019-08-31 stsp path, 1);
2333 ba4f502b 2018-08-04 stsp if (error)
2334 ba4f502b 2018-08-04 stsp goto done;
2335 2fc00ff4 2019-08-31 stsp if (worktree) {
2336 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
2337 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
2338 2fc00ff4 2019-08-31 stsp worktree = NULL;
2339 2fc00ff4 2019-08-31 stsp }
2340 e5a0f69f 2018-08-18 stsp error = view_loop(view);
2341 ecb28ae0 2018-07-16 stsp done:
2342 ecb28ae0 2018-07-16 stsp free(repo_path);
2343 ecb28ae0 2018-07-16 stsp free(cwd);
2344 ecb28ae0 2018-07-16 stsp free(path);
2345 899d86c2 2018-05-10 stsp free(start_id);
2346 2fc00ff4 2019-08-31 stsp free(head_ref_name);
2347 ecb28ae0 2018-07-16 stsp if (repo)
2348 ecb28ae0 2018-07-16 stsp got_repo_close(repo);
2349 ec142235 2019-03-07 stsp if (worktree)
2350 ec142235 2019-03-07 stsp got_worktree_close(worktree);
2351 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
2352 80ddbec8 2018-04-29 stsp return error;
2353 9f7d7167 2018-04-29 stsp }
2354 9f7d7167 2018-04-29 stsp
2355 4ed7e80c 2018-05-20 stsp __dead static void
2356 9f7d7167 2018-04-29 stsp usage_diff(void)
2357 9f7d7167 2018-04-29 stsp {
2358 80ddbec8 2018-04-29 stsp endwin();
2359 9f7d7167 2018-04-29 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
2360 9f7d7167 2018-04-29 stsp getprogname());
2361 9f7d7167 2018-04-29 stsp exit(1);
2362 b304db33 2018-05-20 stsp }
2363 b304db33 2018-05-20 stsp
2364 b304db33 2018-05-20 stsp static char *
2365 b304db33 2018-05-20 stsp parse_next_line(FILE *f, size_t *len)
2366 b304db33 2018-05-20 stsp {
2367 b304db33 2018-05-20 stsp char *line;
2368 b304db33 2018-05-20 stsp size_t linelen;
2369 b304db33 2018-05-20 stsp size_t lineno;
2370 b304db33 2018-05-20 stsp const char delim[3] = { '\0', '\0', '\0'};
2371 b304db33 2018-05-20 stsp
2372 b304db33 2018-05-20 stsp line = fparseln(f, &linelen, &lineno, delim, 0);
2373 b304db33 2018-05-20 stsp if (len)
2374 b304db33 2018-05-20 stsp *len = linelen;
2375 b304db33 2018-05-20 stsp return line;
2376 26ed57b2 2018-05-19 stsp }
2377 26ed57b2 2018-05-19 stsp
2378 4ed7e80c 2018-05-20 stsp static const struct got_error *
2379 f7d12f7e 2018-08-01 stsp draw_file(struct tog_view *view, FILE *f, int *first_displayed_line,
2380 a3404814 2018-09-02 stsp int *last_displayed_line, int *eof, int max_lines,
2381 c3e9aa98 2019-05-13 jcs char *header)
2382 26ed57b2 2018-05-19 stsp {
2383 61e69b96 2018-05-20 stsp const struct got_error *err;
2384 26ed57b2 2018-05-19 stsp int nlines = 0, nprinted = 0;
2385 b304db33 2018-05-20 stsp char *line;
2386 b304db33 2018-05-20 stsp size_t len;
2387 61e69b96 2018-05-20 stsp wchar_t *wline;
2388 e0b650dd 2018-05-20 stsp int width;
2389 26ed57b2 2018-05-19 stsp
2390 26ed57b2 2018-05-19 stsp rewind(f);
2391 f7d12f7e 2018-08-01 stsp werase(view->window);
2392 a3404814 2018-09-02 stsp
2393 a3404814 2018-09-02 stsp if (header) {
2394 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, header, view->ncols, 0);
2395 a3404814 2018-09-02 stsp if (err) {
2396 a3404814 2018-09-02 stsp return err;
2397 a3404814 2018-09-02 stsp }
2398 a3404814 2018-09-02 stsp
2399 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2400 a3404814 2018-09-02 stsp wstandout(view->window);
2401 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
2402 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2403 a3404814 2018-09-02 stsp wstandend(view->window);
2404 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
2405 a3404814 2018-09-02 stsp waddch(view->window, '\n');
2406 26ed57b2 2018-05-19 stsp
2407 a3404814 2018-09-02 stsp if (max_lines <= 1)
2408 a3404814 2018-09-02 stsp return NULL;
2409 a3404814 2018-09-02 stsp max_lines--;
2410 a3404814 2018-09-02 stsp }
2411 a3404814 2018-09-02 stsp
2412 26ed57b2 2018-05-19 stsp *eof = 0;
2413 26ed57b2 2018-05-19 stsp while (nprinted < max_lines) {
2414 b304db33 2018-05-20 stsp line = parse_next_line(f, &len);
2415 26ed57b2 2018-05-19 stsp if (line == NULL) {
2416 26ed57b2 2018-05-19 stsp *eof = 1;
2417 26ed57b2 2018-05-19 stsp break;
2418 26ed57b2 2018-05-19 stsp }
2419 26ed57b2 2018-05-19 stsp if (++nlines < *first_displayed_line) {
2420 26ed57b2 2018-05-19 stsp free(line);
2421 26ed57b2 2018-05-19 stsp continue;
2422 26ed57b2 2018-05-19 stsp }
2423 26ed57b2 2018-05-19 stsp
2424 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
2425 61e69b96 2018-05-20 stsp if (err) {
2426 61e69b96 2018-05-20 stsp free(line);
2427 61e69b96 2018-05-20 stsp return err;
2428 61e69b96 2018-05-20 stsp }
2429 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
2430 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
2431 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
2432 26ed57b2 2018-05-19 stsp if (++nprinted == 1)
2433 26ed57b2 2018-05-19 stsp *first_displayed_line = nlines;
2434 26ed57b2 2018-05-19 stsp free(line);
2435 2550e4c3 2018-07-13 stsp free(wline);
2436 2550e4c3 2018-07-13 stsp wline = NULL;
2437 26ed57b2 2018-05-19 stsp }
2438 26ed57b2 2018-05-19 stsp *last_displayed_line = nlines;
2439 26ed57b2 2018-05-19 stsp
2440 1a57306a 2018-09-02 stsp view_vborder(view);
2441 c3e9aa98 2019-05-13 jcs
2442 c3e9aa98 2019-05-13 jcs if (*eof) {
2443 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
2444 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
2445 c3e9aa98 2019-05-13 jcs nprinted++;
2446 c3e9aa98 2019-05-13 jcs }
2447 c3e9aa98 2019-05-13 jcs
2448 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, TOG_EOF_STRING, view->ncols, 0);
2449 c3e9aa98 2019-05-13 jcs if (err) {
2450 c3e9aa98 2019-05-13 jcs return err;
2451 c3e9aa98 2019-05-13 jcs }
2452 26ed57b2 2018-05-19 stsp
2453 c3e9aa98 2019-05-13 jcs wstandout(view->window);
2454 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
2455 c3e9aa98 2019-05-13 jcs wstandend(view->window);
2456 c3e9aa98 2019-05-13 jcs }
2457 c3e9aa98 2019-05-13 jcs
2458 26ed57b2 2018-05-19 stsp return NULL;
2459 abd2672a 2018-12-23 stsp }
2460 abd2672a 2018-12-23 stsp
2461 abd2672a 2018-12-23 stsp static char *
2462 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
2463 abd2672a 2018-12-23 stsp {
2464 09867e48 2019-08-13 stsp struct tm mytm, *tm;
2465 09867e48 2019-08-13 stsp char *p, *s;
2466 09867e48 2019-08-13 stsp
2467 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
2468 09867e48 2019-08-13 stsp if (tm == NULL)
2469 09867e48 2019-08-13 stsp return NULL;
2470 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
2471 09867e48 2019-08-13 stsp if (s == NULL)
2472 09867e48 2019-08-13 stsp return NULL;
2473 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
2474 abd2672a 2018-12-23 stsp if (p)
2475 abd2672a 2018-12-23 stsp *p = '\0';
2476 abd2672a 2018-12-23 stsp return s;
2477 9f7d7167 2018-04-29 stsp }
2478 9f7d7167 2018-04-29 stsp
2479 4ed7e80c 2018-05-20 stsp static const struct got_error *
2480 8b473291 2019-02-21 stsp write_commit_info(struct got_object_id *commit_id,
2481 8b473291 2019-02-21 stsp struct got_reflist_head *refs, struct got_repository *repo, FILE *outfile)
2482 abd2672a 2018-12-23 stsp {
2483 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
2484 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
2485 15a94983 2018-12-23 stsp struct got_commit_object *commit;
2486 5943eee2 2019-08-13 stsp char *id_str = NULL, *logmsg = NULL;
2487 45d799e2 2018-12-23 stsp time_t committer_time;
2488 45d799e2 2018-12-23 stsp const char *author, *committer;
2489 8b473291 2019-02-21 stsp char *refs_str = NULL;
2490 abd2672a 2018-12-23 stsp
2491 8b473291 2019-02-21 stsp if (refs) {
2492 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
2493 8b473291 2019-02-21 stsp if (err)
2494 8b473291 2019-02-21 stsp return err;
2495 8b473291 2019-02-21 stsp }
2496 8b473291 2019-02-21 stsp
2497 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
2498 abd2672a 2018-12-23 stsp if (err)
2499 abd2672a 2018-12-23 stsp return err;
2500 abd2672a 2018-12-23 stsp
2501 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
2502 15a94983 2018-12-23 stsp if (err) {
2503 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
2504 15a94983 2018-12-23 stsp goto done;
2505 15a94983 2018-12-23 stsp }
2506 abd2672a 2018-12-23 stsp
2507 8b473291 2019-02-21 stsp if (fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
2508 8b473291 2019-02-21 stsp refs_str ? refs_str : "", refs_str ? ")" : "") < 0) {
2509 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2510 abd2672a 2018-12-23 stsp goto done;
2511 abd2672a 2018-12-23 stsp }
2512 45d799e2 2018-12-23 stsp if (fprintf(outfile, "from: %s\n",
2513 45d799e2 2018-12-23 stsp got_object_commit_get_author(commit)) < 0) {
2514 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2515 abd2672a 2018-12-23 stsp goto done;
2516 abd2672a 2018-12-23 stsp }
2517 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
2518 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
2519 09867e48 2019-08-13 stsp if (datestr && fprintf(outfile, "date: %s UTC\n", datestr) < 0) {
2520 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2521 abd2672a 2018-12-23 stsp goto done;
2522 abd2672a 2018-12-23 stsp }
2523 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
2524 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
2525 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0 &&
2526 45d799e2 2018-12-23 stsp fprintf(outfile, "via: %s\n", committer) < 0) {
2527 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2528 abd2672a 2018-12-23 stsp goto done;
2529 abd2672a 2018-12-23 stsp }
2530 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2531 5943eee2 2019-08-13 stsp if (err)
2532 5943eee2 2019-08-13 stsp goto done;
2533 5943eee2 2019-08-13 stsp if (fprintf(outfile, "%s\n", logmsg) < 0) {
2534 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2535 abd2672a 2018-12-23 stsp goto done;
2536 abd2672a 2018-12-23 stsp }
2537 abd2672a 2018-12-23 stsp done:
2538 abd2672a 2018-12-23 stsp free(id_str);
2539 5943eee2 2019-08-13 stsp free(logmsg);
2540 8b473291 2019-02-21 stsp free(refs_str);
2541 15a94983 2018-12-23 stsp got_object_commit_close(commit);
2542 abd2672a 2018-12-23 stsp return err;
2543 abd2672a 2018-12-23 stsp }
2544 abd2672a 2018-12-23 stsp
2545 abd2672a 2018-12-23 stsp static const struct got_error *
2546 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
2547 26ed57b2 2018-05-19 stsp {
2548 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
2549 48ae06ee 2018-10-18 stsp FILE *f = NULL;
2550 15a94983 2018-12-23 stsp int obj_type;
2551 26ed57b2 2018-05-19 stsp
2552 511a516b 2018-05-19 stsp f = got_opentemp();
2553 48ae06ee 2018-10-18 stsp if (f == NULL) {
2554 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
2555 48ae06ee 2018-10-18 stsp goto done;
2556 48ae06ee 2018-10-18 stsp }
2557 fb43ecf1 2019-02-11 stsp if (s->f && fclose(s->f) != 0) {
2558 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2559 fb43ecf1 2019-02-11 stsp goto done;
2560 fb43ecf1 2019-02-11 stsp }
2561 48ae06ee 2018-10-18 stsp s->f = f;
2562 26ed57b2 2018-05-19 stsp
2563 15a94983 2018-12-23 stsp if (s->id1)
2564 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
2565 15a94983 2018-12-23 stsp else
2566 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
2567 15a94983 2018-12-23 stsp if (err)
2568 15a94983 2018-12-23 stsp goto done;
2569 15a94983 2018-12-23 stsp
2570 15a94983 2018-12-23 stsp switch (obj_type) {
2571 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
2572 15a94983 2018-12-23 stsp err = got_diff_objects_as_blobs(s->id1, s->id2, NULL, NULL,
2573 54156555 2018-12-24 stsp s->diff_context, s->repo, f);
2574 26ed57b2 2018-05-19 stsp break;
2575 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
2576 54156555 2018-12-24 stsp err = got_diff_objects_as_trees(s->id1, s->id2, "", "",
2577 48ae06ee 2018-10-18 stsp s->diff_context, s->repo, f);
2578 26ed57b2 2018-05-19 stsp break;
2579 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
2580 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
2581 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
2582 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
2583 abd2672a 2018-12-23 stsp
2584 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
2585 abd2672a 2018-12-23 stsp if (err)
2586 abd2672a 2018-12-23 stsp break;
2587 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
2588 15a087fe 2019-02-21 stsp if (s->id1 == NULL)
2589 8b473291 2019-02-21 stsp write_commit_info(s->id2, s->refs, s->repo, f);
2590 15a087fe 2019-02-21 stsp else {
2591 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
2592 15a087fe 2019-02-21 stsp SIMPLEQ_FOREACH(pid, parent_ids, entry) {
2593 15a087fe 2019-02-21 stsp if (got_object_id_cmp(s->id1, pid->id) == 0) {
2594 8b473291 2019-02-21 stsp write_commit_info(s->id2, s->refs,
2595 8b473291 2019-02-21 stsp s->repo, f);
2596 15a087fe 2019-02-21 stsp break;
2597 15a087fe 2019-02-21 stsp }
2598 abd2672a 2018-12-23 stsp }
2599 abd2672a 2018-12-23 stsp }
2600 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
2601 abd2672a 2018-12-23 stsp
2602 15a94983 2018-12-23 stsp err = got_diff_objects_as_commits(s->id1, s->id2,
2603 15a94983 2018-12-23 stsp s->diff_context, s->repo, f);
2604 26ed57b2 2018-05-19 stsp break;
2605 abd2672a 2018-12-23 stsp }
2606 26ed57b2 2018-05-19 stsp default:
2607 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
2608 48ae06ee 2018-10-18 stsp break;
2609 26ed57b2 2018-05-19 stsp }
2610 48ae06ee 2018-10-18 stsp done:
2611 cbe7f848 2019-02-11 stsp if (f && fflush(f) != 0 && err == NULL)
2612 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
2613 48ae06ee 2018-10-18 stsp return err;
2614 48ae06ee 2018-10-18 stsp }
2615 26ed57b2 2018-05-19 stsp
2616 f5215bb9 2019-02-22 stsp static void
2617 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
2618 f5215bb9 2019-02-22 stsp {
2619 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
2620 f5215bb9 2019-02-22 stsp update_panels();
2621 f5215bb9 2019-02-22 stsp doupdate();
2622 f5215bb9 2019-02-22 stsp }
2623 f5215bb9 2019-02-22 stsp
2624 48ae06ee 2018-10-18 stsp static const struct got_error *
2625 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
2626 fb872ab2 2019-02-21 stsp struct got_object_id *id2, struct tog_view *log_view,
2627 8b473291 2019-02-21 stsp struct got_reflist_head *refs, struct got_repository *repo)
2628 48ae06ee 2018-10-18 stsp {
2629 48ae06ee 2018-10-18 stsp const struct got_error *err;
2630 5dc9f4bc 2018-08-04 stsp
2631 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
2632 15a94983 2018-12-23 stsp int type1, type2;
2633 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
2634 15a94983 2018-12-23 stsp if (err)
2635 15a94983 2018-12-23 stsp return err;
2636 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
2637 15a94983 2018-12-23 stsp if (err)
2638 15a94983 2018-12-23 stsp return err;
2639 15a94983 2018-12-23 stsp
2640 15a94983 2018-12-23 stsp if (type1 != type2)
2641 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
2642 15a94983 2018-12-23 stsp }
2643 48ae06ee 2018-10-18 stsp
2644 15a94983 2018-12-23 stsp if (id1) {
2645 15a94983 2018-12-23 stsp view->state.diff.id1 = got_object_id_dup(id1);
2646 15a94983 2018-12-23 stsp if (view->state.diff.id1 == NULL)
2647 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
2648 48ae06ee 2018-10-18 stsp } else
2649 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2650 48ae06ee 2018-10-18 stsp
2651 15a94983 2018-12-23 stsp view->state.diff.id2 = got_object_id_dup(id2);
2652 48ae06ee 2018-10-18 stsp if (view->state.diff.id2 == NULL) {
2653 48ae06ee 2018-10-18 stsp free(view->state.diff.id1);
2654 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2655 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
2656 48ae06ee 2018-10-18 stsp }
2657 48ae06ee 2018-10-18 stsp view->state.diff.f = NULL;
2658 5dc9f4bc 2018-08-04 stsp view->state.diff.first_displayed_line = 1;
2659 5dc9f4bc 2018-08-04 stsp view->state.diff.last_displayed_line = view->nlines;
2660 48ae06ee 2018-10-18 stsp view->state.diff.diff_context = 3;
2661 fb872ab2 2019-02-21 stsp view->state.diff.log_view = log_view;
2662 48ae06ee 2018-10-18 stsp view->state.diff.repo = repo;
2663 8b473291 2019-02-21 stsp view->state.diff.refs = refs;
2664 5dc9f4bc 2018-08-04 stsp
2665 f5215bb9 2019-02-22 stsp if (log_view && view_is_splitscreen(view))
2666 f5215bb9 2019-02-22 stsp show_log_view(log_view); /* draw vborder */
2667 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
2668 f5215bb9 2019-02-22 stsp
2669 48ae06ee 2018-10-18 stsp err = create_diff(&view->state.diff);
2670 48ae06ee 2018-10-18 stsp if (err) {
2671 48ae06ee 2018-10-18 stsp free(view->state.diff.id1);
2672 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2673 48ae06ee 2018-10-18 stsp free(view->state.diff.id2);
2674 48ae06ee 2018-10-18 stsp view->state.diff.id2 = NULL;
2675 48ae06ee 2018-10-18 stsp return err;
2676 48ae06ee 2018-10-18 stsp }
2677 48ae06ee 2018-10-18 stsp
2678 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
2679 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
2680 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
2681 e5a0f69f 2018-08-18 stsp
2682 5dc9f4bc 2018-08-04 stsp return NULL;
2683 5dc9f4bc 2018-08-04 stsp }
2684 5dc9f4bc 2018-08-04 stsp
2685 e5a0f69f 2018-08-18 stsp static const struct got_error *
2686 5dc9f4bc 2018-08-04 stsp close_diff_view(struct tog_view *view)
2687 5dc9f4bc 2018-08-04 stsp {
2688 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
2689 e5a0f69f 2018-08-18 stsp
2690 48ae06ee 2018-10-18 stsp free(view->state.diff.id1);
2691 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2692 48ae06ee 2018-10-18 stsp free(view->state.diff.id2);
2693 48ae06ee 2018-10-18 stsp view->state.diff.id2 = NULL;
2694 e5a0f69f 2018-08-18 stsp if (view->state.diff.f && fclose(view->state.diff.f) == EOF)
2695 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2696 e5a0f69f 2018-08-18 stsp return err;
2697 5dc9f4bc 2018-08-04 stsp }
2698 5dc9f4bc 2018-08-04 stsp
2699 5dc9f4bc 2018-08-04 stsp static const struct got_error *
2700 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
2701 5dc9f4bc 2018-08-04 stsp {
2702 a3404814 2018-09-02 stsp const struct got_error *err;
2703 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
2704 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
2705 a3404814 2018-09-02 stsp
2706 a3404814 2018-09-02 stsp if (s->id1) {
2707 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
2708 a3404814 2018-09-02 stsp if (err)
2709 a3404814 2018-09-02 stsp return err;
2710 a3404814 2018-09-02 stsp }
2711 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
2712 a3404814 2018-09-02 stsp if (err)
2713 a3404814 2018-09-02 stsp return err;
2714 26ed57b2 2018-05-19 stsp
2715 56765ebb 2018-12-23 stsp if (asprintf(&header, "diff %s %s",
2716 a3404814 2018-09-02 stsp id_str1 ? id_str1 : "/dev/null", id_str2) == -1) {
2717 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2718 a3404814 2018-09-02 stsp free(id_str1);
2719 a3404814 2018-09-02 stsp free(id_str2);
2720 a3404814 2018-09-02 stsp return err;
2721 a3404814 2018-09-02 stsp }
2722 a3404814 2018-09-02 stsp free(id_str1);
2723 a3404814 2018-09-02 stsp free(id_str2);
2724 a3404814 2018-09-02 stsp
2725 e5a0f69f 2018-08-18 stsp return draw_file(view, s->f, &s->first_displayed_line,
2726 a3404814 2018-09-02 stsp &s->last_displayed_line, &s->eof, view->nlines,
2727 a3404814 2018-09-02 stsp header);
2728 15a087fe 2019-02-21 stsp }
2729 15a087fe 2019-02-21 stsp
2730 15a087fe 2019-02-21 stsp static const struct got_error *
2731 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
2732 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
2733 15a087fe 2019-02-21 stsp {
2734 d7a04538 2019-02-21 stsp const struct got_error *err;
2735 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
2736 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
2737 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
2738 15a087fe 2019-02-21 stsp
2739 15a087fe 2019-02-21 stsp free(s->id2);
2740 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
2741 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
2742 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
2743 15a087fe 2019-02-21 stsp
2744 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
2745 d7a04538 2019-02-21 stsp if (err)
2746 d7a04538 2019-02-21 stsp return err;
2747 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
2748 15a087fe 2019-02-21 stsp free(s->id1);
2749 d7a04538 2019-02-21 stsp pid = SIMPLEQ_FIRST(parent_ids);
2750 d7a04538 2019-02-21 stsp s->id1 = pid ? got_object_id_dup(pid->id) : NULL;
2751 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
2752 15a087fe 2019-02-21 stsp return NULL;
2753 0cf4efb1 2018-09-29 stsp }
2754 0cf4efb1 2018-09-29 stsp
2755 0cf4efb1 2018-09-29 stsp static const struct got_error *
2756 bcbd79e2 2018-08-19 stsp input_diff_view(struct tog_view **new_view, struct tog_view **dead_view,
2757 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
2758 e5a0f69f 2018-08-18 stsp {
2759 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
2760 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
2761 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
2762 fb872ab2 2019-02-21 stsp struct commit_queue_entry *entry;
2763 e5a0f69f 2018-08-18 stsp int i;
2764 e5a0f69f 2018-08-18 stsp
2765 e5a0f69f 2018-08-18 stsp switch (ch) {
2766 1e37a5c2 2019-05-12 jcs case 'k':
2767 1e37a5c2 2019-05-12 jcs case KEY_UP:
2768 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
2769 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
2770 1e37a5c2 2019-05-12 jcs break;
2771 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
2772 a60a9dc4 2019-05-13 jcs case CTRL('b'):
2773 00ba99a7 2019-05-12 jcs if (s->first_displayed_line == 1)
2774 26ed57b2 2018-05-19 stsp break;
2775 1e37a5c2 2019-05-12 jcs i = 0;
2776 1e37a5c2 2019-05-12 jcs while (i++ < view->nlines - 1 &&
2777 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
2778 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
2779 1e37a5c2 2019-05-12 jcs break;
2780 1e37a5c2 2019-05-12 jcs case 'j':
2781 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
2782 1e37a5c2 2019-05-12 jcs if (!s->eof)
2783 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
2784 1e37a5c2 2019-05-12 jcs break;
2785 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
2786 a60a9dc4 2019-05-13 jcs case CTRL('f'):
2787 1e37a5c2 2019-05-12 jcs case ' ':
2788 00ba99a7 2019-05-12 jcs if (s->eof)
2789 1e37a5c2 2019-05-12 jcs break;
2790 1e37a5c2 2019-05-12 jcs i = 0;
2791 1e37a5c2 2019-05-12 jcs while (!s->eof && i++ < view->nlines - 1) {
2792 1e37a5c2 2019-05-12 jcs char *line;
2793 1e37a5c2 2019-05-12 jcs line = parse_next_line(s->f, NULL);
2794 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
2795 1e37a5c2 2019-05-12 jcs if (line == NULL)
2796 34bc9ec9 2019-02-22 stsp break;
2797 1e37a5c2 2019-05-12 jcs }
2798 1e37a5c2 2019-05-12 jcs break;
2799 1e37a5c2 2019-05-12 jcs case '[':
2800 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
2801 1e37a5c2 2019-05-12 jcs s->diff_context--;
2802 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2803 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2804 1e37a5c2 2019-05-12 jcs }
2805 1e37a5c2 2019-05-12 jcs break;
2806 1e37a5c2 2019-05-12 jcs case ']':
2807 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
2808 1e37a5c2 2019-05-12 jcs s->diff_context++;
2809 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2810 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2811 1e37a5c2 2019-05-12 jcs }
2812 1e37a5c2 2019-05-12 jcs break;
2813 1e37a5c2 2019-05-12 jcs case '<':
2814 1e37a5c2 2019-05-12 jcs case ',':
2815 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
2816 48ae06ee 2018-10-18 stsp break;
2817 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
2818 1e37a5c2 2019-05-12 jcs entry = TAILQ_PREV(ls->selected_entry,
2819 1e37a5c2 2019-05-12 jcs commit_queue_head, entry);
2820 1e37a5c2 2019-05-12 jcs if (entry == NULL)
2821 48ae06ee 2018-10-18 stsp break;
2822 6524637e 2019-02-21 stsp
2823 1e37a5c2 2019-05-12 jcs err = input_log_view(NULL, NULL, NULL, s->log_view,
2824 1e37a5c2 2019-05-12 jcs KEY_UP);
2825 1e37a5c2 2019-05-12 jcs if (err)
2826 1e37a5c2 2019-05-12 jcs break;
2827 15a087fe 2019-02-21 stsp
2828 1e37a5c2 2019-05-12 jcs err = set_selected_commit(s, entry);
2829 1e37a5c2 2019-05-12 jcs if (err)
2830 1e37a5c2 2019-05-12 jcs break;
2831 15a087fe 2019-02-21 stsp
2832 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
2833 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
2834 15a087fe 2019-02-21 stsp
2835 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2836 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2837 1e37a5c2 2019-05-12 jcs break;
2838 1e37a5c2 2019-05-12 jcs case '>':
2839 1e37a5c2 2019-05-12 jcs case '.':
2840 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
2841 15a087fe 2019-02-21 stsp break;
2842 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
2843 5e224a3e 2019-02-22 stsp
2844 1e37a5c2 2019-05-12 jcs if (TAILQ_NEXT(ls->selected_entry, entry) == NULL) {
2845 1e37a5c2 2019-05-12 jcs ls->thread_args.commits_needed++;
2846 5e224a3e 2019-02-22 stsp
2847 1e37a5c2 2019-05-12 jcs /* Display "loading..." in log view. */
2848 1e37a5c2 2019-05-12 jcs show_log_view(s->log_view);
2849 1e37a5c2 2019-05-12 jcs update_panels();
2850 1e37a5c2 2019-05-12 jcs doupdate();
2851 6e73b0d6 2019-02-22 stsp
2852 1e37a5c2 2019-05-12 jcs err = trigger_log_thread(1 /* load_all */,
2853 1e37a5c2 2019-05-12 jcs &ls->thread_args.commits_needed,
2854 1e37a5c2 2019-05-12 jcs &ls->thread_args.log_complete,
2855 1e37a5c2 2019-05-12 jcs &ls->thread_args.need_commits);
2856 fb872ab2 2019-02-21 stsp if (err)
2857 fb872ab2 2019-02-21 stsp break;
2858 1e37a5c2 2019-05-12 jcs }
2859 1e37a5c2 2019-05-12 jcs err = input_log_view(NULL, NULL, NULL, s->log_view,
2860 1e37a5c2 2019-05-12 jcs KEY_DOWN);
2861 1e37a5c2 2019-05-12 jcs if (err)
2862 1e37a5c2 2019-05-12 jcs break;
2863 15a087fe 2019-02-21 stsp
2864 1e37a5c2 2019-05-12 jcs entry = TAILQ_NEXT(ls->selected_entry, entry);
2865 1e37a5c2 2019-05-12 jcs if (entry == NULL)
2866 1e37a5c2 2019-05-12 jcs break;
2867 15a087fe 2019-02-21 stsp
2868 1e37a5c2 2019-05-12 jcs err = set_selected_commit(s, entry);
2869 1e37a5c2 2019-05-12 jcs if (err)
2870 1e37a5c2 2019-05-12 jcs break;
2871 15a087fe 2019-02-21 stsp
2872 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
2873 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
2874 1e37a5c2 2019-05-12 jcs
2875 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2876 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2877 1e37a5c2 2019-05-12 jcs break;
2878 1e37a5c2 2019-05-12 jcs default:
2879 1e37a5c2 2019-05-12 jcs break;
2880 26ed57b2 2018-05-19 stsp }
2881 e5a0f69f 2018-08-18 stsp
2882 bcbd79e2 2018-08-19 stsp return err;
2883 26ed57b2 2018-05-19 stsp }
2884 26ed57b2 2018-05-19 stsp
2885 4ed7e80c 2018-05-20 stsp static const struct got_error *
2886 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
2887 9f7d7167 2018-04-29 stsp {
2888 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
2889 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
2890 8b473291 2019-02-21 stsp struct got_reflist_head refs;
2891 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
2892 26ed57b2 2018-05-19 stsp char *repo_path = NULL;
2893 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
2894 26ed57b2 2018-05-19 stsp int ch;
2895 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
2896 70ac5f84 2019-03-28 stsp
2897 70ac5f84 2019-03-28 stsp SIMPLEQ_INIT(&refs);
2898 26ed57b2 2018-05-19 stsp
2899 26ed57b2 2018-05-19 stsp #ifndef PROFILE
2900 eb6600df 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
2901 eb6600df 2019-01-04 stsp NULL) == -1)
2902 26ed57b2 2018-05-19 stsp err(1, "pledge");
2903 26ed57b2 2018-05-19 stsp #endif
2904 26ed57b2 2018-05-19 stsp
2905 26ed57b2 2018-05-19 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2906 26ed57b2 2018-05-19 stsp switch (ch) {
2907 26ed57b2 2018-05-19 stsp default:
2908 17020d27 2019-03-07 stsp usage_diff();
2909 26ed57b2 2018-05-19 stsp /* NOTREACHED */
2910 26ed57b2 2018-05-19 stsp }
2911 26ed57b2 2018-05-19 stsp }
2912 26ed57b2 2018-05-19 stsp
2913 26ed57b2 2018-05-19 stsp argc -= optind;
2914 26ed57b2 2018-05-19 stsp argv += optind;
2915 26ed57b2 2018-05-19 stsp
2916 26ed57b2 2018-05-19 stsp if (argc == 0) {
2917 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
2918 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
2919 26ed57b2 2018-05-19 stsp repo_path = getcwd(NULL, 0);
2920 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
2921 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
2922 15a94983 2018-12-23 stsp id_str1 = argv[0];
2923 15a94983 2018-12-23 stsp id_str2 = argv[1];
2924 26ed57b2 2018-05-19 stsp } else if (argc == 3) {
2925 26ed57b2 2018-05-19 stsp repo_path = realpath(argv[0], NULL);
2926 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
2927 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
2928 15a94983 2018-12-23 stsp id_str1 = argv[1];
2929 15a94983 2018-12-23 stsp id_str2 = argv[2];
2930 26ed57b2 2018-05-19 stsp } else
2931 26ed57b2 2018-05-19 stsp usage_diff();
2932 a915003a 2019-02-05 stsp
2933 a915003a 2019-02-05 stsp init_curses();
2934 eb6600df 2019-01-04 stsp
2935 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2936 eb6600df 2019-01-04 stsp if (error)
2937 eb6600df 2019-01-04 stsp goto done;
2938 26ed57b2 2018-05-19 stsp
2939 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
2940 26ed57b2 2018-05-19 stsp if (error)
2941 26ed57b2 2018-05-19 stsp goto done;
2942 26ed57b2 2018-05-19 stsp
2943 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&id1, id_str1,
2944 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_ANY, repo);
2945 26ed57b2 2018-05-19 stsp if (error)
2946 26ed57b2 2018-05-19 stsp goto done;
2947 26ed57b2 2018-05-19 stsp
2948 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&id2, id_str2,
2949 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_ANY, repo);
2950 26ed57b2 2018-05-19 stsp if (error)
2951 26ed57b2 2018-05-19 stsp goto done;
2952 26ed57b2 2018-05-19 stsp
2953 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
2954 8b473291 2019-02-21 stsp if (error)
2955 8b473291 2019-02-21 stsp goto done;
2956 8b473291 2019-02-21 stsp
2957 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
2958 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
2959 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
2960 ea5e7bb5 2018-08-01 stsp goto done;
2961 ea5e7bb5 2018-08-01 stsp }
2962 8b473291 2019-02-21 stsp error = open_diff_view(view, id1, id2, NULL, &refs, repo);
2963 5dc9f4bc 2018-08-04 stsp if (error)
2964 5dc9f4bc 2018-08-04 stsp goto done;
2965 e5a0f69f 2018-08-18 stsp error = view_loop(view);
2966 26ed57b2 2018-05-19 stsp done:
2967 c02c541e 2019-03-29 stsp free(repo_path);
2968 921be706 2019-06-28 stsp if (repo)
2969 921be706 2019-06-28 stsp got_repo_close(repo);
2970 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
2971 26ed57b2 2018-05-19 stsp return error;
2972 9f7d7167 2018-04-29 stsp }
2973 9f7d7167 2018-04-29 stsp
2974 4ed7e80c 2018-05-20 stsp __dead static void
2975 9f7d7167 2018-04-29 stsp usage_blame(void)
2976 9f7d7167 2018-04-29 stsp {
2977 80ddbec8 2018-04-29 stsp endwin();
2978 69069811 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
2979 9f7d7167 2018-04-29 stsp getprogname());
2980 9f7d7167 2018-04-29 stsp exit(1);
2981 9f7d7167 2018-04-29 stsp }
2982 84451b3e 2018-07-10 stsp
2983 84451b3e 2018-07-10 stsp struct tog_blame_line {
2984 84451b3e 2018-07-10 stsp int annotated;
2985 84451b3e 2018-07-10 stsp struct got_object_id *id;
2986 84451b3e 2018-07-10 stsp };
2987 9f7d7167 2018-04-29 stsp
2988 4ed7e80c 2018-05-20 stsp static const struct got_error *
2989 f7d12f7e 2018-08-01 stsp draw_blame(struct tog_view *view, struct got_object_id *id, FILE *f,
2990 f7d12f7e 2018-08-01 stsp const char *path, struct tog_blame_line *lines, int nlines,
2991 f7d12f7e 2018-08-01 stsp int blame_complete, int selected_line, int *first_displayed_line,
2992 f7d12f7e 2018-08-01 stsp int *last_displayed_line, int *eof, int max_lines)
2993 84451b3e 2018-07-10 stsp {
2994 84451b3e 2018-07-10 stsp const struct got_error *err;
2995 84451b3e 2018-07-10 stsp int lineno = 0, nprinted = 0;
2996 84451b3e 2018-07-10 stsp char *line;
2997 84451b3e 2018-07-10 stsp size_t len;
2998 84451b3e 2018-07-10 stsp wchar_t *wline;
2999 27a741e5 2019-09-11 stsp int width;
3000 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
3001 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
3002 ab089a2a 2018-07-12 stsp char *id_str;
3003 ab089a2a 2018-07-12 stsp
3004 ab089a2a 2018-07-12 stsp err = got_object_id_str(&id_str, id);
3005 ab089a2a 2018-07-12 stsp if (err)
3006 ab089a2a 2018-07-12 stsp return err;
3007 84451b3e 2018-07-10 stsp
3008 84451b3e 2018-07-10 stsp rewind(f);
3009 f7d12f7e 2018-08-01 stsp werase(view->window);
3010 84451b3e 2018-07-10 stsp
3011 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
3012 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3013 ab089a2a 2018-07-12 stsp free(id_str);
3014 ab089a2a 2018-07-12 stsp return err;
3015 ab089a2a 2018-07-12 stsp }
3016 ab089a2a 2018-07-12 stsp
3017 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3018 ab089a2a 2018-07-12 stsp free(line);
3019 2550e4c3 2018-07-13 stsp line = NULL;
3020 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3021 a3404814 2018-09-02 stsp wstandout(view->window);
3022 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3023 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3024 a3404814 2018-09-02 stsp wstandend(view->window);
3025 2550e4c3 2018-07-13 stsp free(wline);
3026 2550e4c3 2018-07-13 stsp wline = NULL;
3027 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3028 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3029 ab089a2a 2018-07-12 stsp
3030 084063cd 2018-07-12 stsp if (asprintf(&line, "[%d/%d] %s%s",
3031 084063cd 2018-07-12 stsp *first_displayed_line - 1 + selected_line, nlines,
3032 512d0df1 2019-02-22 stsp blame_complete ? "" : "annotating... ", path) == -1) {
3033 ab089a2a 2018-07-12 stsp free(id_str);
3034 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3035 ab089a2a 2018-07-12 stsp }
3036 ab089a2a 2018-07-12 stsp free(id_str);
3037 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3038 3f60a8ef 2018-07-10 stsp free(line);
3039 2550e4c3 2018-07-13 stsp line = NULL;
3040 3f60a8ef 2018-07-10 stsp if (err)
3041 3f60a8ef 2018-07-10 stsp return err;
3042 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3043 2550e4c3 2018-07-13 stsp free(wline);
3044 2550e4c3 2018-07-13 stsp wline = NULL;
3045 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3046 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3047 3f60a8ef 2018-07-10 stsp
3048 84451b3e 2018-07-10 stsp *eof = 0;
3049 ab089a2a 2018-07-12 stsp while (nprinted < max_lines - 2) {
3050 84451b3e 2018-07-10 stsp line = parse_next_line(f, &len);
3051 84451b3e 2018-07-10 stsp if (line == NULL) {
3052 84451b3e 2018-07-10 stsp *eof = 1;
3053 84451b3e 2018-07-10 stsp break;
3054 84451b3e 2018-07-10 stsp }
3055 84451b3e 2018-07-10 stsp if (++lineno < *first_displayed_line) {
3056 84451b3e 2018-07-10 stsp free(line);
3057 84451b3e 2018-07-10 stsp continue;
3058 84451b3e 2018-07-10 stsp }
3059 84451b3e 2018-07-10 stsp
3060 27a741e5 2019-09-11 stsp if (view->ncols <= 9) {
3061 27a741e5 2019-09-11 stsp width = 9;
3062 27a741e5 2019-09-11 stsp wline = wcsdup(L"");
3063 27a741e5 2019-09-11 stsp if (wline == NULL)
3064 27a741e5 2019-09-11 stsp err = got_error_from_errno("wcsdup");
3065 27a741e5 2019-09-11 stsp } else {
3066 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line,
3067 27a741e5 2019-09-11 stsp view->ncols - 9, 9);
3068 27a741e5 2019-09-11 stsp width += 9;
3069 27a741e5 2019-09-11 stsp }
3070 84451b3e 2018-07-10 stsp if (err) {
3071 84451b3e 2018-07-10 stsp free(line);
3072 84451b3e 2018-07-10 stsp return err;
3073 84451b3e 2018-07-10 stsp }
3074 84451b3e 2018-07-10 stsp
3075 0cf4efb1 2018-09-29 stsp if (view->focussed && nprinted == selected_line - 1)
3076 f7d12f7e 2018-08-01 stsp wstandout(view->window);
3077 b700b5d6 2018-07-10 stsp
3078 8d0fe45a 2019-08-12 stsp if (nlines > 0) {
3079 8d0fe45a 2019-08-12 stsp blame_line = &lines[lineno - 1];
3080 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
3081 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
3082 27a741e5 2019-09-11 stsp !(view->focussed &&
3083 27a741e5 2019-09-11 stsp nprinted == selected_line - 1)) {
3084 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
3085 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
3086 8d0fe45a 2019-08-12 stsp char *id_str;
3087 8d0fe45a 2019-08-12 stsp err = got_object_id_str(&id_str, blame_line->id);
3088 8d0fe45a 2019-08-12 stsp if (err) {
3089 8d0fe45a 2019-08-12 stsp free(line);
3090 8d0fe45a 2019-08-12 stsp free(wline);
3091 8d0fe45a 2019-08-12 stsp return err;
3092 8d0fe45a 2019-08-12 stsp }
3093 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
3094 8d0fe45a 2019-08-12 stsp free(id_str);
3095 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
3096 8d0fe45a 2019-08-12 stsp } else {
3097 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
3098 8d0fe45a 2019-08-12 stsp prev_id = NULL;
3099 84451b3e 2018-07-10 stsp }
3100 ee41ec32 2018-07-10 stsp } else {
3101 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
3102 ee41ec32 2018-07-10 stsp prev_id = NULL;
3103 ee41ec32 2018-07-10 stsp }
3104 84451b3e 2018-07-10 stsp
3105 0cf4efb1 2018-09-29 stsp if (view->focussed && nprinted == selected_line - 1)
3106 f7d12f7e 2018-08-01 stsp wstandend(view->window);
3107 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
3108 27a741e5 2019-09-11 stsp
3109 27a741e5 2019-09-11 stsp waddwstr(view->window, wline);
3110 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
3111 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
3112 84451b3e 2018-07-10 stsp if (++nprinted == 1)
3113 84451b3e 2018-07-10 stsp *first_displayed_line = lineno;
3114 84451b3e 2018-07-10 stsp free(line);
3115 2550e4c3 2018-07-13 stsp free(wline);
3116 2550e4c3 2018-07-13 stsp wline = NULL;
3117 84451b3e 2018-07-10 stsp }
3118 84451b3e 2018-07-10 stsp *last_displayed_line = lineno;
3119 84451b3e 2018-07-10 stsp
3120 1a57306a 2018-09-02 stsp view_vborder(view);
3121 84451b3e 2018-07-10 stsp
3122 84451b3e 2018-07-10 stsp return NULL;
3123 84451b3e 2018-07-10 stsp }
3124 84451b3e 2018-07-10 stsp
3125 84451b3e 2018-07-10 stsp static const struct got_error *
3126 84451b3e 2018-07-10 stsp blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
3127 84451b3e 2018-07-10 stsp {
3128 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
3129 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
3130 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
3131 1a76625f 2018-10-22 stsp int errcode;
3132 84451b3e 2018-07-10 stsp
3133 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
3134 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
3135 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
3136 84451b3e 2018-07-10 stsp
3137 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3138 1a76625f 2018-10-22 stsp if (errcode)
3139 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
3140 84451b3e 2018-07-10 stsp
3141 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
3142 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
3143 d68a0a7d 2018-07-10 stsp goto done;
3144 d68a0a7d 2018-07-10 stsp }
3145 d68a0a7d 2018-07-10 stsp
3146 d68a0a7d 2018-07-10 stsp if (lineno == -1)
3147 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
3148 d68a0a7d 2018-07-10 stsp
3149 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
3150 d68a0a7d 2018-07-10 stsp if (line->annotated)
3151 d68a0a7d 2018-07-10 stsp goto done;
3152 d68a0a7d 2018-07-10 stsp
3153 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
3154 84451b3e 2018-07-10 stsp if (line->id == NULL) {
3155 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3156 84451b3e 2018-07-10 stsp goto done;
3157 84451b3e 2018-07-10 stsp }
3158 84451b3e 2018-07-10 stsp line->annotated = 1;
3159 84451b3e 2018-07-10 stsp done:
3160 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3161 1a76625f 2018-10-22 stsp if (errcode)
3162 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3163 84451b3e 2018-07-10 stsp return err;
3164 84451b3e 2018-07-10 stsp }
3165 84451b3e 2018-07-10 stsp
3166 84451b3e 2018-07-10 stsp static void *
3167 84451b3e 2018-07-10 stsp blame_thread(void *arg)
3168 84451b3e 2018-07-10 stsp {
3169 18430de3 2018-07-10 stsp const struct got_error *err;
3170 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
3171 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
3172 1a76625f 2018-10-22 stsp int errcode;
3173 18430de3 2018-07-10 stsp
3174 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
3175 fc06ba56 2019-08-22 stsp blame_cb, ta->cb_args, ta->cancel_cb, ta->cancel_arg);
3176 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
3177 fc06ba56 2019-08-22 stsp err = NULL;
3178 18430de3 2018-07-10 stsp
3179 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3180 1a76625f 2018-10-22 stsp if (errcode)
3181 2af4a041 2019-05-11 jcs return (void *)got_error_set_errno(errcode,
3182 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3183 18430de3 2018-07-10 stsp
3184 c9beca56 2018-07-22 stsp got_repo_close(ta->repo);
3185 c9beca56 2018-07-22 stsp ta->repo = NULL;
3186 c9beca56 2018-07-22 stsp *ta->complete = 1;
3187 18430de3 2018-07-10 stsp
3188 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3189 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
3190 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3191 18430de3 2018-07-10 stsp
3192 18430de3 2018-07-10 stsp return (void *)err;
3193 84451b3e 2018-07-10 stsp }
3194 84451b3e 2018-07-10 stsp
3195 245d91c1 2018-07-12 stsp static struct got_object_id *
3196 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
3197 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
3198 245d91c1 2018-07-12 stsp {
3199 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
3200 8d0fe45a 2019-08-12 stsp
3201 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
3202 8d0fe45a 2019-08-12 stsp return NULL;
3203 b880a918 2018-07-10 stsp
3204 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
3205 245d91c1 2018-07-12 stsp if (!line->annotated)
3206 245d91c1 2018-07-12 stsp return NULL;
3207 245d91c1 2018-07-12 stsp
3208 245d91c1 2018-07-12 stsp return line->id;
3209 b880a918 2018-07-10 stsp }
3210 245d91c1 2018-07-12 stsp
3211 b880a918 2018-07-10 stsp static const struct got_error *
3212 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
3213 a70480e0 2018-06-23 stsp {
3214 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
3215 245d91c1 2018-07-12 stsp int i;
3216 245d91c1 2018-07-12 stsp
3217 245d91c1 2018-07-12 stsp if (blame->thread) {
3218 1a76625f 2018-10-22 stsp int errcode;
3219 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3220 1a76625f 2018-10-22 stsp if (errcode)
3221 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3222 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
3223 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
3224 1a76625f 2018-10-22 stsp if (errcode)
3225 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
3226 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3227 1a76625f 2018-10-22 stsp if (errcode)
3228 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3229 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3230 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
3231 245d91c1 2018-07-12 stsp err = NULL;
3232 245d91c1 2018-07-12 stsp blame->thread = NULL;
3233 245d91c1 2018-07-12 stsp }
3234 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
3235 245d91c1 2018-07-12 stsp got_repo_close(blame->thread_args.repo);
3236 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
3237 245d91c1 2018-07-12 stsp }
3238 245d91c1 2018-07-12 stsp if (blame->f) {
3239 fb43ecf1 2019-02-11 stsp if (fclose(blame->f) != 0 && err == NULL)
3240 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
3241 245d91c1 2018-07-12 stsp blame->f = NULL;
3242 245d91c1 2018-07-12 stsp }
3243 57670559 2018-12-23 stsp if (blame->lines) {
3244 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
3245 57670559 2018-12-23 stsp free(blame->lines[i].id);
3246 57670559 2018-12-23 stsp free(blame->lines);
3247 57670559 2018-12-23 stsp blame->lines = NULL;
3248 57670559 2018-12-23 stsp }
3249 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
3250 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
3251 245d91c1 2018-07-12 stsp
3252 245d91c1 2018-07-12 stsp return err;
3253 245d91c1 2018-07-12 stsp }
3254 245d91c1 2018-07-12 stsp
3255 245d91c1 2018-07-12 stsp static const struct got_error *
3256 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
3257 fc06ba56 2019-08-22 stsp {
3258 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
3259 fc06ba56 2019-08-22 stsp int *done = arg;
3260 fc06ba56 2019-08-22 stsp int errcode;
3261 fc06ba56 2019-08-22 stsp
3262 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3263 fc06ba56 2019-08-22 stsp if (errcode)
3264 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
3265 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
3266 fc06ba56 2019-08-22 stsp
3267 fc06ba56 2019-08-22 stsp if (*done)
3268 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
3269 fc06ba56 2019-08-22 stsp
3270 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3271 fc06ba56 2019-08-22 stsp if (errcode)
3272 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
3273 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
3274 fc06ba56 2019-08-22 stsp
3275 fc06ba56 2019-08-22 stsp return err;
3276 fc06ba56 2019-08-22 stsp }
3277 fc06ba56 2019-08-22 stsp
3278 fc06ba56 2019-08-22 stsp static const struct got_error *
3279 1a76625f 2018-10-22 stsp run_blame(struct tog_blame *blame, struct tog_view *view, int *blame_complete,
3280 1a76625f 2018-10-22 stsp int *first_displayed_line, int *last_displayed_line, int *selected_line,
3281 1a76625f 2018-10-22 stsp int *done, int *eof, const char *path, struct got_object_id *commit_id,
3282 245d91c1 2018-07-12 stsp struct got_repository *repo)
3283 245d91c1 2018-07-12 stsp {
3284 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
3285 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
3286 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
3287 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
3288 15a94983 2018-12-23 stsp int obj_type;
3289 a70480e0 2018-06-23 stsp
3290 27d434c2 2018-09-15 stsp err = got_object_id_by_path(&obj_id, repo, commit_id, path);
3291 27d434c2 2018-09-15 stsp if (err)
3292 15a94983 2018-12-23 stsp return err;
3293 15a94983 2018-12-23 stsp if (obj_id == NULL)
3294 15a94983 2018-12-23 stsp return got_error(GOT_ERR_NO_OBJ);
3295 27d434c2 2018-09-15 stsp
3296 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, repo, obj_id);
3297 84451b3e 2018-07-10 stsp if (err)
3298 84451b3e 2018-07-10 stsp goto done;
3299 27d434c2 2018-09-15 stsp
3300 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
3301 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
3302 84451b3e 2018-07-10 stsp goto done;
3303 84451b3e 2018-07-10 stsp }
3304 a70480e0 2018-06-23 stsp
3305 15a94983 2018-12-23 stsp err = got_object_open_as_blob(&blob, repo, obj_id, 8192);
3306 a70480e0 2018-06-23 stsp if (err)
3307 a70480e0 2018-06-23 stsp goto done;
3308 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
3309 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
3310 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
3311 84451b3e 2018-07-10 stsp goto done;
3312 84451b3e 2018-07-10 stsp }
3313 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
3314 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
3315 b02560ec 2019-08-19 stsp if (err || blame->nlines == 0)
3316 84451b3e 2018-07-10 stsp goto done;
3317 b02560ec 2019-08-19 stsp
3318 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
3319 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
3320 b02560ec 2019-08-19 stsp blame->nlines--;
3321 a70480e0 2018-06-23 stsp
3322 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
3323 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
3324 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
3325 84451b3e 2018-07-10 stsp goto done;
3326 84451b3e 2018-07-10 stsp }
3327 a70480e0 2018-06-23 stsp
3328 c9956ddf 2019-09-08 stsp err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL);
3329 bd24772e 2018-07-11 stsp if (err)
3330 bd24772e 2018-07-11 stsp goto done;
3331 bd24772e 2018-07-11 stsp
3332 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
3333 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
3334 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
3335 245d91c1 2018-07-12 stsp blame->cb_args.commit_id = got_object_id_dup(commit_id);
3336 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
3337 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3338 245d91c1 2018-07-12 stsp goto done;
3339 245d91c1 2018-07-12 stsp }
3340 245d91c1 2018-07-12 stsp blame->cb_args.quit = done;
3341 245d91c1 2018-07-12 stsp
3342 245d91c1 2018-07-12 stsp blame->thread_args.path = path;
3343 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
3344 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
3345 245d91c1 2018-07-12 stsp blame->thread_args.complete = blame_complete;
3346 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
3347 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_arg = done;
3348 245d91c1 2018-07-12 stsp *blame_complete = 0;
3349 245d91c1 2018-07-12 stsp
3350 245d91c1 2018-07-12 stsp done:
3351 245d91c1 2018-07-12 stsp if (blob)
3352 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
3353 27d434c2 2018-09-15 stsp free(obj_id);
3354 245d91c1 2018-07-12 stsp if (err)
3355 245d91c1 2018-07-12 stsp stop_blame(blame);
3356 245d91c1 2018-07-12 stsp return err;
3357 245d91c1 2018-07-12 stsp }
3358 245d91c1 2018-07-12 stsp
3359 245d91c1 2018-07-12 stsp static const struct got_error *
3360 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
3361 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
3362 8b473291 2019-02-21 stsp struct got_repository *repo)
3363 245d91c1 2018-07-12 stsp {
3364 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
3365 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
3366 dbc6a6b6 2018-07-12 stsp
3367 fb2756b9 2018-08-04 stsp SIMPLEQ_INIT(&s->blamed_commits);
3368 245d91c1 2018-07-12 stsp
3369 c4843652 2019-08-12 stsp s->path = strdup(path);
3370 c4843652 2019-08-12 stsp if (s->path == NULL)
3371 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
3372 c4843652 2019-08-12 stsp
3373 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
3374 c4843652 2019-08-12 stsp if (err) {
3375 c4843652 2019-08-12 stsp free(s->path);
3376 7cbe629d 2018-08-04 stsp return err;
3377 c4843652 2019-08-12 stsp }
3378 245d91c1 2018-07-12 stsp
3379 fb2756b9 2018-08-04 stsp SIMPLEQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
3380 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
3381 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
3382 fb2756b9 2018-08-04 stsp s->selected_line = 1;
3383 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
3384 fb2756b9 2018-08-04 stsp s->repo = repo;
3385 8b473291 2019-02-21 stsp s->refs = refs;
3386 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
3387 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
3388 7cbe629d 2018-08-04 stsp
3389 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
3390 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
3391 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
3392 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
3393 6c4c42e0 2019-06-24 stsp view->search_next = search_next_blame_view;
3394 e5a0f69f 2018-08-18 stsp
3395 1a76625f 2018-10-22 stsp return run_blame(&s->blame, view, &s->blame_complete,
3396 e5a0f69f 2018-08-18 stsp &s->first_displayed_line, &s->last_displayed_line,
3397 e5a0f69f 2018-08-18 stsp &s->selected_line, &s->done, &s->eof, s->path,
3398 e5a0f69f 2018-08-18 stsp s->blamed_commit->id, s->repo);
3399 7cbe629d 2018-08-04 stsp }
3400 7cbe629d 2018-08-04 stsp
3401 e5a0f69f 2018-08-18 stsp static const struct got_error *
3402 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
3403 7cbe629d 2018-08-04 stsp {
3404 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3405 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
3406 7cbe629d 2018-08-04 stsp
3407 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
3408 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
3409 e5a0f69f 2018-08-18 stsp
3410 fb2756b9 2018-08-04 stsp while (!SIMPLEQ_EMPTY(&s->blamed_commits)) {
3411 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
3412 fb2756b9 2018-08-04 stsp blamed_commit = SIMPLEQ_FIRST(&s->blamed_commits);
3413 fb2756b9 2018-08-04 stsp SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
3414 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
3415 7cbe629d 2018-08-04 stsp }
3416 e5a0f69f 2018-08-18 stsp
3417 e5a0f69f 2018-08-18 stsp free(s->path);
3418 e5a0f69f 2018-08-18 stsp
3419 e5a0f69f 2018-08-18 stsp return err;
3420 7cbe629d 2018-08-04 stsp }
3421 7cbe629d 2018-08-04 stsp
3422 7cbe629d 2018-08-04 stsp static const struct got_error *
3423 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
3424 6c4c42e0 2019-06-24 stsp {
3425 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
3426 6c4c42e0 2019-06-24 stsp
3427 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
3428 6c4c42e0 2019-06-24 stsp return NULL;
3429 6c4c42e0 2019-06-24 stsp }
3430 6c4c42e0 2019-06-24 stsp
3431 6c4c42e0 2019-06-24 stsp static int
3432 6c4c42e0 2019-06-24 stsp match_line(const char *line, regex_t *regex)
3433 6c4c42e0 2019-06-24 stsp {
3434 6c4c42e0 2019-06-24 stsp regmatch_t regmatch;
3435 6c4c42e0 2019-06-24 stsp
3436 6c4c42e0 2019-06-24 stsp return regexec(regex, line, 1, &regmatch, 0) == 0;
3437 6c4c42e0 2019-06-24 stsp }
3438 6c4c42e0 2019-06-24 stsp
3439 6c4c42e0 2019-06-24 stsp
3440 6c4c42e0 2019-06-24 stsp static const struct got_error *
3441 6c4c42e0 2019-06-24 stsp search_next_blame_view(struct tog_view *view)
3442 6c4c42e0 2019-06-24 stsp {
3443 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
3444 6c4c42e0 2019-06-24 stsp int lineno;
3445 6c4c42e0 2019-06-24 stsp
3446 6c4c42e0 2019-06-24 stsp if (!view->searching) {
3447 6c4c42e0 2019-06-24 stsp view->search_next_done = 1;
3448 6c4c42e0 2019-06-24 stsp return NULL;
3449 6c4c42e0 2019-06-24 stsp }
3450 6c4c42e0 2019-06-24 stsp
3451 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
3452 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3453 2246482e 2019-06-25 stsp lineno = s->matched_line + 1;
3454 6c4c42e0 2019-06-24 stsp else
3455 2246482e 2019-06-25 stsp lineno = s->matched_line - 1;
3456 6c4c42e0 2019-06-24 stsp } else {
3457 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3458 6c4c42e0 2019-06-24 stsp lineno = 1;
3459 6c4c42e0 2019-06-24 stsp else
3460 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
3461 6c4c42e0 2019-06-24 stsp }
3462 6c4c42e0 2019-06-24 stsp
3463 6c4c42e0 2019-06-24 stsp while (1) {
3464 6c4c42e0 2019-06-24 stsp char *line = NULL;
3465 6c4c42e0 2019-06-24 stsp off_t offset;
3466 6c4c42e0 2019-06-24 stsp size_t len;
3467 6c4c42e0 2019-06-24 stsp
3468 6c4c42e0 2019-06-24 stsp if (lineno <= 0 || lineno > s->blame.nlines) {
3469 6c4c42e0 2019-06-24 stsp if (s->matched_line == 0) {
3470 6c4c42e0 2019-06-24 stsp view->search_next_done = 1;
3471 6c4c42e0 2019-06-24 stsp free(line);
3472 6c4c42e0 2019-06-24 stsp break;
3473 6c4c42e0 2019-06-24 stsp }
3474 2246482e 2019-06-25 stsp
3475 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3476 6c4c42e0 2019-06-24 stsp lineno = 1;
3477 6c4c42e0 2019-06-24 stsp else
3478 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
3479 6c4c42e0 2019-06-24 stsp }
3480 6c4c42e0 2019-06-24 stsp
3481 6c4c42e0 2019-06-24 stsp offset = s->blame.line_offsets[lineno - 1];
3482 6c4c42e0 2019-06-24 stsp if (fseeko(s->blame.f, offset, SEEK_SET) != 0) {
3483 6c4c42e0 2019-06-24 stsp free(line);
3484 6c4c42e0 2019-06-24 stsp return got_error_from_errno("fseeko");
3485 6c4c42e0 2019-06-24 stsp }
3486 6c4c42e0 2019-06-24 stsp free(line);
3487 6c4c42e0 2019-06-24 stsp line = parse_next_line(s->blame.f, &len);
3488 2246482e 2019-06-25 stsp if (line && match_line(line, &view->regex)) {
3489 6c4c42e0 2019-06-24 stsp view->search_next_done = 1;
3490 6c4c42e0 2019-06-24 stsp s->matched_line = lineno;
3491 6c4c42e0 2019-06-24 stsp free(line);
3492 6c4c42e0 2019-06-24 stsp break;
3493 6c4c42e0 2019-06-24 stsp }
3494 6c4c42e0 2019-06-24 stsp free(line);
3495 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3496 6c4c42e0 2019-06-24 stsp lineno++;
3497 6c4c42e0 2019-06-24 stsp else
3498 6c4c42e0 2019-06-24 stsp lineno--;
3499 6c4c42e0 2019-06-24 stsp }
3500 6c4c42e0 2019-06-24 stsp
3501 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
3502 6c4c42e0 2019-06-24 stsp s->first_displayed_line = s->matched_line;
3503 6c4c42e0 2019-06-24 stsp s->selected_line = 1;
3504 6c4c42e0 2019-06-24 stsp }
3505 6c4c42e0 2019-06-24 stsp
3506 6c4c42e0 2019-06-24 stsp return NULL;
3507 6c4c42e0 2019-06-24 stsp }
3508 6c4c42e0 2019-06-24 stsp
3509 6c4c42e0 2019-06-24 stsp static const struct got_error *
3510 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
3511 7cbe629d 2018-08-04 stsp {
3512 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3513 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
3514 2b380cc8 2018-10-24 stsp int errcode;
3515 2b380cc8 2018-10-24 stsp
3516 2b380cc8 2018-10-24 stsp if (s->blame.thread == NULL) {
3517 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
3518 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
3519 2b380cc8 2018-10-24 stsp if (errcode)
3520 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3521 51fe7530 2019-08-19 stsp
3522 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
3523 2b380cc8 2018-10-24 stsp }
3524 e5a0f69f 2018-08-18 stsp
3525 51fe7530 2019-08-19 stsp if (s->blame_complete)
3526 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
3527 51fe7530 2019-08-19 stsp
3528 e5a0f69f 2018-08-18 stsp err = draw_blame(view, s->blamed_commit->id, s->blame.f,
3529 e5a0f69f 2018-08-18 stsp s->path, s->blame.lines, s->blame.nlines, s->blame_complete,
3530 e5a0f69f 2018-08-18 stsp s->selected_line, &s->first_displayed_line,
3531 e5a0f69f 2018-08-18 stsp &s->last_displayed_line, &s->eof, view->nlines);
3532 e5a0f69f 2018-08-18 stsp
3533 669b5ffa 2018-10-07 stsp view_vborder(view);
3534 e5a0f69f 2018-08-18 stsp return err;
3535 e5a0f69f 2018-08-18 stsp }
3536 e5a0f69f 2018-08-18 stsp
3537 e5a0f69f 2018-08-18 stsp static const struct got_error *
3538 878940b7 2018-09-29 stsp input_blame_view(struct tog_view **new_view, struct tog_view **dead_view,
3539 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
3540 e5a0f69f 2018-08-18 stsp {
3541 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
3542 7cbe629d 2018-08-04 stsp struct tog_view *diff_view;
3543 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
3544 669b5ffa 2018-10-07 stsp int begin_x = 0;
3545 7cbe629d 2018-08-04 stsp
3546 e5a0f69f 2018-08-18 stsp switch (ch) {
3547 1e37a5c2 2019-05-12 jcs case 'q':
3548 1e37a5c2 2019-05-12 jcs s->done = 1;
3549 1e37a5c2 2019-05-12 jcs break;
3550 1e37a5c2 2019-05-12 jcs case 'k':
3551 1e37a5c2 2019-05-12 jcs case KEY_UP:
3552 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
3553 1e37a5c2 2019-05-12 jcs s->selected_line--;
3554 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
3555 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
3556 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
3557 1e37a5c2 2019-05-12 jcs break;
3558 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3559 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
3560 1e37a5c2 2019-05-12 jcs s->selected_line = 1;
3561 e5a0f69f 2018-08-18 stsp break;
3562 1e37a5c2 2019-05-12 jcs }
3563 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > view->nlines - 2)
3564 1e37a5c2 2019-05-12 jcs s->first_displayed_line -=
3565 1e37a5c2 2019-05-12 jcs (view->nlines - 2);
3566 1e37a5c2 2019-05-12 jcs else
3567 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
3568 1e37a5c2 2019-05-12 jcs break;
3569 1e37a5c2 2019-05-12 jcs case 'j':
3570 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3571 1e37a5c2 2019-05-12 jcs if (s->selected_line < view->nlines - 2 &&
3572 1e37a5c2 2019-05-12 jcs s->first_displayed_line +
3573 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
3574 1e37a5c2 2019-05-12 jcs s->selected_line++;
3575 1e37a5c2 2019-05-12 jcs else if (s->last_displayed_line <
3576 1e37a5c2 2019-05-12 jcs s->blame.nlines)
3577 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
3578 1e37a5c2 2019-05-12 jcs break;
3579 1e37a5c2 2019-05-12 jcs case 'b':
3580 1e37a5c2 2019-05-12 jcs case 'p': {
3581 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
3582 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
3583 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
3584 1e37a5c2 2019-05-12 jcs if (id == NULL)
3585 e5a0f69f 2018-08-18 stsp break;
3586 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
3587 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit;
3588 15a94983 2018-12-23 stsp struct got_object_qid *pid;
3589 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
3590 1e37a5c2 2019-05-12 jcs int obj_type;
3591 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
3592 1e37a5c2 2019-05-12 jcs s->repo, id);
3593 e5a0f69f 2018-08-18 stsp if (err)
3594 e5a0f69f 2018-08-18 stsp break;
3595 15a94983 2018-12-23 stsp pid = SIMPLEQ_FIRST(
3596 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
3597 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
3598 15a94983 2018-12-23 stsp got_object_commit_close(commit);
3599 e5a0f69f 2018-08-18 stsp break;
3600 e5a0f69f 2018-08-18 stsp }
3601 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
3602 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
3603 1e37a5c2 2019-05-12 jcs pid->id, s->path);
3604 e5a0f69f 2018-08-18 stsp if (err) {
3605 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
3606 1e37a5c2 2019-05-12 jcs err = NULL;
3607 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3608 e5a0f69f 2018-08-18 stsp break;
3609 e5a0f69f 2018-08-18 stsp }
3610 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
3611 1e37a5c2 2019-05-12 jcs blob_id);
3612 1e37a5c2 2019-05-12 jcs free(blob_id);
3613 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
3614 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
3615 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3616 e5a0f69f 2018-08-18 stsp break;
3617 1e37a5c2 2019-05-12 jcs }
3618 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
3619 1e37a5c2 2019-05-12 jcs pid->id);
3620 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3621 1e37a5c2 2019-05-12 jcs } else {
3622 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
3623 1e37a5c2 2019-05-12 jcs s->blamed_commit->id) == 0)
3624 1e37a5c2 2019-05-12 jcs break;
3625 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
3626 1e37a5c2 2019-05-12 jcs id);
3627 1e37a5c2 2019-05-12 jcs }
3628 1e37a5c2 2019-05-12 jcs if (err)
3629 e5a0f69f 2018-08-18 stsp break;
3630 1e37a5c2 2019-05-12 jcs s->done = 1;
3631 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
3632 1e37a5c2 2019-05-12 jcs s->done = 0;
3633 1e37a5c2 2019-05-12 jcs if (thread_err)
3634 1e37a5c2 2019-05-12 jcs break;
3635 1e37a5c2 2019-05-12 jcs SIMPLEQ_INSERT_HEAD(&s->blamed_commits,
3636 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
3637 1e37a5c2 2019-05-12 jcs err = run_blame(&s->blame, view, &s->blame_complete,
3638 1e37a5c2 2019-05-12 jcs &s->first_displayed_line, &s->last_displayed_line,
3639 1e37a5c2 2019-05-12 jcs &s->selected_line, &s->done, &s->eof,
3640 1e37a5c2 2019-05-12 jcs s->path, s->blamed_commit->id, s->repo);
3641 1e37a5c2 2019-05-12 jcs if (err)
3642 1e37a5c2 2019-05-12 jcs break;
3643 1e37a5c2 2019-05-12 jcs break;
3644 1e37a5c2 2019-05-12 jcs }
3645 1e37a5c2 2019-05-12 jcs case 'B': {
3646 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
3647 1e37a5c2 2019-05-12 jcs first = SIMPLEQ_FIRST(&s->blamed_commits);
3648 1e37a5c2 2019-05-12 jcs if (!got_object_id_cmp(first->id, s->commit_id))
3649 1e37a5c2 2019-05-12 jcs break;
3650 1e37a5c2 2019-05-12 jcs s->done = 1;
3651 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
3652 1e37a5c2 2019-05-12 jcs s->done = 0;
3653 1e37a5c2 2019-05-12 jcs if (thread_err)
3654 1e37a5c2 2019-05-12 jcs break;
3655 1e37a5c2 2019-05-12 jcs SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
3656 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
3657 1e37a5c2 2019-05-12 jcs s->blamed_commit =
3658 1e37a5c2 2019-05-12 jcs SIMPLEQ_FIRST(&s->blamed_commits);
3659 1e37a5c2 2019-05-12 jcs err = run_blame(&s->blame, view, &s->blame_complete,
3660 1e37a5c2 2019-05-12 jcs &s->first_displayed_line, &s->last_displayed_line,
3661 1e37a5c2 2019-05-12 jcs &s->selected_line, &s->done, &s->eof, s->path,
3662 1e37a5c2 2019-05-12 jcs s->blamed_commit->id, s->repo);
3663 1e37a5c2 2019-05-12 jcs if (err)
3664 1e37a5c2 2019-05-12 jcs break;
3665 1e37a5c2 2019-05-12 jcs break;
3666 1e37a5c2 2019-05-12 jcs }
3667 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3668 1e37a5c2 2019-05-12 jcs case '\r': {
3669 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
3670 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
3671 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
3672 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
3673 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
3674 1e37a5c2 2019-05-12 jcs if (id == NULL)
3675 1e37a5c2 2019-05-12 jcs break;
3676 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
3677 1e37a5c2 2019-05-12 jcs if (err)
3678 1e37a5c2 2019-05-12 jcs break;
3679 1e37a5c2 2019-05-12 jcs pid = SIMPLEQ_FIRST(
3680 1e37a5c2 2019-05-12 jcs got_object_commit_get_parent_ids(commit));
3681 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
3682 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
3683 1e37a5c2 2019-05-12 jcs diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
3684 1e37a5c2 2019-05-12 jcs if (diff_view == NULL) {
3685 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3686 638f9024 2019-05-13 stsp err = got_error_from_errno("view_open");
3687 1e37a5c2 2019-05-12 jcs break;
3688 15a94983 2018-12-23 stsp }
3689 1e37a5c2 2019-05-12 jcs err = open_diff_view(diff_view, pid ? pid->id : NULL,
3690 1e37a5c2 2019-05-12 jcs id, NULL, s->refs, s->repo);
3691 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3692 1e37a5c2 2019-05-12 jcs if (err) {
3693 1e37a5c2 2019-05-12 jcs view_close(diff_view);
3694 1e37a5c2 2019-05-12 jcs break;
3695 1e37a5c2 2019-05-12 jcs }
3696 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
3697 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
3698 1e37a5c2 2019-05-12 jcs if (err)
3699 34bc9ec9 2019-02-22 stsp break;
3700 1e37a5c2 2019-05-12 jcs err = view_set_child(view, diff_view);
3701 1e37a5c2 2019-05-12 jcs if (err) {
3702 1e37a5c2 2019-05-12 jcs view_close(diff_view);
3703 e5a0f69f 2018-08-18 stsp break;
3704 e5a0f69f 2018-08-18 stsp }
3705 1e37a5c2 2019-05-12 jcs *focus_view = diff_view;
3706 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
3707 1e37a5c2 2019-05-12 jcs } else
3708 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
3709 1e37a5c2 2019-05-12 jcs if (err)
3710 e5a0f69f 2018-08-18 stsp break;
3711 1e37a5c2 2019-05-12 jcs break;
3712 1e37a5c2 2019-05-12 jcs }
3713 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
3714 1e37a5c2 2019-05-12 jcs case ' ':
3715 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
3716 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
3717 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
3718 e5a0f69f 2018-08-18 stsp break;
3719 1e37a5c2 2019-05-12 jcs }
3720 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
3721 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
3722 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
3723 1e37a5c2 2019-05-12 jcs view->nlines - 2);
3724 e5a0f69f 2018-08-18 stsp break;
3725 1e37a5c2 2019-05-12 jcs }
3726 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line + view->nlines - 2
3727 1e37a5c2 2019-05-12 jcs <= s->blame.nlines)
3728 1e37a5c2 2019-05-12 jcs s->first_displayed_line +=
3729 1e37a5c2 2019-05-12 jcs view->nlines - 2;
3730 1e37a5c2 2019-05-12 jcs else
3731 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
3732 1e37a5c2 2019-05-12 jcs s->blame.nlines -
3733 1e37a5c2 2019-05-12 jcs (view->nlines - 3);
3734 1e37a5c2 2019-05-12 jcs break;
3735 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3736 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
3737 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
3738 1e37a5c2 2019-05-12 jcs view->nlines - 2);
3739 1e37a5c2 2019-05-12 jcs }
3740 1e37a5c2 2019-05-12 jcs break;
3741 1e37a5c2 2019-05-12 jcs default:
3742 1e37a5c2 2019-05-12 jcs break;
3743 a70480e0 2018-06-23 stsp }
3744 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
3745 a70480e0 2018-06-23 stsp }
3746 a70480e0 2018-06-23 stsp
3747 a70480e0 2018-06-23 stsp static const struct got_error *
3748 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
3749 9f7d7167 2018-04-29 stsp {
3750 a70480e0 2018-06-23 stsp const struct got_error *error;
3751 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
3752 8b473291 2019-02-21 stsp struct got_reflist_head refs;
3753 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
3754 69069811 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
3755 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
3756 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
3757 a70480e0 2018-06-23 stsp int ch;
3758 e1cd8fed 2018-08-01 stsp struct tog_view *view;
3759 a70480e0 2018-06-23 stsp
3760 70ac5f84 2019-03-28 stsp SIMPLEQ_INIT(&refs);
3761 70ac5f84 2019-03-28 stsp
3762 a70480e0 2018-06-23 stsp #ifndef PROFILE
3763 8e94dd5b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
3764 8e94dd5b 2019-01-04 stsp NULL) == -1)
3765 a70480e0 2018-06-23 stsp err(1, "pledge");
3766 a70480e0 2018-06-23 stsp #endif
3767 a70480e0 2018-06-23 stsp
3768 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
3769 a70480e0 2018-06-23 stsp switch (ch) {
3770 a70480e0 2018-06-23 stsp case 'c':
3771 a70480e0 2018-06-23 stsp commit_id_str = optarg;
3772 a70480e0 2018-06-23 stsp break;
3773 69069811 2018-08-02 stsp case 'r':
3774 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
3775 69069811 2018-08-02 stsp if (repo_path == NULL)
3776 69069811 2018-08-02 stsp err(1, "-r option");
3777 69069811 2018-08-02 stsp break;
3778 a70480e0 2018-06-23 stsp default:
3779 17020d27 2019-03-07 stsp usage_blame();
3780 a70480e0 2018-06-23 stsp /* NOTREACHED */
3781 a70480e0 2018-06-23 stsp }
3782 a70480e0 2018-06-23 stsp }
3783 a70480e0 2018-06-23 stsp
3784 a70480e0 2018-06-23 stsp argc -= optind;
3785 a70480e0 2018-06-23 stsp argv += optind;
3786 a70480e0 2018-06-23 stsp
3787 69069811 2018-08-02 stsp if (argc == 1)
3788 69069811 2018-08-02 stsp path = argv[0];
3789 69069811 2018-08-02 stsp else
3790 a70480e0 2018-06-23 stsp usage_blame();
3791 69069811 2018-08-02 stsp
3792 69069811 2018-08-02 stsp cwd = getcwd(NULL, 0);
3793 69069811 2018-08-02 stsp if (cwd == NULL) {
3794 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3795 69069811 2018-08-02 stsp goto done;
3796 69069811 2018-08-02 stsp }
3797 69069811 2018-08-02 stsp if (repo_path == NULL) {
3798 eb41ed75 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
3799 eb41ed75 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3800 69069811 2018-08-02 stsp goto done;
3801 eb41ed75 2019-02-05 stsp else
3802 eb41ed75 2019-02-05 stsp error = NULL;
3803 eb41ed75 2019-02-05 stsp if (worktree) {
3804 eb41ed75 2019-02-05 stsp repo_path =
3805 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
3806 eb41ed75 2019-02-05 stsp if (repo_path == NULL)
3807 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3808 eb41ed75 2019-02-05 stsp if (error)
3809 eb41ed75 2019-02-05 stsp goto done;
3810 eb41ed75 2019-02-05 stsp } else {
3811 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
3812 eb41ed75 2019-02-05 stsp if (repo_path == NULL) {
3813 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3814 eb41ed75 2019-02-05 stsp goto done;
3815 eb41ed75 2019-02-05 stsp }
3816 69069811 2018-08-02 stsp }
3817 69069811 2018-08-02 stsp }
3818 a915003a 2019-02-05 stsp
3819 a915003a 2019-02-05 stsp init_curses();
3820 69069811 2018-08-02 stsp
3821 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3822 c02c541e 2019-03-29 stsp if (error != NULL)
3823 8e94dd5b 2019-01-04 stsp goto done;
3824 69069811 2018-08-02 stsp
3825 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
3826 c02c541e 2019-03-29 stsp if (error)
3827 92205607 2019-01-04 stsp goto done;
3828 69069811 2018-08-02 stsp
3829 eb41ed75 2019-02-05 stsp if (worktree) {
3830 eb41ed75 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3831 eb41ed75 2019-02-05 stsp char *p, *worktree_subdir = cwd +
3832 eb41ed75 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
3833 eb41ed75 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
3834 eb41ed75 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
3835 eb41ed75 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
3836 eb41ed75 2019-02-05 stsp path) == -1) {
3837 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
3838 eb41ed75 2019-02-05 stsp goto done;
3839 eb41ed75 2019-02-05 stsp }
3840 eb41ed75 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
3841 eb41ed75 2019-02-05 stsp free(p);
3842 eb41ed75 2019-02-05 stsp } else {
3843 eb41ed75 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
3844 eb41ed75 2019-02-05 stsp }
3845 eb41ed75 2019-02-05 stsp if (error)
3846 69069811 2018-08-02 stsp goto done;
3847 a70480e0 2018-06-23 stsp
3848 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
3849 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
3850 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
3851 a70480e0 2018-06-23 stsp if (error != NULL)
3852 66b4983c 2018-06-23 stsp goto done;
3853 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
3854 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
3855 a70480e0 2018-06-23 stsp } else {
3856 f2b6a97d 2019-07-15 stsp error = get_head_commit_id(&commit_id, commit_id_str, repo);
3857 f2b6a97d 2019-07-15 stsp if (error) {
3858 f2b6a97d 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
3859 f2b6a97d 2019-07-15 stsp goto done;
3860 f2b6a97d 2019-07-15 stsp error = got_repo_match_object_id_prefix(&commit_id,
3861 f2b6a97d 2019-07-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, repo);
3862 f2b6a97d 2019-07-15 stsp }
3863 a70480e0 2018-06-23 stsp }
3864 a19e88aa 2018-06-23 stsp if (error != NULL)
3865 8b473291 2019-02-21 stsp goto done;
3866 8b473291 2019-02-21 stsp
3867 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
3868 8b473291 2019-02-21 stsp if (error)
3869 a19e88aa 2018-06-23 stsp goto done;
3870 a70480e0 2018-06-23 stsp
3871 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
3872 e1cd8fed 2018-08-01 stsp if (view == NULL) {
3873 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
3874 e1cd8fed 2018-08-01 stsp goto done;
3875 e1cd8fed 2018-08-01 stsp }
3876 8b473291 2019-02-21 stsp error = open_blame_view(view, in_repo_path, commit_id, &refs, repo);
3877 7cbe629d 2018-08-04 stsp if (error)
3878 7cbe629d 2018-08-04 stsp goto done;
3879 12314ad4 2019-08-31 stsp if (worktree) {
3880 12314ad4 2019-08-31 stsp /* Release work tree lock. */
3881 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
3882 12314ad4 2019-08-31 stsp worktree = NULL;
3883 12314ad4 2019-08-31 stsp }
3884 e5a0f69f 2018-08-18 stsp error = view_loop(view);
3885 a70480e0 2018-06-23 stsp done:
3886 69069811 2018-08-02 stsp free(repo_path);
3887 69069811 2018-08-02 stsp free(cwd);
3888 a70480e0 2018-06-23 stsp free(commit_id);
3889 eb41ed75 2019-02-05 stsp if (worktree)
3890 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
3891 a70480e0 2018-06-23 stsp if (repo)
3892 a70480e0 2018-06-23 stsp got_repo_close(repo);
3893 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
3894 a70480e0 2018-06-23 stsp return error;
3895 ffd1d5e5 2018-06-23 stsp }
3896 ffd1d5e5 2018-06-23 stsp
3897 ffd1d5e5 2018-06-23 stsp static const struct got_error *
3898 f7d12f7e 2018-08-01 stsp draw_tree_entries(struct tog_view *view,
3899 f7d12f7e 2018-08-01 stsp struct got_tree_entry **first_displayed_entry,
3900 ffd1d5e5 2018-06-23 stsp struct got_tree_entry **last_displayed_entry,
3901 ffd1d5e5 2018-06-23 stsp struct got_tree_entry **selected_entry, int *ndisplayed,
3902 f7d12f7e 2018-08-01 stsp const char *label, int show_ids, const char *parent_path,
3903 ce52c690 2018-06-23 stsp const struct got_tree_entries *entries, int selected, int limit, int isroot)
3904 ffd1d5e5 2018-06-23 stsp {
3905 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
3906 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
3907 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
3908 ffd1d5e5 2018-06-23 stsp int width, n;
3909 ffd1d5e5 2018-06-23 stsp
3910 ffd1d5e5 2018-06-23 stsp *ndisplayed = 0;
3911 ffd1d5e5 2018-06-23 stsp
3912 f7d12f7e 2018-08-01 stsp werase(view->window);
3913 ffd1d5e5 2018-06-23 stsp
3914 ffd1d5e5 2018-06-23 stsp if (limit == 0)
3915 ffd1d5e5 2018-06-23 stsp return NULL;
3916 ffd1d5e5 2018-06-23 stsp
3917 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, label, view->ncols, 0);
3918 ffd1d5e5 2018-06-23 stsp if (err)
3919 ffd1d5e5 2018-06-23 stsp return err;
3920 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3921 a3404814 2018-09-02 stsp wstandout(view->window);
3922 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3923 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3924 a3404814 2018-09-02 stsp wstandend(view->window);
3925 2550e4c3 2018-07-13 stsp free(wline);
3926 2550e4c3 2018-07-13 stsp wline = NULL;
3927 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3928 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3929 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
3930 ffd1d5e5 2018-06-23 stsp return NULL;
3931 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, parent_path, view->ncols, 0);
3932 ce52c690 2018-06-23 stsp if (err)
3933 ce52c690 2018-06-23 stsp return err;
3934 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3935 2550e4c3 2018-07-13 stsp free(wline);
3936 2550e4c3 2018-07-13 stsp wline = NULL;
3937 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3938 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3939 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
3940 ffd1d5e5 2018-06-23 stsp return NULL;
3941 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3942 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
3943 a1eca9bb 2018-06-23 stsp return NULL;
3944 ffd1d5e5 2018-06-23 stsp
3945 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_FIRST(&entries->head);
3946 ffd1d5e5 2018-06-23 stsp if (*first_displayed_entry == NULL) {
3947 ffd1d5e5 2018-06-23 stsp if (selected == 0) {
3948 0cf4efb1 2018-09-29 stsp if (view->focussed)
3949 0cf4efb1 2018-09-29 stsp wstandout(view->window);
3950 ffd1d5e5 2018-06-23 stsp *selected_entry = NULL;
3951 ffd1d5e5 2018-06-23 stsp }
3952 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
3953 0cf4efb1 2018-09-29 stsp if (selected == 0 && view->focussed)
3954 f7d12f7e 2018-08-01 stsp wstandend(view->window);
3955 ffd1d5e5 2018-06-23 stsp (*ndisplayed)++;
3956 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
3957 ffd1d5e5 2018-06-23 stsp return NULL;
3958 ffd1d5e5 2018-06-23 stsp n = 1;
3959 ffd1d5e5 2018-06-23 stsp } else {
3960 ffd1d5e5 2018-06-23 stsp n = 0;
3961 ffd1d5e5 2018-06-23 stsp while (te != *first_displayed_entry)
3962 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_NEXT(te, entry);
3963 ffd1d5e5 2018-06-23 stsp }
3964 ffd1d5e5 2018-06-23 stsp
3965 ffd1d5e5 2018-06-23 stsp while (te) {
3966 1d13200f 2018-07-12 stsp char *line = NULL, *id_str = NULL;
3967 848d6979 2019-08-12 stsp const char *modestr = "";
3968 1d13200f 2018-07-12 stsp
3969 1d13200f 2018-07-12 stsp if (show_ids) {
3970 1d13200f 2018-07-12 stsp err = got_object_id_str(&id_str, te->id);
3971 1d13200f 2018-07-12 stsp if (err)
3972 638f9024 2019-05-13 stsp return got_error_from_errno(
3973 230a42bd 2019-05-11 jcs "got_object_id_str");
3974 1d13200f 2018-07-12 stsp }
3975 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
3976 63c5ca5d 2019-08-24 stsp modestr = "$";
3977 63c5ca5d 2019-08-24 stsp else if (S_ISLNK(te->mode))
3978 848d6979 2019-08-12 stsp modestr = "@";
3979 848d6979 2019-08-12 stsp else if (S_ISDIR(te->mode))
3980 848d6979 2019-08-12 stsp modestr = "/";
3981 848d6979 2019-08-12 stsp else if (te->mode & S_IXUSR)
3982 848d6979 2019-08-12 stsp modestr = "*";
3983 1d13200f 2018-07-12 stsp if (asprintf(&line, "%s %s%s", id_str ? id_str : "",
3984 848d6979 2019-08-12 stsp te->name, modestr) == -1) {
3985 1d13200f 2018-07-12 stsp free(id_str);
3986 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3987 1d13200f 2018-07-12 stsp }
3988 1d13200f 2018-07-12 stsp free(id_str);
3989 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3990 ffd1d5e5 2018-06-23 stsp if (err) {
3991 ffd1d5e5 2018-06-23 stsp free(line);
3992 ffd1d5e5 2018-06-23 stsp break;
3993 ffd1d5e5 2018-06-23 stsp }
3994 ffd1d5e5 2018-06-23 stsp if (n == selected) {
3995 0cf4efb1 2018-09-29 stsp if (view->focussed)
3996 0cf4efb1 2018-09-29 stsp wstandout(view->window);
3997 ffd1d5e5 2018-06-23 stsp *selected_entry = te;
3998 ffd1d5e5 2018-06-23 stsp }
3999 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4000 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4001 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4002 0cf4efb1 2018-09-29 stsp if (n == selected && view->focussed)
4003 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4004 ffd1d5e5 2018-06-23 stsp free(line);
4005 2550e4c3 2018-07-13 stsp free(wline);
4006 2550e4c3 2018-07-13 stsp wline = NULL;
4007 ffd1d5e5 2018-06-23 stsp n++;
4008 ffd1d5e5 2018-06-23 stsp (*ndisplayed)++;
4009 ffd1d5e5 2018-06-23 stsp *last_displayed_entry = te;
4010 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4011 ffd1d5e5 2018-06-23 stsp break;
4012 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_NEXT(te, entry);
4013 ffd1d5e5 2018-06-23 stsp }
4014 ffd1d5e5 2018-06-23 stsp
4015 ffd1d5e5 2018-06-23 stsp return err;
4016 ffd1d5e5 2018-06-23 stsp }
4017 ffd1d5e5 2018-06-23 stsp
4018 ffd1d5e5 2018-06-23 stsp static void
4019 34bc9ec9 2019-02-22 stsp tree_scroll_up(struct tog_view *view,
4020 34bc9ec9 2019-02-22 stsp struct got_tree_entry **first_displayed_entry, int maxscroll,
4021 ffd1d5e5 2018-06-23 stsp const struct got_tree_entries *entries, int isroot)
4022 ffd1d5e5 2018-06-23 stsp {
4023 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te, *prev;
4024 ffd1d5e5 2018-06-23 stsp int i;
4025 ffd1d5e5 2018-06-23 stsp
4026 00ba99a7 2019-05-12 jcs if (*first_displayed_entry == NULL)
4027 ffd1d5e5 2018-06-23 stsp return;
4028 ffd1d5e5 2018-06-23 stsp
4029 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_FIRST(&entries->head);
4030 ffd1d5e5 2018-06-23 stsp if (*first_displayed_entry == te) {
4031 ffd1d5e5 2018-06-23 stsp if (!isroot)
4032 ffd1d5e5 2018-06-23 stsp *first_displayed_entry = NULL;
4033 ffd1d5e5 2018-06-23 stsp return;
4034 ffd1d5e5 2018-06-23 stsp }
4035 ffd1d5e5 2018-06-23 stsp
4036 ffd1d5e5 2018-06-23 stsp /* XXX this is stupid... switch to TAILQ? */
4037 ffd1d5e5 2018-06-23 stsp for (i = 0; i < maxscroll; i++) {
4038 ffd1d5e5 2018-06-23 stsp while (te != *first_displayed_entry) {
4039 ffd1d5e5 2018-06-23 stsp prev = te;
4040 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_NEXT(te, entry);
4041 ffd1d5e5 2018-06-23 stsp }
4042 ffd1d5e5 2018-06-23 stsp *first_displayed_entry = prev;
4043 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_FIRST(&entries->head);
4044 ffd1d5e5 2018-06-23 stsp }
4045 ffd1d5e5 2018-06-23 stsp if (!isroot && te == SIMPLEQ_FIRST(&entries->head) && i < maxscroll)
4046 ffd1d5e5 2018-06-23 stsp *first_displayed_entry = NULL;
4047 ffd1d5e5 2018-06-23 stsp }
4048 ffd1d5e5 2018-06-23 stsp
4049 768394f3 2019-01-24 stsp static int
4050 ffd1d5e5 2018-06-23 stsp tree_scroll_down(struct got_tree_entry **first_displayed_entry, int maxscroll,
4051 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *last_displayed_entry,
4052 ffd1d5e5 2018-06-23 stsp const struct got_tree_entries *entries)
4053 ffd1d5e5 2018-06-23 stsp {
4054 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
4055 ffd1d5e5 2018-06-23 stsp int n = 0;
4056 ffd1d5e5 2018-06-23 stsp
4057 ffd1d5e5 2018-06-23 stsp if (*first_displayed_entry)
4058 ffd1d5e5 2018-06-23 stsp next = SIMPLEQ_NEXT(*first_displayed_entry, entry);
4059 ffd1d5e5 2018-06-23 stsp else
4060 ffd1d5e5 2018-06-23 stsp next = SIMPLEQ_FIRST(&entries->head);
4061 768394f3 2019-01-24 stsp last = last_displayed_entry;
4062 768394f3 2019-01-24 stsp while (next && last && n++ < maxscroll) {
4063 768394f3 2019-01-24 stsp last = SIMPLEQ_NEXT(last, entry);
4064 768394f3 2019-01-24 stsp if (last) {
4065 768394f3 2019-01-24 stsp *first_displayed_entry = next;
4066 768394f3 2019-01-24 stsp next = SIMPLEQ_NEXT(next, entry);
4067 768394f3 2019-01-24 stsp }
4068 ffd1d5e5 2018-06-23 stsp }
4069 768394f3 2019-01-24 stsp return n;
4070 ffd1d5e5 2018-06-23 stsp }
4071 ffd1d5e5 2018-06-23 stsp
4072 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4073 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
4074 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
4075 ffd1d5e5 2018-06-23 stsp {
4076 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
4077 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
4078 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
4079 ffd1d5e5 2018-06-23 stsp
4080 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
4081 ffd1d5e5 2018-06-23 stsp len += strlen(pt->selected_entry->name) + 1 /* slash */;
4082 ce52c690 2018-06-23 stsp if (te)
4083 ce52c690 2018-06-23 stsp len += strlen(te->name);
4084 ce52c690 2018-06-23 stsp
4085 ce52c690 2018-06-23 stsp *path = calloc(1, len);
4086 ffd1d5e5 2018-06-23 stsp if (path == NULL)
4087 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
4088 ffd1d5e5 2018-06-23 stsp
4089 ce52c690 2018-06-23 stsp (*path)[0] = '/';
4090 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
4091 d9765a41 2018-06-23 stsp while (pt) {
4092 ce52c690 2018-06-23 stsp if (strlcat(*path, pt->selected_entry->name, len) >= len) {
4093 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
4094 cb2ebc8a 2018-06-23 stsp goto done;
4095 cb2ebc8a 2018-06-23 stsp }
4096 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
4097 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
4098 cb2ebc8a 2018-06-23 stsp goto done;
4099 cb2ebc8a 2018-06-23 stsp }
4100 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
4101 ffd1d5e5 2018-06-23 stsp }
4102 ce52c690 2018-06-23 stsp if (te) {
4103 ce52c690 2018-06-23 stsp if (strlcat(*path, te->name, len) >= len) {
4104 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
4105 ce52c690 2018-06-23 stsp goto done;
4106 ce52c690 2018-06-23 stsp }
4107 cb2ebc8a 2018-06-23 stsp }
4108 ce52c690 2018-06-23 stsp done:
4109 ce52c690 2018-06-23 stsp if (err) {
4110 ce52c690 2018-06-23 stsp free(*path);
4111 ce52c690 2018-06-23 stsp *path = NULL;
4112 ce52c690 2018-06-23 stsp }
4113 ce52c690 2018-06-23 stsp return err;
4114 ce52c690 2018-06-23 stsp }
4115 ce52c690 2018-06-23 stsp
4116 ce52c690 2018-06-23 stsp static const struct got_error *
4117 0cf4efb1 2018-09-29 stsp blame_tree_entry(struct tog_view **new_view, int begin_x,
4118 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
4119 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4120 8b473291 2019-02-21 stsp struct got_repository *repo)
4121 ce52c690 2018-06-23 stsp {
4122 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
4123 ce52c690 2018-06-23 stsp char *path;
4124 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
4125 a0de39f3 2019-08-09 stsp
4126 a0de39f3 2019-08-09 stsp *new_view = NULL;
4127 69efd4c4 2018-07-18 stsp
4128 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
4129 ce52c690 2018-06-23 stsp if (err)
4130 ce52c690 2018-06-23 stsp return err;
4131 ffd1d5e5 2018-06-23 stsp
4132 669b5ffa 2018-10-07 stsp blame_view = view_open(0, 0, 0, begin_x, TOG_VIEW_BLAME);
4133 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
4134 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
4135 83ce39e3 2019-08-12 stsp goto done;
4136 83ce39e3 2019-08-12 stsp }
4137 cdf1ee82 2018-08-01 stsp
4138 8b473291 2019-02-21 stsp err = open_blame_view(blame_view, path, commit_id, refs, repo);
4139 e5a0f69f 2018-08-18 stsp if (err) {
4140 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
4141 fc06ba56 2019-08-22 stsp err = NULL;
4142 e5a0f69f 2018-08-18 stsp view_close(blame_view);
4143 e5a0f69f 2018-08-18 stsp } else
4144 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
4145 83ce39e3 2019-08-12 stsp done:
4146 83ce39e3 2019-08-12 stsp free(path);
4147 69efd4c4 2018-07-18 stsp return err;
4148 69efd4c4 2018-07-18 stsp }
4149 69efd4c4 2018-07-18 stsp
4150 69efd4c4 2018-07-18 stsp static const struct got_error *
4151 669b5ffa 2018-10-07 stsp log_tree_entry(struct tog_view **new_view, int begin_x,
4152 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
4153 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4154 8b473291 2019-02-21 stsp struct got_repository *repo)
4155 69efd4c4 2018-07-18 stsp {
4156 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
4157 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
4158 69efd4c4 2018-07-18 stsp char *path;
4159 a0de39f3 2019-08-09 stsp
4160 a0de39f3 2019-08-09 stsp *new_view = NULL;
4161 69efd4c4 2018-07-18 stsp
4162 669b5ffa 2018-10-07 stsp log_view = view_open(0, 0, 0, begin_x, TOG_VIEW_LOG);
4163 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
4164 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
4165 e5a0f69f 2018-08-18 stsp
4166 69efd4c4 2018-07-18 stsp err = tree_entry_path(&path, parents, te);
4167 69efd4c4 2018-07-18 stsp if (err)
4168 69efd4c4 2018-07-18 stsp return err;
4169 69efd4c4 2018-07-18 stsp
4170 d01904d4 2019-06-25 stsp err = open_log_view(log_view, commit_id, refs, repo, NULL, path, 0);
4171 ba4f502b 2018-08-04 stsp if (err)
4172 e5a0f69f 2018-08-18 stsp view_close(log_view);
4173 e5a0f69f 2018-08-18 stsp else
4174 e5a0f69f 2018-08-18 stsp *new_view = log_view;
4175 cb2ebc8a 2018-06-23 stsp free(path);
4176 cb2ebc8a 2018-06-23 stsp return err;
4177 ffd1d5e5 2018-06-23 stsp }
4178 ffd1d5e5 2018-06-23 stsp
4179 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4180 ad80ab7b 2018-08-04 stsp open_tree_view(struct tog_view *view, struct got_tree_object *root,
4181 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4182 8b473291 2019-02-21 stsp struct got_repository *repo)
4183 ffd1d5e5 2018-06-23 stsp {
4184 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
4185 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
4186 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
4187 ffd1d5e5 2018-06-23 stsp
4188 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
4189 ffd1d5e5 2018-06-23 stsp
4190 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
4191 ffd1d5e5 2018-06-23 stsp if (err != NULL)
4192 ffd1d5e5 2018-06-23 stsp goto done;
4193 ffd1d5e5 2018-06-23 stsp
4194 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
4195 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4196 ffd1d5e5 2018-06-23 stsp goto done;
4197 ffd1d5e5 2018-06-23 stsp }
4198 ffd1d5e5 2018-06-23 stsp
4199 fb2756b9 2018-08-04 stsp s->root = s->tree = root;
4200 fb2756b9 2018-08-04 stsp s->entries = got_object_tree_get_entries(root);
4201 fb2756b9 2018-08-04 stsp s->first_displayed_entry = SIMPLEQ_FIRST(&s->entries->head);
4202 8d0fe45a 2019-08-12 stsp s->selected_entry = SIMPLEQ_FIRST(&s->entries->head);
4203 6484ec90 2018-09-29 stsp s->commit_id = got_object_id_dup(commit_id);
4204 6484ec90 2018-09-29 stsp if (s->commit_id == NULL) {
4205 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4206 6484ec90 2018-09-29 stsp goto done;
4207 6484ec90 2018-09-29 stsp }
4208 8b473291 2019-02-21 stsp s->refs = refs;
4209 fb2756b9 2018-08-04 stsp s->repo = repo;
4210 e5a0f69f 2018-08-18 stsp
4211 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
4212 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
4213 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
4214 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
4215 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
4216 ad80ab7b 2018-08-04 stsp done:
4217 ad80ab7b 2018-08-04 stsp free(commit_id_str);
4218 6484ec90 2018-09-29 stsp if (err) {
4219 fb2756b9 2018-08-04 stsp free(s->tree_label);
4220 6484ec90 2018-09-29 stsp s->tree_label = NULL;
4221 6484ec90 2018-09-29 stsp }
4222 ad80ab7b 2018-08-04 stsp return err;
4223 ad80ab7b 2018-08-04 stsp }
4224 ad80ab7b 2018-08-04 stsp
4225 e5a0f69f 2018-08-18 stsp static const struct got_error *
4226 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
4227 ad80ab7b 2018-08-04 stsp {
4228 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
4229 ad80ab7b 2018-08-04 stsp
4230 fb2756b9 2018-08-04 stsp free(s->tree_label);
4231 6484ec90 2018-09-29 stsp s->tree_label = NULL;
4232 6484ec90 2018-09-29 stsp free(s->commit_id);
4233 6484ec90 2018-09-29 stsp s->commit_id = NULL;
4234 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
4235 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
4236 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
4237 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
4238 ad80ab7b 2018-08-04 stsp free(parent);
4239 ad80ab7b 2018-08-04 stsp
4240 ad80ab7b 2018-08-04 stsp }
4241 fb2756b9 2018-08-04 stsp if (s->tree != s->root)
4242 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
4243 e5a0f69f 2018-08-18 stsp got_object_tree_close(s->root);
4244 7c32bd05 2019-06-22 stsp
4245 7c32bd05 2019-06-22 stsp return NULL;
4246 7c32bd05 2019-06-22 stsp }
4247 7c32bd05 2019-06-22 stsp
4248 7c32bd05 2019-06-22 stsp static const struct got_error *
4249 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
4250 7c32bd05 2019-06-22 stsp {
4251 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
4252 7c32bd05 2019-06-22 stsp
4253 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
4254 7c32bd05 2019-06-22 stsp return NULL;
4255 7c32bd05 2019-06-22 stsp }
4256 7c32bd05 2019-06-22 stsp
4257 7c32bd05 2019-06-22 stsp static int
4258 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
4259 7c32bd05 2019-06-22 stsp {
4260 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
4261 7c32bd05 2019-06-22 stsp
4262 7c32bd05 2019-06-22 stsp return regexec(regex, te->name, 1, &regmatch, 0) == 0;
4263 7c32bd05 2019-06-22 stsp }
4264 7c32bd05 2019-06-22 stsp
4265 7c32bd05 2019-06-22 stsp static const struct got_error *
4266 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
4267 7c32bd05 2019-06-22 stsp {
4268 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
4269 a0de39f3 2019-08-09 stsp struct got_tree_entry *entry = NULL, *te;
4270 7c32bd05 2019-06-22 stsp
4271 7c32bd05 2019-06-22 stsp if (!view->searching) {
4272 7c32bd05 2019-06-22 stsp view->search_next_done = 1;
4273 7c32bd05 2019-06-22 stsp return NULL;
4274 7c32bd05 2019-06-22 stsp }
4275 7c32bd05 2019-06-22 stsp
4276 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
4277 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
4278 7c32bd05 2019-06-22 stsp if (s->selected_entry)
4279 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_NEXT(s->selected_entry, entry);
4280 7c32bd05 2019-06-22 stsp else
4281 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_FIRST(&s->entries->head);
4282 7c32bd05 2019-06-22 stsp }
4283 7c32bd05 2019-06-22 stsp else {
4284 7c32bd05 2019-06-22 stsp if (s->selected_entry == NULL) {
4285 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry)
4286 7c32bd05 2019-06-22 stsp entry = te;
4287 7c32bd05 2019-06-22 stsp } else {
4288 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry) {
4289 7c32bd05 2019-06-22 stsp entry = te;
4290 7c32bd05 2019-06-22 stsp if (SIMPLEQ_NEXT(te, entry) ==
4291 7c32bd05 2019-06-22 stsp s->selected_entry)
4292 7c32bd05 2019-06-22 stsp break;
4293 7c32bd05 2019-06-22 stsp }
4294 7c32bd05 2019-06-22 stsp }
4295 7c32bd05 2019-06-22 stsp }
4296 7c32bd05 2019-06-22 stsp } else {
4297 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
4298 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_FIRST(&s->entries->head);
4299 7c32bd05 2019-06-22 stsp else {
4300 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry)
4301 7c32bd05 2019-06-22 stsp entry = te;
4302 7c32bd05 2019-06-22 stsp }
4303 7c32bd05 2019-06-22 stsp }
4304 7c32bd05 2019-06-22 stsp
4305 7c32bd05 2019-06-22 stsp while (1) {
4306 7c32bd05 2019-06-22 stsp if (entry == NULL) {
4307 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
4308 ac66afb8 2019-06-24 stsp view->search_next_done = 1;
4309 ac66afb8 2019-06-24 stsp return NULL;
4310 ac66afb8 2019-06-24 stsp }
4311 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
4312 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_FIRST(&s->entries->head);
4313 7c32bd05 2019-06-22 stsp else {
4314 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry)
4315 7c32bd05 2019-06-22 stsp entry = te;
4316 7c32bd05 2019-06-22 stsp }
4317 7c32bd05 2019-06-22 stsp }
4318 7c32bd05 2019-06-22 stsp
4319 7c32bd05 2019-06-22 stsp if (match_tree_entry(entry, &view->regex)) {
4320 7c32bd05 2019-06-22 stsp view->search_next_done = 1;
4321 7c32bd05 2019-06-22 stsp s->matched_entry = entry;
4322 7c32bd05 2019-06-22 stsp break;
4323 7c32bd05 2019-06-22 stsp }
4324 7c32bd05 2019-06-22 stsp
4325 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
4326 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_NEXT(entry, entry);
4327 7c32bd05 2019-06-22 stsp else {
4328 7c32bd05 2019-06-22 stsp if (SIMPLEQ_FIRST(&s->entries->head) == entry)
4329 7c32bd05 2019-06-22 stsp entry = NULL;
4330 7c32bd05 2019-06-22 stsp else {
4331 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry) {
4332 7c32bd05 2019-06-22 stsp if (SIMPLEQ_NEXT(te, entry) == entry) {
4333 7c32bd05 2019-06-22 stsp entry = te;
4334 7c32bd05 2019-06-22 stsp break;
4335 7c32bd05 2019-06-22 stsp }
4336 7c32bd05 2019-06-22 stsp }
4337 7c32bd05 2019-06-22 stsp }
4338 7c32bd05 2019-06-22 stsp }
4339 7c32bd05 2019-06-22 stsp }
4340 e5a0f69f 2018-08-18 stsp
4341 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
4342 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
4343 7c32bd05 2019-06-22 stsp s->selected = 0;
4344 7c32bd05 2019-06-22 stsp }
4345 7c32bd05 2019-06-22 stsp
4346 e5a0f69f 2018-08-18 stsp return NULL;
4347 ad80ab7b 2018-08-04 stsp }
4348 ad80ab7b 2018-08-04 stsp
4349 ad80ab7b 2018-08-04 stsp static const struct got_error *
4350 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
4351 ad80ab7b 2018-08-04 stsp {
4352 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
4353 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
4354 e5a0f69f 2018-08-18 stsp char *parent_path;
4355 ad80ab7b 2018-08-04 stsp
4356 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
4357 e5a0f69f 2018-08-18 stsp if (err)
4358 e5a0f69f 2018-08-18 stsp return err;
4359 ffd1d5e5 2018-06-23 stsp
4360 e5a0f69f 2018-08-18 stsp err = draw_tree_entries(view, &s->first_displayed_entry,
4361 e5a0f69f 2018-08-18 stsp &s->last_displayed_entry, &s->selected_entry,
4362 e5a0f69f 2018-08-18 stsp &s->ndisplayed, s->tree_label, s->show_ids, parent_path,
4363 e5a0f69f 2018-08-18 stsp s->entries, s->selected, view->nlines, s->tree == s->root);
4364 e5a0f69f 2018-08-18 stsp free(parent_path);
4365 669b5ffa 2018-10-07 stsp
4366 669b5ffa 2018-10-07 stsp view_vborder(view);
4367 e5a0f69f 2018-08-18 stsp return err;
4368 e5a0f69f 2018-08-18 stsp }
4369 ce52c690 2018-06-23 stsp
4370 e5a0f69f 2018-08-18 stsp static const struct got_error *
4371 e5a0f69f 2018-08-18 stsp input_tree_view(struct tog_view **new_view, struct tog_view **dead_view,
4372 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
4373 e5a0f69f 2018-08-18 stsp {
4374 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
4375 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
4376 669b5ffa 2018-10-07 stsp struct tog_view *log_view;
4377 768394f3 2019-01-24 stsp int begin_x = 0, nscrolled;
4378 ffd1d5e5 2018-06-23 stsp
4379 e5a0f69f 2018-08-18 stsp switch (ch) {
4380 1e37a5c2 2019-05-12 jcs case 'i':
4381 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
4382 1e37a5c2 2019-05-12 jcs break;
4383 1e37a5c2 2019-05-12 jcs case 'l':
4384 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
4385 ffd1d5e5 2018-06-23 stsp break;
4386 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
4387 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
4388 1e37a5c2 2019-05-12 jcs err = log_tree_entry(&log_view, begin_x,
4389 1e37a5c2 2019-05-12 jcs s->selected_entry, &s->parents,
4390 1e37a5c2 2019-05-12 jcs s->commit_id, s->refs, s->repo);
4391 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
4392 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
4393 1e37a5c2 2019-05-12 jcs if (err)
4394 1e37a5c2 2019-05-12 jcs return err;
4395 1e37a5c2 2019-05-12 jcs err = view_set_child(view, log_view);
4396 1e37a5c2 2019-05-12 jcs if (err) {
4397 1e37a5c2 2019-05-12 jcs view_close(log_view);
4398 669b5ffa 2018-10-07 stsp break;
4399 1e37a5c2 2019-05-12 jcs }
4400 1e37a5c2 2019-05-12 jcs *focus_view = log_view;
4401 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
4402 1e37a5c2 2019-05-12 jcs } else
4403 1e37a5c2 2019-05-12 jcs *new_view = log_view;
4404 1e37a5c2 2019-05-12 jcs break;
4405 1e37a5c2 2019-05-12 jcs case 'k':
4406 1e37a5c2 2019-05-12 jcs case KEY_UP:
4407 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
4408 1e37a5c2 2019-05-12 jcs s->selected--;
4409 1e37a5c2 2019-05-12 jcs if (s->selected == 0)
4410 1e37a5c2 2019-05-12 jcs break;
4411 1e37a5c2 2019-05-12 jcs }
4412 1e37a5c2 2019-05-12 jcs if (s->selected > 0)
4413 1e37a5c2 2019-05-12 jcs break;
4414 1e37a5c2 2019-05-12 jcs tree_scroll_up(view, &s->first_displayed_entry, 1,
4415 1e37a5c2 2019-05-12 jcs s->entries, s->tree == s->root);
4416 1e37a5c2 2019-05-12 jcs break;
4417 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
4418 1e37a5c2 2019-05-12 jcs tree_scroll_up(view, &s->first_displayed_entry,
4419 1e37a5c2 2019-05-12 jcs MAX(0, view->nlines - 4 - s->selected), s->entries,
4420 1e37a5c2 2019-05-12 jcs s->tree == s->root);
4421 1e37a5c2 2019-05-12 jcs s->selected = 0;
4422 1e37a5c2 2019-05-12 jcs if (SIMPLEQ_FIRST(&s->entries->head) ==
4423 1e37a5c2 2019-05-12 jcs s->first_displayed_entry && s->tree != s->root)
4424 1e37a5c2 2019-05-12 jcs s->first_displayed_entry = NULL;
4425 1e37a5c2 2019-05-12 jcs break;
4426 1e37a5c2 2019-05-12 jcs case 'j':
4427 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
4428 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
4429 1e37a5c2 2019-05-12 jcs s->selected++;
4430 1e37a5c2 2019-05-12 jcs break;
4431 1e37a5c2 2019-05-12 jcs }
4432 00ba99a7 2019-05-12 jcs if (SIMPLEQ_NEXT(s->last_displayed_entry, entry) == NULL)
4433 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
4434 1e37a5c2 2019-05-12 jcs break;
4435 1e37a5c2 2019-05-12 jcs tree_scroll_down(&s->first_displayed_entry, 1,
4436 1e37a5c2 2019-05-12 jcs s->last_displayed_entry, s->entries);
4437 1e37a5c2 2019-05-12 jcs break;
4438 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
4439 1e37a5c2 2019-05-12 jcs if (SIMPLEQ_NEXT(s->last_displayed_entry, entry)
4440 1e37a5c2 2019-05-12 jcs == NULL) {
4441 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
4442 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
4443 1e37a5c2 2019-05-12 jcs s->selected = s->ndisplayed - 1;
4444 1e37a5c2 2019-05-12 jcs break;
4445 1e37a5c2 2019-05-12 jcs }
4446 1e37a5c2 2019-05-12 jcs nscrolled = tree_scroll_down(&s->first_displayed_entry,
4447 1e37a5c2 2019-05-12 jcs view->nlines, s->last_displayed_entry, s->entries);
4448 1e37a5c2 2019-05-12 jcs if (nscrolled < view->nlines) {
4449 1e37a5c2 2019-05-12 jcs int ndisplayed = 0;
4450 1e37a5c2 2019-05-12 jcs struct got_tree_entry *te;
4451 1e37a5c2 2019-05-12 jcs te = s->first_displayed_entry;
4452 1e37a5c2 2019-05-12 jcs do {
4453 1e37a5c2 2019-05-12 jcs ndisplayed++;
4454 1e37a5c2 2019-05-12 jcs te = SIMPLEQ_NEXT(te, entry);
4455 1e37a5c2 2019-05-12 jcs } while (te);
4456 1e37a5c2 2019-05-12 jcs s->selected = ndisplayed - 1;
4457 1e37a5c2 2019-05-12 jcs }
4458 1e37a5c2 2019-05-12 jcs break;
4459 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
4460 1e37a5c2 2019-05-12 jcs case '\r':
4461 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
4462 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
4463 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
4464 1e37a5c2 2019-05-12 jcs /* user selected '..' */
4465 1e37a5c2 2019-05-12 jcs if (s->tree == s->root)
4466 1e37a5c2 2019-05-12 jcs break;
4467 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
4468 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
4469 1e37a5c2 2019-05-12 jcs entry);
4470 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
4471 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
4472 1e37a5c2 2019-05-12 jcs s->entries =
4473 1e37a5c2 2019-05-12 jcs got_object_tree_get_entries(s->tree);
4474 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
4475 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
4476 1e37a5c2 2019-05-12 jcs s->selected_entry =
4477 1e37a5c2 2019-05-12 jcs parent->selected_entry;
4478 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
4479 1e37a5c2 2019-05-12 jcs free(parent);
4480 1e37a5c2 2019-05-12 jcs } else if (S_ISDIR(s->selected_entry->mode)) {
4481 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
4482 941e9f74 2019-05-21 stsp err = got_object_open_as_tree(&subtree,
4483 1e37a5c2 2019-05-12 jcs s->repo, s->selected_entry->id);
4484 1e37a5c2 2019-05-12 jcs if (err)
4485 1e37a5c2 2019-05-12 jcs break;
4486 941e9f74 2019-05-21 stsp err = tree_view_visit_subtree(subtree, s);
4487 941e9f74 2019-05-21 stsp if (err) {
4488 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
4489 1e37a5c2 2019-05-12 jcs break;
4490 1e37a5c2 2019-05-12 jcs }
4491 1e37a5c2 2019-05-12 jcs } else if (S_ISREG(s->selected_entry->mode)) {
4492 1e37a5c2 2019-05-12 jcs struct tog_view *blame_view;
4493 1e37a5c2 2019-05-12 jcs int begin_x = view_is_parent_view(view) ?
4494 1e37a5c2 2019-05-12 jcs view_split_begin_x(view->begin_x) : 0;
4495 1e37a5c2 2019-05-12 jcs
4496 1e37a5c2 2019-05-12 jcs err = blame_tree_entry(&blame_view, begin_x,
4497 669b5ffa 2018-10-07 stsp s->selected_entry, &s->parents,
4498 8b473291 2019-02-21 stsp s->commit_id, s->refs, s->repo);
4499 1e37a5c2 2019-05-12 jcs if (err)
4500 1e37a5c2 2019-05-12 jcs break;
4501 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
4502 669b5ffa 2018-10-07 stsp err = view_close_child(view);
4503 669b5ffa 2018-10-07 stsp if (err)
4504 669b5ffa 2018-10-07 stsp return err;
4505 1e37a5c2 2019-05-12 jcs err = view_set_child(view, blame_view);
4506 669b5ffa 2018-10-07 stsp if (err) {
4507 1e37a5c2 2019-05-12 jcs view_close(blame_view);
4508 669b5ffa 2018-10-07 stsp break;
4509 669b5ffa 2018-10-07 stsp }
4510 1e37a5c2 2019-05-12 jcs *focus_view = blame_view;
4511 669b5ffa 2018-10-07 stsp view->child_focussed = 1;
4512 669b5ffa 2018-10-07 stsp } else
4513 1e37a5c2 2019-05-12 jcs *new_view = blame_view;
4514 1e37a5c2 2019-05-12 jcs }
4515 1e37a5c2 2019-05-12 jcs break;
4516 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
4517 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines)
4518 1e37a5c2 2019-05-12 jcs s->selected = s->ndisplayed - 1;
4519 1e37a5c2 2019-05-12 jcs break;
4520 1e37a5c2 2019-05-12 jcs default:
4521 1e37a5c2 2019-05-12 jcs break;
4522 ffd1d5e5 2018-06-23 stsp }
4523 e5a0f69f 2018-08-18 stsp
4524 ffd1d5e5 2018-06-23 stsp return err;
4525 9f7d7167 2018-04-29 stsp }
4526 9f7d7167 2018-04-29 stsp
4527 ffd1d5e5 2018-06-23 stsp __dead static void
4528 ffd1d5e5 2018-06-23 stsp usage_tree(void)
4529 ffd1d5e5 2018-06-23 stsp {
4530 ffd1d5e5 2018-06-23 stsp endwin();
4531 ffd1d5e5 2018-06-23 stsp fprintf(stderr, "usage: %s tree [-c commit] [repository-path]\n",
4532 ffd1d5e5 2018-06-23 stsp getprogname());
4533 ffd1d5e5 2018-06-23 stsp exit(1);
4534 ffd1d5e5 2018-06-23 stsp }
4535 ffd1d5e5 2018-06-23 stsp
4536 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4537 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
4538 ffd1d5e5 2018-06-23 stsp {
4539 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
4540 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
4541 8b473291 2019-02-21 stsp struct got_reflist_head refs;
4542 ffd1d5e5 2018-06-23 stsp char *repo_path = NULL;
4543 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
4544 ffd1d5e5 2018-06-23 stsp char *commit_id_arg = NULL;
4545 ffd1d5e5 2018-06-23 stsp struct got_commit_object *commit = NULL;
4546 ffd1d5e5 2018-06-23 stsp struct got_tree_object *tree = NULL;
4547 ffd1d5e5 2018-06-23 stsp int ch;
4548 5221c383 2018-08-01 stsp struct tog_view *view;
4549 70ac5f84 2019-03-28 stsp
4550 70ac5f84 2019-03-28 stsp SIMPLEQ_INIT(&refs);
4551 ffd1d5e5 2018-06-23 stsp
4552 ffd1d5e5 2018-06-23 stsp #ifndef PROFILE
4553 d188b9a6 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
4554 d188b9a6 2019-01-04 stsp NULL) == -1)
4555 ffd1d5e5 2018-06-23 stsp err(1, "pledge");
4556 ffd1d5e5 2018-06-23 stsp #endif
4557 ffd1d5e5 2018-06-23 stsp
4558 ffd1d5e5 2018-06-23 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
4559 ffd1d5e5 2018-06-23 stsp switch (ch) {
4560 ffd1d5e5 2018-06-23 stsp case 'c':
4561 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
4562 ffd1d5e5 2018-06-23 stsp break;
4563 ffd1d5e5 2018-06-23 stsp default:
4564 17020d27 2019-03-07 stsp usage_tree();
4565 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
4566 ffd1d5e5 2018-06-23 stsp }
4567 ffd1d5e5 2018-06-23 stsp }
4568 ffd1d5e5 2018-06-23 stsp
4569 ffd1d5e5 2018-06-23 stsp argc -= optind;
4570 ffd1d5e5 2018-06-23 stsp argv += optind;
4571 ffd1d5e5 2018-06-23 stsp
4572 ffd1d5e5 2018-06-23 stsp if (argc == 0) {
4573 52185f70 2019-02-05 stsp struct got_worktree *worktree;
4574 52185f70 2019-02-05 stsp char *cwd = getcwd(NULL, 0);
4575 52185f70 2019-02-05 stsp if (cwd == NULL)
4576 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
4577 52185f70 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
4578 52185f70 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4579 52185f70 2019-02-05 stsp goto done;
4580 52185f70 2019-02-05 stsp if (worktree) {
4581 52185f70 2019-02-05 stsp free(cwd);
4582 52185f70 2019-02-05 stsp repo_path =
4583 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
4584 52185f70 2019-02-05 stsp got_worktree_close(worktree);
4585 52185f70 2019-02-05 stsp } else
4586 52185f70 2019-02-05 stsp repo_path = cwd;
4587 52185f70 2019-02-05 stsp if (repo_path == NULL) {
4588 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4589 52185f70 2019-02-05 stsp goto done;
4590 52185f70 2019-02-05 stsp }
4591 ffd1d5e5 2018-06-23 stsp } else if (argc == 1) {
4592 ffd1d5e5 2018-06-23 stsp repo_path = realpath(argv[0], NULL);
4593 ffd1d5e5 2018-06-23 stsp if (repo_path == NULL)
4594 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
4595 ffd1d5e5 2018-06-23 stsp } else
4596 ffd1d5e5 2018-06-23 stsp usage_log();
4597 a915003a 2019-02-05 stsp
4598 a915003a 2019-02-05 stsp init_curses();
4599 ffd1d5e5 2018-06-23 stsp
4600 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4601 c02c541e 2019-03-29 stsp if (error != NULL)
4602 52185f70 2019-02-05 stsp goto done;
4603 d188b9a6 2019-01-04 stsp
4604 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
4605 c02c541e 2019-03-29 stsp if (error)
4606 52185f70 2019-02-05 stsp goto done;
4607 ffd1d5e5 2018-06-23 stsp
4608 15a94983 2018-12-23 stsp if (commit_id_arg == NULL)
4609 19e70ad6 2019-05-14 stsp error = get_head_commit_id(&commit_id, GOT_REF_HEAD, repo);
4610 f2b6a97d 2019-07-15 stsp else {
4611 f2b6a97d 2019-07-15 stsp error = get_head_commit_id(&commit_id, commit_id_arg, repo);
4612 f2b6a97d 2019-07-15 stsp if (error) {
4613 f2b6a97d 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
4614 f2b6a97d 2019-07-15 stsp goto done;
4615 f2b6a97d 2019-07-15 stsp error = got_repo_match_object_id_prefix(&commit_id,
4616 f2b6a97d 2019-07-15 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, repo);
4617 f2b6a97d 2019-07-15 stsp }
4618 f2b6a97d 2019-07-15 stsp }
4619 ffd1d5e5 2018-06-23 stsp if (error != NULL)
4620 ffd1d5e5 2018-06-23 stsp goto done;
4621 ffd1d5e5 2018-06-23 stsp
4622 ffd1d5e5 2018-06-23 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
4623 ffd1d5e5 2018-06-23 stsp if (error != NULL)
4624 ffd1d5e5 2018-06-23 stsp goto done;
4625 ffd1d5e5 2018-06-23 stsp
4626 45d799e2 2018-12-23 stsp error = got_object_open_as_tree(&tree, repo,
4627 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
4628 ffd1d5e5 2018-06-23 stsp if (error != NULL)
4629 8b473291 2019-02-21 stsp goto done;
4630 8b473291 2019-02-21 stsp
4631 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
4632 8b473291 2019-02-21 stsp if (error)
4633 ffd1d5e5 2018-06-23 stsp goto done;
4634 ffd1d5e5 2018-06-23 stsp
4635 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
4636 5221c383 2018-08-01 stsp if (view == NULL) {
4637 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4638 5221c383 2018-08-01 stsp goto done;
4639 5221c383 2018-08-01 stsp }
4640 8b473291 2019-02-21 stsp error = open_tree_view(view, tree, commit_id, &refs, repo);
4641 ad80ab7b 2018-08-04 stsp if (error)
4642 ad80ab7b 2018-08-04 stsp goto done;
4643 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4644 ffd1d5e5 2018-06-23 stsp done:
4645 52185f70 2019-02-05 stsp free(repo_path);
4646 ffd1d5e5 2018-06-23 stsp free(commit_id);
4647 ffd1d5e5 2018-06-23 stsp if (commit)
4648 ffd1d5e5 2018-06-23 stsp got_object_commit_close(commit);
4649 ffd1d5e5 2018-06-23 stsp if (tree)
4650 ffd1d5e5 2018-06-23 stsp got_object_tree_close(tree);
4651 ffd1d5e5 2018-06-23 stsp if (repo)
4652 ffd1d5e5 2018-06-23 stsp got_repo_close(repo);
4653 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
4654 ffd1d5e5 2018-06-23 stsp return error;
4655 9f7d7167 2018-04-29 stsp }
4656 ce5b7c56 2019-07-09 stsp
4657 ce5b7c56 2019-07-09 stsp static void
4658 ce5b7c56 2019-07-09 stsp list_commands(void)
4659 ce5b7c56 2019-07-09 stsp {
4660 ce5b7c56 2019-07-09 stsp int i;
4661 9f7d7167 2018-04-29 stsp
4662 ce5b7c56 2019-07-09 stsp fprintf(stderr, "commands:");
4663 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
4664 ce5b7c56 2019-07-09 stsp struct tog_cmd *cmd = &tog_commands[i];
4665 ce5b7c56 2019-07-09 stsp fprintf(stderr, " %s", cmd->name);
4666 ce5b7c56 2019-07-09 stsp }
4667 ce5b7c56 2019-07-09 stsp fputc('\n', stderr);
4668 ce5b7c56 2019-07-09 stsp }
4669 ce5b7c56 2019-07-09 stsp
4670 4ed7e80c 2018-05-20 stsp __dead static void
4671 ce5b7c56 2019-07-09 stsp usage(int hflag)
4672 9f7d7167 2018-04-29 stsp {
4673 53ccebc2 2019-07-30 stsp fprintf(stderr, "usage: %s [-h] [-V] [command] [arg ...]\n",
4674 53ccebc2 2019-07-30 stsp getprogname());
4675 ce5b7c56 2019-07-09 stsp if (hflag)
4676 ce5b7c56 2019-07-09 stsp list_commands();
4677 9f7d7167 2018-04-29 stsp exit(1);
4678 9f7d7167 2018-04-29 stsp }
4679 9f7d7167 2018-04-29 stsp
4680 c2301be8 2018-04-30 stsp static char **
4681 c2301be8 2018-04-30 stsp make_argv(const char *arg0, const char *arg1)
4682 c2301be8 2018-04-30 stsp {
4683 c2301be8 2018-04-30 stsp char **argv;
4684 c2301be8 2018-04-30 stsp int argc = (arg1 == NULL ? 1 : 2);
4685 c2301be8 2018-04-30 stsp
4686 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
4687 c2301be8 2018-04-30 stsp if (argv == NULL)
4688 c2301be8 2018-04-30 stsp err(1, "calloc");
4689 c2301be8 2018-04-30 stsp argv[0] = strdup(arg0);
4690 c2301be8 2018-04-30 stsp if (argv[0] == NULL)
4691 c2301be8 2018-04-30 stsp err(1, "calloc");
4692 c2301be8 2018-04-30 stsp if (arg1) {
4693 c2301be8 2018-04-30 stsp argv[1] = strdup(arg1);
4694 c2301be8 2018-04-30 stsp if (argv[1] == NULL)
4695 c2301be8 2018-04-30 stsp err(1, "calloc");
4696 c2301be8 2018-04-30 stsp }
4697 c2301be8 2018-04-30 stsp
4698 c2301be8 2018-04-30 stsp return argv;
4699 c2301be8 2018-04-30 stsp }
4700 c2301be8 2018-04-30 stsp
4701 9f7d7167 2018-04-29 stsp int
4702 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
4703 9f7d7167 2018-04-29 stsp {
4704 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
4705 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = NULL;
4706 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
4707 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
4708 9f7d7167 2018-04-29 stsp
4709 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
4710 9f7d7167 2018-04-29 stsp
4711 53ccebc2 2019-07-30 stsp while ((ch = getopt(argc, argv, "hV")) != -1) {
4712 9f7d7167 2018-04-29 stsp switch (ch) {
4713 9f7d7167 2018-04-29 stsp case 'h':
4714 9f7d7167 2018-04-29 stsp hflag = 1;
4715 9f7d7167 2018-04-29 stsp break;
4716 53ccebc2 2019-07-30 stsp case 'V':
4717 53ccebc2 2019-07-30 stsp Vflag = 1;
4718 53ccebc2 2019-07-30 stsp break;
4719 9f7d7167 2018-04-29 stsp default:
4720 ce5b7c56 2019-07-09 stsp usage(hflag);
4721 9f7d7167 2018-04-29 stsp /* NOTREACHED */
4722 9f7d7167 2018-04-29 stsp }
4723 9f7d7167 2018-04-29 stsp }
4724 9f7d7167 2018-04-29 stsp
4725 9f7d7167 2018-04-29 stsp argc -= optind;
4726 9f7d7167 2018-04-29 stsp argv += optind;
4727 9f7d7167 2018-04-29 stsp optind = 0;
4728 c2301be8 2018-04-30 stsp optreset = 1;
4729 9f7d7167 2018-04-29 stsp
4730 53ccebc2 2019-07-30 stsp if (Vflag) {
4731 53ccebc2 2019-07-30 stsp got_version_print_str();
4732 53ccebc2 2019-07-30 stsp return 1;
4733 53ccebc2 2019-07-30 stsp }
4734 53ccebc2 2019-07-30 stsp
4735 c2301be8 2018-04-30 stsp if (argc == 0) {
4736 f29d3e89 2018-06-23 stsp if (hflag)
4737 ce5b7c56 2019-07-09 stsp usage(hflag);
4738 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
4739 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
4740 c2301be8 2018-04-30 stsp cmd_argv = make_argv(cmd->name, NULL);
4741 c2301be8 2018-04-30 stsp argc = 1;
4742 c2301be8 2018-04-30 stsp } else {
4743 9f7d7167 2018-04-29 stsp int i;
4744 9f7d7167 2018-04-29 stsp
4745 c2301be8 2018-04-30 stsp /* Did the user specific a command? */
4746 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
4747 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
4748 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
4749 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
4750 9f7d7167 2018-04-29 stsp break;
4751 9f7d7167 2018-04-29 stsp }
4752 9f7d7167 2018-04-29 stsp }
4753 3642c4c6 2019-07-09 stsp
4754 9f7d7167 2018-04-29 stsp if (cmd == NULL) {
4755 d70c3147 2019-07-09 stsp fprintf(stderr, "%s: unknown command '%s'\n",
4756 3642c4c6 2019-07-09 stsp getprogname(), argv[0]);
4757 ce5b7c56 2019-07-09 stsp list_commands();
4758 3642c4c6 2019-07-09 stsp return 1;
4759 9f7d7167 2018-04-29 stsp }
4760 9f7d7167 2018-04-29 stsp }
4761 9f7d7167 2018-04-29 stsp
4762 3642c4c6 2019-07-09 stsp if (hflag)
4763 3642c4c6 2019-07-09 stsp cmd->cmd_usage();
4764 3642c4c6 2019-07-09 stsp else
4765 3642c4c6 2019-07-09 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
4766 3642c4c6 2019-07-09 stsp
4767 9f7d7167 2018-04-29 stsp endwin();
4768 c2301be8 2018-04-30 stsp free(cmd_argv);
4769 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
4770 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
4771 9f7d7167 2018-04-29 stsp return 0;
4772 9f7d7167 2018-04-29 stsp }