Blame


1 9f7d7167 2018-04-29 stsp /*
2 9f7d7167 2018-04-29 stsp * Copyright (c) 2018 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 80ddbec8 2018-04-29 stsp
19 31120ada 2018-04-30 stsp #include <errno.h>
20 61e69b96 2018-05-20 stsp #define _XOPEN_SOURCE_EXTENDED
21 9f7d7167 2018-04-29 stsp #include <curses.h>
22 61e69b96 2018-05-20 stsp #undef _XOPEN_SOURCE_EXTENDED
23 9f7d7167 2018-04-29 stsp #include <panel.h>
24 9f7d7167 2018-04-29 stsp #include <locale.h>
25 9f7d7167 2018-04-29 stsp #include <stdlib.h>
26 26ed57b2 2018-05-19 stsp #include <stdio.h>
27 9f7d7167 2018-04-29 stsp #include <getopt.h>
28 9f7d7167 2018-04-29 stsp #include <string.h>
29 9f7d7167 2018-04-29 stsp #include <err.h>
30 80ddbec8 2018-04-29 stsp #include <unistd.h>
31 26ed57b2 2018-05-19 stsp #include <util.h>
32 26ed57b2 2018-05-19 stsp #include <limits.h>
33 61e69b96 2018-05-20 stsp #include <wchar.h>
34 9f7d7167 2018-04-29 stsp
35 9f7d7167 2018-04-29 stsp #include "got_error.h"
36 80ddbec8 2018-04-29 stsp #include "got_object.h"
37 80ddbec8 2018-04-29 stsp #include "got_reference.h"
38 80ddbec8 2018-04-29 stsp #include "got_repository.h"
39 80ddbec8 2018-04-29 stsp #include "got_diff.h"
40 511a516b 2018-05-19 stsp #include "got_opentemp.h"
41 9f7d7167 2018-04-29 stsp
42 881b2d3e 2018-04-30 stsp #ifndef MIN
43 881b2d3e 2018-04-30 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
44 881b2d3e 2018-04-30 stsp #endif
45 881b2d3e 2018-04-30 stsp
46 9f7d7167 2018-04-29 stsp #ifndef nitems
47 9f7d7167 2018-04-29 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
48 9f7d7167 2018-04-29 stsp #endif
49 9f7d7167 2018-04-29 stsp
50 9f7d7167 2018-04-29 stsp struct tog_cmd {
51 c2301be8 2018-04-30 stsp const char *name;
52 9f7d7167 2018-04-29 stsp const struct got_error *(*cmd_main)(int, char *[]);
53 9f7d7167 2018-04-29 stsp void (*cmd_usage)(void);
54 c2301be8 2018-04-30 stsp const char *descr;
55 9f7d7167 2018-04-29 stsp };
56 9f7d7167 2018-04-29 stsp
57 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
58 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
59 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
60 4ed7e80c 2018-05-20 stsp __dead static void usage_blame(void);
61 9f7d7167 2018-04-29 stsp
62 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
63 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
64 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_blame(int, char *[]);
65 9f7d7167 2018-04-29 stsp
66 4ed7e80c 2018-05-20 stsp static struct tog_cmd tog_commands[] = {
67 cbb6b58a 2018-05-20 stsp { "log", cmd_log, usage_log,
68 9f7d7167 2018-04-29 stsp "show repository history" },
69 cbb6b58a 2018-05-20 stsp { "diff", cmd_diff, usage_diff,
70 9f7d7167 2018-04-29 stsp "compare files and directories" },
71 cbb6b58a 2018-05-20 stsp { "blame", cmd_blame, usage_blame,
72 9f7d7167 2018-04-29 stsp "show line-by-line file history" },
73 9f7d7167 2018-04-29 stsp };
74 9f7d7167 2018-04-29 stsp
75 fed328cc 2018-05-20 stsp static struct tog_view {
76 26ed57b2 2018-05-19 stsp WINDOW *window;
77 26ed57b2 2018-05-19 stsp PANEL *panel;
78 fed328cc 2018-05-20 stsp } tog_log_view, tog_diff_view;
79 cd0acaa7 2018-05-20 stsp
80 cd0acaa7 2018-05-20 stsp static const struct got_error *
81 cd0acaa7 2018-05-20 stsp show_diff_view(struct got_object *, struct got_object *,
82 cd0acaa7 2018-05-20 stsp struct got_repository *);
83 cd0acaa7 2018-05-20 stsp static const struct got_error *
84 cd0acaa7 2018-05-20 stsp show_log_view(struct got_object_id *, struct got_repository *);
85 26ed57b2 2018-05-19 stsp
86 4ed7e80c 2018-05-20 stsp __dead static void
87 9f7d7167 2018-04-29 stsp usage_log(void)
88 9f7d7167 2018-04-29 stsp {
89 80ddbec8 2018-04-29 stsp endwin();
90 80ddbec8 2018-04-29 stsp fprintf(stderr, "usage: %s log [-c commit] [repository-path]\n",
91 9f7d7167 2018-04-29 stsp getprogname());
92 9f7d7167 2018-04-29 stsp exit(1);
93 80ddbec8 2018-04-29 stsp }
94 80ddbec8 2018-04-29 stsp
95 963b370f 2018-05-20 stsp /* Create newly allocated wide-character string equivalent to a byte string. */
96 80ddbec8 2018-04-29 stsp static const struct got_error *
97 963b370f 2018-05-20 stsp mbs2ws(wchar_t **ws, size_t *wlen, const char *s)
98 963b370f 2018-05-20 stsp {
99 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
100 963b370f 2018-05-20 stsp
101 963b370f 2018-05-20 stsp *ws = NULL;
102 963b370f 2018-05-20 stsp *wlen = mbstowcs(NULL, s, 0);
103 963b370f 2018-05-20 stsp if (*wlen == (size_t)-1)
104 963b370f 2018-05-20 stsp return got_error_from_errno();
105 963b370f 2018-05-20 stsp
106 963b370f 2018-05-20 stsp *ws = calloc(*wlen + 1, sizeof(*ws));
107 963b370f 2018-05-20 stsp if (*ws == NULL)
108 963b370f 2018-05-20 stsp return got_error_from_errno();
109 963b370f 2018-05-20 stsp
110 963b370f 2018-05-20 stsp if (mbstowcs(*ws, s, *wlen) != *wlen)
111 963b370f 2018-05-20 stsp err = got_error_from_errno();
112 963b370f 2018-05-20 stsp
113 963b370f 2018-05-20 stsp if (err) {
114 963b370f 2018-05-20 stsp free(*ws);
115 963b370f 2018-05-20 stsp *ws = NULL;
116 963b370f 2018-05-20 stsp *wlen = 0;
117 963b370f 2018-05-20 stsp }
118 963b370f 2018-05-20 stsp return err;
119 963b370f 2018-05-20 stsp }
120 963b370f 2018-05-20 stsp
121 963b370f 2018-05-20 stsp /* Format a line for display, ensuring that it won't overflow a width limit. */
122 963b370f 2018-05-20 stsp static const struct got_error *
123 963b370f 2018-05-20 stsp format_line(wchar_t **wlinep, int *widthp, char *line, int wlimit)
124 963b370f 2018-05-20 stsp {
125 963b370f 2018-05-20 stsp const struct got_error *err = NULL;
126 963b370f 2018-05-20 stsp int cols = 0;
127 963b370f 2018-05-20 stsp wchar_t *wline = NULL;
128 963b370f 2018-05-20 stsp size_t wlen;
129 963b370f 2018-05-20 stsp int i;
130 963b370f 2018-05-20 stsp
131 963b370f 2018-05-20 stsp *wlinep = NULL;
132 963b370f 2018-05-20 stsp
133 963b370f 2018-05-20 stsp err = mbs2ws(&wline, &wlen, line);
134 963b370f 2018-05-20 stsp if (err)
135 963b370f 2018-05-20 stsp return err;
136 963b370f 2018-05-20 stsp
137 963b370f 2018-05-20 stsp i = 0;
138 963b370f 2018-05-20 stsp while (i < wlen && cols <= wlimit) {
139 963b370f 2018-05-20 stsp int width = wcwidth(wline[i]);
140 963b370f 2018-05-20 stsp switch (width) {
141 963b370f 2018-05-20 stsp case 0:
142 963b370f 2018-05-20 stsp break;
143 963b370f 2018-05-20 stsp case 1:
144 963b370f 2018-05-20 stsp case 2:
145 963b370f 2018-05-20 stsp cols += width;
146 963b370f 2018-05-20 stsp break;
147 963b370f 2018-05-20 stsp case -1:
148 963b370f 2018-05-20 stsp if (wline[i] == L'\t')
149 963b370f 2018-05-20 stsp cols += TABSIZE;
150 963b370f 2018-05-20 stsp break;
151 963b370f 2018-05-20 stsp default:
152 963b370f 2018-05-20 stsp err = got_error_from_errno();
153 963b370f 2018-05-20 stsp goto done;
154 963b370f 2018-05-20 stsp }
155 963b370f 2018-05-20 stsp if (cols <= COLS) {
156 963b370f 2018-05-20 stsp i++;
157 963b370f 2018-05-20 stsp if (widthp)
158 963b370f 2018-05-20 stsp *widthp = cols;
159 963b370f 2018-05-20 stsp }
160 963b370f 2018-05-20 stsp }
161 963b370f 2018-05-20 stsp wline[i] = L'\0';
162 963b370f 2018-05-20 stsp done:
163 963b370f 2018-05-20 stsp if (err)
164 963b370f 2018-05-20 stsp free(wline);
165 963b370f 2018-05-20 stsp else
166 963b370f 2018-05-20 stsp *wlinep = wline;
167 963b370f 2018-05-20 stsp return err;
168 963b370f 2018-05-20 stsp }
169 963b370f 2018-05-20 stsp
170 963b370f 2018-05-20 stsp static const struct got_error *
171 0553a4e3 2018-04-30 stsp draw_commit(struct got_commit_object *commit, struct got_object_id *id)
172 80ddbec8 2018-04-29 stsp {
173 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
174 80ddbec8 2018-04-29 stsp char *logmsg0 = NULL, *logmsg = NULL;
175 6d9fbc00 2018-04-29 stsp char *author0 = NULL, *author = NULL;
176 bb737323 2018-05-20 stsp wchar_t *wlogmsg = NULL, *wauthor = NULL;
177 bb737323 2018-05-20 stsp int author_width, logmsg_width;
178 6d9fbc00 2018-04-29 stsp char *newline, *smallerthan;
179 80ddbec8 2018-04-29 stsp char *line = NULL;
180 6d9fbc00 2018-04-29 stsp char *id_str = NULL;
181 bb737323 2018-05-20 stsp size_t id_len;
182 bb737323 2018-05-20 stsp int col, limit;
183 bb737323 2018-05-20 stsp static const size_t id_display_cols = 8;
184 bb737323 2018-05-20 stsp static const size_t author_display_cols = 16;
185 bb737323 2018-05-20 stsp const int avail = COLS - 1;
186 80ddbec8 2018-04-29 stsp
187 80ddbec8 2018-04-29 stsp err = got_object_id_str(&id_str, id);
188 80ddbec8 2018-04-29 stsp if (err)
189 80ddbec8 2018-04-29 stsp return err;
190 881b2d3e 2018-04-30 stsp id_len = strlen(id_str);
191 bb737323 2018-05-20 stsp if (avail < id_display_cols) {
192 bb737323 2018-05-20 stsp limit = MIN(id_len, avail);
193 bb737323 2018-05-20 stsp waddnstr(tog_log_view.window, id_str, limit);
194 bb737323 2018-05-20 stsp } else {
195 bb737323 2018-05-20 stsp limit = MIN(id_display_cols, id_len);
196 bb737323 2018-05-20 stsp waddnstr(tog_log_view.window, id_str, limit);
197 6d9fbc00 2018-04-29 stsp }
198 bb737323 2018-05-20 stsp col = limit + 1;
199 bb737323 2018-05-20 stsp while (col < avail && col < id_display_cols + 2) {
200 bb737323 2018-05-20 stsp waddch(tog_log_view.window, ' ');
201 bb737323 2018-05-20 stsp col++;
202 bb737323 2018-05-20 stsp }
203 bb737323 2018-05-20 stsp if (col >= avail)
204 bb737323 2018-05-20 stsp goto endline;
205 80ddbec8 2018-04-29 stsp
206 6d9fbc00 2018-04-29 stsp author0 = strdup(commit->author);
207 6d9fbc00 2018-04-29 stsp if (author0 == NULL) {
208 80ddbec8 2018-04-29 stsp err = got_error_from_errno();
209 80ddbec8 2018-04-29 stsp goto done;
210 80ddbec8 2018-04-29 stsp }
211 6d9fbc00 2018-04-29 stsp author = author0;
212 6d9fbc00 2018-04-29 stsp smallerthan = strchr(author, '<');
213 6d9fbc00 2018-04-29 stsp if (smallerthan)
214 6d9fbc00 2018-04-29 stsp *smallerthan = '\0';
215 6d9fbc00 2018-04-29 stsp else {
216 6d9fbc00 2018-04-29 stsp char *at = strchr(author, '@');
217 6d9fbc00 2018-04-29 stsp if (at)
218 6d9fbc00 2018-04-29 stsp *at = '\0';
219 6d9fbc00 2018-04-29 stsp }
220 bb737323 2018-05-20 stsp limit = MIN(avail, author_display_cols);
221 bb737323 2018-05-20 stsp err = format_line(&wauthor, &author_width, author, limit);
222 bb737323 2018-05-20 stsp if (err)
223 bb737323 2018-05-20 stsp goto done;
224 bb737323 2018-05-20 stsp waddwstr(tog_log_view.window, wauthor);
225 bb737323 2018-05-20 stsp col += author_width;
226 bb737323 2018-05-20 stsp while (col < avail && author_width < author_display_cols + 1) {
227 bb737323 2018-05-20 stsp waddch(tog_log_view.window, ' ');
228 bb737323 2018-05-20 stsp col++;
229 bb737323 2018-05-20 stsp author_width++;
230 bb737323 2018-05-20 stsp }
231 bb737323 2018-05-20 stsp if (col >= avail)
232 bb737323 2018-05-20 stsp goto endline;
233 80ddbec8 2018-04-29 stsp
234 bb737323 2018-05-20 stsp logmsg0 = strdup(commit->logmsg);
235 bb737323 2018-05-20 stsp if (logmsg0 == NULL) {
236 6d9fbc00 2018-04-29 stsp err = got_error_from_errno();
237 6d9fbc00 2018-04-29 stsp goto done;
238 6d9fbc00 2018-04-29 stsp }
239 bb737323 2018-05-20 stsp logmsg = logmsg0;
240 bb737323 2018-05-20 stsp while (*logmsg == '\n')
241 bb737323 2018-05-20 stsp logmsg++;
242 bb737323 2018-05-20 stsp newline = strchr(logmsg, '\n');
243 bb737323 2018-05-20 stsp if (newline)
244 bb737323 2018-05-20 stsp *newline = '\0';
245 bb737323 2018-05-20 stsp limit = avail - col;
246 bb737323 2018-05-20 stsp err = format_line(&wlogmsg, &logmsg_width, logmsg, limit);
247 bb737323 2018-05-20 stsp if (err)
248 bb737323 2018-05-20 stsp goto done;
249 bb737323 2018-05-20 stsp waddwstr(tog_log_view.window, wlogmsg);
250 bb737323 2018-05-20 stsp col += logmsg_width;
251 bb737323 2018-05-20 stsp while (col <= avail) {
252 bb737323 2018-05-20 stsp waddch(tog_log_view.window, ' ');
253 bb737323 2018-05-20 stsp col++;
254 881b2d3e 2018-04-30 stsp }
255 bb737323 2018-05-20 stsp endline:
256 80ddbec8 2018-04-29 stsp waddch(tog_log_view.window, '\n');
257 80ddbec8 2018-04-29 stsp done:
258 80ddbec8 2018-04-29 stsp free(logmsg0);
259 bb737323 2018-05-20 stsp free(wlogmsg);
260 6d9fbc00 2018-04-29 stsp free(author0);
261 bb737323 2018-05-20 stsp free(wauthor);
262 80ddbec8 2018-04-29 stsp free(line);
263 6d9fbc00 2018-04-29 stsp free(id_str);
264 80ddbec8 2018-04-29 stsp return err;
265 80ddbec8 2018-04-29 stsp }
266 26ed57b2 2018-05-19 stsp
267 80ddbec8 2018-04-29 stsp struct commit_queue_entry {
268 80ddbec8 2018-04-29 stsp TAILQ_ENTRY(commit_queue_entry) entry;
269 80ddbec8 2018-04-29 stsp struct got_object_id *id;
270 80ddbec8 2018-04-29 stsp struct got_commit_object *commit;
271 80ddbec8 2018-04-29 stsp };
272 0553a4e3 2018-04-30 stsp TAILQ_HEAD(commit_queue, commit_queue_entry);
273 80ddbec8 2018-04-29 stsp
274 899d86c2 2018-05-10 stsp static struct commit_queue_entry *
275 899d86c2 2018-05-10 stsp alloc_commit_queue_entry(struct got_commit_object *commit,
276 899d86c2 2018-05-10 stsp struct got_object_id *id)
277 80ddbec8 2018-04-29 stsp {
278 80ddbec8 2018-04-29 stsp struct commit_queue_entry *entry;
279 80ddbec8 2018-04-29 stsp
280 80ddbec8 2018-04-29 stsp entry = calloc(1, sizeof(*entry));
281 80ddbec8 2018-04-29 stsp if (entry == NULL)
282 899d86c2 2018-05-10 stsp return NULL;
283 99db9666 2018-05-07 stsp
284 899d86c2 2018-05-10 stsp entry->id = id;
285 99db9666 2018-05-07 stsp entry->commit = commit;
286 899d86c2 2018-05-10 stsp return entry;
287 99db9666 2018-05-07 stsp }
288 80ddbec8 2018-04-29 stsp
289 99db9666 2018-05-07 stsp static void
290 99db9666 2018-05-07 stsp pop_commit(struct commit_queue *commits)
291 99db9666 2018-05-07 stsp {
292 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
293 99db9666 2018-05-07 stsp
294 99db9666 2018-05-07 stsp entry = TAILQ_FIRST(commits);
295 99db9666 2018-05-07 stsp TAILQ_REMOVE(commits, entry, entry);
296 99db9666 2018-05-07 stsp got_object_commit_close(entry->commit);
297 99db9666 2018-05-07 stsp free(entry->id);
298 99db9666 2018-05-07 stsp free(entry);
299 99db9666 2018-05-07 stsp }
300 99db9666 2018-05-07 stsp
301 99db9666 2018-05-07 stsp static void
302 99db9666 2018-05-07 stsp free_commits(struct commit_queue *commits)
303 99db9666 2018-05-07 stsp {
304 99db9666 2018-05-07 stsp while (!TAILQ_EMPTY(commits))
305 99db9666 2018-05-07 stsp pop_commit(commits);
306 c4972b91 2018-05-07 stsp }
307 c4972b91 2018-05-07 stsp
308 c4972b91 2018-05-07 stsp static const struct got_error *
309 899d86c2 2018-05-10 stsp fetch_parent_commit(struct commit_queue_entry **pentry,
310 899d86c2 2018-05-10 stsp struct commit_queue_entry *entry, struct got_repository *repo)
311 c4972b91 2018-05-07 stsp {
312 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
313 c4972b91 2018-05-07 stsp struct got_object *obj = NULL;
314 899d86c2 2018-05-10 stsp struct got_commit_object *commit;
315 899d86c2 2018-05-10 stsp struct got_object_id *id;
316 c4972b91 2018-05-07 stsp struct got_parent_id *pid;
317 c4972b91 2018-05-07 stsp
318 899d86c2 2018-05-10 stsp *pentry = NULL;
319 c4972b91 2018-05-07 stsp
320 c4972b91 2018-05-07 stsp /* Follow the first parent (TODO: handle merge commits). */
321 c4972b91 2018-05-07 stsp pid = SIMPLEQ_FIRST(&entry->commit->parent_ids);
322 c4972b91 2018-05-07 stsp if (pid == NULL)
323 c4972b91 2018-05-07 stsp return NULL;
324 c4972b91 2018-05-07 stsp err = got_object_open(&obj, repo, pid->id);
325 c4972b91 2018-05-07 stsp if (err)
326 c4972b91 2018-05-07 stsp return err;
327 c4972b91 2018-05-07 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
328 c4972b91 2018-05-07 stsp err = got_error(GOT_ERR_OBJ_TYPE);
329 c4972b91 2018-05-07 stsp got_object_close(obj);
330 c4972b91 2018-05-07 stsp return err;
331 c4972b91 2018-05-07 stsp }
332 c4972b91 2018-05-07 stsp
333 899d86c2 2018-05-10 stsp err = got_object_commit_open(&commit, repo, obj);
334 c4972b91 2018-05-07 stsp got_object_close(obj);
335 c4972b91 2018-05-07 stsp if (err)
336 c4972b91 2018-05-07 stsp return err;
337 c4972b91 2018-05-07 stsp
338 899d86c2 2018-05-10 stsp id = got_object_id_dup(pid->id);
339 899d86c2 2018-05-10 stsp if (id == NULL) {
340 c4972b91 2018-05-07 stsp err = got_error_from_errno();
341 899d86c2 2018-05-10 stsp got_object_commit_close(commit);
342 899d86c2 2018-05-10 stsp return err;;
343 c4972b91 2018-05-07 stsp }
344 899d86c2 2018-05-10 stsp
345 899d86c2 2018-05-10 stsp *pentry = alloc_commit_queue_entry(commit, id);
346 899d86c2 2018-05-10 stsp if (*pentry == NULL) {
347 c4972b91 2018-05-07 stsp err = got_error_from_errno();
348 899d86c2 2018-05-10 stsp got_object_commit_close(commit);
349 c4972b91 2018-05-07 stsp }
350 c4972b91 2018-05-07 stsp
351 899d86c2 2018-05-10 stsp return err;;
352 899d86c2 2018-05-10 stsp }
353 899d86c2 2018-05-10 stsp
354 899d86c2 2018-05-10 stsp static const struct got_error *
355 899d86c2 2018-05-10 stsp get_head_commit_id(struct got_object_id **head_id, struct got_repository *repo)
356 899d86c2 2018-05-10 stsp {
357 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
358 899d86c2 2018-05-10 stsp struct got_reference *head_ref;
359 899d86c2 2018-05-10 stsp
360 899d86c2 2018-05-10 stsp *head_id = NULL;
361 899d86c2 2018-05-10 stsp
362 899d86c2 2018-05-10 stsp err = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
363 899d86c2 2018-05-10 stsp if (err)
364 899d86c2 2018-05-10 stsp return err;
365 899d86c2 2018-05-10 stsp
366 899d86c2 2018-05-10 stsp err = got_ref_resolve(head_id, repo, head_ref);
367 899d86c2 2018-05-10 stsp got_ref_close(head_ref);
368 899d86c2 2018-05-10 stsp if (err) {
369 899d86c2 2018-05-10 stsp *head_id = NULL;
370 899d86c2 2018-05-10 stsp return err;
371 899d86c2 2018-05-10 stsp }
372 899d86c2 2018-05-10 stsp
373 c4972b91 2018-05-07 stsp return NULL;
374 99db9666 2018-05-07 stsp }
375 99db9666 2018-05-07 stsp
376 99db9666 2018-05-07 stsp static const struct got_error *
377 899d86c2 2018-05-10 stsp prepend_commits(int *ncommits, struct commit_queue *commits,
378 899d86c2 2018-05-10 stsp struct got_object_id *first_id, struct got_object_id *last_id,
379 899d86c2 2018-05-10 stsp int limit, struct got_repository *repo)
380 899d86c2 2018-05-10 stsp {
381 899d86c2 2018-05-10 stsp const struct got_error *err = NULL;
382 899d86c2 2018-05-10 stsp struct got_object *first_obj = NULL, *last_obj = NULL;
383 899d86c2 2018-05-10 stsp struct got_commit_object *commit = NULL;
384 899d86c2 2018-05-10 stsp struct got_object_id *id = NULL;
385 899d86c2 2018-05-10 stsp struct commit_queue_entry *entry, *old_head_entry;
386 899d86c2 2018-05-10 stsp
387 899d86c2 2018-05-10 stsp *ncommits = 0;
388 899d86c2 2018-05-10 stsp
389 899d86c2 2018-05-10 stsp err = got_object_open(&first_obj, repo, first_id);
390 899d86c2 2018-05-10 stsp if (err)
391 899d86c2 2018-05-10 stsp goto done;
392 899d86c2 2018-05-10 stsp if (got_object_get_type(first_obj) != GOT_OBJ_TYPE_COMMIT) {
393 899d86c2 2018-05-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
394 899d86c2 2018-05-10 stsp goto done;
395 899d86c2 2018-05-10 stsp }
396 899d86c2 2018-05-10 stsp err = got_object_open(&last_obj, repo, last_id);
397 899d86c2 2018-05-10 stsp if (err)
398 899d86c2 2018-05-10 stsp goto done;
399 899d86c2 2018-05-10 stsp if (got_object_get_type(last_obj) != GOT_OBJ_TYPE_COMMIT) {
400 899d86c2 2018-05-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
401 899d86c2 2018-05-10 stsp goto done;
402 899d86c2 2018-05-10 stsp }
403 899d86c2 2018-05-10 stsp
404 899d86c2 2018-05-10 stsp err = got_object_commit_open(&commit, repo, first_obj);
405 899d86c2 2018-05-10 stsp if (err)
406 899d86c2 2018-05-10 stsp goto done;
407 899d86c2 2018-05-10 stsp
408 899d86c2 2018-05-10 stsp id = got_object_id_dup(first_id);
409 899d86c2 2018-05-10 stsp if (id == NULL) {
410 899d86c2 2018-05-10 stsp err = got_error_from_errno();
411 899d86c2 2018-05-10 stsp goto done;
412 899d86c2 2018-05-10 stsp }
413 899d86c2 2018-05-10 stsp
414 899d86c2 2018-05-10 stsp entry = alloc_commit_queue_entry(commit, id);
415 899d86c2 2018-05-10 stsp if (entry == NULL)
416 899d86c2 2018-05-10 stsp return got_error_from_errno();
417 899d86c2 2018-05-10 stsp
418 899d86c2 2018-05-10 stsp old_head_entry = TAILQ_FIRST(commits);
419 899d86c2 2018-05-10 stsp if (old_head_entry)
420 899d86c2 2018-05-10 stsp TAILQ_INSERT_BEFORE(old_head_entry, entry, entry);
421 899d86c2 2018-05-10 stsp else
422 899d86c2 2018-05-10 stsp TAILQ_INSERT_HEAD(commits, entry, entry);
423 899d86c2 2018-05-10 stsp
424 899d86c2 2018-05-10 stsp *ncommits = 1;
425 899d86c2 2018-05-10 stsp
426 899d86c2 2018-05-10 stsp /*
427 899d86c2 2018-05-10 stsp * Fetch parent commits.
428 899d86c2 2018-05-10 stsp * XXX If first and last commit aren't ancestrally related this loop
429 899d86c2 2018-05-10 stsp * we will keep iterating until a root commit is encountered.
430 899d86c2 2018-05-10 stsp */
431 899d86c2 2018-05-10 stsp while (1) {
432 899d86c2 2018-05-10 stsp struct commit_queue_entry *pentry;
433 899d86c2 2018-05-10 stsp
434 899d86c2 2018-05-10 stsp err = fetch_parent_commit(&pentry, entry, repo);
435 899d86c2 2018-05-10 stsp if (err)
436 899d86c2 2018-05-10 stsp goto done;
437 899d86c2 2018-05-10 stsp if (pentry == NULL)
438 899d86c2 2018-05-10 stsp break;
439 899d86c2 2018-05-10 stsp
440 899d86c2 2018-05-10 stsp /*
441 899d86c2 2018-05-10 stsp * Fill up to old HEAD commit if commit queue was not empty.
442 899d86c2 2018-05-10 stsp * We must not leave a gap in history.
443 899d86c2 2018-05-10 stsp */
444 899d86c2 2018-05-10 stsp if (old_head_entry &&
445 899d86c2 2018-05-10 stsp got_object_id_cmp(pentry->id, old_head_entry->id) == 0)
446 899d86c2 2018-05-10 stsp break;
447 899d86c2 2018-05-10 stsp
448 899d86c2 2018-05-10 stsp TAILQ_INSERT_AFTER(commits, entry, pentry, entry);
449 899d86c2 2018-05-10 stsp (*ncommits)++;
450 899d86c2 2018-05-10 stsp if (*ncommits >= limit)
451 899d86c2 2018-05-10 stsp break;
452 899d86c2 2018-05-10 stsp
453 899d86c2 2018-05-10 stsp /* Fill up to last requested commit if queue was empty. */
454 899d86c2 2018-05-10 stsp if (old_head_entry == NULL &&
455 899d86c2 2018-05-10 stsp got_object_id_cmp(pentry->id, last_id) == 0)
456 899d86c2 2018-05-10 stsp break;
457 899d86c2 2018-05-10 stsp
458 899d86c2 2018-05-10 stsp entry = pentry;
459 899d86c2 2018-05-10 stsp }
460 899d86c2 2018-05-10 stsp
461 899d86c2 2018-05-10 stsp done:
462 899d86c2 2018-05-10 stsp if (first_obj)
463 899d86c2 2018-05-10 stsp got_object_close(first_obj);
464 899d86c2 2018-05-10 stsp if (last_obj)
465 899d86c2 2018-05-10 stsp got_object_close(last_obj);
466 899d86c2 2018-05-10 stsp return err;
467 899d86c2 2018-05-10 stsp }
468 899d86c2 2018-05-10 stsp
469 899d86c2 2018-05-10 stsp static const struct got_error *
470 899d86c2 2018-05-10 stsp fetch_commits(struct commit_queue_entry **start_entry,
471 899d86c2 2018-05-10 stsp struct got_object_id *start_id, struct commit_queue *commits,
472 899d86c2 2018-05-10 stsp int limit, struct got_repository *repo)
473 99db9666 2018-05-07 stsp {
474 99db9666 2018-05-07 stsp const struct got_error *err;
475 99db9666 2018-05-07 stsp struct commit_queue_entry *entry;
476 99db9666 2018-05-07 stsp int ncommits = 0;
477 899d86c2 2018-05-10 stsp struct got_object_id *head_id = NULL;
478 99db9666 2018-05-07 stsp
479 899d86c2 2018-05-10 stsp *start_entry = NULL;
480 899d86c2 2018-05-10 stsp
481 899d86c2 2018-05-10 stsp err = get_head_commit_id(&head_id, repo);
482 99db9666 2018-05-07 stsp if (err)
483 99db9666 2018-05-07 stsp return err;
484 99db9666 2018-05-07 stsp
485 899d86c2 2018-05-10 stsp /* Prepend HEAD commit and all ancestors up to start commit. */
486 899d86c2 2018-05-10 stsp err = prepend_commits(&ncommits, commits, head_id, start_id, limit,
487 899d86c2 2018-05-10 stsp repo);
488 99db9666 2018-05-07 stsp if (err)
489 99db9666 2018-05-07 stsp return err;
490 99db9666 2018-05-07 stsp
491 899d86c2 2018-05-10 stsp if (got_object_id_cmp(head_id, start_id) == 0)
492 899d86c2 2018-05-10 stsp *start_entry = TAILQ_FIRST(commits);
493 899d86c2 2018-05-10 stsp else
494 899d86c2 2018-05-10 stsp *start_entry = TAILQ_LAST(commits, commit_queue);
495 899d86c2 2018-05-10 stsp
496 899d86c2 2018-05-10 stsp if (ncommits >= limit)
497 899d86c2 2018-05-10 stsp return NULL;
498 899d86c2 2018-05-10 stsp
499 899d86c2 2018-05-10 stsp /* Append more commits from start commit up to the requested limit. */
500 899d86c2 2018-05-10 stsp entry = TAILQ_LAST(commits, commit_queue);
501 899d86c2 2018-05-10 stsp while (entry && ncommits < limit) {
502 899d86c2 2018-05-10 stsp struct commit_queue_entry *pentry;
503 899d86c2 2018-05-10 stsp
504 899d86c2 2018-05-10 stsp err = fetch_parent_commit(&pentry, entry, repo);
505 80ddbec8 2018-04-29 stsp if (err)
506 80ddbec8 2018-04-29 stsp break;
507 899d86c2 2018-05-10 stsp if (pentry)
508 899d86c2 2018-05-10 stsp TAILQ_INSERT_TAIL(commits, pentry, entry);
509 899d86c2 2018-05-10 stsp entry = pentry;
510 0553a4e3 2018-04-30 stsp ncommits++;
511 0553a4e3 2018-04-30 stsp }
512 80ddbec8 2018-04-29 stsp
513 899d86c2 2018-05-10 stsp if (err)
514 899d86c2 2018-05-10 stsp *start_entry = NULL;
515 0553a4e3 2018-04-30 stsp return err;
516 0553a4e3 2018-04-30 stsp }
517 0553a4e3 2018-04-30 stsp
518 0553a4e3 2018-04-30 stsp static const struct got_error *
519 cd0acaa7 2018-05-20 stsp draw_commits(struct commit_queue_entry **last, struct commit_queue_entry **selected,
520 cd0acaa7 2018-05-20 stsp struct commit_queue_entry *first, int selected_idx, int limit)
521 0553a4e3 2018-04-30 stsp {
522 0553a4e3 2018-04-30 stsp const struct got_error *err = NULL;
523 0553a4e3 2018-04-30 stsp struct commit_queue_entry *entry;
524 0553a4e3 2018-04-30 stsp int ncommits = 0;
525 0553a4e3 2018-04-30 stsp
526 9c2de6ef 2018-05-20 stsp werase(tog_log_view.window);
527 0553a4e3 2018-04-30 stsp
528 899d86c2 2018-05-10 stsp entry = first;
529 899d86c2 2018-05-10 stsp *last = first;
530 899d86c2 2018-05-10 stsp while (entry) {
531 899d86c2 2018-05-10 stsp if (ncommits == limit)
532 899d86c2 2018-05-10 stsp break;
533 cd0acaa7 2018-05-20 stsp if (ncommits == selected_idx) {
534 0553a4e3 2018-04-30 stsp wstandout(tog_log_view.window);
535 cd0acaa7 2018-05-20 stsp *selected = entry;
536 cd0acaa7 2018-05-20 stsp }
537 0553a4e3 2018-04-30 stsp err = draw_commit(entry->commit, entry->id);
538 cd0acaa7 2018-05-20 stsp if (ncommits == selected_idx)
539 0553a4e3 2018-04-30 stsp wstandend(tog_log_view.window);
540 0553a4e3 2018-04-30 stsp if (err)
541 0553a4e3 2018-04-30 stsp break;
542 0553a4e3 2018-04-30 stsp ncommits++;
543 899d86c2 2018-05-10 stsp *last = entry;
544 899d86c2 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
545 80ddbec8 2018-04-29 stsp }
546 80ddbec8 2018-04-29 stsp
547 80ddbec8 2018-04-29 stsp update_panels();
548 80ddbec8 2018-04-29 stsp doupdate();
549 0553a4e3 2018-04-30 stsp
550 80ddbec8 2018-04-29 stsp return err;
551 9f7d7167 2018-04-29 stsp }
552 07b55e75 2018-05-10 stsp
553 07b55e75 2018-05-10 stsp static void
554 16482c3b 2018-05-20 stsp scroll_up(struct commit_queue_entry **first_displayed_entry, int maxscroll,
555 07b55e75 2018-05-10 stsp struct commit_queue *commits)
556 07b55e75 2018-05-10 stsp {
557 07b55e75 2018-05-10 stsp struct commit_queue_entry *entry;
558 07b55e75 2018-05-10 stsp int nscrolled = 0;
559 07b55e75 2018-05-10 stsp
560 07b55e75 2018-05-10 stsp entry = TAILQ_FIRST(commits);
561 07b55e75 2018-05-10 stsp if (*first_displayed_entry == entry)
562 07b55e75 2018-05-10 stsp return;
563 9f7d7167 2018-04-29 stsp
564 07b55e75 2018-05-10 stsp entry = *first_displayed_entry;
565 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
566 07b55e75 2018-05-10 stsp entry = TAILQ_PREV(entry, commit_queue, entry);
567 07b55e75 2018-05-10 stsp if (entry) {
568 07b55e75 2018-05-10 stsp *first_displayed_entry = entry;
569 07b55e75 2018-05-10 stsp nscrolled++;
570 07b55e75 2018-05-10 stsp }
571 07b55e75 2018-05-10 stsp }
572 aa075928 2018-05-10 stsp }
573 aa075928 2018-05-10 stsp
574 aa075928 2018-05-10 stsp static const struct got_error *
575 16482c3b 2018-05-20 stsp scroll_down(struct commit_queue_entry **first_displayed_entry, int maxscroll,
576 aa075928 2018-05-10 stsp struct commit_queue_entry *last_displayed_entry,
577 aa075928 2018-05-10 stsp struct commit_queue *commits, struct got_repository *repo)
578 aa075928 2018-05-10 stsp {
579 aa075928 2018-05-10 stsp const struct got_error *err = NULL;
580 dd0a52c1 2018-05-20 stsp struct commit_queue_entry *pentry;
581 aa075928 2018-05-10 stsp int nscrolled = 0;
582 aa075928 2018-05-10 stsp
583 aa075928 2018-05-10 stsp do {
584 dd0a52c1 2018-05-20 stsp pentry = TAILQ_NEXT(last_displayed_entry, entry);
585 aa075928 2018-05-10 stsp if (pentry == NULL) {
586 dd0a52c1 2018-05-20 stsp err = fetch_parent_commit(&pentry,
587 dd0a52c1 2018-05-20 stsp last_displayed_entry, repo);
588 9a6bf2a5 2018-05-20 stsp if (err || pentry == NULL)
589 aa075928 2018-05-10 stsp break;
590 aa075928 2018-05-10 stsp TAILQ_INSERT_TAIL(commits, pentry, entry);
591 aa075928 2018-05-10 stsp }
592 dd0a52c1 2018-05-20 stsp last_displayed_entry = pentry;
593 aa075928 2018-05-10 stsp
594 dd0a52c1 2018-05-20 stsp pentry = TAILQ_NEXT(*first_displayed_entry, entry);
595 dd0a52c1 2018-05-20 stsp if (pentry == NULL)
596 dd0a52c1 2018-05-20 stsp break;
597 aa075928 2018-05-10 stsp *first_displayed_entry = pentry;
598 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
599 aa075928 2018-05-10 stsp
600 dd0a52c1 2018-05-20 stsp return err;
601 07b55e75 2018-05-10 stsp }
602 4a7f7875 2018-05-10 stsp
603 4a7f7875 2018-05-10 stsp static int
604 4a7f7875 2018-05-10 stsp num_parents(struct commit_queue_entry *entry)
605 4a7f7875 2018-05-10 stsp {
606 4a7f7875 2018-05-10 stsp int nparents = 0;
607 07b55e75 2018-05-10 stsp
608 4a7f7875 2018-05-10 stsp while (entry) {
609 4a7f7875 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
610 4a7f7875 2018-05-10 stsp nparents++;
611 4a7f7875 2018-05-10 stsp }
612 4a7f7875 2018-05-10 stsp
613 4a7f7875 2018-05-10 stsp return nparents;
614 cd0acaa7 2018-05-20 stsp }
615 cd0acaa7 2018-05-20 stsp
616 cd0acaa7 2018-05-20 stsp static const struct got_error *
617 cd0acaa7 2018-05-20 stsp show_commit(struct commit_queue_entry *entry, struct got_repository *repo)
618 cd0acaa7 2018-05-20 stsp {
619 cd0acaa7 2018-05-20 stsp const struct got_error *err;
620 350efba7 2018-05-20 stsp struct commit_queue_entry *pentry;
621 cd0acaa7 2018-05-20 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
622 cd0acaa7 2018-05-20 stsp
623 cd0acaa7 2018-05-20 stsp err = got_object_open(&obj2, repo, entry->id);
624 cd0acaa7 2018-05-20 stsp if (err)
625 cd0acaa7 2018-05-20 stsp return err;
626 cd0acaa7 2018-05-20 stsp
627 350efba7 2018-05-20 stsp pentry = TAILQ_NEXT(entry, entry);
628 350efba7 2018-05-20 stsp if (pentry == NULL) {
629 350efba7 2018-05-20 stsp err = fetch_parent_commit(&pentry, entry, repo);
630 cd0acaa7 2018-05-20 stsp if (err)
631 350efba7 2018-05-20 stsp return err;
632 350efba7 2018-05-20 stsp }
633 350efba7 2018-05-20 stsp if (pentry) {
634 350efba7 2018-05-20 stsp err = got_object_open(&obj1, repo, pentry->id);
635 350efba7 2018-05-20 stsp if (err)
636 cd0acaa7 2018-05-20 stsp goto done;
637 cd0acaa7 2018-05-20 stsp }
638 cd0acaa7 2018-05-20 stsp
639 cd0acaa7 2018-05-20 stsp err = show_diff_view(obj1, obj2, repo);
640 cd0acaa7 2018-05-20 stsp done:
641 cd0acaa7 2018-05-20 stsp if (obj1)
642 cd0acaa7 2018-05-20 stsp got_object_close(obj1);
643 cd0acaa7 2018-05-20 stsp if (obj2)
644 cd0acaa7 2018-05-20 stsp got_object_close(obj2);
645 cd0acaa7 2018-05-20 stsp return err;
646 4a7f7875 2018-05-10 stsp }
647 4a7f7875 2018-05-10 stsp
648 80ddbec8 2018-04-29 stsp static const struct got_error *
649 80ddbec8 2018-04-29 stsp show_log_view(struct got_object_id *start_id, struct got_repository *repo)
650 80ddbec8 2018-04-29 stsp {
651 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
652 c4972b91 2018-05-07 stsp struct got_object_id *id;
653 4a7f7875 2018-05-10 stsp int ch, done = 0, selected = 0, nparents;
654 0553a4e3 2018-04-30 stsp struct commit_queue commits;
655 899d86c2 2018-05-10 stsp struct commit_queue_entry *first_displayed_entry = NULL;
656 899d86c2 2018-05-10 stsp struct commit_queue_entry *last_displayed_entry = NULL;
657 cd0acaa7 2018-05-20 stsp struct commit_queue_entry *selected_entry = NULL;
658 80ddbec8 2018-04-29 stsp
659 c4972b91 2018-05-07 stsp id = got_object_id_dup(start_id);
660 c4972b91 2018-05-07 stsp if (id == NULL)
661 c4972b91 2018-05-07 stsp return got_error_from_errno();
662 c4972b91 2018-05-07 stsp
663 80ddbec8 2018-04-29 stsp if (tog_log_view.window == NULL) {
664 80ddbec8 2018-04-29 stsp tog_log_view.window = newwin(0, 0, 0, 0);
665 80ddbec8 2018-04-29 stsp if (tog_log_view.window == NULL)
666 80ddbec8 2018-04-29 stsp return got_error_from_errno();
667 00a838fa 2018-04-29 stsp keypad(tog_log_view.window, TRUE);
668 80ddbec8 2018-04-29 stsp }
669 80ddbec8 2018-04-29 stsp if (tog_log_view.panel == NULL) {
670 80ddbec8 2018-04-29 stsp tog_log_view.panel = new_panel(tog_log_view.window);
671 80ddbec8 2018-04-29 stsp if (tog_log_view.panel == NULL)
672 80ddbec8 2018-04-29 stsp return got_error_from_errno();
673 cd0acaa7 2018-05-20 stsp } else
674 cd0acaa7 2018-05-20 stsp show_panel(tog_log_view.panel);
675 80ddbec8 2018-04-29 stsp
676 899d86c2 2018-05-10 stsp TAILQ_INIT(&commits);
677 899d86c2 2018-05-10 stsp err = fetch_commits(&first_displayed_entry, id, &commits, LINES, repo);
678 80ddbec8 2018-04-29 stsp if (err)
679 80ddbec8 2018-04-29 stsp goto done;
680 899d86c2 2018-05-10 stsp while (!done) {
681 cd0acaa7 2018-05-20 stsp err = draw_commits(&last_displayed_entry, &selected_entry,
682 cd0acaa7 2018-05-20 stsp first_displayed_entry, selected, LINES);
683 80ddbec8 2018-04-29 stsp if (err)
684 d0f709cb 2018-04-30 stsp goto done;
685 80ddbec8 2018-04-29 stsp
686 80ddbec8 2018-04-29 stsp nodelay(stdscr, FALSE);
687 80ddbec8 2018-04-29 stsp ch = wgetch(tog_log_view.window);
688 f7182337 2018-05-20 stsp nodelay(stdscr, TRUE);
689 80ddbec8 2018-04-29 stsp switch (ch) {
690 31120ada 2018-04-30 stsp case ERR:
691 31120ada 2018-04-30 stsp if (errno) {
692 31120ada 2018-04-30 stsp err = got_error_from_errno();
693 31120ada 2018-04-30 stsp goto done;
694 31120ada 2018-04-30 stsp }
695 31120ada 2018-04-30 stsp break;
696 80ddbec8 2018-04-29 stsp case 'q':
697 80ddbec8 2018-04-29 stsp done = 1;
698 80ddbec8 2018-04-29 stsp break;
699 80ddbec8 2018-04-29 stsp case 'k':
700 80ddbec8 2018-04-29 stsp case KEY_UP:
701 80ddbec8 2018-04-29 stsp if (selected > 0)
702 80ddbec8 2018-04-29 stsp selected--;
703 8ec9698d 2018-05-10 stsp if (selected > 0)
704 d91e25cb 2018-05-10 stsp break;
705 07b55e75 2018-05-10 stsp scroll_up(&first_displayed_entry, 1, &commits);
706 80ddbec8 2018-04-29 stsp break;
707 48531068 2018-05-10 stsp case KEY_PPAGE:
708 dfc1d240 2018-05-10 stsp if (TAILQ_FIRST(&commits) ==
709 dfc1d240 2018-05-10 stsp first_displayed_entry) {
710 dfc1d240 2018-05-10 stsp selected = 0;
711 dfc1d240 2018-05-10 stsp break;
712 dfc1d240 2018-05-10 stsp }
713 48531068 2018-05-10 stsp scroll_up(&first_displayed_entry, LINES,
714 48531068 2018-05-10 stsp &commits);
715 48531068 2018-05-10 stsp break;
716 80ddbec8 2018-04-29 stsp case 'j':
717 80ddbec8 2018-04-29 stsp case KEY_DOWN:
718 80ee4603 2018-05-10 stsp nparents = num_parents(first_displayed_entry);
719 06abe2cd 2018-05-10 stsp if (selected < LINES - 1 &&
720 15c91275 2018-05-20 stsp selected < nparents - 1) {
721 15c91275 2018-05-20 stsp selected++;
722 15c91275 2018-05-20 stsp break;
723 8df4052c 2018-05-20 stsp }
724 15c91275 2018-05-20 stsp err = scroll_down(&first_displayed_entry, 1,
725 15c91275 2018-05-20 stsp last_displayed_entry, &commits, repo);
726 15c91275 2018-05-20 stsp if (err)
727 15c91275 2018-05-20 stsp goto done;
728 4a7f7875 2018-05-10 stsp break;
729 4a7f7875 2018-05-10 stsp case KEY_NPAGE:
730 e50ee4f1 2018-05-10 stsp err = scroll_down(&first_displayed_entry, LINES,
731 e50ee4f1 2018-05-10 stsp last_displayed_entry, &commits, repo);
732 899d86c2 2018-05-10 stsp if (err)
733 aa075928 2018-05-10 stsp goto done;
734 dd0a52c1 2018-05-20 stsp if (last_displayed_entry->commit->nparents > 0)
735 dd0a52c1 2018-05-20 stsp break;
736 dd0a52c1 2018-05-20 stsp /* can't scroll any further; move cursor down */
737 4a7f7875 2018-05-10 stsp nparents = num_parents(first_displayed_entry);
738 dd0a52c1 2018-05-20 stsp if (selected < LINES - 1 ||
739 dd0a52c1 2018-05-20 stsp selected < nparents - 1)
740 dd0a52c1 2018-05-20 stsp selected = MIN(LINES - 1, nparents - 1);
741 80ddbec8 2018-04-29 stsp break;
742 d6df9be4 2018-04-30 stsp case KEY_RESIZE:
743 31120ada 2018-04-30 stsp if (selected > LINES)
744 31120ada 2018-04-30 stsp selected = LINES - 1;
745 cd0acaa7 2018-05-20 stsp break;
746 cd0acaa7 2018-05-20 stsp case KEY_ENTER:
747 cd0acaa7 2018-05-20 stsp case '\r':
748 cd0acaa7 2018-05-20 stsp err = show_commit(selected_entry, repo);
749 cd0acaa7 2018-05-20 stsp if (err)
750 cd0acaa7 2018-05-20 stsp break;
751 cd0acaa7 2018-05-20 stsp show_panel(tog_log_view.panel);
752 31120ada 2018-04-30 stsp break;
753 80ddbec8 2018-04-29 stsp default:
754 80ddbec8 2018-04-29 stsp break;
755 80ddbec8 2018-04-29 stsp }
756 899d86c2 2018-05-10 stsp }
757 80ddbec8 2018-04-29 stsp done:
758 0553a4e3 2018-04-30 stsp free_commits(&commits);
759 80ddbec8 2018-04-29 stsp return err;
760 80ddbec8 2018-04-29 stsp }
761 80ddbec8 2018-04-29 stsp
762 4ed7e80c 2018-05-20 stsp static const struct got_error *
763 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
764 9f7d7167 2018-04-29 stsp {
765 80ddbec8 2018-04-29 stsp const struct got_error *error;
766 80ddbec8 2018-04-29 stsp struct got_repository *repo;
767 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
768 80ddbec8 2018-04-29 stsp char *repo_path = NULL;
769 80ddbec8 2018-04-29 stsp char *start_commit = NULL;
770 80ddbec8 2018-04-29 stsp int ch;
771 80ddbec8 2018-04-29 stsp
772 80ddbec8 2018-04-29 stsp #ifndef PROFILE
773 80ddbec8 2018-04-29 stsp if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
774 80ddbec8 2018-04-29 stsp err(1, "pledge");
775 80ddbec8 2018-04-29 stsp #endif
776 80ddbec8 2018-04-29 stsp
777 80ddbec8 2018-04-29 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
778 80ddbec8 2018-04-29 stsp switch (ch) {
779 80ddbec8 2018-04-29 stsp case 'c':
780 80ddbec8 2018-04-29 stsp start_commit = optarg;
781 80ddbec8 2018-04-29 stsp break;
782 80ddbec8 2018-04-29 stsp default:
783 80ddbec8 2018-04-29 stsp usage();
784 80ddbec8 2018-04-29 stsp /* NOTREACHED */
785 80ddbec8 2018-04-29 stsp }
786 80ddbec8 2018-04-29 stsp }
787 80ddbec8 2018-04-29 stsp
788 80ddbec8 2018-04-29 stsp argc -= optind;
789 80ddbec8 2018-04-29 stsp argv += optind;
790 80ddbec8 2018-04-29 stsp
791 80ddbec8 2018-04-29 stsp if (argc == 0) {
792 80ddbec8 2018-04-29 stsp repo_path = getcwd(NULL, 0);
793 80ddbec8 2018-04-29 stsp if (repo_path == NULL)
794 80ddbec8 2018-04-29 stsp return got_error_from_errno();
795 80ddbec8 2018-04-29 stsp } else if (argc == 1) {
796 80ddbec8 2018-04-29 stsp repo_path = realpath(argv[0], NULL);
797 80ddbec8 2018-04-29 stsp if (repo_path == NULL)
798 80ddbec8 2018-04-29 stsp return got_error_from_errno();
799 80ddbec8 2018-04-29 stsp } else
800 80ddbec8 2018-04-29 stsp usage_log();
801 80ddbec8 2018-04-29 stsp
802 80ddbec8 2018-04-29 stsp error = got_repo_open(&repo, repo_path);
803 80ddbec8 2018-04-29 stsp free(repo_path);
804 80ddbec8 2018-04-29 stsp if (error != NULL)
805 80ddbec8 2018-04-29 stsp return error;
806 80ddbec8 2018-04-29 stsp
807 80ddbec8 2018-04-29 stsp if (start_commit == NULL) {
808 899d86c2 2018-05-10 stsp error = get_head_commit_id(&start_id, repo);
809 80ddbec8 2018-04-29 stsp if (error != NULL)
810 80ddbec8 2018-04-29 stsp return error;
811 80ddbec8 2018-04-29 stsp } else {
812 80ddbec8 2018-04-29 stsp struct got_object *obj;
813 80ddbec8 2018-04-29 stsp error = got_object_open_by_id_str(&obj, repo, start_commit);
814 80ddbec8 2018-04-29 stsp if (error == NULL) {
815 899d86c2 2018-05-10 stsp start_id = got_object_get_id(obj);
816 899d86c2 2018-05-10 stsp if (start_id == NULL)
817 80ddbec8 2018-04-29 stsp error = got_error_from_errno();
818 80ddbec8 2018-04-29 stsp }
819 80ddbec8 2018-04-29 stsp }
820 80ddbec8 2018-04-29 stsp if (error != NULL)
821 80ddbec8 2018-04-29 stsp return error;
822 899d86c2 2018-05-10 stsp error = show_log_view(start_id, repo);
823 899d86c2 2018-05-10 stsp free(start_id);
824 80ddbec8 2018-04-29 stsp got_repo_close(repo);
825 80ddbec8 2018-04-29 stsp return error;
826 9f7d7167 2018-04-29 stsp }
827 9f7d7167 2018-04-29 stsp
828 4ed7e80c 2018-05-20 stsp __dead static void
829 9f7d7167 2018-04-29 stsp usage_diff(void)
830 9f7d7167 2018-04-29 stsp {
831 80ddbec8 2018-04-29 stsp endwin();
832 9f7d7167 2018-04-29 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
833 9f7d7167 2018-04-29 stsp getprogname());
834 9f7d7167 2018-04-29 stsp exit(1);
835 b304db33 2018-05-20 stsp }
836 b304db33 2018-05-20 stsp
837 b304db33 2018-05-20 stsp static char *
838 b304db33 2018-05-20 stsp parse_next_line(FILE *f, size_t *len)
839 b304db33 2018-05-20 stsp {
840 b304db33 2018-05-20 stsp char *line;
841 b304db33 2018-05-20 stsp size_t linelen;
842 b304db33 2018-05-20 stsp size_t lineno;
843 b304db33 2018-05-20 stsp const char delim[3] = { '\0', '\0', '\0'};
844 b304db33 2018-05-20 stsp
845 b304db33 2018-05-20 stsp line = fparseln(f, &linelen, &lineno, delim, 0);
846 b304db33 2018-05-20 stsp if (len)
847 b304db33 2018-05-20 stsp *len = linelen;
848 b304db33 2018-05-20 stsp return line;
849 26ed57b2 2018-05-19 stsp }
850 26ed57b2 2018-05-19 stsp
851 4ed7e80c 2018-05-20 stsp static const struct got_error *
852 26ed57b2 2018-05-19 stsp draw_diff(FILE *f, int *first_displayed_line, int *last_displayed_line,
853 26ed57b2 2018-05-19 stsp int *eof, int max_lines)
854 26ed57b2 2018-05-19 stsp {
855 61e69b96 2018-05-20 stsp const struct got_error *err;
856 26ed57b2 2018-05-19 stsp int nlines = 0, nprinted = 0;
857 b304db33 2018-05-20 stsp char *line;
858 b304db33 2018-05-20 stsp size_t len;
859 61e69b96 2018-05-20 stsp wchar_t *wline;
860 26ed57b2 2018-05-19 stsp
861 26ed57b2 2018-05-19 stsp rewind(f);
862 9c2de6ef 2018-05-20 stsp werase(tog_diff_view.window);
863 26ed57b2 2018-05-19 stsp
864 26ed57b2 2018-05-19 stsp *eof = 0;
865 26ed57b2 2018-05-19 stsp while (nprinted < max_lines) {
866 b304db33 2018-05-20 stsp line = parse_next_line(f, &len);
867 26ed57b2 2018-05-19 stsp if (line == NULL) {
868 26ed57b2 2018-05-19 stsp *eof = 1;
869 26ed57b2 2018-05-19 stsp break;
870 26ed57b2 2018-05-19 stsp }
871 26ed57b2 2018-05-19 stsp if (++nlines < *first_displayed_line) {
872 26ed57b2 2018-05-19 stsp free(line);
873 26ed57b2 2018-05-19 stsp continue;
874 26ed57b2 2018-05-19 stsp }
875 26ed57b2 2018-05-19 stsp
876 bb737323 2018-05-20 stsp err = format_line(&wline, NULL, line, COLS);
877 61e69b96 2018-05-20 stsp if (err) {
878 61e69b96 2018-05-20 stsp free(line);
879 61e69b96 2018-05-20 stsp return err;
880 61e69b96 2018-05-20 stsp }
881 61e69b96 2018-05-20 stsp waddwstr(tog_diff_view.window, wline);
882 26ed57b2 2018-05-19 stsp waddch(tog_diff_view.window, '\n');
883 26ed57b2 2018-05-19 stsp if (++nprinted == 1)
884 26ed57b2 2018-05-19 stsp *first_displayed_line = nlines;
885 26ed57b2 2018-05-19 stsp free(line);
886 26ed57b2 2018-05-19 stsp }
887 26ed57b2 2018-05-19 stsp *last_displayed_line = nlines;
888 26ed57b2 2018-05-19 stsp
889 26ed57b2 2018-05-19 stsp update_panels();
890 26ed57b2 2018-05-19 stsp doupdate();
891 26ed57b2 2018-05-19 stsp
892 26ed57b2 2018-05-19 stsp return NULL;
893 9f7d7167 2018-04-29 stsp }
894 9f7d7167 2018-04-29 stsp
895 4ed7e80c 2018-05-20 stsp static const struct got_error *
896 26ed57b2 2018-05-19 stsp show_diff_view(struct got_object *obj1, struct got_object *obj2,
897 26ed57b2 2018-05-19 stsp struct got_repository *repo)
898 26ed57b2 2018-05-19 stsp {
899 26ed57b2 2018-05-19 stsp const struct got_error *err;
900 26ed57b2 2018-05-19 stsp FILE *f;
901 26ed57b2 2018-05-19 stsp int ch, done = 0, first_displayed_line = 1, last_displayed_line = LINES;
902 b304db33 2018-05-20 stsp int eof, i;
903 26ed57b2 2018-05-19 stsp
904 cd0acaa7 2018-05-20 stsp if (obj1 != NULL && obj2 != NULL &&
905 cd0acaa7 2018-05-20 stsp got_object_get_type(obj1) != got_object_get_type(obj2))
906 26ed57b2 2018-05-19 stsp return got_error(GOT_ERR_OBJ_TYPE);
907 26ed57b2 2018-05-19 stsp
908 511a516b 2018-05-19 stsp f = got_opentemp();
909 26ed57b2 2018-05-19 stsp if (f == NULL)
910 26ed57b2 2018-05-19 stsp return got_error_from_errno();
911 26ed57b2 2018-05-19 stsp
912 cd0acaa7 2018-05-20 stsp switch (got_object_get_type(obj1 ? obj1 : obj2)) {
913 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
914 11528a82 2018-05-19 stsp err = got_diff_objects_as_blobs(obj1, obj2, repo, f);
915 26ed57b2 2018-05-19 stsp break;
916 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
917 11528a82 2018-05-19 stsp err = got_diff_objects_as_trees(obj1, obj2, repo, f);
918 26ed57b2 2018-05-19 stsp break;
919 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_COMMIT:
920 11528a82 2018-05-19 stsp err = got_diff_objects_as_commits(obj1, obj2, repo, f);
921 26ed57b2 2018-05-19 stsp break;
922 26ed57b2 2018-05-19 stsp default:
923 26ed57b2 2018-05-19 stsp return got_error(GOT_ERR_OBJ_TYPE);
924 26ed57b2 2018-05-19 stsp }
925 26ed57b2 2018-05-19 stsp
926 26ed57b2 2018-05-19 stsp fflush(f);
927 26ed57b2 2018-05-19 stsp
928 26ed57b2 2018-05-19 stsp if (tog_diff_view.window == NULL) {
929 26ed57b2 2018-05-19 stsp tog_diff_view.window = newwin(0, 0, 0, 0);
930 26ed57b2 2018-05-19 stsp if (tog_diff_view.window == NULL)
931 26ed57b2 2018-05-19 stsp return got_error_from_errno();
932 26ed57b2 2018-05-19 stsp keypad(tog_diff_view.window, TRUE);
933 26ed57b2 2018-05-19 stsp }
934 26ed57b2 2018-05-19 stsp if (tog_diff_view.panel == NULL) {
935 26ed57b2 2018-05-19 stsp tog_diff_view.panel = new_panel(tog_diff_view.window);
936 26ed57b2 2018-05-19 stsp if (tog_diff_view.panel == NULL)
937 26ed57b2 2018-05-19 stsp return got_error_from_errno();
938 26ed57b2 2018-05-19 stsp } else
939 26ed57b2 2018-05-19 stsp show_panel(tog_diff_view.panel);
940 26ed57b2 2018-05-19 stsp
941 26ed57b2 2018-05-19 stsp while (!done) {
942 26ed57b2 2018-05-19 stsp err = draw_diff(f, &first_displayed_line, &last_displayed_line,
943 26ed57b2 2018-05-19 stsp &eof, LINES);
944 26ed57b2 2018-05-19 stsp if (err)
945 26ed57b2 2018-05-19 stsp break;
946 26ed57b2 2018-05-19 stsp nodelay(stdscr, FALSE);
947 26ed57b2 2018-05-19 stsp ch = wgetch(tog_diff_view.window);
948 f7182337 2018-05-20 stsp nodelay(stdscr, TRUE);
949 26ed57b2 2018-05-19 stsp switch (ch) {
950 26ed57b2 2018-05-19 stsp case 'q':
951 26ed57b2 2018-05-19 stsp done = 1;
952 26ed57b2 2018-05-19 stsp break;
953 26ed57b2 2018-05-19 stsp case 'k':
954 26ed57b2 2018-05-19 stsp case KEY_UP:
955 925e6f23 2018-05-20 stsp case KEY_BACKSPACE:
956 26ed57b2 2018-05-19 stsp if (first_displayed_line > 1)
957 b304db33 2018-05-20 stsp first_displayed_line--;
958 b304db33 2018-05-20 stsp break;
959 b304db33 2018-05-20 stsp case KEY_PPAGE:
960 b304db33 2018-05-20 stsp i = 0;
961 d56caa55 2018-05-20 stsp while (i++ < LINES - 1 &&
962 d56caa55 2018-05-20 stsp first_displayed_line > 1)
963 26ed57b2 2018-05-19 stsp first_displayed_line--;
964 26ed57b2 2018-05-19 stsp break;
965 26ed57b2 2018-05-19 stsp case 'j':
966 26ed57b2 2018-05-19 stsp case KEY_DOWN:
967 925e6f23 2018-05-20 stsp case KEY_ENTER:
968 925e6f23 2018-05-20 stsp case '\r':
969 26ed57b2 2018-05-19 stsp if (!eof)
970 26ed57b2 2018-05-19 stsp first_displayed_line++;
971 26ed57b2 2018-05-19 stsp break;
972 b304db33 2018-05-20 stsp case KEY_NPAGE:
973 75e48879 2018-05-20 stsp case ' ':
974 b304db33 2018-05-20 stsp i = 0;
975 b304db33 2018-05-20 stsp while (!eof && i++ < LINES - 1) {
976 b304db33 2018-05-20 stsp char *line = parse_next_line(f, NULL);
977 b304db33 2018-05-20 stsp first_displayed_line++;
978 b304db33 2018-05-20 stsp if (line == NULL)
979 b304db33 2018-05-20 stsp break;
980 b304db33 2018-05-20 stsp }
981 b304db33 2018-05-20 stsp break;
982 26ed57b2 2018-05-19 stsp default:
983 26ed57b2 2018-05-19 stsp break;
984 26ed57b2 2018-05-19 stsp }
985 26ed57b2 2018-05-19 stsp }
986 26ed57b2 2018-05-19 stsp fclose(f);
987 26ed57b2 2018-05-19 stsp return err;
988 26ed57b2 2018-05-19 stsp }
989 26ed57b2 2018-05-19 stsp
990 4ed7e80c 2018-05-20 stsp static const struct got_error *
991 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
992 9f7d7167 2018-04-29 stsp {
993 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
994 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
995 26ed57b2 2018-05-19 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
996 26ed57b2 2018-05-19 stsp char *repo_path = NULL;
997 26ed57b2 2018-05-19 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
998 26ed57b2 2018-05-19 stsp int ch;
999 26ed57b2 2018-05-19 stsp
1000 26ed57b2 2018-05-19 stsp #ifndef PROFILE
1001 26ed57b2 2018-05-19 stsp if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
1002 26ed57b2 2018-05-19 stsp err(1, "pledge");
1003 26ed57b2 2018-05-19 stsp #endif
1004 26ed57b2 2018-05-19 stsp
1005 26ed57b2 2018-05-19 stsp while ((ch = getopt(argc, argv, "")) != -1) {
1006 26ed57b2 2018-05-19 stsp switch (ch) {
1007 26ed57b2 2018-05-19 stsp default:
1008 26ed57b2 2018-05-19 stsp usage();
1009 26ed57b2 2018-05-19 stsp /* NOTREACHED */
1010 26ed57b2 2018-05-19 stsp }
1011 26ed57b2 2018-05-19 stsp }
1012 26ed57b2 2018-05-19 stsp
1013 26ed57b2 2018-05-19 stsp argc -= optind;
1014 26ed57b2 2018-05-19 stsp argv += optind;
1015 26ed57b2 2018-05-19 stsp
1016 26ed57b2 2018-05-19 stsp if (argc == 0) {
1017 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
1018 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
1019 26ed57b2 2018-05-19 stsp repo_path = getcwd(NULL, 0);
1020 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
1021 26ed57b2 2018-05-19 stsp return got_error_from_errno();
1022 26ed57b2 2018-05-19 stsp obj_id_str1 = argv[0];
1023 26ed57b2 2018-05-19 stsp obj_id_str2 = argv[1];
1024 26ed57b2 2018-05-19 stsp } else if (argc == 3) {
1025 26ed57b2 2018-05-19 stsp repo_path = realpath(argv[0], NULL);
1026 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
1027 26ed57b2 2018-05-19 stsp return got_error_from_errno();
1028 26ed57b2 2018-05-19 stsp obj_id_str1 = argv[1];
1029 26ed57b2 2018-05-19 stsp obj_id_str2 = argv[2];
1030 26ed57b2 2018-05-19 stsp } else
1031 26ed57b2 2018-05-19 stsp usage_diff();
1032 26ed57b2 2018-05-19 stsp
1033 26ed57b2 2018-05-19 stsp error = got_repo_open(&repo, repo_path);
1034 26ed57b2 2018-05-19 stsp free(repo_path);
1035 26ed57b2 2018-05-19 stsp if (error)
1036 26ed57b2 2018-05-19 stsp goto done;
1037 26ed57b2 2018-05-19 stsp
1038 26ed57b2 2018-05-19 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
1039 26ed57b2 2018-05-19 stsp if (error)
1040 26ed57b2 2018-05-19 stsp goto done;
1041 26ed57b2 2018-05-19 stsp
1042 26ed57b2 2018-05-19 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
1043 26ed57b2 2018-05-19 stsp if (error)
1044 26ed57b2 2018-05-19 stsp goto done;
1045 26ed57b2 2018-05-19 stsp
1046 26ed57b2 2018-05-19 stsp error = show_diff_view(obj1, obj2, repo);
1047 26ed57b2 2018-05-19 stsp done:
1048 26ed57b2 2018-05-19 stsp got_repo_close(repo);
1049 26ed57b2 2018-05-19 stsp if (obj1)
1050 26ed57b2 2018-05-19 stsp got_object_close(obj1);
1051 26ed57b2 2018-05-19 stsp if (obj2)
1052 26ed57b2 2018-05-19 stsp got_object_close(obj2);
1053 26ed57b2 2018-05-19 stsp return error;
1054 9f7d7167 2018-04-29 stsp }
1055 9f7d7167 2018-04-29 stsp
1056 4ed7e80c 2018-05-20 stsp __dead static void
1057 9f7d7167 2018-04-29 stsp usage_blame(void)
1058 9f7d7167 2018-04-29 stsp {
1059 80ddbec8 2018-04-29 stsp endwin();
1060 9f7d7167 2018-04-29 stsp fprintf(stderr, "usage: %s blame [repository-path] blob-object\n",
1061 9f7d7167 2018-04-29 stsp getprogname());
1062 9f7d7167 2018-04-29 stsp exit(1);
1063 9f7d7167 2018-04-29 stsp }
1064 9f7d7167 2018-04-29 stsp
1065 4ed7e80c 2018-05-20 stsp static const struct got_error *
1066 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
1067 9f7d7167 2018-04-29 stsp {
1068 9f7d7167 2018-04-29 stsp return got_error(GOT_ERR_NOT_IMPL);
1069 9f7d7167 2018-04-29 stsp }
1070 9f7d7167 2018-04-29 stsp
1071 5c5136c5 2018-05-20 stsp static void
1072 9f7d7167 2018-04-29 stsp init_curses(void)
1073 9f7d7167 2018-04-29 stsp {
1074 9f7d7167 2018-04-29 stsp initscr();
1075 9f7d7167 2018-04-29 stsp cbreak();
1076 9f7d7167 2018-04-29 stsp noecho();
1077 9f7d7167 2018-04-29 stsp nonl();
1078 9f7d7167 2018-04-29 stsp intrflush(stdscr, FALSE);
1079 9f7d7167 2018-04-29 stsp keypad(stdscr, TRUE);
1080 1f475ad8 2018-05-10 stsp curs_set(0);
1081 9f7d7167 2018-04-29 stsp }
1082 9f7d7167 2018-04-29 stsp
1083 4ed7e80c 2018-05-20 stsp __dead static void
1084 9f7d7167 2018-04-29 stsp usage(void)
1085 9f7d7167 2018-04-29 stsp {
1086 9f7d7167 2018-04-29 stsp int i;
1087 9f7d7167 2018-04-29 stsp
1088 c2301be8 2018-04-30 stsp fprintf(stderr, "usage: %s [-h] [command] [arg ...]\n\n"
1089 9f7d7167 2018-04-29 stsp "Available commands:\n", getprogname());
1090 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
1091 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = &tog_commands[i];
1092 c2301be8 2018-04-30 stsp fprintf(stderr, " %s: %s\n", cmd->name, cmd->descr);
1093 9f7d7167 2018-04-29 stsp }
1094 9f7d7167 2018-04-29 stsp exit(1);
1095 9f7d7167 2018-04-29 stsp }
1096 9f7d7167 2018-04-29 stsp
1097 c2301be8 2018-04-30 stsp static char **
1098 c2301be8 2018-04-30 stsp make_argv(const char *arg0, const char *arg1)
1099 c2301be8 2018-04-30 stsp {
1100 c2301be8 2018-04-30 stsp char **argv;
1101 c2301be8 2018-04-30 stsp int argc = (arg1 == NULL ? 1 : 2);
1102 c2301be8 2018-04-30 stsp
1103 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
1104 c2301be8 2018-04-30 stsp if (argv == NULL)
1105 c2301be8 2018-04-30 stsp err(1, "calloc");
1106 c2301be8 2018-04-30 stsp argv[0] = strdup(arg0);
1107 c2301be8 2018-04-30 stsp if (argv[0] == NULL)
1108 c2301be8 2018-04-30 stsp err(1, "calloc");
1109 c2301be8 2018-04-30 stsp if (arg1) {
1110 c2301be8 2018-04-30 stsp argv[1] = strdup(arg1);
1111 c2301be8 2018-04-30 stsp if (argv[1] == NULL)
1112 c2301be8 2018-04-30 stsp err(1, "calloc");
1113 c2301be8 2018-04-30 stsp }
1114 c2301be8 2018-04-30 stsp
1115 c2301be8 2018-04-30 stsp return argv;
1116 c2301be8 2018-04-30 stsp }
1117 c2301be8 2018-04-30 stsp
1118 9f7d7167 2018-04-29 stsp int
1119 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
1120 9f7d7167 2018-04-29 stsp {
1121 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
1122 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = NULL;
1123 9f7d7167 2018-04-29 stsp int ch, hflag = 0;
1124 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
1125 9f7d7167 2018-04-29 stsp
1126 9f7d7167 2018-04-29 stsp setlocale(LC_ALL, "");
1127 9f7d7167 2018-04-29 stsp
1128 9f7d7167 2018-04-29 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
1129 9f7d7167 2018-04-29 stsp switch (ch) {
1130 9f7d7167 2018-04-29 stsp case 'h':
1131 9f7d7167 2018-04-29 stsp hflag = 1;
1132 9f7d7167 2018-04-29 stsp break;
1133 9f7d7167 2018-04-29 stsp default:
1134 9f7d7167 2018-04-29 stsp usage();
1135 9f7d7167 2018-04-29 stsp /* NOTREACHED */
1136 9f7d7167 2018-04-29 stsp }
1137 9f7d7167 2018-04-29 stsp }
1138 9f7d7167 2018-04-29 stsp
1139 9f7d7167 2018-04-29 stsp argc -= optind;
1140 9f7d7167 2018-04-29 stsp argv += optind;
1141 9f7d7167 2018-04-29 stsp optind = 0;
1142 c2301be8 2018-04-30 stsp optreset = 1;
1143 9f7d7167 2018-04-29 stsp
1144 c2301be8 2018-04-30 stsp if (argc == 0) {
1145 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
1146 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
1147 c2301be8 2018-04-30 stsp cmd_argv = make_argv(cmd->name, NULL);
1148 c2301be8 2018-04-30 stsp argc = 1;
1149 c2301be8 2018-04-30 stsp } else {
1150 9f7d7167 2018-04-29 stsp int i;
1151 9f7d7167 2018-04-29 stsp
1152 c2301be8 2018-04-30 stsp /* Did the user specific a command? */
1153 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
1154 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
1155 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
1156 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
1157 9f7d7167 2018-04-29 stsp if (hflag)
1158 9f7d7167 2018-04-29 stsp tog_commands[i].cmd_usage();
1159 9f7d7167 2018-04-29 stsp break;
1160 9f7d7167 2018-04-29 stsp }
1161 9f7d7167 2018-04-29 stsp }
1162 9f7d7167 2018-04-29 stsp if (cmd == NULL) {
1163 c2301be8 2018-04-30 stsp /* Did the user specify a repository? */
1164 c2301be8 2018-04-30 stsp char *repo_path = realpath(argv[0], NULL);
1165 c2301be8 2018-04-30 stsp if (repo_path) {
1166 c2301be8 2018-04-30 stsp struct got_repository *repo;
1167 c2301be8 2018-04-30 stsp error = got_repo_open(&repo, repo_path);
1168 c2301be8 2018-04-30 stsp if (error == NULL)
1169 c2301be8 2018-04-30 stsp got_repo_close(repo);
1170 c2301be8 2018-04-30 stsp } else
1171 ad7de8d9 2018-04-30 stsp error = got_error_from_errno();
1172 c2301be8 2018-04-30 stsp if (error) {
1173 ad7de8d9 2018-04-30 stsp fprintf(stderr, "%s: '%s' is neither a known "
1174 ad7de8d9 2018-04-30 stsp "command nor a path to a repository\n",
1175 c2301be8 2018-04-30 stsp getprogname(), argv[0]);
1176 ad7de8d9 2018-04-30 stsp free(repo_path);
1177 c2301be8 2018-04-30 stsp return 1;
1178 c2301be8 2018-04-30 stsp }
1179 c2301be8 2018-04-30 stsp cmd = &tog_commands[0];
1180 c2301be8 2018-04-30 stsp cmd_argv = make_argv(cmd->name, repo_path);
1181 c2301be8 2018-04-30 stsp argc = 2;
1182 c2301be8 2018-04-30 stsp free(repo_path);
1183 9f7d7167 2018-04-29 stsp }
1184 9f7d7167 2018-04-29 stsp }
1185 9f7d7167 2018-04-29 stsp
1186 5c5136c5 2018-05-20 stsp init_curses();
1187 9f7d7167 2018-04-29 stsp
1188 c2301be8 2018-04-30 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
1189 9f7d7167 2018-04-29 stsp if (error)
1190 9f7d7167 2018-04-29 stsp goto done;
1191 9f7d7167 2018-04-29 stsp done:
1192 9f7d7167 2018-04-29 stsp endwin();
1193 c2301be8 2018-04-30 stsp free(cmd_argv);
1194 9f7d7167 2018-04-29 stsp if (error)
1195 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
1196 9f7d7167 2018-04-29 stsp return 0;
1197 9f7d7167 2018-04-29 stsp }