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 1cae65b4 2019-09-22 stsp if (err)
2033 1cae65b4 2019-09-22 stsp break;
2034 1e37a5c2 2019-05-12 jcs if (first == s->first_displayed_entry &&
2035 1e37a5c2 2019-05-12 jcs s->selected < MIN(view->nlines - 2,
2036 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1)) {
2037 1e37a5c2 2019-05-12 jcs /* can't scroll further down */
2038 1e37a5c2 2019-05-12 jcs s->selected = MIN(view->nlines - 2,
2039 1e37a5c2 2019-05-12 jcs s->commits.ncommits - 1);
2040 1e37a5c2 2019-05-12 jcs }
2041 1e37a5c2 2019-05-12 jcs err = NULL;
2042 1e37a5c2 2019-05-12 jcs break;
2043 1e37a5c2 2019-05-12 jcs }
2044 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
2045 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines - 2)
2046 1e37a5c2 2019-05-12 jcs s->selected = view->nlines - 2;
2047 1e37a5c2 2019-05-12 jcs if (s->selected > s->commits.ncommits - 1)
2048 1e37a5c2 2019-05-12 jcs s->selected = s->commits.ncommits - 1;
2049 1e37a5c2 2019-05-12 jcs break;
2050 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
2051 87c7274c 2019-05-12 jcs case ' ':
2052 1e37a5c2 2019-05-12 jcs case '\r':
2053 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2054 e5a0f69f 2018-08-18 stsp break;
2055 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2056 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2057 1e37a5c2 2019-05-12 jcs err = open_diff_view_for_commit(&diff_view, begin_x,
2058 1e37a5c2 2019-05-12 jcs s->selected_entry->commit, s->selected_entry->id,
2059 1e37a5c2 2019-05-12 jcs view, s->refs, s->repo);
2060 1e37a5c2 2019-05-12 jcs if (err)
2061 1e37a5c2 2019-05-12 jcs break;
2062 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2063 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2064 f7013a22 2018-10-24 stsp if (err)
2065 1e37a5c2 2019-05-12 jcs return err;
2066 1e37a5c2 2019-05-12 jcs err = view_set_child(view, diff_view);
2067 1e37a5c2 2019-05-12 jcs if (err) {
2068 1e37a5c2 2019-05-12 jcs view_close(diff_view);
2069 f7013a22 2018-10-24 stsp break;
2070 5036bf37 2018-09-24 stsp }
2071 1e37a5c2 2019-05-12 jcs *focus_view = diff_view;
2072 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
2073 1e37a5c2 2019-05-12 jcs } else
2074 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
2075 1e37a5c2 2019-05-12 jcs break;
2076 1e37a5c2 2019-05-12 jcs case 't':
2077 1e37a5c2 2019-05-12 jcs if (s->selected_entry == NULL)
2078 5036bf37 2018-09-24 stsp break;
2079 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2080 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
2081 941e9f74 2019-05-21 stsp err = browse_commit_tree(&tree_view, begin_x,
2082 941e9f74 2019-05-21 stsp s->selected_entry, s->in_repo_path, s->refs, s->repo);
2083 1e37a5c2 2019-05-12 jcs if (err)
2084 e5a0f69f 2018-08-18 stsp break;
2085 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
2086 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
2087 1e37a5c2 2019-05-12 jcs if (err)
2088 1e37a5c2 2019-05-12 jcs return err;
2089 1e37a5c2 2019-05-12 jcs err = view_set_child(view, tree_view);
2090 1e37a5c2 2019-05-12 jcs if (err) {
2091 1e37a5c2 2019-05-12 jcs view_close(tree_view);
2092 1e37a5c2 2019-05-12 jcs break;
2093 1e37a5c2 2019-05-12 jcs }
2094 1e37a5c2 2019-05-12 jcs *focus_view = tree_view;
2095 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
2096 1e37a5c2 2019-05-12 jcs } else
2097 1e37a5c2 2019-05-12 jcs *new_view = tree_view;
2098 1e37a5c2 2019-05-12 jcs break;
2099 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
2100 1e37a5c2 2019-05-12 jcs if (strcmp(s->in_repo_path, "/") == 0)
2101 1e37a5c2 2019-05-12 jcs break;
2102 1e37a5c2 2019-05-12 jcs parent_path = dirname(s->in_repo_path);
2103 1e37a5c2 2019-05-12 jcs if (parent_path && strcmp(parent_path, ".") != 0) {
2104 1e37a5c2 2019-05-12 jcs err = stop_log_thread(s);
2105 1e37a5c2 2019-05-12 jcs if (err)
2106 1e37a5c2 2019-05-12 jcs return err;
2107 1e37a5c2 2019-05-12 jcs lv = view_open(view->nlines, view->ncols,
2108 1e37a5c2 2019-05-12 jcs view->begin_y, view->begin_x, TOG_VIEW_LOG);
2109 1e37a5c2 2019-05-12 jcs if (lv == NULL)
2110 638f9024 2019-05-13 stsp return got_error_from_errno(
2111 1e37a5c2 2019-05-12 jcs "view_open");
2112 1e37a5c2 2019-05-12 jcs err = open_log_view(lv, s->start_id, s->refs,
2113 d01904d4 2019-06-25 stsp s->repo, s->head_ref_name, parent_path, 0);
2114 1e37a5c2 2019-05-12 jcs if (err)
2115 1e37a5c2 2019-05-12 jcs return err;;
2116 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
2117 1e37a5c2 2019-05-12 jcs *new_view = lv;
2118 1e37a5c2 2019-05-12 jcs else {
2119 1e37a5c2 2019-05-12 jcs view_set_child(view->parent, lv);
2120 1e37a5c2 2019-05-12 jcs *focus_view = lv;
2121 1e37a5c2 2019-05-12 jcs }
2122 1e37a5c2 2019-05-12 jcs return NULL;
2123 1e37a5c2 2019-05-12 jcs }
2124 1e37a5c2 2019-05-12 jcs break;
2125 e3d2a5c6 2019-06-26 stsp case CTRL('l'):
2126 d01904d4 2019-06-25 stsp err = stop_log_thread(s);
2127 d01904d4 2019-06-25 stsp if (err)
2128 d01904d4 2019-06-25 stsp return err;
2129 d01904d4 2019-06-25 stsp lv = view_open(view->nlines, view->ncols,
2130 d01904d4 2019-06-25 stsp view->begin_y, view->begin_x, TOG_VIEW_LOG);
2131 d01904d4 2019-06-25 stsp if (lv == NULL)
2132 d01904d4 2019-06-25 stsp return got_error_from_errno("view_open");
2133 d01904d4 2019-06-25 stsp err = get_head_commit_id(&start_id, s->head_ref_name ?
2134 d01904d4 2019-06-25 stsp s->head_ref_name : GOT_REF_HEAD, s->repo);
2135 ef129c5e 2019-08-03 stsp if (err) {
2136 ef129c5e 2019-08-03 stsp view_close(lv);
2137 d01904d4 2019-06-25 stsp return err;
2138 ef129c5e 2019-08-03 stsp }
2139 d01904d4 2019-06-25 stsp in_repo_path = strdup(s->in_repo_path);
2140 d01904d4 2019-06-25 stsp if (in_repo_path == NULL) {
2141 d01904d4 2019-06-25 stsp free(start_id);
2142 ef129c5e 2019-08-03 stsp view_close(lv);
2143 d01904d4 2019-06-25 stsp return got_error_from_errno("strdup");
2144 d01904d4 2019-06-25 stsp }
2145 d01904d4 2019-06-25 stsp err = open_log_view(lv, start_id, s->refs, s->repo,
2146 d01904d4 2019-06-25 stsp s->head_ref_name, in_repo_path, 0);
2147 ef129c5e 2019-08-03 stsp if (err) {
2148 ef129c5e 2019-08-03 stsp free(start_id);
2149 ef129c5e 2019-08-03 stsp view_close(lv);
2150 d01904d4 2019-06-25 stsp return err;;
2151 ef129c5e 2019-08-03 stsp }
2152 d01904d4 2019-06-25 stsp *dead_view = view;
2153 d01904d4 2019-06-25 stsp *new_view = lv;
2154 d01904d4 2019-06-25 stsp break;
2155 1e37a5c2 2019-05-12 jcs default:
2156 1e37a5c2 2019-05-12 jcs break;
2157 899d86c2 2018-05-10 stsp }
2158 e5a0f69f 2018-08-18 stsp
2159 80ddbec8 2018-04-29 stsp return err;
2160 80ddbec8 2018-04-29 stsp }
2161 80ddbec8 2018-04-29 stsp
2162 4ed7e80c 2018-05-20 stsp static const struct got_error *
2163 c2db6724 2019-01-04 stsp apply_unveil(const char *repo_path, const char *worktree_path)
2164 c2db6724 2019-01-04 stsp {
2165 c2db6724 2019-01-04 stsp const struct got_error *error;
2166 c2db6724 2019-01-04 stsp
2167 37c06ea4 2019-07-15 stsp #ifdef PROFILE
2168 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
2169 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
2170 37c06ea4 2019-07-15 stsp #endif
2171 c2db6724 2019-01-04 stsp if (repo_path && unveil(repo_path, "r") != 0)
2172 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
2173 c2db6724 2019-01-04 stsp
2174 c2db6724 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
2175 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
2176 c2db6724 2019-01-04 stsp
2177 f12d0dbe 2019-01-04 stsp if (unveil("/tmp", "rwc") != 0)
2178 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", "/tmp");
2179 c2db6724 2019-01-04 stsp
2180 c2db6724 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
2181 c2db6724 2019-01-04 stsp if (error != NULL)
2182 c2db6724 2019-01-04 stsp return error;
2183 c2db6724 2019-01-04 stsp
2184 c2db6724 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
2185 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
2186 c2db6724 2019-01-04 stsp
2187 c2db6724 2019-01-04 stsp return NULL;
2188 c2db6724 2019-01-04 stsp }
2189 c2db6724 2019-01-04 stsp
2190 a915003a 2019-02-05 stsp static void
2191 a915003a 2019-02-05 stsp init_curses(void)
2192 a915003a 2019-02-05 stsp {
2193 a915003a 2019-02-05 stsp initscr();
2194 a915003a 2019-02-05 stsp cbreak();
2195 a915003a 2019-02-05 stsp halfdelay(1); /* Do fast refresh while initial view is loading. */
2196 a915003a 2019-02-05 stsp noecho();
2197 a915003a 2019-02-05 stsp nonl();
2198 a915003a 2019-02-05 stsp intrflush(stdscr, FALSE);
2199 a915003a 2019-02-05 stsp keypad(stdscr, TRUE);
2200 a915003a 2019-02-05 stsp curs_set(0);
2201 a915003a 2019-02-05 stsp signal(SIGWINCH, tog_sigwinch);
2202 83baff54 2019-08-12 stsp signal(SIGPIPE, tog_sigpipe);
2203 a915003a 2019-02-05 stsp }
2204 a915003a 2019-02-05 stsp
2205 c2db6724 2019-01-04 stsp static const struct got_error *
2206 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
2207 9f7d7167 2018-04-29 stsp {
2208 80ddbec8 2018-04-29 stsp const struct got_error *error;
2209 ecb28ae0 2018-07-16 stsp struct got_repository *repo = NULL;
2210 ec142235 2019-03-07 stsp struct got_worktree *worktree = NULL;
2211 8b473291 2019-02-21 stsp struct got_reflist_head refs;
2212 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
2213 ecb28ae0 2018-07-16 stsp char *path = NULL, *repo_path = NULL, *cwd = NULL;
2214 2fc00ff4 2019-08-31 stsp char *start_commit = NULL, *head_ref_name = NULL;
2215 80ddbec8 2018-04-29 stsp int ch;
2216 04cc582a 2018-08-01 stsp struct tog_view *view;
2217 a55555f2 2019-03-28 stsp
2218 a55555f2 2019-03-28 stsp SIMPLEQ_INIT(&refs);
2219 80ddbec8 2018-04-29 stsp
2220 80ddbec8 2018-04-29 stsp #ifndef PROFILE
2221 c2db6724 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
2222 c2db6724 2019-01-04 stsp NULL) == -1)
2223 80ddbec8 2018-04-29 stsp err(1, "pledge");
2224 80ddbec8 2018-04-29 stsp #endif
2225 80ddbec8 2018-04-29 stsp
2226 ecb28ae0 2018-07-16 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
2227 80ddbec8 2018-04-29 stsp switch (ch) {
2228 80ddbec8 2018-04-29 stsp case 'c':
2229 80ddbec8 2018-04-29 stsp start_commit = optarg;
2230 80ddbec8 2018-04-29 stsp break;
2231 ecb28ae0 2018-07-16 stsp case 'r':
2232 ecb28ae0 2018-07-16 stsp repo_path = realpath(optarg, NULL);
2233 ecb28ae0 2018-07-16 stsp if (repo_path == NULL)
2234 ecb28ae0 2018-07-16 stsp err(1, "-r option");
2235 ecb28ae0 2018-07-16 stsp break;
2236 80ddbec8 2018-04-29 stsp default:
2237 17020d27 2019-03-07 stsp usage_log();
2238 80ddbec8 2018-04-29 stsp /* NOTREACHED */
2239 80ddbec8 2018-04-29 stsp }
2240 80ddbec8 2018-04-29 stsp }
2241 80ddbec8 2018-04-29 stsp
2242 80ddbec8 2018-04-29 stsp argc -= optind;
2243 80ddbec8 2018-04-29 stsp argv += optind;
2244 80ddbec8 2018-04-29 stsp
2245 ecb28ae0 2018-07-16 stsp cwd = getcwd(NULL, 0);
2246 ecb28ae0 2018-07-16 stsp if (cwd == NULL) {
2247 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2248 ecb28ae0 2018-07-16 stsp goto done;
2249 ecb28ae0 2018-07-16 stsp }
2250 963f97a1 2019-03-18 stsp error = got_worktree_open(&worktree, cwd);
2251 963f97a1 2019-03-18 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2252 963f97a1 2019-03-18 stsp goto done;
2253 963f97a1 2019-03-18 stsp error = NULL;
2254 963f97a1 2019-03-18 stsp
2255 963f97a1 2019-03-18 stsp if (argc == 0) {
2256 963f97a1 2019-03-18 stsp path = strdup("");
2257 963f97a1 2019-03-18 stsp if (path == NULL) {
2258 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2259 ecb28ae0 2018-07-16 stsp goto done;
2260 ecb28ae0 2018-07-16 stsp }
2261 963f97a1 2019-03-18 stsp } else if (argc == 1) {
2262 963f97a1 2019-03-18 stsp if (worktree) {
2263 963f97a1 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
2264 963f97a1 2019-03-18 stsp argv[0]);
2265 963f97a1 2019-03-18 stsp if (error)
2266 963f97a1 2019-03-18 stsp goto done;
2267 963f97a1 2019-03-18 stsp } else {
2268 963f97a1 2019-03-18 stsp path = strdup(argv[0]);
2269 963f97a1 2019-03-18 stsp if (path == NULL) {
2270 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2271 963f97a1 2019-03-18 stsp goto done;
2272 963f97a1 2019-03-18 stsp }
2273 963f97a1 2019-03-18 stsp }
2274 963f97a1 2019-03-18 stsp } else
2275 963f97a1 2019-03-18 stsp usage_log();
2276 963f97a1 2019-03-18 stsp
2277 a1fbf39a 2019-08-11 stsp if (repo_path == NULL) {
2278 a1fbf39a 2019-08-11 stsp if (worktree)
2279 b9d7675a 2019-08-11 stsp repo_path = strdup(
2280 b9d7675a 2019-08-11 stsp got_worktree_get_repo_path(worktree));
2281 a1fbf39a 2019-08-11 stsp else
2282 a1fbf39a 2019-08-11 stsp repo_path = strdup(cwd);
2283 a1fbf39a 2019-08-11 stsp }
2284 963f97a1 2019-03-18 stsp if (repo_path == NULL) {
2285 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2286 963f97a1 2019-03-18 stsp goto done;
2287 ecb28ae0 2018-07-16 stsp }
2288 c2db6724 2019-01-04 stsp
2289 a915003a 2019-02-05 stsp init_curses();
2290 ecb28ae0 2018-07-16 stsp
2291 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2292 80ddbec8 2018-04-29 stsp if (error != NULL)
2293 ecb28ae0 2018-07-16 stsp goto done;
2294 80ddbec8 2018-04-29 stsp
2295 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo),
2296 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
2297 c02c541e 2019-03-29 stsp if (error)
2298 c02c541e 2019-03-29 stsp goto done;
2299 c02c541e 2019-03-29 stsp
2300 15a94983 2018-12-23 stsp if (start_commit == NULL)
2301 19e70ad6 2019-05-14 stsp error = get_head_commit_id(&start_id, worktree ?
2302 19e70ad6 2019-05-14 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD,
2303 19e70ad6 2019-05-14 stsp repo);
2304 f2b6a97d 2019-07-15 stsp else {
2305 f2b6a97d 2019-07-15 stsp error = get_head_commit_id(&start_id, start_commit, repo);
2306 f2b6a97d 2019-07-15 stsp if (error) {
2307 f2b6a97d 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
2308 f2b6a97d 2019-07-15 stsp goto done;
2309 f2b6a97d 2019-07-15 stsp error = got_repo_match_object_id_prefix(&start_id,
2310 f2b6a97d 2019-07-15 stsp start_commit, GOT_OBJ_TYPE_COMMIT, repo);
2311 f2b6a97d 2019-07-15 stsp }
2312 f2b6a97d 2019-07-15 stsp }
2313 80ddbec8 2018-04-29 stsp if (error != NULL)
2314 8b473291 2019-02-21 stsp goto done;
2315 8b473291 2019-02-21 stsp
2316 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
2317 8b473291 2019-02-21 stsp if (error)
2318 ecb28ae0 2018-07-16 stsp goto done;
2319 ecb28ae0 2018-07-16 stsp
2320 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_LOG);
2321 04cc582a 2018-08-01 stsp if (view == NULL) {
2322 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
2323 04cc582a 2018-08-01 stsp goto done;
2324 04cc582a 2018-08-01 stsp }
2325 2fc00ff4 2019-08-31 stsp if (worktree) {
2326 2fc00ff4 2019-08-31 stsp head_ref_name = strdup(
2327 2fc00ff4 2019-08-31 stsp got_worktree_get_head_ref_name(worktree));
2328 2fc00ff4 2019-08-31 stsp if (head_ref_name == NULL) {
2329 2fc00ff4 2019-08-31 stsp error = got_error_from_errno("strdup");
2330 2fc00ff4 2019-08-31 stsp goto done;
2331 2fc00ff4 2019-08-31 stsp }
2332 2fc00ff4 2019-08-31 stsp }
2333 2fc00ff4 2019-08-31 stsp error = open_log_view(view, start_id, &refs, repo, head_ref_name,
2334 2fc00ff4 2019-08-31 stsp path, 1);
2335 ba4f502b 2018-08-04 stsp if (error)
2336 ba4f502b 2018-08-04 stsp goto done;
2337 2fc00ff4 2019-08-31 stsp if (worktree) {
2338 2fc00ff4 2019-08-31 stsp /* Release work tree lock. */
2339 2fc00ff4 2019-08-31 stsp got_worktree_close(worktree);
2340 2fc00ff4 2019-08-31 stsp worktree = NULL;
2341 2fc00ff4 2019-08-31 stsp }
2342 e5a0f69f 2018-08-18 stsp error = view_loop(view);
2343 ecb28ae0 2018-07-16 stsp done:
2344 ecb28ae0 2018-07-16 stsp free(repo_path);
2345 ecb28ae0 2018-07-16 stsp free(cwd);
2346 ecb28ae0 2018-07-16 stsp free(path);
2347 899d86c2 2018-05-10 stsp free(start_id);
2348 2fc00ff4 2019-08-31 stsp free(head_ref_name);
2349 ecb28ae0 2018-07-16 stsp if (repo)
2350 ecb28ae0 2018-07-16 stsp got_repo_close(repo);
2351 ec142235 2019-03-07 stsp if (worktree)
2352 ec142235 2019-03-07 stsp got_worktree_close(worktree);
2353 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
2354 80ddbec8 2018-04-29 stsp return error;
2355 9f7d7167 2018-04-29 stsp }
2356 9f7d7167 2018-04-29 stsp
2357 4ed7e80c 2018-05-20 stsp __dead static void
2358 9f7d7167 2018-04-29 stsp usage_diff(void)
2359 9f7d7167 2018-04-29 stsp {
2360 80ddbec8 2018-04-29 stsp endwin();
2361 9f7d7167 2018-04-29 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
2362 9f7d7167 2018-04-29 stsp getprogname());
2363 9f7d7167 2018-04-29 stsp exit(1);
2364 b304db33 2018-05-20 stsp }
2365 b304db33 2018-05-20 stsp
2366 b304db33 2018-05-20 stsp static char *
2367 b304db33 2018-05-20 stsp parse_next_line(FILE *f, size_t *len)
2368 b304db33 2018-05-20 stsp {
2369 b304db33 2018-05-20 stsp char *line;
2370 b304db33 2018-05-20 stsp size_t linelen;
2371 b304db33 2018-05-20 stsp size_t lineno;
2372 b304db33 2018-05-20 stsp const char delim[3] = { '\0', '\0', '\0'};
2373 b304db33 2018-05-20 stsp
2374 b304db33 2018-05-20 stsp line = fparseln(f, &linelen, &lineno, delim, 0);
2375 b304db33 2018-05-20 stsp if (len)
2376 b304db33 2018-05-20 stsp *len = linelen;
2377 b304db33 2018-05-20 stsp return line;
2378 26ed57b2 2018-05-19 stsp }
2379 26ed57b2 2018-05-19 stsp
2380 4ed7e80c 2018-05-20 stsp static const struct got_error *
2381 f7d12f7e 2018-08-01 stsp draw_file(struct tog_view *view, FILE *f, int *first_displayed_line,
2382 a3404814 2018-09-02 stsp int *last_displayed_line, int *eof, int max_lines,
2383 c3e9aa98 2019-05-13 jcs char *header)
2384 26ed57b2 2018-05-19 stsp {
2385 61e69b96 2018-05-20 stsp const struct got_error *err;
2386 26ed57b2 2018-05-19 stsp int nlines = 0, nprinted = 0;
2387 b304db33 2018-05-20 stsp char *line;
2388 b304db33 2018-05-20 stsp size_t len;
2389 61e69b96 2018-05-20 stsp wchar_t *wline;
2390 e0b650dd 2018-05-20 stsp int width;
2391 26ed57b2 2018-05-19 stsp
2392 26ed57b2 2018-05-19 stsp rewind(f);
2393 f7d12f7e 2018-08-01 stsp werase(view->window);
2394 a3404814 2018-09-02 stsp
2395 a3404814 2018-09-02 stsp if (header) {
2396 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, header, view->ncols, 0);
2397 a3404814 2018-09-02 stsp if (err) {
2398 a3404814 2018-09-02 stsp return err;
2399 a3404814 2018-09-02 stsp }
2400 a3404814 2018-09-02 stsp
2401 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2402 a3404814 2018-09-02 stsp wstandout(view->window);
2403 a3404814 2018-09-02 stsp waddwstr(view->window, wline);
2404 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
2405 a3404814 2018-09-02 stsp wstandend(view->window);
2406 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
2407 a3404814 2018-09-02 stsp waddch(view->window, '\n');
2408 26ed57b2 2018-05-19 stsp
2409 a3404814 2018-09-02 stsp if (max_lines <= 1)
2410 a3404814 2018-09-02 stsp return NULL;
2411 a3404814 2018-09-02 stsp max_lines--;
2412 a3404814 2018-09-02 stsp }
2413 a3404814 2018-09-02 stsp
2414 26ed57b2 2018-05-19 stsp *eof = 0;
2415 26ed57b2 2018-05-19 stsp while (nprinted < max_lines) {
2416 b304db33 2018-05-20 stsp line = parse_next_line(f, &len);
2417 26ed57b2 2018-05-19 stsp if (line == NULL) {
2418 26ed57b2 2018-05-19 stsp *eof = 1;
2419 26ed57b2 2018-05-19 stsp break;
2420 26ed57b2 2018-05-19 stsp }
2421 26ed57b2 2018-05-19 stsp if (++nlines < *first_displayed_line) {
2422 26ed57b2 2018-05-19 stsp free(line);
2423 26ed57b2 2018-05-19 stsp continue;
2424 26ed57b2 2018-05-19 stsp }
2425 26ed57b2 2018-05-19 stsp
2426 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
2427 61e69b96 2018-05-20 stsp if (err) {
2428 61e69b96 2018-05-20 stsp free(line);
2429 61e69b96 2018-05-20 stsp return err;
2430 61e69b96 2018-05-20 stsp }
2431 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
2432 239f6369 2019-09-08 stsp if (width <= view->ncols - 1)
2433 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
2434 26ed57b2 2018-05-19 stsp if (++nprinted == 1)
2435 26ed57b2 2018-05-19 stsp *first_displayed_line = nlines;
2436 26ed57b2 2018-05-19 stsp free(line);
2437 2550e4c3 2018-07-13 stsp free(wline);
2438 2550e4c3 2018-07-13 stsp wline = NULL;
2439 26ed57b2 2018-05-19 stsp }
2440 26ed57b2 2018-05-19 stsp *last_displayed_line = nlines;
2441 26ed57b2 2018-05-19 stsp
2442 1a57306a 2018-09-02 stsp view_vborder(view);
2443 c3e9aa98 2019-05-13 jcs
2444 c3e9aa98 2019-05-13 jcs if (*eof) {
2445 c3e9aa98 2019-05-13 jcs while (nprinted < view->nlines) {
2446 c3e9aa98 2019-05-13 jcs waddch(view->window, '\n');
2447 c3e9aa98 2019-05-13 jcs nprinted++;
2448 c3e9aa98 2019-05-13 jcs }
2449 c3e9aa98 2019-05-13 jcs
2450 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, TOG_EOF_STRING, view->ncols, 0);
2451 c3e9aa98 2019-05-13 jcs if (err) {
2452 c3e9aa98 2019-05-13 jcs return err;
2453 c3e9aa98 2019-05-13 jcs }
2454 26ed57b2 2018-05-19 stsp
2455 c3e9aa98 2019-05-13 jcs wstandout(view->window);
2456 c3e9aa98 2019-05-13 jcs waddwstr(view->window, wline);
2457 c3e9aa98 2019-05-13 jcs wstandend(view->window);
2458 c3e9aa98 2019-05-13 jcs }
2459 c3e9aa98 2019-05-13 jcs
2460 26ed57b2 2018-05-19 stsp return NULL;
2461 abd2672a 2018-12-23 stsp }
2462 abd2672a 2018-12-23 stsp
2463 abd2672a 2018-12-23 stsp static char *
2464 abd2672a 2018-12-23 stsp get_datestr(time_t *time, char *datebuf)
2465 abd2672a 2018-12-23 stsp {
2466 09867e48 2019-08-13 stsp struct tm mytm, *tm;
2467 09867e48 2019-08-13 stsp char *p, *s;
2468 09867e48 2019-08-13 stsp
2469 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
2470 09867e48 2019-08-13 stsp if (tm == NULL)
2471 09867e48 2019-08-13 stsp return NULL;
2472 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
2473 09867e48 2019-08-13 stsp if (s == NULL)
2474 09867e48 2019-08-13 stsp return NULL;
2475 abd2672a 2018-12-23 stsp p = strchr(s, '\n');
2476 abd2672a 2018-12-23 stsp if (p)
2477 abd2672a 2018-12-23 stsp *p = '\0';
2478 abd2672a 2018-12-23 stsp return s;
2479 9f7d7167 2018-04-29 stsp }
2480 9f7d7167 2018-04-29 stsp
2481 4ed7e80c 2018-05-20 stsp static const struct got_error *
2482 8b473291 2019-02-21 stsp write_commit_info(struct got_object_id *commit_id,
2483 8b473291 2019-02-21 stsp struct got_reflist_head *refs, struct got_repository *repo, FILE *outfile)
2484 abd2672a 2018-12-23 stsp {
2485 abd2672a 2018-12-23 stsp const struct got_error *err = NULL;
2486 09867e48 2019-08-13 stsp char datebuf[26], *datestr;
2487 15a94983 2018-12-23 stsp struct got_commit_object *commit;
2488 5943eee2 2019-08-13 stsp char *id_str = NULL, *logmsg = NULL;
2489 45d799e2 2018-12-23 stsp time_t committer_time;
2490 45d799e2 2018-12-23 stsp const char *author, *committer;
2491 8b473291 2019-02-21 stsp char *refs_str = NULL;
2492 abd2672a 2018-12-23 stsp
2493 8b473291 2019-02-21 stsp if (refs) {
2494 52b5abe1 2019-08-13 stsp err = build_refs_str(&refs_str, refs, commit_id, repo);
2495 8b473291 2019-02-21 stsp if (err)
2496 8b473291 2019-02-21 stsp return err;
2497 8b473291 2019-02-21 stsp }
2498 8b473291 2019-02-21 stsp
2499 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
2500 abd2672a 2018-12-23 stsp if (err)
2501 abd2672a 2018-12-23 stsp return err;
2502 abd2672a 2018-12-23 stsp
2503 15a94983 2018-12-23 stsp err = got_object_id_str(&id_str, commit_id);
2504 15a94983 2018-12-23 stsp if (err) {
2505 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_str");
2506 15a94983 2018-12-23 stsp goto done;
2507 15a94983 2018-12-23 stsp }
2508 abd2672a 2018-12-23 stsp
2509 8b473291 2019-02-21 stsp if (fprintf(outfile, "commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
2510 8b473291 2019-02-21 stsp refs_str ? refs_str : "", refs_str ? ")" : "") < 0) {
2511 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2512 abd2672a 2018-12-23 stsp goto done;
2513 abd2672a 2018-12-23 stsp }
2514 45d799e2 2018-12-23 stsp if (fprintf(outfile, "from: %s\n",
2515 45d799e2 2018-12-23 stsp got_object_commit_get_author(commit)) < 0) {
2516 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2517 abd2672a 2018-12-23 stsp goto done;
2518 abd2672a 2018-12-23 stsp }
2519 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
2520 09867e48 2019-08-13 stsp datestr = get_datestr(&committer_time, datebuf);
2521 09867e48 2019-08-13 stsp if (datestr && fprintf(outfile, "date: %s UTC\n", datestr) < 0) {
2522 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2523 abd2672a 2018-12-23 stsp goto done;
2524 abd2672a 2018-12-23 stsp }
2525 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
2526 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
2527 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0 &&
2528 45d799e2 2018-12-23 stsp fprintf(outfile, "via: %s\n", committer) < 0) {
2529 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2530 abd2672a 2018-12-23 stsp goto done;
2531 abd2672a 2018-12-23 stsp }
2532 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg, commit);
2533 5943eee2 2019-08-13 stsp if (err)
2534 5943eee2 2019-08-13 stsp goto done;
2535 5943eee2 2019-08-13 stsp if (fprintf(outfile, "%s\n", logmsg) < 0) {
2536 638f9024 2019-05-13 stsp err = got_error_from_errno("fprintf");
2537 abd2672a 2018-12-23 stsp goto done;
2538 abd2672a 2018-12-23 stsp }
2539 abd2672a 2018-12-23 stsp done:
2540 abd2672a 2018-12-23 stsp free(id_str);
2541 5943eee2 2019-08-13 stsp free(logmsg);
2542 8b473291 2019-02-21 stsp free(refs_str);
2543 15a94983 2018-12-23 stsp got_object_commit_close(commit);
2544 abd2672a 2018-12-23 stsp return err;
2545 abd2672a 2018-12-23 stsp }
2546 abd2672a 2018-12-23 stsp
2547 abd2672a 2018-12-23 stsp static const struct got_error *
2548 48ae06ee 2018-10-18 stsp create_diff(struct tog_diff_view_state *s)
2549 26ed57b2 2018-05-19 stsp {
2550 48ae06ee 2018-10-18 stsp const struct got_error *err = NULL;
2551 48ae06ee 2018-10-18 stsp FILE *f = NULL;
2552 15a94983 2018-12-23 stsp int obj_type;
2553 26ed57b2 2018-05-19 stsp
2554 511a516b 2018-05-19 stsp f = got_opentemp();
2555 48ae06ee 2018-10-18 stsp if (f == NULL) {
2556 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
2557 48ae06ee 2018-10-18 stsp goto done;
2558 48ae06ee 2018-10-18 stsp }
2559 fb43ecf1 2019-02-11 stsp if (s->f && fclose(s->f) != 0) {
2560 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2561 fb43ecf1 2019-02-11 stsp goto done;
2562 fb43ecf1 2019-02-11 stsp }
2563 48ae06ee 2018-10-18 stsp s->f = f;
2564 26ed57b2 2018-05-19 stsp
2565 15a94983 2018-12-23 stsp if (s->id1)
2566 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id1);
2567 15a94983 2018-12-23 stsp else
2568 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, s->repo, s->id2);
2569 15a94983 2018-12-23 stsp if (err)
2570 15a94983 2018-12-23 stsp goto done;
2571 15a94983 2018-12-23 stsp
2572 15a94983 2018-12-23 stsp switch (obj_type) {
2573 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
2574 15a94983 2018-12-23 stsp err = got_diff_objects_as_blobs(s->id1, s->id2, NULL, NULL,
2575 54156555 2018-12-24 stsp s->diff_context, s->repo, f);
2576 26ed57b2 2018-05-19 stsp break;
2577 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
2578 54156555 2018-12-24 stsp err = got_diff_objects_as_trees(s->id1, s->id2, "", "",
2579 48ae06ee 2018-10-18 stsp s->diff_context, s->repo, f);
2580 26ed57b2 2018-05-19 stsp break;
2581 abd2672a 2018-12-23 stsp case GOT_OBJ_TYPE_COMMIT: {
2582 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
2583 abd2672a 2018-12-23 stsp struct got_object_qid *pid;
2584 abd2672a 2018-12-23 stsp struct got_commit_object *commit2;
2585 abd2672a 2018-12-23 stsp
2586 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, s->repo, s->id2);
2587 abd2672a 2018-12-23 stsp if (err)
2588 abd2672a 2018-12-23 stsp break;
2589 15a087fe 2019-02-21 stsp /* Show commit info if we're diffing to a parent/root commit. */
2590 15a087fe 2019-02-21 stsp if (s->id1 == NULL)
2591 8b473291 2019-02-21 stsp write_commit_info(s->id2, s->refs, s->repo, f);
2592 15a087fe 2019-02-21 stsp else {
2593 15a087fe 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(commit2);
2594 15a087fe 2019-02-21 stsp SIMPLEQ_FOREACH(pid, parent_ids, entry) {
2595 15a087fe 2019-02-21 stsp if (got_object_id_cmp(s->id1, pid->id) == 0) {
2596 8b473291 2019-02-21 stsp write_commit_info(s->id2, s->refs,
2597 8b473291 2019-02-21 stsp s->repo, f);
2598 15a087fe 2019-02-21 stsp break;
2599 15a087fe 2019-02-21 stsp }
2600 abd2672a 2018-12-23 stsp }
2601 abd2672a 2018-12-23 stsp }
2602 abd2672a 2018-12-23 stsp got_object_commit_close(commit2);
2603 abd2672a 2018-12-23 stsp
2604 15a94983 2018-12-23 stsp err = got_diff_objects_as_commits(s->id1, s->id2,
2605 15a94983 2018-12-23 stsp s->diff_context, s->repo, f);
2606 26ed57b2 2018-05-19 stsp break;
2607 abd2672a 2018-12-23 stsp }
2608 26ed57b2 2018-05-19 stsp default:
2609 48ae06ee 2018-10-18 stsp err = got_error(GOT_ERR_OBJ_TYPE);
2610 48ae06ee 2018-10-18 stsp break;
2611 26ed57b2 2018-05-19 stsp }
2612 48ae06ee 2018-10-18 stsp done:
2613 cbe7f848 2019-02-11 stsp if (f && fflush(f) != 0 && err == NULL)
2614 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
2615 48ae06ee 2018-10-18 stsp return err;
2616 48ae06ee 2018-10-18 stsp }
2617 26ed57b2 2018-05-19 stsp
2618 f5215bb9 2019-02-22 stsp static void
2619 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(struct tog_view *view)
2620 f5215bb9 2019-02-22 stsp {
2621 baf4288f 2019-05-13 stsp mvwaddstr(view->window, 0, 0, "diffing...");
2622 f5215bb9 2019-02-22 stsp update_panels();
2623 f5215bb9 2019-02-22 stsp doupdate();
2624 f5215bb9 2019-02-22 stsp }
2625 f5215bb9 2019-02-22 stsp
2626 48ae06ee 2018-10-18 stsp static const struct got_error *
2627 15a94983 2018-12-23 stsp open_diff_view(struct tog_view *view, struct got_object_id *id1,
2628 fb872ab2 2019-02-21 stsp struct got_object_id *id2, struct tog_view *log_view,
2629 8b473291 2019-02-21 stsp struct got_reflist_head *refs, struct got_repository *repo)
2630 48ae06ee 2018-10-18 stsp {
2631 48ae06ee 2018-10-18 stsp const struct got_error *err;
2632 5dc9f4bc 2018-08-04 stsp
2633 15a94983 2018-12-23 stsp if (id1 != NULL && id2 != NULL) {
2634 15a94983 2018-12-23 stsp int type1, type2;
2635 15a94983 2018-12-23 stsp err = got_object_get_type(&type1, repo, id1);
2636 15a94983 2018-12-23 stsp if (err)
2637 15a94983 2018-12-23 stsp return err;
2638 15a94983 2018-12-23 stsp err = got_object_get_type(&type2, repo, id2);
2639 15a94983 2018-12-23 stsp if (err)
2640 15a94983 2018-12-23 stsp return err;
2641 15a94983 2018-12-23 stsp
2642 15a94983 2018-12-23 stsp if (type1 != type2)
2643 48ae06ee 2018-10-18 stsp return got_error(GOT_ERR_OBJ_TYPE);
2644 15a94983 2018-12-23 stsp }
2645 48ae06ee 2018-10-18 stsp
2646 15a94983 2018-12-23 stsp if (id1) {
2647 15a94983 2018-12-23 stsp view->state.diff.id1 = got_object_id_dup(id1);
2648 15a94983 2018-12-23 stsp if (view->state.diff.id1 == NULL)
2649 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
2650 48ae06ee 2018-10-18 stsp } else
2651 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2652 48ae06ee 2018-10-18 stsp
2653 15a94983 2018-12-23 stsp view->state.diff.id2 = got_object_id_dup(id2);
2654 48ae06ee 2018-10-18 stsp if (view->state.diff.id2 == NULL) {
2655 48ae06ee 2018-10-18 stsp free(view->state.diff.id1);
2656 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2657 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
2658 48ae06ee 2018-10-18 stsp }
2659 48ae06ee 2018-10-18 stsp view->state.diff.f = NULL;
2660 5dc9f4bc 2018-08-04 stsp view->state.diff.first_displayed_line = 1;
2661 5dc9f4bc 2018-08-04 stsp view->state.diff.last_displayed_line = view->nlines;
2662 48ae06ee 2018-10-18 stsp view->state.diff.diff_context = 3;
2663 fb872ab2 2019-02-21 stsp view->state.diff.log_view = log_view;
2664 48ae06ee 2018-10-18 stsp view->state.diff.repo = repo;
2665 8b473291 2019-02-21 stsp view->state.diff.refs = refs;
2666 5dc9f4bc 2018-08-04 stsp
2667 f5215bb9 2019-02-22 stsp if (log_view && view_is_splitscreen(view))
2668 f5215bb9 2019-02-22 stsp show_log_view(log_view); /* draw vborder */
2669 f5215bb9 2019-02-22 stsp diff_view_indicate_progress(view);
2670 f5215bb9 2019-02-22 stsp
2671 48ae06ee 2018-10-18 stsp err = create_diff(&view->state.diff);
2672 48ae06ee 2018-10-18 stsp if (err) {
2673 48ae06ee 2018-10-18 stsp free(view->state.diff.id1);
2674 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2675 48ae06ee 2018-10-18 stsp free(view->state.diff.id2);
2676 48ae06ee 2018-10-18 stsp view->state.diff.id2 = NULL;
2677 48ae06ee 2018-10-18 stsp return err;
2678 48ae06ee 2018-10-18 stsp }
2679 48ae06ee 2018-10-18 stsp
2680 e5a0f69f 2018-08-18 stsp view->show = show_diff_view;
2681 e5a0f69f 2018-08-18 stsp view->input = input_diff_view;
2682 e5a0f69f 2018-08-18 stsp view->close = close_diff_view;
2683 e5a0f69f 2018-08-18 stsp
2684 5dc9f4bc 2018-08-04 stsp return NULL;
2685 5dc9f4bc 2018-08-04 stsp }
2686 5dc9f4bc 2018-08-04 stsp
2687 e5a0f69f 2018-08-18 stsp static const struct got_error *
2688 5dc9f4bc 2018-08-04 stsp close_diff_view(struct tog_view *view)
2689 5dc9f4bc 2018-08-04 stsp {
2690 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
2691 e5a0f69f 2018-08-18 stsp
2692 48ae06ee 2018-10-18 stsp free(view->state.diff.id1);
2693 48ae06ee 2018-10-18 stsp view->state.diff.id1 = NULL;
2694 48ae06ee 2018-10-18 stsp free(view->state.diff.id2);
2695 48ae06ee 2018-10-18 stsp view->state.diff.id2 = NULL;
2696 e5a0f69f 2018-08-18 stsp if (view->state.diff.f && fclose(view->state.diff.f) == EOF)
2697 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2698 e5a0f69f 2018-08-18 stsp return err;
2699 5dc9f4bc 2018-08-04 stsp }
2700 5dc9f4bc 2018-08-04 stsp
2701 5dc9f4bc 2018-08-04 stsp static const struct got_error *
2702 5dc9f4bc 2018-08-04 stsp show_diff_view(struct tog_view *view)
2703 5dc9f4bc 2018-08-04 stsp {
2704 a3404814 2018-09-02 stsp const struct got_error *err;
2705 fb2756b9 2018-08-04 stsp struct tog_diff_view_state *s = &view->state.diff;
2706 a3404814 2018-09-02 stsp char *id_str1 = NULL, *id_str2, *header;
2707 a3404814 2018-09-02 stsp
2708 a3404814 2018-09-02 stsp if (s->id1) {
2709 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str1, s->id1);
2710 a3404814 2018-09-02 stsp if (err)
2711 a3404814 2018-09-02 stsp return err;
2712 a3404814 2018-09-02 stsp }
2713 a3404814 2018-09-02 stsp err = got_object_id_str(&id_str2, s->id2);
2714 a3404814 2018-09-02 stsp if (err)
2715 a3404814 2018-09-02 stsp return err;
2716 26ed57b2 2018-05-19 stsp
2717 56765ebb 2018-12-23 stsp if (asprintf(&header, "diff %s %s",
2718 a3404814 2018-09-02 stsp id_str1 ? id_str1 : "/dev/null", id_str2) == -1) {
2719 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2720 a3404814 2018-09-02 stsp free(id_str1);
2721 a3404814 2018-09-02 stsp free(id_str2);
2722 a3404814 2018-09-02 stsp return err;
2723 a3404814 2018-09-02 stsp }
2724 a3404814 2018-09-02 stsp free(id_str1);
2725 a3404814 2018-09-02 stsp free(id_str2);
2726 a3404814 2018-09-02 stsp
2727 e5a0f69f 2018-08-18 stsp return draw_file(view, s->f, &s->first_displayed_line,
2728 a3404814 2018-09-02 stsp &s->last_displayed_line, &s->eof, view->nlines,
2729 a3404814 2018-09-02 stsp header);
2730 15a087fe 2019-02-21 stsp }
2731 15a087fe 2019-02-21 stsp
2732 15a087fe 2019-02-21 stsp static const struct got_error *
2733 15a087fe 2019-02-21 stsp set_selected_commit(struct tog_diff_view_state *s,
2734 15a087fe 2019-02-21 stsp struct commit_queue_entry *entry)
2735 15a087fe 2019-02-21 stsp {
2736 d7a04538 2019-02-21 stsp const struct got_error *err;
2737 d7a04538 2019-02-21 stsp const struct got_object_id_queue *parent_ids;
2738 d7a04538 2019-02-21 stsp struct got_commit_object *selected_commit;
2739 d7a04538 2019-02-21 stsp struct got_object_qid *pid;
2740 15a087fe 2019-02-21 stsp
2741 15a087fe 2019-02-21 stsp free(s->id2);
2742 15a087fe 2019-02-21 stsp s->id2 = got_object_id_dup(entry->id);
2743 15a087fe 2019-02-21 stsp if (s->id2 == NULL)
2744 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
2745 15a087fe 2019-02-21 stsp
2746 d7a04538 2019-02-21 stsp err = got_object_open_as_commit(&selected_commit, s->repo, entry->id);
2747 d7a04538 2019-02-21 stsp if (err)
2748 d7a04538 2019-02-21 stsp return err;
2749 d7a04538 2019-02-21 stsp parent_ids = got_object_commit_get_parent_ids(selected_commit);
2750 15a087fe 2019-02-21 stsp free(s->id1);
2751 d7a04538 2019-02-21 stsp pid = SIMPLEQ_FIRST(parent_ids);
2752 d7a04538 2019-02-21 stsp s->id1 = pid ? got_object_id_dup(pid->id) : NULL;
2753 0311546b 2019-02-21 stsp got_object_commit_close(selected_commit);
2754 15a087fe 2019-02-21 stsp return NULL;
2755 0cf4efb1 2018-09-29 stsp }
2756 0cf4efb1 2018-09-29 stsp
2757 0cf4efb1 2018-09-29 stsp static const struct got_error *
2758 bcbd79e2 2018-08-19 stsp input_diff_view(struct tog_view **new_view, struct tog_view **dead_view,
2759 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
2760 e5a0f69f 2018-08-18 stsp {
2761 bcbd79e2 2018-08-19 stsp const struct got_error *err = NULL;
2762 e5a0f69f 2018-08-18 stsp struct tog_diff_view_state *s = &view->state.diff;
2763 fb872ab2 2019-02-21 stsp struct tog_log_view_state *ls;
2764 fb872ab2 2019-02-21 stsp struct commit_queue_entry *entry;
2765 e5a0f69f 2018-08-18 stsp int i;
2766 e5a0f69f 2018-08-18 stsp
2767 e5a0f69f 2018-08-18 stsp switch (ch) {
2768 1e37a5c2 2019-05-12 jcs case 'k':
2769 1e37a5c2 2019-05-12 jcs case KEY_UP:
2770 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > 1)
2771 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
2772 1e37a5c2 2019-05-12 jcs break;
2773 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
2774 a60a9dc4 2019-05-13 jcs case CTRL('b'):
2775 00ba99a7 2019-05-12 jcs if (s->first_displayed_line == 1)
2776 26ed57b2 2018-05-19 stsp break;
2777 1e37a5c2 2019-05-12 jcs i = 0;
2778 1e37a5c2 2019-05-12 jcs while (i++ < view->nlines - 1 &&
2779 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
2780 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
2781 1e37a5c2 2019-05-12 jcs break;
2782 1e37a5c2 2019-05-12 jcs case 'j':
2783 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
2784 1e37a5c2 2019-05-12 jcs if (!s->eof)
2785 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
2786 1e37a5c2 2019-05-12 jcs break;
2787 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
2788 a60a9dc4 2019-05-13 jcs case CTRL('f'):
2789 1e37a5c2 2019-05-12 jcs case ' ':
2790 00ba99a7 2019-05-12 jcs if (s->eof)
2791 1e37a5c2 2019-05-12 jcs break;
2792 1e37a5c2 2019-05-12 jcs i = 0;
2793 1e37a5c2 2019-05-12 jcs while (!s->eof && i++ < view->nlines - 1) {
2794 1e37a5c2 2019-05-12 jcs char *line;
2795 1e37a5c2 2019-05-12 jcs line = parse_next_line(s->f, NULL);
2796 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
2797 1e37a5c2 2019-05-12 jcs if (line == NULL)
2798 34bc9ec9 2019-02-22 stsp break;
2799 1e37a5c2 2019-05-12 jcs }
2800 1e37a5c2 2019-05-12 jcs break;
2801 1e37a5c2 2019-05-12 jcs case '[':
2802 1e37a5c2 2019-05-12 jcs if (s->diff_context > 0) {
2803 1e37a5c2 2019-05-12 jcs s->diff_context--;
2804 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2805 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2806 1e37a5c2 2019-05-12 jcs }
2807 1e37a5c2 2019-05-12 jcs break;
2808 1e37a5c2 2019-05-12 jcs case ']':
2809 1e37a5c2 2019-05-12 jcs if (s->diff_context < GOT_DIFF_MAX_CONTEXT) {
2810 1e37a5c2 2019-05-12 jcs s->diff_context++;
2811 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2812 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2813 1e37a5c2 2019-05-12 jcs }
2814 1e37a5c2 2019-05-12 jcs break;
2815 1e37a5c2 2019-05-12 jcs case '<':
2816 1e37a5c2 2019-05-12 jcs case ',':
2817 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
2818 48ae06ee 2018-10-18 stsp break;
2819 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
2820 1e37a5c2 2019-05-12 jcs entry = TAILQ_PREV(ls->selected_entry,
2821 1e37a5c2 2019-05-12 jcs commit_queue_head, entry);
2822 1e37a5c2 2019-05-12 jcs if (entry == NULL)
2823 48ae06ee 2018-10-18 stsp break;
2824 6524637e 2019-02-21 stsp
2825 1e37a5c2 2019-05-12 jcs err = input_log_view(NULL, NULL, NULL, s->log_view,
2826 1e37a5c2 2019-05-12 jcs KEY_UP);
2827 1e37a5c2 2019-05-12 jcs if (err)
2828 1e37a5c2 2019-05-12 jcs break;
2829 15a087fe 2019-02-21 stsp
2830 1e37a5c2 2019-05-12 jcs err = set_selected_commit(s, entry);
2831 1e37a5c2 2019-05-12 jcs if (err)
2832 1e37a5c2 2019-05-12 jcs break;
2833 15a087fe 2019-02-21 stsp
2834 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
2835 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
2836 15a087fe 2019-02-21 stsp
2837 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2838 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2839 1e37a5c2 2019-05-12 jcs break;
2840 1e37a5c2 2019-05-12 jcs case '>':
2841 1e37a5c2 2019-05-12 jcs case '.':
2842 1e37a5c2 2019-05-12 jcs if (s->log_view == NULL)
2843 15a087fe 2019-02-21 stsp break;
2844 1e37a5c2 2019-05-12 jcs ls = &s->log_view->state.log;
2845 5e224a3e 2019-02-22 stsp
2846 1e37a5c2 2019-05-12 jcs if (TAILQ_NEXT(ls->selected_entry, entry) == NULL) {
2847 1e37a5c2 2019-05-12 jcs ls->thread_args.commits_needed++;
2848 5e224a3e 2019-02-22 stsp
2849 1e37a5c2 2019-05-12 jcs /* Display "loading..." in log view. */
2850 1e37a5c2 2019-05-12 jcs show_log_view(s->log_view);
2851 1e37a5c2 2019-05-12 jcs update_panels();
2852 1e37a5c2 2019-05-12 jcs doupdate();
2853 6e73b0d6 2019-02-22 stsp
2854 1e37a5c2 2019-05-12 jcs err = trigger_log_thread(1 /* load_all */,
2855 1e37a5c2 2019-05-12 jcs &ls->thread_args.commits_needed,
2856 1e37a5c2 2019-05-12 jcs &ls->thread_args.log_complete,
2857 1e37a5c2 2019-05-12 jcs &ls->thread_args.need_commits);
2858 fb872ab2 2019-02-21 stsp if (err)
2859 fb872ab2 2019-02-21 stsp break;
2860 1e37a5c2 2019-05-12 jcs }
2861 1e37a5c2 2019-05-12 jcs err = input_log_view(NULL, NULL, NULL, s->log_view,
2862 1e37a5c2 2019-05-12 jcs KEY_DOWN);
2863 1e37a5c2 2019-05-12 jcs if (err)
2864 1e37a5c2 2019-05-12 jcs break;
2865 15a087fe 2019-02-21 stsp
2866 1e37a5c2 2019-05-12 jcs entry = TAILQ_NEXT(ls->selected_entry, entry);
2867 1e37a5c2 2019-05-12 jcs if (entry == NULL)
2868 1e37a5c2 2019-05-12 jcs break;
2869 15a087fe 2019-02-21 stsp
2870 1e37a5c2 2019-05-12 jcs err = set_selected_commit(s, entry);
2871 1e37a5c2 2019-05-12 jcs if (err)
2872 1e37a5c2 2019-05-12 jcs break;
2873 15a087fe 2019-02-21 stsp
2874 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
2875 1e37a5c2 2019-05-12 jcs s->last_displayed_line = view->nlines;
2876 1e37a5c2 2019-05-12 jcs
2877 1e37a5c2 2019-05-12 jcs diff_view_indicate_progress(view);
2878 1e37a5c2 2019-05-12 jcs err = create_diff(s);
2879 1e37a5c2 2019-05-12 jcs break;
2880 1e37a5c2 2019-05-12 jcs default:
2881 1e37a5c2 2019-05-12 jcs break;
2882 26ed57b2 2018-05-19 stsp }
2883 e5a0f69f 2018-08-18 stsp
2884 bcbd79e2 2018-08-19 stsp return err;
2885 26ed57b2 2018-05-19 stsp }
2886 26ed57b2 2018-05-19 stsp
2887 4ed7e80c 2018-05-20 stsp static const struct got_error *
2888 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
2889 9f7d7167 2018-04-29 stsp {
2890 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
2891 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
2892 8b473291 2019-02-21 stsp struct got_reflist_head refs;
2893 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
2894 26ed57b2 2018-05-19 stsp char *repo_path = NULL;
2895 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
2896 26ed57b2 2018-05-19 stsp int ch;
2897 ea5e7bb5 2018-08-01 stsp struct tog_view *view;
2898 70ac5f84 2019-03-28 stsp
2899 70ac5f84 2019-03-28 stsp SIMPLEQ_INIT(&refs);
2900 26ed57b2 2018-05-19 stsp
2901 26ed57b2 2018-05-19 stsp #ifndef PROFILE
2902 eb6600df 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
2903 eb6600df 2019-01-04 stsp NULL) == -1)
2904 26ed57b2 2018-05-19 stsp err(1, "pledge");
2905 26ed57b2 2018-05-19 stsp #endif
2906 26ed57b2 2018-05-19 stsp
2907 26ed57b2 2018-05-19 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2908 26ed57b2 2018-05-19 stsp switch (ch) {
2909 26ed57b2 2018-05-19 stsp default:
2910 17020d27 2019-03-07 stsp usage_diff();
2911 26ed57b2 2018-05-19 stsp /* NOTREACHED */
2912 26ed57b2 2018-05-19 stsp }
2913 26ed57b2 2018-05-19 stsp }
2914 26ed57b2 2018-05-19 stsp
2915 26ed57b2 2018-05-19 stsp argc -= optind;
2916 26ed57b2 2018-05-19 stsp argv += optind;
2917 26ed57b2 2018-05-19 stsp
2918 26ed57b2 2018-05-19 stsp if (argc == 0) {
2919 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
2920 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
2921 26ed57b2 2018-05-19 stsp repo_path = getcwd(NULL, 0);
2922 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
2923 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
2924 15a94983 2018-12-23 stsp id_str1 = argv[0];
2925 15a94983 2018-12-23 stsp id_str2 = argv[1];
2926 26ed57b2 2018-05-19 stsp } else if (argc == 3) {
2927 26ed57b2 2018-05-19 stsp repo_path = realpath(argv[0], NULL);
2928 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
2929 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
2930 15a94983 2018-12-23 stsp id_str1 = argv[1];
2931 15a94983 2018-12-23 stsp id_str2 = argv[2];
2932 26ed57b2 2018-05-19 stsp } else
2933 26ed57b2 2018-05-19 stsp usage_diff();
2934 a915003a 2019-02-05 stsp
2935 a915003a 2019-02-05 stsp init_curses();
2936 eb6600df 2019-01-04 stsp
2937 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2938 eb6600df 2019-01-04 stsp if (error)
2939 eb6600df 2019-01-04 stsp goto done;
2940 26ed57b2 2018-05-19 stsp
2941 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
2942 26ed57b2 2018-05-19 stsp if (error)
2943 26ed57b2 2018-05-19 stsp goto done;
2944 26ed57b2 2018-05-19 stsp
2945 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&id1, id_str1,
2946 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_ANY, repo);
2947 26ed57b2 2018-05-19 stsp if (error)
2948 26ed57b2 2018-05-19 stsp goto done;
2949 26ed57b2 2018-05-19 stsp
2950 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&id2, id_str2,
2951 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_ANY, repo);
2952 26ed57b2 2018-05-19 stsp if (error)
2953 26ed57b2 2018-05-19 stsp goto done;
2954 26ed57b2 2018-05-19 stsp
2955 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
2956 8b473291 2019-02-21 stsp if (error)
2957 8b473291 2019-02-21 stsp goto done;
2958 8b473291 2019-02-21 stsp
2959 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_DIFF);
2960 ea5e7bb5 2018-08-01 stsp if (view == NULL) {
2961 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
2962 ea5e7bb5 2018-08-01 stsp goto done;
2963 ea5e7bb5 2018-08-01 stsp }
2964 8b473291 2019-02-21 stsp error = open_diff_view(view, id1, id2, NULL, &refs, repo);
2965 5dc9f4bc 2018-08-04 stsp if (error)
2966 5dc9f4bc 2018-08-04 stsp goto done;
2967 e5a0f69f 2018-08-18 stsp error = view_loop(view);
2968 26ed57b2 2018-05-19 stsp done:
2969 c02c541e 2019-03-29 stsp free(repo_path);
2970 921be706 2019-06-28 stsp if (repo)
2971 921be706 2019-06-28 stsp got_repo_close(repo);
2972 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
2973 26ed57b2 2018-05-19 stsp return error;
2974 9f7d7167 2018-04-29 stsp }
2975 9f7d7167 2018-04-29 stsp
2976 4ed7e80c 2018-05-20 stsp __dead static void
2977 9f7d7167 2018-04-29 stsp usage_blame(void)
2978 9f7d7167 2018-04-29 stsp {
2979 80ddbec8 2018-04-29 stsp endwin();
2980 69069811 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
2981 9f7d7167 2018-04-29 stsp getprogname());
2982 9f7d7167 2018-04-29 stsp exit(1);
2983 9f7d7167 2018-04-29 stsp }
2984 84451b3e 2018-07-10 stsp
2985 84451b3e 2018-07-10 stsp struct tog_blame_line {
2986 84451b3e 2018-07-10 stsp int annotated;
2987 84451b3e 2018-07-10 stsp struct got_object_id *id;
2988 84451b3e 2018-07-10 stsp };
2989 9f7d7167 2018-04-29 stsp
2990 4ed7e80c 2018-05-20 stsp static const struct got_error *
2991 f7d12f7e 2018-08-01 stsp draw_blame(struct tog_view *view, struct got_object_id *id, FILE *f,
2992 f7d12f7e 2018-08-01 stsp const char *path, struct tog_blame_line *lines, int nlines,
2993 f7d12f7e 2018-08-01 stsp int blame_complete, int selected_line, int *first_displayed_line,
2994 f7d12f7e 2018-08-01 stsp int *last_displayed_line, int *eof, int max_lines)
2995 84451b3e 2018-07-10 stsp {
2996 84451b3e 2018-07-10 stsp const struct got_error *err;
2997 84451b3e 2018-07-10 stsp int lineno = 0, nprinted = 0;
2998 84451b3e 2018-07-10 stsp char *line;
2999 84451b3e 2018-07-10 stsp size_t len;
3000 84451b3e 2018-07-10 stsp wchar_t *wline;
3001 27a741e5 2019-09-11 stsp int width;
3002 84451b3e 2018-07-10 stsp struct tog_blame_line *blame_line;
3003 ee41ec32 2018-07-10 stsp struct got_object_id *prev_id = NULL;
3004 ab089a2a 2018-07-12 stsp char *id_str;
3005 ab089a2a 2018-07-12 stsp
3006 ab089a2a 2018-07-12 stsp err = got_object_id_str(&id_str, id);
3007 ab089a2a 2018-07-12 stsp if (err)
3008 ab089a2a 2018-07-12 stsp return err;
3009 84451b3e 2018-07-10 stsp
3010 84451b3e 2018-07-10 stsp rewind(f);
3011 f7d12f7e 2018-08-01 stsp werase(view->window);
3012 84451b3e 2018-07-10 stsp
3013 c1124f18 2018-12-23 stsp if (asprintf(&line, "commit %s", id_str) == -1) {
3014 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3015 ab089a2a 2018-07-12 stsp free(id_str);
3016 ab089a2a 2018-07-12 stsp return err;
3017 ab089a2a 2018-07-12 stsp }
3018 ab089a2a 2018-07-12 stsp
3019 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3020 ab089a2a 2018-07-12 stsp free(line);
3021 2550e4c3 2018-07-13 stsp line = NULL;
3022 1cae65b4 2019-09-22 stsp if (err)
3023 1cae65b4 2019-09-22 stsp return err;
3024 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3025 a3404814 2018-09-02 stsp wstandout(view->window);
3026 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3027 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3028 a3404814 2018-09-02 stsp wstandend(view->window);
3029 2550e4c3 2018-07-13 stsp free(wline);
3030 2550e4c3 2018-07-13 stsp wline = NULL;
3031 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3032 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3033 ab089a2a 2018-07-12 stsp
3034 084063cd 2018-07-12 stsp if (asprintf(&line, "[%d/%d] %s%s",
3035 084063cd 2018-07-12 stsp *first_displayed_line - 1 + selected_line, nlines,
3036 512d0df1 2019-02-22 stsp blame_complete ? "" : "annotating... ", path) == -1) {
3037 ab089a2a 2018-07-12 stsp free(id_str);
3038 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3039 ab089a2a 2018-07-12 stsp }
3040 ab089a2a 2018-07-12 stsp free(id_str);
3041 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3042 3f60a8ef 2018-07-10 stsp free(line);
3043 2550e4c3 2018-07-13 stsp line = NULL;
3044 3f60a8ef 2018-07-10 stsp if (err)
3045 3f60a8ef 2018-07-10 stsp return err;
3046 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3047 2550e4c3 2018-07-13 stsp free(wline);
3048 2550e4c3 2018-07-13 stsp wline = NULL;
3049 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3050 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3051 3f60a8ef 2018-07-10 stsp
3052 84451b3e 2018-07-10 stsp *eof = 0;
3053 ab089a2a 2018-07-12 stsp while (nprinted < max_lines - 2) {
3054 84451b3e 2018-07-10 stsp line = parse_next_line(f, &len);
3055 84451b3e 2018-07-10 stsp if (line == NULL) {
3056 84451b3e 2018-07-10 stsp *eof = 1;
3057 84451b3e 2018-07-10 stsp break;
3058 84451b3e 2018-07-10 stsp }
3059 84451b3e 2018-07-10 stsp if (++lineno < *first_displayed_line) {
3060 84451b3e 2018-07-10 stsp free(line);
3061 84451b3e 2018-07-10 stsp continue;
3062 84451b3e 2018-07-10 stsp }
3063 84451b3e 2018-07-10 stsp
3064 27a741e5 2019-09-11 stsp if (view->ncols <= 9) {
3065 27a741e5 2019-09-11 stsp width = 9;
3066 27a741e5 2019-09-11 stsp wline = wcsdup(L"");
3067 27a741e5 2019-09-11 stsp if (wline == NULL)
3068 27a741e5 2019-09-11 stsp err = got_error_from_errno("wcsdup");
3069 27a741e5 2019-09-11 stsp } else {
3070 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line,
3071 27a741e5 2019-09-11 stsp view->ncols - 9, 9);
3072 27a741e5 2019-09-11 stsp width += 9;
3073 27a741e5 2019-09-11 stsp }
3074 84451b3e 2018-07-10 stsp if (err) {
3075 84451b3e 2018-07-10 stsp free(line);
3076 84451b3e 2018-07-10 stsp return err;
3077 84451b3e 2018-07-10 stsp }
3078 84451b3e 2018-07-10 stsp
3079 0cf4efb1 2018-09-29 stsp if (view->focussed && nprinted == selected_line - 1)
3080 f7d12f7e 2018-08-01 stsp wstandout(view->window);
3081 b700b5d6 2018-07-10 stsp
3082 8d0fe45a 2019-08-12 stsp if (nlines > 0) {
3083 8d0fe45a 2019-08-12 stsp blame_line = &lines[lineno - 1];
3084 8d0fe45a 2019-08-12 stsp if (blame_line->annotated && prev_id &&
3085 27a741e5 2019-09-11 stsp got_object_id_cmp(prev_id, blame_line->id) == 0 &&
3086 27a741e5 2019-09-11 stsp !(view->focussed &&
3087 27a741e5 2019-09-11 stsp nprinted == selected_line - 1)) {
3088 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
3089 27a741e5 2019-09-11 stsp } else if (blame_line->annotated) {
3090 8d0fe45a 2019-08-12 stsp char *id_str;
3091 8d0fe45a 2019-08-12 stsp err = got_object_id_str(&id_str, blame_line->id);
3092 8d0fe45a 2019-08-12 stsp if (err) {
3093 8d0fe45a 2019-08-12 stsp free(line);
3094 8d0fe45a 2019-08-12 stsp free(wline);
3095 8d0fe45a 2019-08-12 stsp return err;
3096 8d0fe45a 2019-08-12 stsp }
3097 27a741e5 2019-09-11 stsp wprintw(view->window, "%.8s", id_str);
3098 8d0fe45a 2019-08-12 stsp free(id_str);
3099 8d0fe45a 2019-08-12 stsp prev_id = blame_line->id;
3100 8d0fe45a 2019-08-12 stsp } else {
3101 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
3102 8d0fe45a 2019-08-12 stsp prev_id = NULL;
3103 84451b3e 2018-07-10 stsp }
3104 ee41ec32 2018-07-10 stsp } else {
3105 27a741e5 2019-09-11 stsp waddstr(view->window, "........");
3106 ee41ec32 2018-07-10 stsp prev_id = NULL;
3107 ee41ec32 2018-07-10 stsp }
3108 84451b3e 2018-07-10 stsp
3109 0cf4efb1 2018-09-29 stsp if (view->focussed && nprinted == selected_line - 1)
3110 f7d12f7e 2018-08-01 stsp wstandend(view->window);
3111 27a741e5 2019-09-11 stsp waddstr(view->window, " ");
3112 27a741e5 2019-09-11 stsp
3113 27a741e5 2019-09-11 stsp waddwstr(view->window, wline);
3114 27a741e5 2019-09-11 stsp if (width <= view->ncols - 1)
3115 27a741e5 2019-09-11 stsp waddch(view->window, '\n');
3116 84451b3e 2018-07-10 stsp if (++nprinted == 1)
3117 84451b3e 2018-07-10 stsp *first_displayed_line = lineno;
3118 84451b3e 2018-07-10 stsp free(line);
3119 2550e4c3 2018-07-13 stsp free(wline);
3120 2550e4c3 2018-07-13 stsp wline = NULL;
3121 84451b3e 2018-07-10 stsp }
3122 84451b3e 2018-07-10 stsp *last_displayed_line = lineno;
3123 84451b3e 2018-07-10 stsp
3124 1a57306a 2018-09-02 stsp view_vborder(view);
3125 84451b3e 2018-07-10 stsp
3126 84451b3e 2018-07-10 stsp return NULL;
3127 84451b3e 2018-07-10 stsp }
3128 84451b3e 2018-07-10 stsp
3129 84451b3e 2018-07-10 stsp static const struct got_error *
3130 84451b3e 2018-07-10 stsp blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
3131 84451b3e 2018-07-10 stsp {
3132 84451b3e 2018-07-10 stsp const struct got_error *err = NULL;
3133 84451b3e 2018-07-10 stsp struct tog_blame_cb_args *a = arg;
3134 84451b3e 2018-07-10 stsp struct tog_blame_line *line;
3135 1a76625f 2018-10-22 stsp int errcode;
3136 84451b3e 2018-07-10 stsp
3137 d68a0a7d 2018-07-10 stsp if (nlines != a->nlines ||
3138 d68a0a7d 2018-07-10 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
3139 84451b3e 2018-07-10 stsp return got_error(GOT_ERR_RANGE);
3140 84451b3e 2018-07-10 stsp
3141 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3142 1a76625f 2018-10-22 stsp if (errcode)
3143 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_mutex_lock");
3144 84451b3e 2018-07-10 stsp
3145 18430de3 2018-07-10 stsp if (*a->quit) { /* user has quit the blame view */
3146 d68a0a7d 2018-07-10 stsp err = got_error(GOT_ERR_ITER_COMPLETED);
3147 d68a0a7d 2018-07-10 stsp goto done;
3148 d68a0a7d 2018-07-10 stsp }
3149 d68a0a7d 2018-07-10 stsp
3150 d68a0a7d 2018-07-10 stsp if (lineno == -1)
3151 d68a0a7d 2018-07-10 stsp goto done; /* no change in this commit */
3152 d68a0a7d 2018-07-10 stsp
3153 84451b3e 2018-07-10 stsp line = &a->lines[lineno - 1];
3154 d68a0a7d 2018-07-10 stsp if (line->annotated)
3155 d68a0a7d 2018-07-10 stsp goto done;
3156 d68a0a7d 2018-07-10 stsp
3157 84451b3e 2018-07-10 stsp line->id = got_object_id_dup(id);
3158 84451b3e 2018-07-10 stsp if (line->id == NULL) {
3159 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3160 84451b3e 2018-07-10 stsp goto done;
3161 84451b3e 2018-07-10 stsp }
3162 84451b3e 2018-07-10 stsp line->annotated = 1;
3163 84451b3e 2018-07-10 stsp done:
3164 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3165 1a76625f 2018-10-22 stsp if (errcode)
3166 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3167 84451b3e 2018-07-10 stsp return err;
3168 84451b3e 2018-07-10 stsp }
3169 84451b3e 2018-07-10 stsp
3170 84451b3e 2018-07-10 stsp static void *
3171 84451b3e 2018-07-10 stsp blame_thread(void *arg)
3172 84451b3e 2018-07-10 stsp {
3173 18430de3 2018-07-10 stsp const struct got_error *err;
3174 18430de3 2018-07-10 stsp struct tog_blame_thread_args *ta = arg;
3175 245d91c1 2018-07-12 stsp struct tog_blame_cb_args *a = ta->cb_args;
3176 1a76625f 2018-10-22 stsp int errcode;
3177 18430de3 2018-07-10 stsp
3178 0d8ff7d5 2019-08-14 stsp err = got_blame(ta->path, a->commit_id, ta->repo,
3179 fc06ba56 2019-08-22 stsp blame_cb, ta->cb_args, ta->cancel_cb, ta->cancel_arg);
3180 fc06ba56 2019-08-22 stsp if (err && err->code == GOT_ERR_CANCELLED)
3181 fc06ba56 2019-08-22 stsp err = NULL;
3182 18430de3 2018-07-10 stsp
3183 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3184 1a76625f 2018-10-22 stsp if (errcode)
3185 2af4a041 2019-05-11 jcs return (void *)got_error_set_errno(errcode,
3186 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3187 18430de3 2018-07-10 stsp
3188 c9beca56 2018-07-22 stsp got_repo_close(ta->repo);
3189 c9beca56 2018-07-22 stsp ta->repo = NULL;
3190 c9beca56 2018-07-22 stsp *ta->complete = 1;
3191 18430de3 2018-07-10 stsp
3192 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3193 1a76625f 2018-10-22 stsp if (errcode && err == NULL)
3194 2af4a041 2019-05-11 jcs err = got_error_set_errno(errcode, "pthread_mutex_unlock");
3195 18430de3 2018-07-10 stsp
3196 18430de3 2018-07-10 stsp return (void *)err;
3197 84451b3e 2018-07-10 stsp }
3198 84451b3e 2018-07-10 stsp
3199 245d91c1 2018-07-12 stsp static struct got_object_id *
3200 8d0fe45a 2019-08-12 stsp get_selected_commit_id(struct tog_blame_line *lines, int nlines,
3201 8d0fe45a 2019-08-12 stsp int first_displayed_line, int selected_line)
3202 245d91c1 2018-07-12 stsp {
3203 245d91c1 2018-07-12 stsp struct tog_blame_line *line;
3204 8d0fe45a 2019-08-12 stsp
3205 8d0fe45a 2019-08-12 stsp if (nlines <= 0)
3206 8d0fe45a 2019-08-12 stsp return NULL;
3207 b880a918 2018-07-10 stsp
3208 245d91c1 2018-07-12 stsp line = &lines[first_displayed_line - 1 + selected_line - 1];
3209 245d91c1 2018-07-12 stsp if (!line->annotated)
3210 245d91c1 2018-07-12 stsp return NULL;
3211 245d91c1 2018-07-12 stsp
3212 245d91c1 2018-07-12 stsp return line->id;
3213 b880a918 2018-07-10 stsp }
3214 245d91c1 2018-07-12 stsp
3215 b880a918 2018-07-10 stsp static const struct got_error *
3216 245d91c1 2018-07-12 stsp stop_blame(struct tog_blame *blame)
3217 a70480e0 2018-06-23 stsp {
3218 a70480e0 2018-06-23 stsp const struct got_error *err = NULL;
3219 245d91c1 2018-07-12 stsp int i;
3220 245d91c1 2018-07-12 stsp
3221 245d91c1 2018-07-12 stsp if (blame->thread) {
3222 1a76625f 2018-10-22 stsp int errcode;
3223 1a76625f 2018-10-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3224 1a76625f 2018-10-22 stsp if (errcode)
3225 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3226 2af4a041 2019-05-11 jcs "pthread_mutex_unlock");
3227 1a76625f 2018-10-22 stsp errcode = pthread_join(blame->thread, (void **)&err);
3228 1a76625f 2018-10-22 stsp if (errcode)
3229 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_join");
3230 1a76625f 2018-10-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3231 1a76625f 2018-10-22 stsp if (errcode)
3232 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode,
3233 2af4a041 2019-05-11 jcs "pthread_mutex_lock");
3234 245d91c1 2018-07-12 stsp if (err && err->code == GOT_ERR_ITER_COMPLETED)
3235 245d91c1 2018-07-12 stsp err = NULL;
3236 245d91c1 2018-07-12 stsp blame->thread = NULL;
3237 245d91c1 2018-07-12 stsp }
3238 245d91c1 2018-07-12 stsp if (blame->thread_args.repo) {
3239 245d91c1 2018-07-12 stsp got_repo_close(blame->thread_args.repo);
3240 245d91c1 2018-07-12 stsp blame->thread_args.repo = NULL;
3241 245d91c1 2018-07-12 stsp }
3242 245d91c1 2018-07-12 stsp if (blame->f) {
3243 fb43ecf1 2019-02-11 stsp if (fclose(blame->f) != 0 && err == NULL)
3244 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
3245 245d91c1 2018-07-12 stsp blame->f = NULL;
3246 245d91c1 2018-07-12 stsp }
3247 57670559 2018-12-23 stsp if (blame->lines) {
3248 57670559 2018-12-23 stsp for (i = 0; i < blame->nlines; i++)
3249 57670559 2018-12-23 stsp free(blame->lines[i].id);
3250 57670559 2018-12-23 stsp free(blame->lines);
3251 57670559 2018-12-23 stsp blame->lines = NULL;
3252 57670559 2018-12-23 stsp }
3253 75c32340 2018-07-23 stsp free(blame->cb_args.commit_id);
3254 75c32340 2018-07-23 stsp blame->cb_args.commit_id = NULL;
3255 245d91c1 2018-07-12 stsp
3256 245d91c1 2018-07-12 stsp return err;
3257 245d91c1 2018-07-12 stsp }
3258 245d91c1 2018-07-12 stsp
3259 245d91c1 2018-07-12 stsp static const struct got_error *
3260 fc06ba56 2019-08-22 stsp cancel_blame_view(void *arg)
3261 fc06ba56 2019-08-22 stsp {
3262 fc06ba56 2019-08-22 stsp const struct got_error *err = NULL;
3263 fc06ba56 2019-08-22 stsp int *done = arg;
3264 fc06ba56 2019-08-22 stsp int errcode;
3265 fc06ba56 2019-08-22 stsp
3266 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_lock(&tog_mutex);
3267 fc06ba56 2019-08-22 stsp if (errcode)
3268 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
3269 fc06ba56 2019-08-22 stsp "pthread_mutex_unlock");
3270 fc06ba56 2019-08-22 stsp
3271 fc06ba56 2019-08-22 stsp if (*done)
3272 fc06ba56 2019-08-22 stsp err = got_error(GOT_ERR_CANCELLED);
3273 fc06ba56 2019-08-22 stsp
3274 fc06ba56 2019-08-22 stsp errcode = pthread_mutex_unlock(&tog_mutex);
3275 fc06ba56 2019-08-22 stsp if (errcode)
3276 fc06ba56 2019-08-22 stsp return got_error_set_errno(errcode,
3277 fc06ba56 2019-08-22 stsp "pthread_mutex_lock");
3278 fc06ba56 2019-08-22 stsp
3279 fc06ba56 2019-08-22 stsp return err;
3280 fc06ba56 2019-08-22 stsp }
3281 fc06ba56 2019-08-22 stsp
3282 fc06ba56 2019-08-22 stsp static const struct got_error *
3283 1a76625f 2018-10-22 stsp run_blame(struct tog_blame *blame, struct tog_view *view, int *blame_complete,
3284 1a76625f 2018-10-22 stsp int *first_displayed_line, int *last_displayed_line, int *selected_line,
3285 1a76625f 2018-10-22 stsp int *done, int *eof, const char *path, struct got_object_id *commit_id,
3286 245d91c1 2018-07-12 stsp struct got_repository *repo)
3287 245d91c1 2018-07-12 stsp {
3288 245d91c1 2018-07-12 stsp const struct got_error *err = NULL;
3289 84451b3e 2018-07-10 stsp struct got_blob_object *blob = NULL;
3290 245d91c1 2018-07-12 stsp struct got_repository *thread_repo = NULL;
3291 27d434c2 2018-09-15 stsp struct got_object_id *obj_id = NULL;
3292 15a94983 2018-12-23 stsp int obj_type;
3293 a70480e0 2018-06-23 stsp
3294 27d434c2 2018-09-15 stsp err = got_object_id_by_path(&obj_id, repo, commit_id, path);
3295 27d434c2 2018-09-15 stsp if (err)
3296 15a94983 2018-12-23 stsp return err;
3297 15a94983 2018-12-23 stsp if (obj_id == NULL)
3298 15a94983 2018-12-23 stsp return got_error(GOT_ERR_NO_OBJ);
3299 27d434c2 2018-09-15 stsp
3300 15a94983 2018-12-23 stsp err = got_object_get_type(&obj_type, repo, obj_id);
3301 84451b3e 2018-07-10 stsp if (err)
3302 84451b3e 2018-07-10 stsp goto done;
3303 27d434c2 2018-09-15 stsp
3304 15a94983 2018-12-23 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
3305 84451b3e 2018-07-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
3306 84451b3e 2018-07-10 stsp goto done;
3307 84451b3e 2018-07-10 stsp }
3308 a70480e0 2018-06-23 stsp
3309 15a94983 2018-12-23 stsp err = got_object_open_as_blob(&blob, repo, obj_id, 8192);
3310 a70480e0 2018-06-23 stsp if (err)
3311 a70480e0 2018-06-23 stsp goto done;
3312 245d91c1 2018-07-12 stsp blame->f = got_opentemp();
3313 245d91c1 2018-07-12 stsp if (blame->f == NULL) {
3314 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
3315 84451b3e 2018-07-10 stsp goto done;
3316 84451b3e 2018-07-10 stsp }
3317 245d91c1 2018-07-12 stsp err = got_object_blob_dump_to_file(&blame->filesize, &blame->nlines,
3318 6c4c42e0 2019-06-24 stsp &blame->line_offsets, blame->f, blob);
3319 b02560ec 2019-08-19 stsp if (err || blame->nlines == 0)
3320 84451b3e 2018-07-10 stsp goto done;
3321 b02560ec 2019-08-19 stsp
3322 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
3323 b02560ec 2019-08-19 stsp if (blame->line_offsets[blame->nlines - 1] == blame->filesize)
3324 b02560ec 2019-08-19 stsp blame->nlines--;
3325 a70480e0 2018-06-23 stsp
3326 245d91c1 2018-07-12 stsp blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
3327 245d91c1 2018-07-12 stsp if (blame->lines == NULL) {
3328 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
3329 84451b3e 2018-07-10 stsp goto done;
3330 84451b3e 2018-07-10 stsp }
3331 a70480e0 2018-06-23 stsp
3332 c9956ddf 2019-09-08 stsp err = got_repo_open(&thread_repo, got_repo_get_path(repo), NULL);
3333 bd24772e 2018-07-11 stsp if (err)
3334 bd24772e 2018-07-11 stsp goto done;
3335 bd24772e 2018-07-11 stsp
3336 7cc84d77 2018-08-01 stsp blame->cb_args.view = view;
3337 245d91c1 2018-07-12 stsp blame->cb_args.lines = blame->lines;
3338 245d91c1 2018-07-12 stsp blame->cb_args.nlines = blame->nlines;
3339 245d91c1 2018-07-12 stsp blame->cb_args.commit_id = got_object_id_dup(commit_id);
3340 245d91c1 2018-07-12 stsp if (blame->cb_args.commit_id == NULL) {
3341 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
3342 245d91c1 2018-07-12 stsp goto done;
3343 245d91c1 2018-07-12 stsp }
3344 245d91c1 2018-07-12 stsp blame->cb_args.quit = done;
3345 245d91c1 2018-07-12 stsp
3346 245d91c1 2018-07-12 stsp blame->thread_args.path = path;
3347 245d91c1 2018-07-12 stsp blame->thread_args.repo = thread_repo;
3348 245d91c1 2018-07-12 stsp blame->thread_args.cb_args = &blame->cb_args;
3349 245d91c1 2018-07-12 stsp blame->thread_args.complete = blame_complete;
3350 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_cb = cancel_blame_view;
3351 fc06ba56 2019-08-22 stsp blame->thread_args.cancel_arg = done;
3352 245d91c1 2018-07-12 stsp *blame_complete = 0;
3353 245d91c1 2018-07-12 stsp
3354 245d91c1 2018-07-12 stsp done:
3355 245d91c1 2018-07-12 stsp if (blob)
3356 245d91c1 2018-07-12 stsp got_object_blob_close(blob);
3357 27d434c2 2018-09-15 stsp free(obj_id);
3358 245d91c1 2018-07-12 stsp if (err)
3359 245d91c1 2018-07-12 stsp stop_blame(blame);
3360 245d91c1 2018-07-12 stsp return err;
3361 245d91c1 2018-07-12 stsp }
3362 245d91c1 2018-07-12 stsp
3363 245d91c1 2018-07-12 stsp static const struct got_error *
3364 e5a0f69f 2018-08-18 stsp open_blame_view(struct tog_view *view, char *path,
3365 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
3366 8b473291 2019-02-21 stsp struct got_repository *repo)
3367 245d91c1 2018-07-12 stsp {
3368 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL;
3369 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
3370 dbc6a6b6 2018-07-12 stsp
3371 fb2756b9 2018-08-04 stsp SIMPLEQ_INIT(&s->blamed_commits);
3372 245d91c1 2018-07-12 stsp
3373 c4843652 2019-08-12 stsp s->path = strdup(path);
3374 c4843652 2019-08-12 stsp if (s->path == NULL)
3375 c4843652 2019-08-12 stsp return got_error_from_errno("strdup");
3376 c4843652 2019-08-12 stsp
3377 fb2756b9 2018-08-04 stsp err = got_object_qid_alloc(&s->blamed_commit, commit_id);
3378 c4843652 2019-08-12 stsp if (err) {
3379 c4843652 2019-08-12 stsp free(s->path);
3380 7cbe629d 2018-08-04 stsp return err;
3381 c4843652 2019-08-12 stsp }
3382 245d91c1 2018-07-12 stsp
3383 fb2756b9 2018-08-04 stsp SIMPLEQ_INSERT_HEAD(&s->blamed_commits, s->blamed_commit, entry);
3384 fb2756b9 2018-08-04 stsp s->first_displayed_line = 1;
3385 fb2756b9 2018-08-04 stsp s->last_displayed_line = view->nlines;
3386 fb2756b9 2018-08-04 stsp s->selected_line = 1;
3387 fb2756b9 2018-08-04 stsp s->blame_complete = 0;
3388 fb2756b9 2018-08-04 stsp s->repo = repo;
3389 8b473291 2019-02-21 stsp s->refs = refs;
3390 fb2756b9 2018-08-04 stsp s->commit_id = commit_id;
3391 e9424729 2018-08-04 stsp memset(&s->blame, 0, sizeof(s->blame));
3392 7cbe629d 2018-08-04 stsp
3393 e5a0f69f 2018-08-18 stsp view->show = show_blame_view;
3394 e5a0f69f 2018-08-18 stsp view->input = input_blame_view;
3395 e5a0f69f 2018-08-18 stsp view->close = close_blame_view;
3396 6c4c42e0 2019-06-24 stsp view->search_start = search_start_blame_view;
3397 6c4c42e0 2019-06-24 stsp view->search_next = search_next_blame_view;
3398 e5a0f69f 2018-08-18 stsp
3399 1a76625f 2018-10-22 stsp return run_blame(&s->blame, view, &s->blame_complete,
3400 e5a0f69f 2018-08-18 stsp &s->first_displayed_line, &s->last_displayed_line,
3401 e5a0f69f 2018-08-18 stsp &s->selected_line, &s->done, &s->eof, s->path,
3402 e5a0f69f 2018-08-18 stsp s->blamed_commit->id, s->repo);
3403 7cbe629d 2018-08-04 stsp }
3404 7cbe629d 2018-08-04 stsp
3405 e5a0f69f 2018-08-18 stsp static const struct got_error *
3406 7cbe629d 2018-08-04 stsp close_blame_view(struct tog_view *view)
3407 7cbe629d 2018-08-04 stsp {
3408 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3409 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
3410 7cbe629d 2018-08-04 stsp
3411 e5a0f69f 2018-08-18 stsp if (s->blame.thread)
3412 e5a0f69f 2018-08-18 stsp err = stop_blame(&s->blame);
3413 e5a0f69f 2018-08-18 stsp
3414 fb2756b9 2018-08-04 stsp while (!SIMPLEQ_EMPTY(&s->blamed_commits)) {
3415 7cbe629d 2018-08-04 stsp struct got_object_qid *blamed_commit;
3416 fb2756b9 2018-08-04 stsp blamed_commit = SIMPLEQ_FIRST(&s->blamed_commits);
3417 fb2756b9 2018-08-04 stsp SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
3418 7cbe629d 2018-08-04 stsp got_object_qid_free(blamed_commit);
3419 7cbe629d 2018-08-04 stsp }
3420 e5a0f69f 2018-08-18 stsp
3421 e5a0f69f 2018-08-18 stsp free(s->path);
3422 e5a0f69f 2018-08-18 stsp
3423 e5a0f69f 2018-08-18 stsp return err;
3424 7cbe629d 2018-08-04 stsp }
3425 7cbe629d 2018-08-04 stsp
3426 7cbe629d 2018-08-04 stsp static const struct got_error *
3427 6c4c42e0 2019-06-24 stsp search_start_blame_view(struct tog_view *view)
3428 6c4c42e0 2019-06-24 stsp {
3429 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
3430 6c4c42e0 2019-06-24 stsp
3431 6c4c42e0 2019-06-24 stsp s->matched_line = 0;
3432 6c4c42e0 2019-06-24 stsp return NULL;
3433 6c4c42e0 2019-06-24 stsp }
3434 6c4c42e0 2019-06-24 stsp
3435 6c4c42e0 2019-06-24 stsp static int
3436 6c4c42e0 2019-06-24 stsp match_line(const char *line, regex_t *regex)
3437 6c4c42e0 2019-06-24 stsp {
3438 6c4c42e0 2019-06-24 stsp regmatch_t regmatch;
3439 6c4c42e0 2019-06-24 stsp
3440 6c4c42e0 2019-06-24 stsp return regexec(regex, line, 1, &regmatch, 0) == 0;
3441 6c4c42e0 2019-06-24 stsp }
3442 6c4c42e0 2019-06-24 stsp
3443 6c4c42e0 2019-06-24 stsp
3444 6c4c42e0 2019-06-24 stsp static const struct got_error *
3445 6c4c42e0 2019-06-24 stsp search_next_blame_view(struct tog_view *view)
3446 6c4c42e0 2019-06-24 stsp {
3447 6c4c42e0 2019-06-24 stsp struct tog_blame_view_state *s = &view->state.blame;
3448 6c4c42e0 2019-06-24 stsp int lineno;
3449 6c4c42e0 2019-06-24 stsp
3450 6c4c42e0 2019-06-24 stsp if (!view->searching) {
3451 6c4c42e0 2019-06-24 stsp view->search_next_done = 1;
3452 6c4c42e0 2019-06-24 stsp return NULL;
3453 6c4c42e0 2019-06-24 stsp }
3454 6c4c42e0 2019-06-24 stsp
3455 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
3456 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3457 2246482e 2019-06-25 stsp lineno = s->matched_line + 1;
3458 6c4c42e0 2019-06-24 stsp else
3459 2246482e 2019-06-25 stsp lineno = s->matched_line - 1;
3460 6c4c42e0 2019-06-24 stsp } else {
3461 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3462 6c4c42e0 2019-06-24 stsp lineno = 1;
3463 6c4c42e0 2019-06-24 stsp else
3464 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
3465 6c4c42e0 2019-06-24 stsp }
3466 6c4c42e0 2019-06-24 stsp
3467 6c4c42e0 2019-06-24 stsp while (1) {
3468 6c4c42e0 2019-06-24 stsp char *line = NULL;
3469 6c4c42e0 2019-06-24 stsp off_t offset;
3470 6c4c42e0 2019-06-24 stsp size_t len;
3471 6c4c42e0 2019-06-24 stsp
3472 6c4c42e0 2019-06-24 stsp if (lineno <= 0 || lineno > s->blame.nlines) {
3473 6c4c42e0 2019-06-24 stsp if (s->matched_line == 0) {
3474 6c4c42e0 2019-06-24 stsp view->search_next_done = 1;
3475 6c4c42e0 2019-06-24 stsp free(line);
3476 6c4c42e0 2019-06-24 stsp break;
3477 6c4c42e0 2019-06-24 stsp }
3478 2246482e 2019-06-25 stsp
3479 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3480 6c4c42e0 2019-06-24 stsp lineno = 1;
3481 6c4c42e0 2019-06-24 stsp else
3482 6c4c42e0 2019-06-24 stsp lineno = s->blame.nlines;
3483 6c4c42e0 2019-06-24 stsp }
3484 6c4c42e0 2019-06-24 stsp
3485 6c4c42e0 2019-06-24 stsp offset = s->blame.line_offsets[lineno - 1];
3486 6c4c42e0 2019-06-24 stsp if (fseeko(s->blame.f, offset, SEEK_SET) != 0) {
3487 6c4c42e0 2019-06-24 stsp free(line);
3488 6c4c42e0 2019-06-24 stsp return got_error_from_errno("fseeko");
3489 6c4c42e0 2019-06-24 stsp }
3490 6c4c42e0 2019-06-24 stsp free(line);
3491 6c4c42e0 2019-06-24 stsp line = parse_next_line(s->blame.f, &len);
3492 2246482e 2019-06-25 stsp if (line && match_line(line, &view->regex)) {
3493 6c4c42e0 2019-06-24 stsp view->search_next_done = 1;
3494 6c4c42e0 2019-06-24 stsp s->matched_line = lineno;
3495 6c4c42e0 2019-06-24 stsp free(line);
3496 6c4c42e0 2019-06-24 stsp break;
3497 6c4c42e0 2019-06-24 stsp }
3498 6c4c42e0 2019-06-24 stsp free(line);
3499 6c4c42e0 2019-06-24 stsp if (view->searching == TOG_SEARCH_FORWARD)
3500 6c4c42e0 2019-06-24 stsp lineno++;
3501 6c4c42e0 2019-06-24 stsp else
3502 6c4c42e0 2019-06-24 stsp lineno--;
3503 6c4c42e0 2019-06-24 stsp }
3504 6c4c42e0 2019-06-24 stsp
3505 6c4c42e0 2019-06-24 stsp if (s->matched_line) {
3506 6c4c42e0 2019-06-24 stsp s->first_displayed_line = s->matched_line;
3507 6c4c42e0 2019-06-24 stsp s->selected_line = 1;
3508 6c4c42e0 2019-06-24 stsp }
3509 6c4c42e0 2019-06-24 stsp
3510 6c4c42e0 2019-06-24 stsp return NULL;
3511 6c4c42e0 2019-06-24 stsp }
3512 6c4c42e0 2019-06-24 stsp
3513 6c4c42e0 2019-06-24 stsp static const struct got_error *
3514 7cbe629d 2018-08-04 stsp show_blame_view(struct tog_view *view)
3515 7cbe629d 2018-08-04 stsp {
3516 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
3517 e5a0f69f 2018-08-18 stsp struct tog_blame_view_state *s = &view->state.blame;
3518 2b380cc8 2018-10-24 stsp int errcode;
3519 2b380cc8 2018-10-24 stsp
3520 2b380cc8 2018-10-24 stsp if (s->blame.thread == NULL) {
3521 2b380cc8 2018-10-24 stsp errcode = pthread_create(&s->blame.thread, NULL, blame_thread,
3522 2b380cc8 2018-10-24 stsp &s->blame.thread_args);
3523 2b380cc8 2018-10-24 stsp if (errcode)
3524 2af4a041 2019-05-11 jcs return got_error_set_errno(errcode, "pthread_create");
3525 51fe7530 2019-08-19 stsp
3526 51fe7530 2019-08-19 stsp halfdelay(1); /* fast refresh while annotating */
3527 2b380cc8 2018-10-24 stsp }
3528 e5a0f69f 2018-08-18 stsp
3529 51fe7530 2019-08-19 stsp if (s->blame_complete)
3530 51fe7530 2019-08-19 stsp halfdelay(10); /* disable fast refresh */
3531 51fe7530 2019-08-19 stsp
3532 e5a0f69f 2018-08-18 stsp err = draw_blame(view, s->blamed_commit->id, s->blame.f,
3533 e5a0f69f 2018-08-18 stsp s->path, s->blame.lines, s->blame.nlines, s->blame_complete,
3534 e5a0f69f 2018-08-18 stsp s->selected_line, &s->first_displayed_line,
3535 e5a0f69f 2018-08-18 stsp &s->last_displayed_line, &s->eof, view->nlines);
3536 e5a0f69f 2018-08-18 stsp
3537 669b5ffa 2018-10-07 stsp view_vborder(view);
3538 e5a0f69f 2018-08-18 stsp return err;
3539 e5a0f69f 2018-08-18 stsp }
3540 e5a0f69f 2018-08-18 stsp
3541 e5a0f69f 2018-08-18 stsp static const struct got_error *
3542 878940b7 2018-09-29 stsp input_blame_view(struct tog_view **new_view, struct tog_view **dead_view,
3543 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
3544 e5a0f69f 2018-08-18 stsp {
3545 7cbe629d 2018-08-04 stsp const struct got_error *err = NULL, *thread_err = NULL;
3546 7cbe629d 2018-08-04 stsp struct tog_view *diff_view;
3547 fb2756b9 2018-08-04 stsp struct tog_blame_view_state *s = &view->state.blame;
3548 669b5ffa 2018-10-07 stsp int begin_x = 0;
3549 7cbe629d 2018-08-04 stsp
3550 e5a0f69f 2018-08-18 stsp switch (ch) {
3551 1e37a5c2 2019-05-12 jcs case 'q':
3552 1e37a5c2 2019-05-12 jcs s->done = 1;
3553 1e37a5c2 2019-05-12 jcs break;
3554 1e37a5c2 2019-05-12 jcs case 'k':
3555 1e37a5c2 2019-05-12 jcs case KEY_UP:
3556 1e37a5c2 2019-05-12 jcs if (s->selected_line > 1)
3557 1e37a5c2 2019-05-12 jcs s->selected_line--;
3558 1e37a5c2 2019-05-12 jcs else if (s->selected_line == 1 &&
3559 1e37a5c2 2019-05-12 jcs s->first_displayed_line > 1)
3560 1e37a5c2 2019-05-12 jcs s->first_displayed_line--;
3561 1e37a5c2 2019-05-12 jcs break;
3562 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
3563 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line == 1) {
3564 1e37a5c2 2019-05-12 jcs s->selected_line = 1;
3565 e5a0f69f 2018-08-18 stsp break;
3566 1e37a5c2 2019-05-12 jcs }
3567 1e37a5c2 2019-05-12 jcs if (s->first_displayed_line > view->nlines - 2)
3568 1e37a5c2 2019-05-12 jcs s->first_displayed_line -=
3569 1e37a5c2 2019-05-12 jcs (view->nlines - 2);
3570 1e37a5c2 2019-05-12 jcs else
3571 1e37a5c2 2019-05-12 jcs s->first_displayed_line = 1;
3572 1e37a5c2 2019-05-12 jcs break;
3573 1e37a5c2 2019-05-12 jcs case 'j':
3574 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
3575 1e37a5c2 2019-05-12 jcs if (s->selected_line < view->nlines - 2 &&
3576 1e37a5c2 2019-05-12 jcs s->first_displayed_line +
3577 1e37a5c2 2019-05-12 jcs s->selected_line <= s->blame.nlines)
3578 1e37a5c2 2019-05-12 jcs s->selected_line++;
3579 1e37a5c2 2019-05-12 jcs else if (s->last_displayed_line <
3580 1e37a5c2 2019-05-12 jcs s->blame.nlines)
3581 1e37a5c2 2019-05-12 jcs s->first_displayed_line++;
3582 1e37a5c2 2019-05-12 jcs break;
3583 1e37a5c2 2019-05-12 jcs case 'b':
3584 1e37a5c2 2019-05-12 jcs case 'p': {
3585 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
3586 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
3587 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
3588 1e37a5c2 2019-05-12 jcs if (id == NULL)
3589 e5a0f69f 2018-08-18 stsp break;
3590 1e37a5c2 2019-05-12 jcs if (ch == 'p') {
3591 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit;
3592 15a94983 2018-12-23 stsp struct got_object_qid *pid;
3593 1e37a5c2 2019-05-12 jcs struct got_object_id *blob_id = NULL;
3594 1e37a5c2 2019-05-12 jcs int obj_type;
3595 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit,
3596 1e37a5c2 2019-05-12 jcs s->repo, id);
3597 e5a0f69f 2018-08-18 stsp if (err)
3598 e5a0f69f 2018-08-18 stsp break;
3599 15a94983 2018-12-23 stsp pid = SIMPLEQ_FIRST(
3600 15a94983 2018-12-23 stsp got_object_commit_get_parent_ids(commit));
3601 1e37a5c2 2019-05-12 jcs if (pid == NULL) {
3602 15a94983 2018-12-23 stsp got_object_commit_close(commit);
3603 e5a0f69f 2018-08-18 stsp break;
3604 e5a0f69f 2018-08-18 stsp }
3605 1e37a5c2 2019-05-12 jcs /* Check if path history ends here. */
3606 1e37a5c2 2019-05-12 jcs err = got_object_id_by_path(&blob_id, s->repo,
3607 1e37a5c2 2019-05-12 jcs pid->id, s->path);
3608 e5a0f69f 2018-08-18 stsp if (err) {
3609 1e37a5c2 2019-05-12 jcs if (err->code == GOT_ERR_NO_TREE_ENTRY)
3610 1e37a5c2 2019-05-12 jcs err = NULL;
3611 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3612 e5a0f69f 2018-08-18 stsp break;
3613 e5a0f69f 2018-08-18 stsp }
3614 1e37a5c2 2019-05-12 jcs err = got_object_get_type(&obj_type, s->repo,
3615 1e37a5c2 2019-05-12 jcs blob_id);
3616 1e37a5c2 2019-05-12 jcs free(blob_id);
3617 1e37a5c2 2019-05-12 jcs /* Can't blame non-blob type objects. */
3618 1e37a5c2 2019-05-12 jcs if (obj_type != GOT_OBJ_TYPE_BLOB) {
3619 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3620 e5a0f69f 2018-08-18 stsp break;
3621 1e37a5c2 2019-05-12 jcs }
3622 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
3623 1e37a5c2 2019-05-12 jcs pid->id);
3624 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3625 1e37a5c2 2019-05-12 jcs } else {
3626 1e37a5c2 2019-05-12 jcs if (got_object_id_cmp(id,
3627 1e37a5c2 2019-05-12 jcs s->blamed_commit->id) == 0)
3628 1e37a5c2 2019-05-12 jcs break;
3629 1e37a5c2 2019-05-12 jcs err = got_object_qid_alloc(&s->blamed_commit,
3630 1e37a5c2 2019-05-12 jcs id);
3631 1e37a5c2 2019-05-12 jcs }
3632 1e37a5c2 2019-05-12 jcs if (err)
3633 e5a0f69f 2018-08-18 stsp break;
3634 1e37a5c2 2019-05-12 jcs s->done = 1;
3635 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
3636 1e37a5c2 2019-05-12 jcs s->done = 0;
3637 1e37a5c2 2019-05-12 jcs if (thread_err)
3638 1e37a5c2 2019-05-12 jcs break;
3639 1e37a5c2 2019-05-12 jcs SIMPLEQ_INSERT_HEAD(&s->blamed_commits,
3640 1e37a5c2 2019-05-12 jcs s->blamed_commit, entry);
3641 1e37a5c2 2019-05-12 jcs err = run_blame(&s->blame, view, &s->blame_complete,
3642 1e37a5c2 2019-05-12 jcs &s->first_displayed_line, &s->last_displayed_line,
3643 1e37a5c2 2019-05-12 jcs &s->selected_line, &s->done, &s->eof,
3644 1e37a5c2 2019-05-12 jcs s->path, s->blamed_commit->id, s->repo);
3645 1e37a5c2 2019-05-12 jcs if (err)
3646 1e37a5c2 2019-05-12 jcs break;
3647 1e37a5c2 2019-05-12 jcs break;
3648 1e37a5c2 2019-05-12 jcs }
3649 1e37a5c2 2019-05-12 jcs case 'B': {
3650 1e37a5c2 2019-05-12 jcs struct got_object_qid *first;
3651 1e37a5c2 2019-05-12 jcs first = SIMPLEQ_FIRST(&s->blamed_commits);
3652 1e37a5c2 2019-05-12 jcs if (!got_object_id_cmp(first->id, s->commit_id))
3653 1e37a5c2 2019-05-12 jcs break;
3654 1e37a5c2 2019-05-12 jcs s->done = 1;
3655 1e37a5c2 2019-05-12 jcs thread_err = stop_blame(&s->blame);
3656 1e37a5c2 2019-05-12 jcs s->done = 0;
3657 1e37a5c2 2019-05-12 jcs if (thread_err)
3658 1e37a5c2 2019-05-12 jcs break;
3659 1e37a5c2 2019-05-12 jcs SIMPLEQ_REMOVE_HEAD(&s->blamed_commits, entry);
3660 1e37a5c2 2019-05-12 jcs got_object_qid_free(s->blamed_commit);
3661 1e37a5c2 2019-05-12 jcs s->blamed_commit =
3662 1e37a5c2 2019-05-12 jcs SIMPLEQ_FIRST(&s->blamed_commits);
3663 1e37a5c2 2019-05-12 jcs err = run_blame(&s->blame, view, &s->blame_complete,
3664 1e37a5c2 2019-05-12 jcs &s->first_displayed_line, &s->last_displayed_line,
3665 1e37a5c2 2019-05-12 jcs &s->selected_line, &s->done, &s->eof, s->path,
3666 1e37a5c2 2019-05-12 jcs s->blamed_commit->id, s->repo);
3667 1e37a5c2 2019-05-12 jcs if (err)
3668 1e37a5c2 2019-05-12 jcs break;
3669 1e37a5c2 2019-05-12 jcs break;
3670 1e37a5c2 2019-05-12 jcs }
3671 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
3672 1e37a5c2 2019-05-12 jcs case '\r': {
3673 1e37a5c2 2019-05-12 jcs struct got_object_id *id = NULL;
3674 1e37a5c2 2019-05-12 jcs struct got_object_qid *pid;
3675 1e37a5c2 2019-05-12 jcs struct got_commit_object *commit = NULL;
3676 8d0fe45a 2019-08-12 stsp id = get_selected_commit_id(s->blame.lines, s->blame.nlines,
3677 1e37a5c2 2019-05-12 jcs s->first_displayed_line, s->selected_line);
3678 1e37a5c2 2019-05-12 jcs if (id == NULL)
3679 1e37a5c2 2019-05-12 jcs break;
3680 1e37a5c2 2019-05-12 jcs err = got_object_open_as_commit(&commit, s->repo, id);
3681 1e37a5c2 2019-05-12 jcs if (err)
3682 1e37a5c2 2019-05-12 jcs break;
3683 1e37a5c2 2019-05-12 jcs pid = SIMPLEQ_FIRST(
3684 1e37a5c2 2019-05-12 jcs got_object_commit_get_parent_ids(commit));
3685 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
3686 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
3687 1e37a5c2 2019-05-12 jcs diff_view = view_open(0, 0, 0, begin_x, TOG_VIEW_DIFF);
3688 1e37a5c2 2019-05-12 jcs if (diff_view == NULL) {
3689 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3690 638f9024 2019-05-13 stsp err = got_error_from_errno("view_open");
3691 1e37a5c2 2019-05-12 jcs break;
3692 15a94983 2018-12-23 stsp }
3693 1e37a5c2 2019-05-12 jcs err = open_diff_view(diff_view, pid ? pid->id : NULL,
3694 1e37a5c2 2019-05-12 jcs id, NULL, s->refs, s->repo);
3695 1e37a5c2 2019-05-12 jcs got_object_commit_close(commit);
3696 1e37a5c2 2019-05-12 jcs if (err) {
3697 1e37a5c2 2019-05-12 jcs view_close(diff_view);
3698 1e37a5c2 2019-05-12 jcs break;
3699 1e37a5c2 2019-05-12 jcs }
3700 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
3701 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
3702 1e37a5c2 2019-05-12 jcs if (err)
3703 34bc9ec9 2019-02-22 stsp break;
3704 1e37a5c2 2019-05-12 jcs err = view_set_child(view, diff_view);
3705 1e37a5c2 2019-05-12 jcs if (err) {
3706 1e37a5c2 2019-05-12 jcs view_close(diff_view);
3707 e5a0f69f 2018-08-18 stsp break;
3708 e5a0f69f 2018-08-18 stsp }
3709 1e37a5c2 2019-05-12 jcs *focus_view = diff_view;
3710 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
3711 1e37a5c2 2019-05-12 jcs } else
3712 1e37a5c2 2019-05-12 jcs *new_view = diff_view;
3713 1e37a5c2 2019-05-12 jcs if (err)
3714 e5a0f69f 2018-08-18 stsp break;
3715 1e37a5c2 2019-05-12 jcs break;
3716 1e37a5c2 2019-05-12 jcs }
3717 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
3718 1e37a5c2 2019-05-12 jcs case ' ':
3719 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
3720 1e37a5c2 2019-05-12 jcs s->selected_line >= MIN(s->blame.nlines,
3721 00ba99a7 2019-05-12 jcs view->nlines - 2)) {
3722 e5a0f69f 2018-08-18 stsp break;
3723 1e37a5c2 2019-05-12 jcs }
3724 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line >= s->blame.nlines &&
3725 1e37a5c2 2019-05-12 jcs s->selected_line < view->nlines - 2) {
3726 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
3727 1e37a5c2 2019-05-12 jcs view->nlines - 2);
3728 e5a0f69f 2018-08-18 stsp break;
3729 1e37a5c2 2019-05-12 jcs }
3730 1e37a5c2 2019-05-12 jcs if (s->last_displayed_line + view->nlines - 2
3731 1e37a5c2 2019-05-12 jcs <= s->blame.nlines)
3732 1e37a5c2 2019-05-12 jcs s->first_displayed_line +=
3733 1e37a5c2 2019-05-12 jcs view->nlines - 2;
3734 1e37a5c2 2019-05-12 jcs else
3735 1e37a5c2 2019-05-12 jcs s->first_displayed_line =
3736 1e37a5c2 2019-05-12 jcs s->blame.nlines -
3737 1e37a5c2 2019-05-12 jcs (view->nlines - 3);
3738 1e37a5c2 2019-05-12 jcs break;
3739 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
3740 1e37a5c2 2019-05-12 jcs if (s->selected_line > view->nlines - 2) {
3741 1e37a5c2 2019-05-12 jcs s->selected_line = MIN(s->blame.nlines,
3742 1e37a5c2 2019-05-12 jcs view->nlines - 2);
3743 1e37a5c2 2019-05-12 jcs }
3744 1e37a5c2 2019-05-12 jcs break;
3745 1e37a5c2 2019-05-12 jcs default:
3746 1e37a5c2 2019-05-12 jcs break;
3747 a70480e0 2018-06-23 stsp }
3748 245d91c1 2018-07-12 stsp return thread_err ? thread_err : err;
3749 a70480e0 2018-06-23 stsp }
3750 a70480e0 2018-06-23 stsp
3751 a70480e0 2018-06-23 stsp static const struct got_error *
3752 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
3753 9f7d7167 2018-04-29 stsp {
3754 a70480e0 2018-06-23 stsp const struct got_error *error;
3755 a70480e0 2018-06-23 stsp struct got_repository *repo = NULL;
3756 8b473291 2019-02-21 stsp struct got_reflist_head refs;
3757 eb41ed75 2019-02-05 stsp struct got_worktree *worktree = NULL;
3758 69069811 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
3759 a70480e0 2018-06-23 stsp struct got_object_id *commit_id = NULL;
3760 a70480e0 2018-06-23 stsp char *commit_id_str = NULL;
3761 a70480e0 2018-06-23 stsp int ch;
3762 e1cd8fed 2018-08-01 stsp struct tog_view *view;
3763 a70480e0 2018-06-23 stsp
3764 70ac5f84 2019-03-28 stsp SIMPLEQ_INIT(&refs);
3765 70ac5f84 2019-03-28 stsp
3766 a70480e0 2018-06-23 stsp #ifndef PROFILE
3767 8e94dd5b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
3768 8e94dd5b 2019-01-04 stsp NULL) == -1)
3769 a70480e0 2018-06-23 stsp err(1, "pledge");
3770 a70480e0 2018-06-23 stsp #endif
3771 a70480e0 2018-06-23 stsp
3772 69069811 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
3773 a70480e0 2018-06-23 stsp switch (ch) {
3774 a70480e0 2018-06-23 stsp case 'c':
3775 a70480e0 2018-06-23 stsp commit_id_str = optarg;
3776 a70480e0 2018-06-23 stsp break;
3777 69069811 2018-08-02 stsp case 'r':
3778 69069811 2018-08-02 stsp repo_path = realpath(optarg, NULL);
3779 69069811 2018-08-02 stsp if (repo_path == NULL)
3780 69069811 2018-08-02 stsp err(1, "-r option");
3781 69069811 2018-08-02 stsp break;
3782 a70480e0 2018-06-23 stsp default:
3783 17020d27 2019-03-07 stsp usage_blame();
3784 a70480e0 2018-06-23 stsp /* NOTREACHED */
3785 a70480e0 2018-06-23 stsp }
3786 a70480e0 2018-06-23 stsp }
3787 a70480e0 2018-06-23 stsp
3788 a70480e0 2018-06-23 stsp argc -= optind;
3789 a70480e0 2018-06-23 stsp argv += optind;
3790 a70480e0 2018-06-23 stsp
3791 69069811 2018-08-02 stsp if (argc == 1)
3792 69069811 2018-08-02 stsp path = argv[0];
3793 69069811 2018-08-02 stsp else
3794 a70480e0 2018-06-23 stsp usage_blame();
3795 69069811 2018-08-02 stsp
3796 69069811 2018-08-02 stsp cwd = getcwd(NULL, 0);
3797 69069811 2018-08-02 stsp if (cwd == NULL) {
3798 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3799 69069811 2018-08-02 stsp goto done;
3800 69069811 2018-08-02 stsp }
3801 69069811 2018-08-02 stsp if (repo_path == NULL) {
3802 eb41ed75 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
3803 eb41ed75 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3804 69069811 2018-08-02 stsp goto done;
3805 eb41ed75 2019-02-05 stsp else
3806 eb41ed75 2019-02-05 stsp error = NULL;
3807 eb41ed75 2019-02-05 stsp if (worktree) {
3808 eb41ed75 2019-02-05 stsp repo_path =
3809 eb41ed75 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
3810 eb41ed75 2019-02-05 stsp if (repo_path == NULL)
3811 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3812 eb41ed75 2019-02-05 stsp if (error)
3813 eb41ed75 2019-02-05 stsp goto done;
3814 eb41ed75 2019-02-05 stsp } else {
3815 eb41ed75 2019-02-05 stsp repo_path = strdup(cwd);
3816 eb41ed75 2019-02-05 stsp if (repo_path == NULL) {
3817 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3818 eb41ed75 2019-02-05 stsp goto done;
3819 eb41ed75 2019-02-05 stsp }
3820 69069811 2018-08-02 stsp }
3821 69069811 2018-08-02 stsp }
3822 a915003a 2019-02-05 stsp
3823 a915003a 2019-02-05 stsp init_curses();
3824 69069811 2018-08-02 stsp
3825 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3826 c02c541e 2019-03-29 stsp if (error != NULL)
3827 8e94dd5b 2019-01-04 stsp goto done;
3828 69069811 2018-08-02 stsp
3829 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
3830 c02c541e 2019-03-29 stsp if (error)
3831 92205607 2019-01-04 stsp goto done;
3832 69069811 2018-08-02 stsp
3833 eb41ed75 2019-02-05 stsp if (worktree) {
3834 eb41ed75 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3835 eb41ed75 2019-02-05 stsp char *p, *worktree_subdir = cwd +
3836 eb41ed75 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
3837 eb41ed75 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
3838 eb41ed75 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
3839 eb41ed75 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
3840 eb41ed75 2019-02-05 stsp path) == -1) {
3841 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
3842 eb41ed75 2019-02-05 stsp goto done;
3843 eb41ed75 2019-02-05 stsp }
3844 eb41ed75 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
3845 eb41ed75 2019-02-05 stsp free(p);
3846 eb41ed75 2019-02-05 stsp } else {
3847 eb41ed75 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
3848 eb41ed75 2019-02-05 stsp }
3849 eb41ed75 2019-02-05 stsp if (error)
3850 69069811 2018-08-02 stsp goto done;
3851 a70480e0 2018-06-23 stsp
3852 a70480e0 2018-06-23 stsp if (commit_id_str == NULL) {
3853 a70480e0 2018-06-23 stsp struct got_reference *head_ref;
3854 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
3855 a70480e0 2018-06-23 stsp if (error != NULL)
3856 66b4983c 2018-06-23 stsp goto done;
3857 a70480e0 2018-06-23 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
3858 a70480e0 2018-06-23 stsp got_ref_close(head_ref);
3859 a70480e0 2018-06-23 stsp } else {
3860 f2b6a97d 2019-07-15 stsp error = get_head_commit_id(&commit_id, commit_id_str, repo);
3861 f2b6a97d 2019-07-15 stsp if (error) {
3862 f2b6a97d 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
3863 f2b6a97d 2019-07-15 stsp goto done;
3864 f2b6a97d 2019-07-15 stsp error = got_repo_match_object_id_prefix(&commit_id,
3865 f2b6a97d 2019-07-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, repo);
3866 f2b6a97d 2019-07-15 stsp }
3867 a70480e0 2018-06-23 stsp }
3868 a19e88aa 2018-06-23 stsp if (error != NULL)
3869 8b473291 2019-02-21 stsp goto done;
3870 8b473291 2019-02-21 stsp
3871 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
3872 8b473291 2019-02-21 stsp if (error)
3873 a19e88aa 2018-06-23 stsp goto done;
3874 a70480e0 2018-06-23 stsp
3875 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_BLAME);
3876 e1cd8fed 2018-08-01 stsp if (view == NULL) {
3877 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
3878 e1cd8fed 2018-08-01 stsp goto done;
3879 e1cd8fed 2018-08-01 stsp }
3880 8b473291 2019-02-21 stsp error = open_blame_view(view, in_repo_path, commit_id, &refs, repo);
3881 7cbe629d 2018-08-04 stsp if (error)
3882 7cbe629d 2018-08-04 stsp goto done;
3883 12314ad4 2019-08-31 stsp if (worktree) {
3884 12314ad4 2019-08-31 stsp /* Release work tree lock. */
3885 12314ad4 2019-08-31 stsp got_worktree_close(worktree);
3886 12314ad4 2019-08-31 stsp worktree = NULL;
3887 12314ad4 2019-08-31 stsp }
3888 e5a0f69f 2018-08-18 stsp error = view_loop(view);
3889 a70480e0 2018-06-23 stsp done:
3890 69069811 2018-08-02 stsp free(repo_path);
3891 69069811 2018-08-02 stsp free(cwd);
3892 a70480e0 2018-06-23 stsp free(commit_id);
3893 eb41ed75 2019-02-05 stsp if (worktree)
3894 eb41ed75 2019-02-05 stsp got_worktree_close(worktree);
3895 a70480e0 2018-06-23 stsp if (repo)
3896 a70480e0 2018-06-23 stsp got_repo_close(repo);
3897 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
3898 a70480e0 2018-06-23 stsp return error;
3899 ffd1d5e5 2018-06-23 stsp }
3900 ffd1d5e5 2018-06-23 stsp
3901 ffd1d5e5 2018-06-23 stsp static const struct got_error *
3902 f7d12f7e 2018-08-01 stsp draw_tree_entries(struct tog_view *view,
3903 f7d12f7e 2018-08-01 stsp struct got_tree_entry **first_displayed_entry,
3904 ffd1d5e5 2018-06-23 stsp struct got_tree_entry **last_displayed_entry,
3905 ffd1d5e5 2018-06-23 stsp struct got_tree_entry **selected_entry, int *ndisplayed,
3906 f7d12f7e 2018-08-01 stsp const char *label, int show_ids, const char *parent_path,
3907 ce52c690 2018-06-23 stsp const struct got_tree_entries *entries, int selected, int limit, int isroot)
3908 ffd1d5e5 2018-06-23 stsp {
3909 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
3910 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te;
3911 ffd1d5e5 2018-06-23 stsp wchar_t *wline;
3912 ffd1d5e5 2018-06-23 stsp int width, n;
3913 ffd1d5e5 2018-06-23 stsp
3914 ffd1d5e5 2018-06-23 stsp *ndisplayed = 0;
3915 ffd1d5e5 2018-06-23 stsp
3916 f7d12f7e 2018-08-01 stsp werase(view->window);
3917 ffd1d5e5 2018-06-23 stsp
3918 ffd1d5e5 2018-06-23 stsp if (limit == 0)
3919 ffd1d5e5 2018-06-23 stsp return NULL;
3920 ffd1d5e5 2018-06-23 stsp
3921 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, label, view->ncols, 0);
3922 ffd1d5e5 2018-06-23 stsp if (err)
3923 ffd1d5e5 2018-06-23 stsp return err;
3924 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3925 a3404814 2018-09-02 stsp wstandout(view->window);
3926 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3927 a3404814 2018-09-02 stsp if (view_needs_focus_indication(view))
3928 a3404814 2018-09-02 stsp wstandend(view->window);
3929 2550e4c3 2018-07-13 stsp free(wline);
3930 2550e4c3 2018-07-13 stsp wline = NULL;
3931 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3932 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3933 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
3934 ffd1d5e5 2018-06-23 stsp return NULL;
3935 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, parent_path, view->ncols, 0);
3936 ce52c690 2018-06-23 stsp if (err)
3937 ce52c690 2018-06-23 stsp return err;
3938 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
3939 2550e4c3 2018-07-13 stsp free(wline);
3940 2550e4c3 2018-07-13 stsp wline = NULL;
3941 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
3942 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3943 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
3944 ffd1d5e5 2018-06-23 stsp return NULL;
3945 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
3946 a1eca9bb 2018-06-23 stsp if (--limit <= 0)
3947 a1eca9bb 2018-06-23 stsp return NULL;
3948 ffd1d5e5 2018-06-23 stsp
3949 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_FIRST(&entries->head);
3950 ffd1d5e5 2018-06-23 stsp if (*first_displayed_entry == NULL) {
3951 ffd1d5e5 2018-06-23 stsp if (selected == 0) {
3952 0cf4efb1 2018-09-29 stsp if (view->focussed)
3953 0cf4efb1 2018-09-29 stsp wstandout(view->window);
3954 ffd1d5e5 2018-06-23 stsp *selected_entry = NULL;
3955 ffd1d5e5 2018-06-23 stsp }
3956 f7d12f7e 2018-08-01 stsp waddstr(view->window, " ..\n"); /* parent directory */
3957 0cf4efb1 2018-09-29 stsp if (selected == 0 && view->focussed)
3958 f7d12f7e 2018-08-01 stsp wstandend(view->window);
3959 ffd1d5e5 2018-06-23 stsp (*ndisplayed)++;
3960 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
3961 ffd1d5e5 2018-06-23 stsp return NULL;
3962 ffd1d5e5 2018-06-23 stsp n = 1;
3963 ffd1d5e5 2018-06-23 stsp } else {
3964 ffd1d5e5 2018-06-23 stsp n = 0;
3965 ffd1d5e5 2018-06-23 stsp while (te != *first_displayed_entry)
3966 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_NEXT(te, entry);
3967 ffd1d5e5 2018-06-23 stsp }
3968 ffd1d5e5 2018-06-23 stsp
3969 ffd1d5e5 2018-06-23 stsp while (te) {
3970 1d13200f 2018-07-12 stsp char *line = NULL, *id_str = NULL;
3971 848d6979 2019-08-12 stsp const char *modestr = "";
3972 1d13200f 2018-07-12 stsp
3973 1d13200f 2018-07-12 stsp if (show_ids) {
3974 1d13200f 2018-07-12 stsp err = got_object_id_str(&id_str, te->id);
3975 1d13200f 2018-07-12 stsp if (err)
3976 638f9024 2019-05-13 stsp return got_error_from_errno(
3977 230a42bd 2019-05-11 jcs "got_object_id_str");
3978 1d13200f 2018-07-12 stsp }
3979 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
3980 63c5ca5d 2019-08-24 stsp modestr = "$";
3981 63c5ca5d 2019-08-24 stsp else if (S_ISLNK(te->mode))
3982 848d6979 2019-08-12 stsp modestr = "@";
3983 848d6979 2019-08-12 stsp else if (S_ISDIR(te->mode))
3984 848d6979 2019-08-12 stsp modestr = "/";
3985 848d6979 2019-08-12 stsp else if (te->mode & S_IXUSR)
3986 848d6979 2019-08-12 stsp modestr = "*";
3987 1d13200f 2018-07-12 stsp if (asprintf(&line, "%s %s%s", id_str ? id_str : "",
3988 848d6979 2019-08-12 stsp te->name, modestr) == -1) {
3989 1d13200f 2018-07-12 stsp free(id_str);
3990 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
3991 1d13200f 2018-07-12 stsp }
3992 1d13200f 2018-07-12 stsp free(id_str);
3993 27a741e5 2019-09-11 stsp err = format_line(&wline, &width, line, view->ncols, 0);
3994 ffd1d5e5 2018-06-23 stsp if (err) {
3995 ffd1d5e5 2018-06-23 stsp free(line);
3996 ffd1d5e5 2018-06-23 stsp break;
3997 ffd1d5e5 2018-06-23 stsp }
3998 ffd1d5e5 2018-06-23 stsp if (n == selected) {
3999 0cf4efb1 2018-09-29 stsp if (view->focussed)
4000 0cf4efb1 2018-09-29 stsp wstandout(view->window);
4001 ffd1d5e5 2018-06-23 stsp *selected_entry = te;
4002 ffd1d5e5 2018-06-23 stsp }
4003 f7d12f7e 2018-08-01 stsp waddwstr(view->window, wline);
4004 30f8fd5e 2019-06-04 stsp if (width < view->ncols - 1)
4005 f7d12f7e 2018-08-01 stsp waddch(view->window, '\n');
4006 0cf4efb1 2018-09-29 stsp if (n == selected && view->focussed)
4007 f7d12f7e 2018-08-01 stsp wstandend(view->window);
4008 ffd1d5e5 2018-06-23 stsp free(line);
4009 2550e4c3 2018-07-13 stsp free(wline);
4010 2550e4c3 2018-07-13 stsp wline = NULL;
4011 ffd1d5e5 2018-06-23 stsp n++;
4012 ffd1d5e5 2018-06-23 stsp (*ndisplayed)++;
4013 ffd1d5e5 2018-06-23 stsp *last_displayed_entry = te;
4014 ffd1d5e5 2018-06-23 stsp if (--limit <= 0)
4015 ffd1d5e5 2018-06-23 stsp break;
4016 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_NEXT(te, entry);
4017 ffd1d5e5 2018-06-23 stsp }
4018 ffd1d5e5 2018-06-23 stsp
4019 ffd1d5e5 2018-06-23 stsp return err;
4020 ffd1d5e5 2018-06-23 stsp }
4021 ffd1d5e5 2018-06-23 stsp
4022 ffd1d5e5 2018-06-23 stsp static void
4023 34bc9ec9 2019-02-22 stsp tree_scroll_up(struct tog_view *view,
4024 34bc9ec9 2019-02-22 stsp struct got_tree_entry **first_displayed_entry, int maxscroll,
4025 ffd1d5e5 2018-06-23 stsp const struct got_tree_entries *entries, int isroot)
4026 ffd1d5e5 2018-06-23 stsp {
4027 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *te, *prev;
4028 ffd1d5e5 2018-06-23 stsp int i;
4029 ffd1d5e5 2018-06-23 stsp
4030 00ba99a7 2019-05-12 jcs if (*first_displayed_entry == NULL)
4031 ffd1d5e5 2018-06-23 stsp return;
4032 ffd1d5e5 2018-06-23 stsp
4033 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_FIRST(&entries->head);
4034 ffd1d5e5 2018-06-23 stsp if (*first_displayed_entry == te) {
4035 ffd1d5e5 2018-06-23 stsp if (!isroot)
4036 ffd1d5e5 2018-06-23 stsp *first_displayed_entry = NULL;
4037 ffd1d5e5 2018-06-23 stsp return;
4038 ffd1d5e5 2018-06-23 stsp }
4039 ffd1d5e5 2018-06-23 stsp
4040 ffd1d5e5 2018-06-23 stsp /* XXX this is stupid... switch to TAILQ? */
4041 ffd1d5e5 2018-06-23 stsp for (i = 0; i < maxscroll; i++) {
4042 ffd1d5e5 2018-06-23 stsp while (te != *first_displayed_entry) {
4043 ffd1d5e5 2018-06-23 stsp prev = te;
4044 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_NEXT(te, entry);
4045 ffd1d5e5 2018-06-23 stsp }
4046 ffd1d5e5 2018-06-23 stsp *first_displayed_entry = prev;
4047 ffd1d5e5 2018-06-23 stsp te = SIMPLEQ_FIRST(&entries->head);
4048 ffd1d5e5 2018-06-23 stsp }
4049 ffd1d5e5 2018-06-23 stsp if (!isroot && te == SIMPLEQ_FIRST(&entries->head) && i < maxscroll)
4050 ffd1d5e5 2018-06-23 stsp *first_displayed_entry = NULL;
4051 ffd1d5e5 2018-06-23 stsp }
4052 ffd1d5e5 2018-06-23 stsp
4053 768394f3 2019-01-24 stsp static int
4054 ffd1d5e5 2018-06-23 stsp tree_scroll_down(struct got_tree_entry **first_displayed_entry, int maxscroll,
4055 ffd1d5e5 2018-06-23 stsp struct got_tree_entry *last_displayed_entry,
4056 ffd1d5e5 2018-06-23 stsp const struct got_tree_entries *entries)
4057 ffd1d5e5 2018-06-23 stsp {
4058 768394f3 2019-01-24 stsp struct got_tree_entry *next, *last;
4059 ffd1d5e5 2018-06-23 stsp int n = 0;
4060 ffd1d5e5 2018-06-23 stsp
4061 ffd1d5e5 2018-06-23 stsp if (*first_displayed_entry)
4062 ffd1d5e5 2018-06-23 stsp next = SIMPLEQ_NEXT(*first_displayed_entry, entry);
4063 ffd1d5e5 2018-06-23 stsp else
4064 ffd1d5e5 2018-06-23 stsp next = SIMPLEQ_FIRST(&entries->head);
4065 768394f3 2019-01-24 stsp last = last_displayed_entry;
4066 768394f3 2019-01-24 stsp while (next && last && n++ < maxscroll) {
4067 768394f3 2019-01-24 stsp last = SIMPLEQ_NEXT(last, entry);
4068 768394f3 2019-01-24 stsp if (last) {
4069 768394f3 2019-01-24 stsp *first_displayed_entry = next;
4070 768394f3 2019-01-24 stsp next = SIMPLEQ_NEXT(next, entry);
4071 768394f3 2019-01-24 stsp }
4072 ffd1d5e5 2018-06-23 stsp }
4073 768394f3 2019-01-24 stsp return n;
4074 ffd1d5e5 2018-06-23 stsp }
4075 ffd1d5e5 2018-06-23 stsp
4076 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4077 ce52c690 2018-06-23 stsp tree_entry_path(char **path, struct tog_parent_trees *parents,
4078 ce52c690 2018-06-23 stsp struct got_tree_entry *te)
4079 ffd1d5e5 2018-06-23 stsp {
4080 cb2ebc8a 2018-06-23 stsp const struct got_error *err = NULL;
4081 ffd1d5e5 2018-06-23 stsp struct tog_parent_tree *pt;
4082 ffd1d5e5 2018-06-23 stsp size_t len = 2; /* for leading slash and NUL */
4083 ffd1d5e5 2018-06-23 stsp
4084 d9765a41 2018-06-23 stsp TAILQ_FOREACH(pt, parents, entry)
4085 ffd1d5e5 2018-06-23 stsp len += strlen(pt->selected_entry->name) + 1 /* slash */;
4086 ce52c690 2018-06-23 stsp if (te)
4087 ce52c690 2018-06-23 stsp len += strlen(te->name);
4088 ce52c690 2018-06-23 stsp
4089 ce52c690 2018-06-23 stsp *path = calloc(1, len);
4090 ffd1d5e5 2018-06-23 stsp if (path == NULL)
4091 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
4092 ffd1d5e5 2018-06-23 stsp
4093 ce52c690 2018-06-23 stsp (*path)[0] = '/';
4094 d9765a41 2018-06-23 stsp pt = TAILQ_LAST(parents, tog_parent_trees);
4095 d9765a41 2018-06-23 stsp while (pt) {
4096 ce52c690 2018-06-23 stsp if (strlcat(*path, pt->selected_entry->name, 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 ce52c690 2018-06-23 stsp if (strlcat(*path, "/", len) >= len) {
4101 cb2ebc8a 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
4102 cb2ebc8a 2018-06-23 stsp goto done;
4103 cb2ebc8a 2018-06-23 stsp }
4104 d9765a41 2018-06-23 stsp pt = TAILQ_PREV(pt, tog_parent_trees, entry);
4105 ffd1d5e5 2018-06-23 stsp }
4106 ce52c690 2018-06-23 stsp if (te) {
4107 ce52c690 2018-06-23 stsp if (strlcat(*path, te->name, len) >= len) {
4108 ce52c690 2018-06-23 stsp err = got_error(GOT_ERR_NO_SPACE);
4109 ce52c690 2018-06-23 stsp goto done;
4110 ce52c690 2018-06-23 stsp }
4111 cb2ebc8a 2018-06-23 stsp }
4112 ce52c690 2018-06-23 stsp done:
4113 ce52c690 2018-06-23 stsp if (err) {
4114 ce52c690 2018-06-23 stsp free(*path);
4115 ce52c690 2018-06-23 stsp *path = NULL;
4116 ce52c690 2018-06-23 stsp }
4117 ce52c690 2018-06-23 stsp return err;
4118 ce52c690 2018-06-23 stsp }
4119 ce52c690 2018-06-23 stsp
4120 ce52c690 2018-06-23 stsp static const struct got_error *
4121 0cf4efb1 2018-09-29 stsp blame_tree_entry(struct tog_view **new_view, int begin_x,
4122 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
4123 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4124 8b473291 2019-02-21 stsp struct got_repository *repo)
4125 ce52c690 2018-06-23 stsp {
4126 ce52c690 2018-06-23 stsp const struct got_error *err = NULL;
4127 ce52c690 2018-06-23 stsp char *path;
4128 e5a0f69f 2018-08-18 stsp struct tog_view *blame_view;
4129 a0de39f3 2019-08-09 stsp
4130 a0de39f3 2019-08-09 stsp *new_view = NULL;
4131 69efd4c4 2018-07-18 stsp
4132 ce52c690 2018-06-23 stsp err = tree_entry_path(&path, parents, te);
4133 ce52c690 2018-06-23 stsp if (err)
4134 ce52c690 2018-06-23 stsp return err;
4135 ffd1d5e5 2018-06-23 stsp
4136 669b5ffa 2018-10-07 stsp blame_view = view_open(0, 0, 0, begin_x, TOG_VIEW_BLAME);
4137 83ce39e3 2019-08-12 stsp if (blame_view == NULL) {
4138 83ce39e3 2019-08-12 stsp err = got_error_from_errno("view_open");
4139 83ce39e3 2019-08-12 stsp goto done;
4140 83ce39e3 2019-08-12 stsp }
4141 cdf1ee82 2018-08-01 stsp
4142 8b473291 2019-02-21 stsp err = open_blame_view(blame_view, path, commit_id, refs, repo);
4143 e5a0f69f 2018-08-18 stsp if (err) {
4144 fc06ba56 2019-08-22 stsp if (err->code == GOT_ERR_CANCELLED)
4145 fc06ba56 2019-08-22 stsp err = NULL;
4146 e5a0f69f 2018-08-18 stsp view_close(blame_view);
4147 e5a0f69f 2018-08-18 stsp } else
4148 e5a0f69f 2018-08-18 stsp *new_view = blame_view;
4149 83ce39e3 2019-08-12 stsp done:
4150 83ce39e3 2019-08-12 stsp free(path);
4151 69efd4c4 2018-07-18 stsp return err;
4152 69efd4c4 2018-07-18 stsp }
4153 69efd4c4 2018-07-18 stsp
4154 69efd4c4 2018-07-18 stsp static const struct got_error *
4155 669b5ffa 2018-10-07 stsp log_tree_entry(struct tog_view **new_view, int begin_x,
4156 e5a0f69f 2018-08-18 stsp struct got_tree_entry *te, struct tog_parent_trees *parents,
4157 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4158 8b473291 2019-02-21 stsp struct got_repository *repo)
4159 69efd4c4 2018-07-18 stsp {
4160 e5a0f69f 2018-08-18 stsp struct tog_view *log_view;
4161 69efd4c4 2018-07-18 stsp const struct got_error *err = NULL;
4162 69efd4c4 2018-07-18 stsp char *path;
4163 a0de39f3 2019-08-09 stsp
4164 a0de39f3 2019-08-09 stsp *new_view = NULL;
4165 69efd4c4 2018-07-18 stsp
4166 669b5ffa 2018-10-07 stsp log_view = view_open(0, 0, 0, begin_x, TOG_VIEW_LOG);
4167 e5a0f69f 2018-08-18 stsp if (log_view == NULL)
4168 638f9024 2019-05-13 stsp return got_error_from_errno("view_open");
4169 e5a0f69f 2018-08-18 stsp
4170 69efd4c4 2018-07-18 stsp err = tree_entry_path(&path, parents, te);
4171 69efd4c4 2018-07-18 stsp if (err)
4172 69efd4c4 2018-07-18 stsp return err;
4173 69efd4c4 2018-07-18 stsp
4174 d01904d4 2019-06-25 stsp err = open_log_view(log_view, commit_id, refs, repo, NULL, path, 0);
4175 ba4f502b 2018-08-04 stsp if (err)
4176 e5a0f69f 2018-08-18 stsp view_close(log_view);
4177 e5a0f69f 2018-08-18 stsp else
4178 e5a0f69f 2018-08-18 stsp *new_view = log_view;
4179 cb2ebc8a 2018-06-23 stsp free(path);
4180 cb2ebc8a 2018-06-23 stsp return err;
4181 ffd1d5e5 2018-06-23 stsp }
4182 ffd1d5e5 2018-06-23 stsp
4183 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4184 ad80ab7b 2018-08-04 stsp open_tree_view(struct tog_view *view, struct got_tree_object *root,
4185 8b473291 2019-02-21 stsp struct got_object_id *commit_id, struct got_reflist_head *refs,
4186 8b473291 2019-02-21 stsp struct got_repository *repo)
4187 ffd1d5e5 2018-06-23 stsp {
4188 ffd1d5e5 2018-06-23 stsp const struct got_error *err = NULL;
4189 ad80ab7b 2018-08-04 stsp char *commit_id_str = NULL;
4190 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
4191 ffd1d5e5 2018-06-23 stsp
4192 fb2756b9 2018-08-04 stsp TAILQ_INIT(&s->parents);
4193 ffd1d5e5 2018-06-23 stsp
4194 ffd1d5e5 2018-06-23 stsp err = got_object_id_str(&commit_id_str, commit_id);
4195 ffd1d5e5 2018-06-23 stsp if (err != NULL)
4196 ffd1d5e5 2018-06-23 stsp goto done;
4197 ffd1d5e5 2018-06-23 stsp
4198 c1124f18 2018-12-23 stsp if (asprintf(&s->tree_label, "commit %s", commit_id_str) == -1) {
4199 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4200 ffd1d5e5 2018-06-23 stsp goto done;
4201 ffd1d5e5 2018-06-23 stsp }
4202 ffd1d5e5 2018-06-23 stsp
4203 fb2756b9 2018-08-04 stsp s->root = s->tree = root;
4204 fb2756b9 2018-08-04 stsp s->entries = got_object_tree_get_entries(root);
4205 fb2756b9 2018-08-04 stsp s->first_displayed_entry = SIMPLEQ_FIRST(&s->entries->head);
4206 8d0fe45a 2019-08-12 stsp s->selected_entry = SIMPLEQ_FIRST(&s->entries->head);
4207 6484ec90 2018-09-29 stsp s->commit_id = got_object_id_dup(commit_id);
4208 6484ec90 2018-09-29 stsp if (s->commit_id == NULL) {
4209 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
4210 6484ec90 2018-09-29 stsp goto done;
4211 6484ec90 2018-09-29 stsp }
4212 8b473291 2019-02-21 stsp s->refs = refs;
4213 fb2756b9 2018-08-04 stsp s->repo = repo;
4214 e5a0f69f 2018-08-18 stsp
4215 e5a0f69f 2018-08-18 stsp view->show = show_tree_view;
4216 e5a0f69f 2018-08-18 stsp view->input = input_tree_view;
4217 e5a0f69f 2018-08-18 stsp view->close = close_tree_view;
4218 7c32bd05 2019-06-22 stsp view->search_start = search_start_tree_view;
4219 7c32bd05 2019-06-22 stsp view->search_next = search_next_tree_view;
4220 ad80ab7b 2018-08-04 stsp done:
4221 ad80ab7b 2018-08-04 stsp free(commit_id_str);
4222 6484ec90 2018-09-29 stsp if (err) {
4223 fb2756b9 2018-08-04 stsp free(s->tree_label);
4224 6484ec90 2018-09-29 stsp s->tree_label = NULL;
4225 6484ec90 2018-09-29 stsp }
4226 ad80ab7b 2018-08-04 stsp return err;
4227 ad80ab7b 2018-08-04 stsp }
4228 ad80ab7b 2018-08-04 stsp
4229 e5a0f69f 2018-08-18 stsp static const struct got_error *
4230 ad80ab7b 2018-08-04 stsp close_tree_view(struct tog_view *view)
4231 ad80ab7b 2018-08-04 stsp {
4232 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
4233 ad80ab7b 2018-08-04 stsp
4234 fb2756b9 2018-08-04 stsp free(s->tree_label);
4235 6484ec90 2018-09-29 stsp s->tree_label = NULL;
4236 6484ec90 2018-09-29 stsp free(s->commit_id);
4237 6484ec90 2018-09-29 stsp s->commit_id = NULL;
4238 fb2756b9 2018-08-04 stsp while (!TAILQ_EMPTY(&s->parents)) {
4239 ad80ab7b 2018-08-04 stsp struct tog_parent_tree *parent;
4240 fb2756b9 2018-08-04 stsp parent = TAILQ_FIRST(&s->parents);
4241 fb2756b9 2018-08-04 stsp TAILQ_REMOVE(&s->parents, parent, entry);
4242 ad80ab7b 2018-08-04 stsp free(parent);
4243 ad80ab7b 2018-08-04 stsp
4244 ad80ab7b 2018-08-04 stsp }
4245 fb2756b9 2018-08-04 stsp if (s->tree != s->root)
4246 fb2756b9 2018-08-04 stsp got_object_tree_close(s->tree);
4247 e5a0f69f 2018-08-18 stsp got_object_tree_close(s->root);
4248 7c32bd05 2019-06-22 stsp
4249 7c32bd05 2019-06-22 stsp return NULL;
4250 7c32bd05 2019-06-22 stsp }
4251 7c32bd05 2019-06-22 stsp
4252 7c32bd05 2019-06-22 stsp static const struct got_error *
4253 7c32bd05 2019-06-22 stsp search_start_tree_view(struct tog_view *view)
4254 7c32bd05 2019-06-22 stsp {
4255 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
4256 7c32bd05 2019-06-22 stsp
4257 7c32bd05 2019-06-22 stsp s->matched_entry = NULL;
4258 7c32bd05 2019-06-22 stsp return NULL;
4259 7c32bd05 2019-06-22 stsp }
4260 7c32bd05 2019-06-22 stsp
4261 7c32bd05 2019-06-22 stsp static int
4262 7c32bd05 2019-06-22 stsp match_tree_entry(struct got_tree_entry *te, regex_t *regex)
4263 7c32bd05 2019-06-22 stsp {
4264 7c32bd05 2019-06-22 stsp regmatch_t regmatch;
4265 7c32bd05 2019-06-22 stsp
4266 7c32bd05 2019-06-22 stsp return regexec(regex, te->name, 1, &regmatch, 0) == 0;
4267 7c32bd05 2019-06-22 stsp }
4268 7c32bd05 2019-06-22 stsp
4269 7c32bd05 2019-06-22 stsp static const struct got_error *
4270 7c32bd05 2019-06-22 stsp search_next_tree_view(struct tog_view *view)
4271 7c32bd05 2019-06-22 stsp {
4272 7c32bd05 2019-06-22 stsp struct tog_tree_view_state *s = &view->state.tree;
4273 a0de39f3 2019-08-09 stsp struct got_tree_entry *entry = NULL, *te;
4274 7c32bd05 2019-06-22 stsp
4275 7c32bd05 2019-06-22 stsp if (!view->searching) {
4276 7c32bd05 2019-06-22 stsp view->search_next_done = 1;
4277 7c32bd05 2019-06-22 stsp return NULL;
4278 7c32bd05 2019-06-22 stsp }
4279 7c32bd05 2019-06-22 stsp
4280 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
4281 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD) {
4282 7c32bd05 2019-06-22 stsp if (s->selected_entry)
4283 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_NEXT(s->selected_entry, entry);
4284 7c32bd05 2019-06-22 stsp else
4285 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_FIRST(&s->entries->head);
4286 7c32bd05 2019-06-22 stsp }
4287 7c32bd05 2019-06-22 stsp else {
4288 7c32bd05 2019-06-22 stsp if (s->selected_entry == NULL) {
4289 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry)
4290 7c32bd05 2019-06-22 stsp entry = te;
4291 7c32bd05 2019-06-22 stsp } else {
4292 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry) {
4293 7c32bd05 2019-06-22 stsp entry = te;
4294 7c32bd05 2019-06-22 stsp if (SIMPLEQ_NEXT(te, entry) ==
4295 7c32bd05 2019-06-22 stsp s->selected_entry)
4296 7c32bd05 2019-06-22 stsp break;
4297 7c32bd05 2019-06-22 stsp }
4298 7c32bd05 2019-06-22 stsp }
4299 7c32bd05 2019-06-22 stsp }
4300 7c32bd05 2019-06-22 stsp } else {
4301 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
4302 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_FIRST(&s->entries->head);
4303 7c32bd05 2019-06-22 stsp else {
4304 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry)
4305 7c32bd05 2019-06-22 stsp entry = te;
4306 7c32bd05 2019-06-22 stsp }
4307 7c32bd05 2019-06-22 stsp }
4308 7c32bd05 2019-06-22 stsp
4309 7c32bd05 2019-06-22 stsp while (1) {
4310 7c32bd05 2019-06-22 stsp if (entry == NULL) {
4311 ac66afb8 2019-06-24 stsp if (s->matched_entry == NULL) {
4312 ac66afb8 2019-06-24 stsp view->search_next_done = 1;
4313 ac66afb8 2019-06-24 stsp return NULL;
4314 ac66afb8 2019-06-24 stsp }
4315 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
4316 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_FIRST(&s->entries->head);
4317 7c32bd05 2019-06-22 stsp else {
4318 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry)
4319 7c32bd05 2019-06-22 stsp entry = te;
4320 7c32bd05 2019-06-22 stsp }
4321 7c32bd05 2019-06-22 stsp }
4322 7c32bd05 2019-06-22 stsp
4323 7c32bd05 2019-06-22 stsp if (match_tree_entry(entry, &view->regex)) {
4324 7c32bd05 2019-06-22 stsp view->search_next_done = 1;
4325 7c32bd05 2019-06-22 stsp s->matched_entry = entry;
4326 7c32bd05 2019-06-22 stsp break;
4327 7c32bd05 2019-06-22 stsp }
4328 7c32bd05 2019-06-22 stsp
4329 7c32bd05 2019-06-22 stsp if (view->searching == TOG_SEARCH_FORWARD)
4330 7c32bd05 2019-06-22 stsp entry = SIMPLEQ_NEXT(entry, entry);
4331 7c32bd05 2019-06-22 stsp else {
4332 7c32bd05 2019-06-22 stsp if (SIMPLEQ_FIRST(&s->entries->head) == entry)
4333 7c32bd05 2019-06-22 stsp entry = NULL;
4334 7c32bd05 2019-06-22 stsp else {
4335 7c32bd05 2019-06-22 stsp SIMPLEQ_FOREACH(te, &s->entries->head, entry) {
4336 7c32bd05 2019-06-22 stsp if (SIMPLEQ_NEXT(te, entry) == entry) {
4337 7c32bd05 2019-06-22 stsp entry = te;
4338 7c32bd05 2019-06-22 stsp break;
4339 7c32bd05 2019-06-22 stsp }
4340 7c32bd05 2019-06-22 stsp }
4341 7c32bd05 2019-06-22 stsp }
4342 7c32bd05 2019-06-22 stsp }
4343 7c32bd05 2019-06-22 stsp }
4344 e5a0f69f 2018-08-18 stsp
4345 7c32bd05 2019-06-22 stsp if (s->matched_entry) {
4346 7c32bd05 2019-06-22 stsp s->first_displayed_entry = s->matched_entry;
4347 7c32bd05 2019-06-22 stsp s->selected = 0;
4348 7c32bd05 2019-06-22 stsp }
4349 7c32bd05 2019-06-22 stsp
4350 e5a0f69f 2018-08-18 stsp return NULL;
4351 ad80ab7b 2018-08-04 stsp }
4352 ad80ab7b 2018-08-04 stsp
4353 ad80ab7b 2018-08-04 stsp static const struct got_error *
4354 ad80ab7b 2018-08-04 stsp show_tree_view(struct tog_view *view)
4355 ad80ab7b 2018-08-04 stsp {
4356 ad80ab7b 2018-08-04 stsp const struct got_error *err = NULL;
4357 fb2756b9 2018-08-04 stsp struct tog_tree_view_state *s = &view->state.tree;
4358 e5a0f69f 2018-08-18 stsp char *parent_path;
4359 ad80ab7b 2018-08-04 stsp
4360 e5a0f69f 2018-08-18 stsp err = tree_entry_path(&parent_path, &s->parents, NULL);
4361 e5a0f69f 2018-08-18 stsp if (err)
4362 e5a0f69f 2018-08-18 stsp return err;
4363 ffd1d5e5 2018-06-23 stsp
4364 e5a0f69f 2018-08-18 stsp err = draw_tree_entries(view, &s->first_displayed_entry,
4365 e5a0f69f 2018-08-18 stsp &s->last_displayed_entry, &s->selected_entry,
4366 e5a0f69f 2018-08-18 stsp &s->ndisplayed, s->tree_label, s->show_ids, parent_path,
4367 e5a0f69f 2018-08-18 stsp s->entries, s->selected, view->nlines, s->tree == s->root);
4368 e5a0f69f 2018-08-18 stsp free(parent_path);
4369 669b5ffa 2018-10-07 stsp
4370 669b5ffa 2018-10-07 stsp view_vborder(view);
4371 e5a0f69f 2018-08-18 stsp return err;
4372 e5a0f69f 2018-08-18 stsp }
4373 ce52c690 2018-06-23 stsp
4374 e5a0f69f 2018-08-18 stsp static const struct got_error *
4375 e5a0f69f 2018-08-18 stsp input_tree_view(struct tog_view **new_view, struct tog_view **dead_view,
4376 878940b7 2018-09-29 stsp struct tog_view **focus_view, struct tog_view *view, int ch)
4377 e5a0f69f 2018-08-18 stsp {
4378 e5a0f69f 2018-08-18 stsp const struct got_error *err = NULL;
4379 e5a0f69f 2018-08-18 stsp struct tog_tree_view_state *s = &view->state.tree;
4380 669b5ffa 2018-10-07 stsp struct tog_view *log_view;
4381 768394f3 2019-01-24 stsp int begin_x = 0, nscrolled;
4382 ffd1d5e5 2018-06-23 stsp
4383 e5a0f69f 2018-08-18 stsp switch (ch) {
4384 1e37a5c2 2019-05-12 jcs case 'i':
4385 1e37a5c2 2019-05-12 jcs s->show_ids = !s->show_ids;
4386 1e37a5c2 2019-05-12 jcs break;
4387 1e37a5c2 2019-05-12 jcs case 'l':
4388 1e37a5c2 2019-05-12 jcs if (!s->selected_entry)
4389 ffd1d5e5 2018-06-23 stsp break;
4390 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view))
4391 1e37a5c2 2019-05-12 jcs begin_x = view_split_begin_x(view->begin_x);
4392 1e37a5c2 2019-05-12 jcs err = log_tree_entry(&log_view, begin_x,
4393 1e37a5c2 2019-05-12 jcs s->selected_entry, &s->parents,
4394 1e37a5c2 2019-05-12 jcs s->commit_id, s->refs, s->repo);
4395 1e37a5c2 2019-05-12 jcs if (view_is_parent_view(view)) {
4396 1e37a5c2 2019-05-12 jcs err = view_close_child(view);
4397 1e37a5c2 2019-05-12 jcs if (err)
4398 1e37a5c2 2019-05-12 jcs return err;
4399 1e37a5c2 2019-05-12 jcs err = view_set_child(view, log_view);
4400 1e37a5c2 2019-05-12 jcs if (err) {
4401 1e37a5c2 2019-05-12 jcs view_close(log_view);
4402 669b5ffa 2018-10-07 stsp break;
4403 1e37a5c2 2019-05-12 jcs }
4404 1e37a5c2 2019-05-12 jcs *focus_view = log_view;
4405 1e37a5c2 2019-05-12 jcs view->child_focussed = 1;
4406 1e37a5c2 2019-05-12 jcs } else
4407 1e37a5c2 2019-05-12 jcs *new_view = log_view;
4408 1e37a5c2 2019-05-12 jcs break;
4409 1e37a5c2 2019-05-12 jcs case 'k':
4410 1e37a5c2 2019-05-12 jcs case KEY_UP:
4411 1e37a5c2 2019-05-12 jcs if (s->selected > 0) {
4412 1e37a5c2 2019-05-12 jcs s->selected--;
4413 1e37a5c2 2019-05-12 jcs if (s->selected == 0)
4414 1e37a5c2 2019-05-12 jcs break;
4415 1e37a5c2 2019-05-12 jcs }
4416 1e37a5c2 2019-05-12 jcs if (s->selected > 0)
4417 1e37a5c2 2019-05-12 jcs break;
4418 1e37a5c2 2019-05-12 jcs tree_scroll_up(view, &s->first_displayed_entry, 1,
4419 1e37a5c2 2019-05-12 jcs s->entries, s->tree == s->root);
4420 1e37a5c2 2019-05-12 jcs break;
4421 1e37a5c2 2019-05-12 jcs case KEY_PPAGE:
4422 1e37a5c2 2019-05-12 jcs tree_scroll_up(view, &s->first_displayed_entry,
4423 1e37a5c2 2019-05-12 jcs MAX(0, view->nlines - 4 - s->selected), s->entries,
4424 1e37a5c2 2019-05-12 jcs s->tree == s->root);
4425 1e37a5c2 2019-05-12 jcs s->selected = 0;
4426 1e37a5c2 2019-05-12 jcs if (SIMPLEQ_FIRST(&s->entries->head) ==
4427 1e37a5c2 2019-05-12 jcs s->first_displayed_entry && s->tree != s->root)
4428 1e37a5c2 2019-05-12 jcs s->first_displayed_entry = NULL;
4429 1e37a5c2 2019-05-12 jcs break;
4430 1e37a5c2 2019-05-12 jcs case 'j':
4431 1e37a5c2 2019-05-12 jcs case KEY_DOWN:
4432 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1) {
4433 1e37a5c2 2019-05-12 jcs s->selected++;
4434 1e37a5c2 2019-05-12 jcs break;
4435 1e37a5c2 2019-05-12 jcs }
4436 00ba99a7 2019-05-12 jcs if (SIMPLEQ_NEXT(s->last_displayed_entry, entry) == NULL)
4437 1e37a5c2 2019-05-12 jcs /* can't scroll any further */
4438 1e37a5c2 2019-05-12 jcs break;
4439 1e37a5c2 2019-05-12 jcs tree_scroll_down(&s->first_displayed_entry, 1,
4440 1e37a5c2 2019-05-12 jcs s->last_displayed_entry, s->entries);
4441 1e37a5c2 2019-05-12 jcs break;
4442 1e37a5c2 2019-05-12 jcs case KEY_NPAGE:
4443 1e37a5c2 2019-05-12 jcs if (SIMPLEQ_NEXT(s->last_displayed_entry, entry)
4444 1e37a5c2 2019-05-12 jcs == NULL) {
4445 1e37a5c2 2019-05-12 jcs /* can't scroll any further; move cursor down */
4446 1e37a5c2 2019-05-12 jcs if (s->selected < s->ndisplayed - 1)
4447 1e37a5c2 2019-05-12 jcs s->selected = s->ndisplayed - 1;
4448 1e37a5c2 2019-05-12 jcs break;
4449 1e37a5c2 2019-05-12 jcs }
4450 1e37a5c2 2019-05-12 jcs nscrolled = tree_scroll_down(&s->first_displayed_entry,
4451 1e37a5c2 2019-05-12 jcs view->nlines, s->last_displayed_entry, s->entries);
4452 1e37a5c2 2019-05-12 jcs if (nscrolled < view->nlines) {
4453 1e37a5c2 2019-05-12 jcs int ndisplayed = 0;
4454 1e37a5c2 2019-05-12 jcs struct got_tree_entry *te;
4455 1e37a5c2 2019-05-12 jcs te = s->first_displayed_entry;
4456 1e37a5c2 2019-05-12 jcs do {
4457 1e37a5c2 2019-05-12 jcs ndisplayed++;
4458 1e37a5c2 2019-05-12 jcs te = SIMPLEQ_NEXT(te, entry);
4459 1e37a5c2 2019-05-12 jcs } while (te);
4460 1e37a5c2 2019-05-12 jcs s->selected = ndisplayed - 1;
4461 1e37a5c2 2019-05-12 jcs }
4462 1e37a5c2 2019-05-12 jcs break;
4463 1e37a5c2 2019-05-12 jcs case KEY_ENTER:
4464 1e37a5c2 2019-05-12 jcs case '\r':
4465 1e37a5c2 2019-05-12 jcs case KEY_BACKSPACE:
4466 6f10d58e 2019-05-12 stsp if (s->selected_entry == NULL || ch == KEY_BACKSPACE) {
4467 6f10d58e 2019-05-12 stsp struct tog_parent_tree *parent;
4468 1e37a5c2 2019-05-12 jcs /* user selected '..' */
4469 1e37a5c2 2019-05-12 jcs if (s->tree == s->root)
4470 1e37a5c2 2019-05-12 jcs break;
4471 1e37a5c2 2019-05-12 jcs parent = TAILQ_FIRST(&s->parents);
4472 1e37a5c2 2019-05-12 jcs TAILQ_REMOVE(&s->parents, parent,
4473 1e37a5c2 2019-05-12 jcs entry);
4474 1e37a5c2 2019-05-12 jcs got_object_tree_close(s->tree);
4475 1e37a5c2 2019-05-12 jcs s->tree = parent->tree;
4476 1e37a5c2 2019-05-12 jcs s->entries =
4477 1e37a5c2 2019-05-12 jcs got_object_tree_get_entries(s->tree);
4478 1e37a5c2 2019-05-12 jcs s->first_displayed_entry =
4479 1e37a5c2 2019-05-12 jcs parent->first_displayed_entry;
4480 1e37a5c2 2019-05-12 jcs s->selected_entry =
4481 1e37a5c2 2019-05-12 jcs parent->selected_entry;
4482 1e37a5c2 2019-05-12 jcs s->selected = parent->selected;
4483 1e37a5c2 2019-05-12 jcs free(parent);
4484 1e37a5c2 2019-05-12 jcs } else if (S_ISDIR(s->selected_entry->mode)) {
4485 941e9f74 2019-05-21 stsp struct got_tree_object *subtree;
4486 941e9f74 2019-05-21 stsp err = got_object_open_as_tree(&subtree,
4487 1e37a5c2 2019-05-12 jcs s->repo, s->selected_entry->id);
4488 1e37a5c2 2019-05-12 jcs if (err)
4489 1e37a5c2 2019-05-12 jcs break;
4490 941e9f74 2019-05-21 stsp err = tree_view_visit_subtree(subtree, s);
4491 941e9f74 2019-05-21 stsp if (err) {
4492 941e9f74 2019-05-21 stsp got_object_tree_close(subtree);
4493 1e37a5c2 2019-05-12 jcs break;
4494 1e37a5c2 2019-05-12 jcs }
4495 1e37a5c2 2019-05-12 jcs } else if (S_ISREG(s->selected_entry->mode)) {
4496 1e37a5c2 2019-05-12 jcs struct tog_view *blame_view;
4497 1e37a5c2 2019-05-12 jcs int begin_x = view_is_parent_view(view) ?
4498 1e37a5c2 2019-05-12 jcs view_split_begin_x(view->begin_x) : 0;
4499 1e37a5c2 2019-05-12 jcs
4500 1e37a5c2 2019-05-12 jcs err = blame_tree_entry(&blame_view, begin_x,
4501 669b5ffa 2018-10-07 stsp s->selected_entry, &s->parents,
4502 8b473291 2019-02-21 stsp s->commit_id, s->refs, s->repo);
4503 1e37a5c2 2019-05-12 jcs if (err)
4504 1e37a5c2 2019-05-12 jcs break;
4505 669b5ffa 2018-10-07 stsp if (view_is_parent_view(view)) {
4506 669b5ffa 2018-10-07 stsp err = view_close_child(view);
4507 669b5ffa 2018-10-07 stsp if (err)
4508 669b5ffa 2018-10-07 stsp return err;
4509 1e37a5c2 2019-05-12 jcs err = view_set_child(view, blame_view);
4510 669b5ffa 2018-10-07 stsp if (err) {
4511 1e37a5c2 2019-05-12 jcs view_close(blame_view);
4512 669b5ffa 2018-10-07 stsp break;
4513 669b5ffa 2018-10-07 stsp }
4514 1e37a5c2 2019-05-12 jcs *focus_view = blame_view;
4515 669b5ffa 2018-10-07 stsp view->child_focussed = 1;
4516 669b5ffa 2018-10-07 stsp } else
4517 1e37a5c2 2019-05-12 jcs *new_view = blame_view;
4518 1e37a5c2 2019-05-12 jcs }
4519 1e37a5c2 2019-05-12 jcs break;
4520 1e37a5c2 2019-05-12 jcs case KEY_RESIZE:
4521 1e37a5c2 2019-05-12 jcs if (s->selected > view->nlines)
4522 1e37a5c2 2019-05-12 jcs s->selected = s->ndisplayed - 1;
4523 1e37a5c2 2019-05-12 jcs break;
4524 1e37a5c2 2019-05-12 jcs default:
4525 1e37a5c2 2019-05-12 jcs break;
4526 ffd1d5e5 2018-06-23 stsp }
4527 e5a0f69f 2018-08-18 stsp
4528 ffd1d5e5 2018-06-23 stsp return err;
4529 9f7d7167 2018-04-29 stsp }
4530 9f7d7167 2018-04-29 stsp
4531 ffd1d5e5 2018-06-23 stsp __dead static void
4532 ffd1d5e5 2018-06-23 stsp usage_tree(void)
4533 ffd1d5e5 2018-06-23 stsp {
4534 ffd1d5e5 2018-06-23 stsp endwin();
4535 ffd1d5e5 2018-06-23 stsp fprintf(stderr, "usage: %s tree [-c commit] [repository-path]\n",
4536 ffd1d5e5 2018-06-23 stsp getprogname());
4537 ffd1d5e5 2018-06-23 stsp exit(1);
4538 ffd1d5e5 2018-06-23 stsp }
4539 ffd1d5e5 2018-06-23 stsp
4540 ffd1d5e5 2018-06-23 stsp static const struct got_error *
4541 ffd1d5e5 2018-06-23 stsp cmd_tree(int argc, char *argv[])
4542 ffd1d5e5 2018-06-23 stsp {
4543 ffd1d5e5 2018-06-23 stsp const struct got_error *error;
4544 ffd1d5e5 2018-06-23 stsp struct got_repository *repo = NULL;
4545 8b473291 2019-02-21 stsp struct got_reflist_head refs;
4546 ffd1d5e5 2018-06-23 stsp char *repo_path = NULL;
4547 ffd1d5e5 2018-06-23 stsp struct got_object_id *commit_id = NULL;
4548 ffd1d5e5 2018-06-23 stsp char *commit_id_arg = NULL;
4549 ffd1d5e5 2018-06-23 stsp struct got_commit_object *commit = NULL;
4550 ffd1d5e5 2018-06-23 stsp struct got_tree_object *tree = NULL;
4551 ffd1d5e5 2018-06-23 stsp int ch;
4552 5221c383 2018-08-01 stsp struct tog_view *view;
4553 70ac5f84 2019-03-28 stsp
4554 70ac5f84 2019-03-28 stsp SIMPLEQ_INIT(&refs);
4555 ffd1d5e5 2018-06-23 stsp
4556 ffd1d5e5 2018-06-23 stsp #ifndef PROFILE
4557 d188b9a6 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc tty exec sendfd unveil",
4558 d188b9a6 2019-01-04 stsp NULL) == -1)
4559 ffd1d5e5 2018-06-23 stsp err(1, "pledge");
4560 ffd1d5e5 2018-06-23 stsp #endif
4561 ffd1d5e5 2018-06-23 stsp
4562 ffd1d5e5 2018-06-23 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
4563 ffd1d5e5 2018-06-23 stsp switch (ch) {
4564 ffd1d5e5 2018-06-23 stsp case 'c':
4565 ffd1d5e5 2018-06-23 stsp commit_id_arg = optarg;
4566 ffd1d5e5 2018-06-23 stsp break;
4567 ffd1d5e5 2018-06-23 stsp default:
4568 17020d27 2019-03-07 stsp usage_tree();
4569 ffd1d5e5 2018-06-23 stsp /* NOTREACHED */
4570 ffd1d5e5 2018-06-23 stsp }
4571 ffd1d5e5 2018-06-23 stsp }
4572 ffd1d5e5 2018-06-23 stsp
4573 ffd1d5e5 2018-06-23 stsp argc -= optind;
4574 ffd1d5e5 2018-06-23 stsp argv += optind;
4575 ffd1d5e5 2018-06-23 stsp
4576 ffd1d5e5 2018-06-23 stsp if (argc == 0) {
4577 52185f70 2019-02-05 stsp struct got_worktree *worktree;
4578 52185f70 2019-02-05 stsp char *cwd = getcwd(NULL, 0);
4579 52185f70 2019-02-05 stsp if (cwd == NULL)
4580 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
4581 52185f70 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
4582 52185f70 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4583 52185f70 2019-02-05 stsp goto done;
4584 52185f70 2019-02-05 stsp if (worktree) {
4585 52185f70 2019-02-05 stsp free(cwd);
4586 52185f70 2019-02-05 stsp repo_path =
4587 52185f70 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
4588 52185f70 2019-02-05 stsp got_worktree_close(worktree);
4589 52185f70 2019-02-05 stsp } else
4590 52185f70 2019-02-05 stsp repo_path = cwd;
4591 52185f70 2019-02-05 stsp if (repo_path == NULL) {
4592 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4593 52185f70 2019-02-05 stsp goto done;
4594 52185f70 2019-02-05 stsp }
4595 ffd1d5e5 2018-06-23 stsp } else if (argc == 1) {
4596 ffd1d5e5 2018-06-23 stsp repo_path = realpath(argv[0], NULL);
4597 ffd1d5e5 2018-06-23 stsp if (repo_path == NULL)
4598 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
4599 ffd1d5e5 2018-06-23 stsp } else
4600 ffd1d5e5 2018-06-23 stsp usage_log();
4601 a915003a 2019-02-05 stsp
4602 a915003a 2019-02-05 stsp init_curses();
4603 ffd1d5e5 2018-06-23 stsp
4604 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4605 c02c541e 2019-03-29 stsp if (error != NULL)
4606 52185f70 2019-02-05 stsp goto done;
4607 d188b9a6 2019-01-04 stsp
4608 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), NULL);
4609 c02c541e 2019-03-29 stsp if (error)
4610 52185f70 2019-02-05 stsp goto done;
4611 ffd1d5e5 2018-06-23 stsp
4612 15a94983 2018-12-23 stsp if (commit_id_arg == NULL)
4613 19e70ad6 2019-05-14 stsp error = get_head_commit_id(&commit_id, GOT_REF_HEAD, repo);
4614 f2b6a97d 2019-07-15 stsp else {
4615 f2b6a97d 2019-07-15 stsp error = get_head_commit_id(&commit_id, commit_id_arg, repo);
4616 f2b6a97d 2019-07-15 stsp if (error) {
4617 f2b6a97d 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
4618 f2b6a97d 2019-07-15 stsp goto done;
4619 f2b6a97d 2019-07-15 stsp error = got_repo_match_object_id_prefix(&commit_id,
4620 f2b6a97d 2019-07-15 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, repo);
4621 f2b6a97d 2019-07-15 stsp }
4622 f2b6a97d 2019-07-15 stsp }
4623 ffd1d5e5 2018-06-23 stsp if (error != NULL)
4624 ffd1d5e5 2018-06-23 stsp goto done;
4625 ffd1d5e5 2018-06-23 stsp
4626 ffd1d5e5 2018-06-23 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
4627 ffd1d5e5 2018-06-23 stsp if (error != NULL)
4628 ffd1d5e5 2018-06-23 stsp goto done;
4629 ffd1d5e5 2018-06-23 stsp
4630 45d799e2 2018-12-23 stsp error = got_object_open_as_tree(&tree, repo,
4631 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
4632 ffd1d5e5 2018-06-23 stsp if (error != NULL)
4633 8b473291 2019-02-21 stsp goto done;
4634 8b473291 2019-02-21 stsp
4635 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
4636 8b473291 2019-02-21 stsp if (error)
4637 ffd1d5e5 2018-06-23 stsp goto done;
4638 ffd1d5e5 2018-06-23 stsp
4639 0cf4efb1 2018-09-29 stsp view = view_open(0, 0, 0, 0, TOG_VIEW_TREE);
4640 5221c383 2018-08-01 stsp if (view == NULL) {
4641 638f9024 2019-05-13 stsp error = got_error_from_errno("view_open");
4642 5221c383 2018-08-01 stsp goto done;
4643 5221c383 2018-08-01 stsp }
4644 8b473291 2019-02-21 stsp error = open_tree_view(view, tree, commit_id, &refs, repo);
4645 ad80ab7b 2018-08-04 stsp if (error)
4646 ad80ab7b 2018-08-04 stsp goto done;
4647 e5a0f69f 2018-08-18 stsp error = view_loop(view);
4648 ffd1d5e5 2018-06-23 stsp done:
4649 52185f70 2019-02-05 stsp free(repo_path);
4650 ffd1d5e5 2018-06-23 stsp free(commit_id);
4651 ffd1d5e5 2018-06-23 stsp if (commit)
4652 ffd1d5e5 2018-06-23 stsp got_object_commit_close(commit);
4653 ffd1d5e5 2018-06-23 stsp if (tree)
4654 ffd1d5e5 2018-06-23 stsp got_object_tree_close(tree);
4655 ffd1d5e5 2018-06-23 stsp if (repo)
4656 ffd1d5e5 2018-06-23 stsp got_repo_close(repo);
4657 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
4658 ffd1d5e5 2018-06-23 stsp return error;
4659 9f7d7167 2018-04-29 stsp }
4660 ce5b7c56 2019-07-09 stsp
4661 ce5b7c56 2019-07-09 stsp static void
4662 ce5b7c56 2019-07-09 stsp list_commands(void)
4663 ce5b7c56 2019-07-09 stsp {
4664 ce5b7c56 2019-07-09 stsp int i;
4665 9f7d7167 2018-04-29 stsp
4666 ce5b7c56 2019-07-09 stsp fprintf(stderr, "commands:");
4667 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(tog_commands); i++) {
4668 ce5b7c56 2019-07-09 stsp struct tog_cmd *cmd = &tog_commands[i];
4669 ce5b7c56 2019-07-09 stsp fprintf(stderr, " %s", cmd->name);
4670 ce5b7c56 2019-07-09 stsp }
4671 ce5b7c56 2019-07-09 stsp fputc('\n', stderr);
4672 ce5b7c56 2019-07-09 stsp }
4673 ce5b7c56 2019-07-09 stsp
4674 4ed7e80c 2018-05-20 stsp __dead static void
4675 ce5b7c56 2019-07-09 stsp usage(int hflag)
4676 9f7d7167 2018-04-29 stsp {
4677 53ccebc2 2019-07-30 stsp fprintf(stderr, "usage: %s [-h] [-V] [command] [arg ...]\n",
4678 53ccebc2 2019-07-30 stsp getprogname());
4679 ce5b7c56 2019-07-09 stsp if (hflag)
4680 ce5b7c56 2019-07-09 stsp list_commands();
4681 9f7d7167 2018-04-29 stsp exit(1);
4682 9f7d7167 2018-04-29 stsp }
4683 9f7d7167 2018-04-29 stsp
4684 c2301be8 2018-04-30 stsp static char **
4685 c2301be8 2018-04-30 stsp make_argv(const char *arg0, const char *arg1)
4686 c2301be8 2018-04-30 stsp {
4687 c2301be8 2018-04-30 stsp char **argv;
4688 c2301be8 2018-04-30 stsp int argc = (arg1 == NULL ? 1 : 2);
4689 c2301be8 2018-04-30 stsp
4690 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
4691 c2301be8 2018-04-30 stsp if (argv == NULL)
4692 c2301be8 2018-04-30 stsp err(1, "calloc");
4693 c2301be8 2018-04-30 stsp argv[0] = strdup(arg0);
4694 c2301be8 2018-04-30 stsp if (argv[0] == NULL)
4695 e10c916e 2019-09-15 hiltjo err(1, "strdup");
4696 c2301be8 2018-04-30 stsp if (arg1) {
4697 c2301be8 2018-04-30 stsp argv[1] = strdup(arg1);
4698 c2301be8 2018-04-30 stsp if (argv[1] == NULL)
4699 e10c916e 2019-09-15 hiltjo err(1, "strdup");
4700 c2301be8 2018-04-30 stsp }
4701 c2301be8 2018-04-30 stsp
4702 c2301be8 2018-04-30 stsp return argv;
4703 c2301be8 2018-04-30 stsp }
4704 c2301be8 2018-04-30 stsp
4705 9f7d7167 2018-04-29 stsp int
4706 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
4707 9f7d7167 2018-04-29 stsp {
4708 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
4709 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = NULL;
4710 53ccebc2 2019-07-30 stsp int ch, hflag = 0, Vflag = 0;
4711 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
4712 9f7d7167 2018-04-29 stsp
4713 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
4714 9f7d7167 2018-04-29 stsp
4715 53ccebc2 2019-07-30 stsp while ((ch = getopt(argc, argv, "hV")) != -1) {
4716 9f7d7167 2018-04-29 stsp switch (ch) {
4717 9f7d7167 2018-04-29 stsp case 'h':
4718 9f7d7167 2018-04-29 stsp hflag = 1;
4719 9f7d7167 2018-04-29 stsp break;
4720 53ccebc2 2019-07-30 stsp case 'V':
4721 53ccebc2 2019-07-30 stsp Vflag = 1;
4722 53ccebc2 2019-07-30 stsp break;
4723 9f7d7167 2018-04-29 stsp default:
4724 ce5b7c56 2019-07-09 stsp usage(hflag);
4725 9f7d7167 2018-04-29 stsp /* NOTREACHED */
4726 9f7d7167 2018-04-29 stsp }
4727 9f7d7167 2018-04-29 stsp }
4728 9f7d7167 2018-04-29 stsp
4729 9f7d7167 2018-04-29 stsp argc -= optind;
4730 9f7d7167 2018-04-29 stsp argv += optind;
4731 9f7d7167 2018-04-29 stsp optind = 0;
4732 c2301be8 2018-04-30 stsp optreset = 1;
4733 9f7d7167 2018-04-29 stsp
4734 53ccebc2 2019-07-30 stsp if (Vflag) {
4735 53ccebc2 2019-07-30 stsp got_version_print_str();
4736 53ccebc2 2019-07-30 stsp return 1;
4737 53ccebc2 2019-07-30 stsp }
4738 53ccebc2 2019-07-30 stsp
4739 c2301be8 2018-04-30 stsp if (argc == 0) {
4740 f29d3e89 2018-06-23 stsp if (hflag)
4741 ce5b7c56 2019-07-09 stsp usage(hflag);
4742 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
4743 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
4744 c2301be8 2018-04-30 stsp cmd_argv = make_argv(cmd->name, NULL);
4745 c2301be8 2018-04-30 stsp argc = 1;
4746 c2301be8 2018-04-30 stsp } else {
4747 9f7d7167 2018-04-29 stsp int i;
4748 9f7d7167 2018-04-29 stsp
4749 c2301be8 2018-04-30 stsp /* Did the user specific a command? */
4750 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
4751 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
4752 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
4753 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
4754 9f7d7167 2018-04-29 stsp break;
4755 9f7d7167 2018-04-29 stsp }
4756 9f7d7167 2018-04-29 stsp }
4757 3642c4c6 2019-07-09 stsp
4758 9f7d7167 2018-04-29 stsp if (cmd == NULL) {
4759 d70c3147 2019-07-09 stsp fprintf(stderr, "%s: unknown command '%s'\n",
4760 3642c4c6 2019-07-09 stsp getprogname(), argv[0]);
4761 ce5b7c56 2019-07-09 stsp list_commands();
4762 3642c4c6 2019-07-09 stsp return 1;
4763 9f7d7167 2018-04-29 stsp }
4764 9f7d7167 2018-04-29 stsp }
4765 9f7d7167 2018-04-29 stsp
4766 3642c4c6 2019-07-09 stsp if (hflag)
4767 3642c4c6 2019-07-09 stsp cmd->cmd_usage();
4768 3642c4c6 2019-07-09 stsp else
4769 3642c4c6 2019-07-09 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
4770 3642c4c6 2019-07-09 stsp
4771 9f7d7167 2018-04-29 stsp endwin();
4772 c2301be8 2018-04-30 stsp free(cmd_argv);
4773 fc06ba56 2019-08-22 stsp if (error && error->code != GOT_ERR_CANCELLED)
4774 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
4775 9f7d7167 2018-04-29 stsp return 0;
4776 9f7d7167 2018-04-29 stsp }