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