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