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