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 16482c3b 2018-05-20 stsp scroll_up(struct commit_queue_entry **first_displayed_entry, int maxscroll,
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 16482c3b 2018-05-20 stsp while (entry && nscrolled < maxscroll) {
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 16482c3b 2018-05-20 stsp scroll_down(struct commit_queue_entry **first_displayed_entry, int maxscroll,
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 9a6bf2a5 2018-05-20 stsp if (err || pentry == NULL)
519 aa075928 2018-05-10 stsp break;
520 aa075928 2018-05-10 stsp TAILQ_INSERT_TAIL(commits, pentry, entry);
521 aa075928 2018-05-10 stsp last_displayed_entry = pentry;
522 aa075928 2018-05-10 stsp }
523 aa075928 2018-05-10 stsp
524 aa075928 2018-05-10 stsp *first_displayed_entry = pentry;
525 aa075928 2018-05-10 stsp entry = pentry;
526 aa075928 2018-05-10 stsp
527 aa075928 2018-05-10 stsp if (TAILQ_LAST(commits, commit_queue) == last_displayed_entry) {
528 aa075928 2018-05-10 stsp err = fetch_parent_commit(&pentry, last_displayed_entry,
529 aa075928 2018-05-10 stsp repo);
530 aa075928 2018-05-10 stsp if (err)
531 aa075928 2018-05-10 stsp break;
532 aa075928 2018-05-10 stsp if (pentry) {
533 aa075928 2018-05-10 stsp TAILQ_INSERT_TAIL(commits, pentry, entry);
534 aa075928 2018-05-10 stsp last_displayed_entry = pentry;
535 917a23a3 2018-05-20 stsp }
536 aa075928 2018-05-10 stsp }
537 16482c3b 2018-05-20 stsp } while (++nscrolled < maxscroll);
538 aa075928 2018-05-10 stsp
539 aa075928 2018-05-10 stsp return NULL;
540 07b55e75 2018-05-10 stsp }
541 4a7f7875 2018-05-10 stsp
542 4a7f7875 2018-05-10 stsp static int
543 4a7f7875 2018-05-10 stsp num_parents(struct commit_queue_entry *entry)
544 4a7f7875 2018-05-10 stsp {
545 4a7f7875 2018-05-10 stsp int nparents = 0;
546 07b55e75 2018-05-10 stsp
547 4a7f7875 2018-05-10 stsp while (entry) {
548 4a7f7875 2018-05-10 stsp entry = TAILQ_NEXT(entry, entry);
549 4a7f7875 2018-05-10 stsp nparents++;
550 4a7f7875 2018-05-10 stsp }
551 4a7f7875 2018-05-10 stsp
552 4a7f7875 2018-05-10 stsp return nparents;
553 cd0acaa7 2018-05-20 stsp }
554 cd0acaa7 2018-05-20 stsp
555 cd0acaa7 2018-05-20 stsp static const struct got_error *
556 cd0acaa7 2018-05-20 stsp show_commit(struct commit_queue_entry *entry, struct got_repository *repo)
557 cd0acaa7 2018-05-20 stsp {
558 cd0acaa7 2018-05-20 stsp const struct got_error *err;
559 350efba7 2018-05-20 stsp struct commit_queue_entry *pentry;
560 cd0acaa7 2018-05-20 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
561 cd0acaa7 2018-05-20 stsp
562 cd0acaa7 2018-05-20 stsp err = got_object_open(&obj2, repo, entry->id);
563 cd0acaa7 2018-05-20 stsp if (err)
564 cd0acaa7 2018-05-20 stsp return err;
565 cd0acaa7 2018-05-20 stsp
566 350efba7 2018-05-20 stsp pentry = TAILQ_NEXT(entry, entry);
567 350efba7 2018-05-20 stsp if (pentry == NULL) {
568 350efba7 2018-05-20 stsp err = fetch_parent_commit(&pentry, entry, repo);
569 cd0acaa7 2018-05-20 stsp if (err)
570 350efba7 2018-05-20 stsp return err;
571 350efba7 2018-05-20 stsp }
572 350efba7 2018-05-20 stsp if (pentry) {
573 350efba7 2018-05-20 stsp err = got_object_open(&obj1, repo, pentry->id);
574 350efba7 2018-05-20 stsp if (err)
575 cd0acaa7 2018-05-20 stsp goto done;
576 cd0acaa7 2018-05-20 stsp }
577 cd0acaa7 2018-05-20 stsp
578 cd0acaa7 2018-05-20 stsp err = show_diff_view(obj1, obj2, repo);
579 cd0acaa7 2018-05-20 stsp done:
580 cd0acaa7 2018-05-20 stsp if (obj1)
581 cd0acaa7 2018-05-20 stsp got_object_close(obj1);
582 cd0acaa7 2018-05-20 stsp if (obj2)
583 cd0acaa7 2018-05-20 stsp got_object_close(obj2);
584 cd0acaa7 2018-05-20 stsp return err;
585 4a7f7875 2018-05-10 stsp }
586 4a7f7875 2018-05-10 stsp
587 80ddbec8 2018-04-29 stsp static const struct got_error *
588 80ddbec8 2018-04-29 stsp show_log_view(struct got_object_id *start_id, struct got_repository *repo)
589 80ddbec8 2018-04-29 stsp {
590 80ddbec8 2018-04-29 stsp const struct got_error *err = NULL;
591 c4972b91 2018-05-07 stsp struct got_object_id *id;
592 4a7f7875 2018-05-10 stsp int ch, done = 0, selected = 0, nparents;
593 0553a4e3 2018-04-30 stsp struct commit_queue commits;
594 899d86c2 2018-05-10 stsp struct commit_queue_entry *first_displayed_entry = NULL;
595 899d86c2 2018-05-10 stsp struct commit_queue_entry *last_displayed_entry = NULL;
596 cd0acaa7 2018-05-20 stsp struct commit_queue_entry *selected_entry = NULL;
597 80ddbec8 2018-04-29 stsp
598 c4972b91 2018-05-07 stsp id = got_object_id_dup(start_id);
599 c4972b91 2018-05-07 stsp if (id == NULL)
600 c4972b91 2018-05-07 stsp return got_error_from_errno();
601 c4972b91 2018-05-07 stsp
602 80ddbec8 2018-04-29 stsp if (tog_log_view.window == NULL) {
603 80ddbec8 2018-04-29 stsp tog_log_view.window = newwin(0, 0, 0, 0);
604 80ddbec8 2018-04-29 stsp if (tog_log_view.window == NULL)
605 80ddbec8 2018-04-29 stsp return got_error_from_errno();
606 00a838fa 2018-04-29 stsp keypad(tog_log_view.window, TRUE);
607 80ddbec8 2018-04-29 stsp }
608 80ddbec8 2018-04-29 stsp if (tog_log_view.panel == NULL) {
609 80ddbec8 2018-04-29 stsp tog_log_view.panel = new_panel(tog_log_view.window);
610 80ddbec8 2018-04-29 stsp if (tog_log_view.panel == NULL)
611 80ddbec8 2018-04-29 stsp return got_error_from_errno();
612 cd0acaa7 2018-05-20 stsp } else
613 cd0acaa7 2018-05-20 stsp show_panel(tog_log_view.panel);
614 80ddbec8 2018-04-29 stsp
615 899d86c2 2018-05-10 stsp TAILQ_INIT(&commits);
616 899d86c2 2018-05-10 stsp err = fetch_commits(&first_displayed_entry, id, &commits, LINES, repo);
617 80ddbec8 2018-04-29 stsp if (err)
618 80ddbec8 2018-04-29 stsp goto done;
619 899d86c2 2018-05-10 stsp while (!done) {
620 cd0acaa7 2018-05-20 stsp err = draw_commits(&last_displayed_entry, &selected_entry,
621 cd0acaa7 2018-05-20 stsp first_displayed_entry, selected, LINES);
622 80ddbec8 2018-04-29 stsp if (err)
623 d0f709cb 2018-04-30 stsp goto done;
624 80ddbec8 2018-04-29 stsp
625 80ddbec8 2018-04-29 stsp nodelay(stdscr, FALSE);
626 80ddbec8 2018-04-29 stsp ch = wgetch(tog_log_view.window);
627 f7182337 2018-05-20 stsp nodelay(stdscr, TRUE);
628 80ddbec8 2018-04-29 stsp switch (ch) {
629 31120ada 2018-04-30 stsp case ERR:
630 31120ada 2018-04-30 stsp if (errno) {
631 31120ada 2018-04-30 stsp err = got_error_from_errno();
632 31120ada 2018-04-30 stsp goto done;
633 31120ada 2018-04-30 stsp }
634 31120ada 2018-04-30 stsp break;
635 80ddbec8 2018-04-29 stsp case 'q':
636 80ddbec8 2018-04-29 stsp done = 1;
637 80ddbec8 2018-04-29 stsp break;
638 80ddbec8 2018-04-29 stsp case 'k':
639 80ddbec8 2018-04-29 stsp case KEY_UP:
640 80ddbec8 2018-04-29 stsp if (selected > 0)
641 80ddbec8 2018-04-29 stsp selected--;
642 8ec9698d 2018-05-10 stsp if (selected > 0)
643 d91e25cb 2018-05-10 stsp break;
644 07b55e75 2018-05-10 stsp scroll_up(&first_displayed_entry, 1, &commits);
645 80ddbec8 2018-04-29 stsp break;
646 48531068 2018-05-10 stsp case KEY_PPAGE:
647 dfc1d240 2018-05-10 stsp if (TAILQ_FIRST(&commits) ==
648 dfc1d240 2018-05-10 stsp first_displayed_entry) {
649 dfc1d240 2018-05-10 stsp selected = 0;
650 dfc1d240 2018-05-10 stsp break;
651 dfc1d240 2018-05-10 stsp }
652 48531068 2018-05-10 stsp scroll_up(&first_displayed_entry, LINES,
653 48531068 2018-05-10 stsp &commits);
654 48531068 2018-05-10 stsp break;
655 80ddbec8 2018-04-29 stsp case 'j':
656 80ddbec8 2018-04-29 stsp case KEY_DOWN:
657 80ee4603 2018-05-10 stsp nparents = num_parents(first_displayed_entry);
658 06abe2cd 2018-05-10 stsp if (selected < LINES - 1 &&
659 06abe2cd 2018-05-10 stsp selected < nparents - 1)
660 80ddbec8 2018-04-29 stsp selected++;
661 06abe2cd 2018-05-10 stsp if (selected < LINES - 1 &&
662 06abe2cd 2018-05-10 stsp selected < nparents - 1)
663 c4972b91 2018-05-07 stsp break;
664 aa075928 2018-05-10 stsp err = scroll_down(&first_displayed_entry, 1,
665 aa075928 2018-05-10 stsp last_displayed_entry, &commits, repo);
666 4a7f7875 2018-05-10 stsp if (err)
667 4a7f7875 2018-05-10 stsp goto done;
668 4a7f7875 2018-05-10 stsp break;
669 4a7f7875 2018-05-10 stsp case KEY_NPAGE:
670 4a7f7875 2018-05-10 stsp nparents = num_parents(first_displayed_entry);
671 dfc1d240 2018-05-10 stsp if (nparents < LINES - 1 &&
672 dfc1d240 2018-05-10 stsp selected < nparents - 1) {
673 dfc1d240 2018-05-10 stsp selected = nparents - 1;
674 dfc1d240 2018-05-10 stsp break;
675 dfc1d240 2018-05-10 stsp }
676 e50ee4f1 2018-05-10 stsp err = scroll_down(&first_displayed_entry, LINES,
677 e50ee4f1 2018-05-10 stsp last_displayed_entry, &commits, repo);
678 899d86c2 2018-05-10 stsp if (err)
679 aa075928 2018-05-10 stsp goto done;
680 4a7f7875 2018-05-10 stsp nparents = num_parents(first_displayed_entry);
681 dfc1d240 2018-05-10 stsp if (selected > nparents)
682 dfc1d240 2018-05-10 stsp selected = nparents - 1;
683 80ddbec8 2018-04-29 stsp break;
684 d6df9be4 2018-04-30 stsp case KEY_RESIZE:
685 31120ada 2018-04-30 stsp if (selected > LINES)
686 31120ada 2018-04-30 stsp selected = LINES - 1;
687 cd0acaa7 2018-05-20 stsp break;
688 cd0acaa7 2018-05-20 stsp case KEY_ENTER:
689 cd0acaa7 2018-05-20 stsp case '\r':
690 cd0acaa7 2018-05-20 stsp err = show_commit(selected_entry, repo);
691 cd0acaa7 2018-05-20 stsp if (err)
692 cd0acaa7 2018-05-20 stsp break;
693 cd0acaa7 2018-05-20 stsp show_panel(tog_log_view.panel);
694 31120ada 2018-04-30 stsp break;
695 80ddbec8 2018-04-29 stsp default:
696 80ddbec8 2018-04-29 stsp break;
697 80ddbec8 2018-04-29 stsp }
698 899d86c2 2018-05-10 stsp }
699 80ddbec8 2018-04-29 stsp done:
700 0553a4e3 2018-04-30 stsp free_commits(&commits);
701 80ddbec8 2018-04-29 stsp return err;
702 80ddbec8 2018-04-29 stsp }
703 80ddbec8 2018-04-29 stsp
704 4ed7e80c 2018-05-20 stsp static const struct got_error *
705 9f7d7167 2018-04-29 stsp cmd_log(int argc, char *argv[])
706 9f7d7167 2018-04-29 stsp {
707 80ddbec8 2018-04-29 stsp const struct got_error *error;
708 80ddbec8 2018-04-29 stsp struct got_repository *repo;
709 899d86c2 2018-05-10 stsp struct got_object_id *start_id = NULL;
710 80ddbec8 2018-04-29 stsp char *repo_path = NULL;
711 80ddbec8 2018-04-29 stsp char *start_commit = NULL;
712 80ddbec8 2018-04-29 stsp int ch;
713 80ddbec8 2018-04-29 stsp
714 80ddbec8 2018-04-29 stsp #ifndef PROFILE
715 80ddbec8 2018-04-29 stsp if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
716 80ddbec8 2018-04-29 stsp err(1, "pledge");
717 80ddbec8 2018-04-29 stsp #endif
718 80ddbec8 2018-04-29 stsp
719 80ddbec8 2018-04-29 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
720 80ddbec8 2018-04-29 stsp switch (ch) {
721 80ddbec8 2018-04-29 stsp case 'c':
722 80ddbec8 2018-04-29 stsp start_commit = optarg;
723 80ddbec8 2018-04-29 stsp break;
724 80ddbec8 2018-04-29 stsp default:
725 80ddbec8 2018-04-29 stsp usage();
726 80ddbec8 2018-04-29 stsp /* NOTREACHED */
727 80ddbec8 2018-04-29 stsp }
728 80ddbec8 2018-04-29 stsp }
729 80ddbec8 2018-04-29 stsp
730 80ddbec8 2018-04-29 stsp argc -= optind;
731 80ddbec8 2018-04-29 stsp argv += optind;
732 80ddbec8 2018-04-29 stsp
733 80ddbec8 2018-04-29 stsp if (argc == 0) {
734 80ddbec8 2018-04-29 stsp repo_path = getcwd(NULL, 0);
735 80ddbec8 2018-04-29 stsp if (repo_path == NULL)
736 80ddbec8 2018-04-29 stsp return got_error_from_errno();
737 80ddbec8 2018-04-29 stsp } else if (argc == 1) {
738 80ddbec8 2018-04-29 stsp repo_path = realpath(argv[0], NULL);
739 80ddbec8 2018-04-29 stsp if (repo_path == NULL)
740 80ddbec8 2018-04-29 stsp return got_error_from_errno();
741 80ddbec8 2018-04-29 stsp } else
742 80ddbec8 2018-04-29 stsp usage_log();
743 80ddbec8 2018-04-29 stsp
744 80ddbec8 2018-04-29 stsp error = got_repo_open(&repo, repo_path);
745 80ddbec8 2018-04-29 stsp free(repo_path);
746 80ddbec8 2018-04-29 stsp if (error != NULL)
747 80ddbec8 2018-04-29 stsp return error;
748 80ddbec8 2018-04-29 stsp
749 80ddbec8 2018-04-29 stsp if (start_commit == NULL) {
750 899d86c2 2018-05-10 stsp error = get_head_commit_id(&start_id, repo);
751 80ddbec8 2018-04-29 stsp if (error != NULL)
752 80ddbec8 2018-04-29 stsp return error;
753 80ddbec8 2018-04-29 stsp } else {
754 80ddbec8 2018-04-29 stsp struct got_object *obj;
755 80ddbec8 2018-04-29 stsp error = got_object_open_by_id_str(&obj, repo, start_commit);
756 80ddbec8 2018-04-29 stsp if (error == NULL) {
757 899d86c2 2018-05-10 stsp start_id = got_object_get_id(obj);
758 899d86c2 2018-05-10 stsp if (start_id == NULL)
759 80ddbec8 2018-04-29 stsp error = got_error_from_errno();
760 80ddbec8 2018-04-29 stsp }
761 80ddbec8 2018-04-29 stsp }
762 80ddbec8 2018-04-29 stsp if (error != NULL)
763 80ddbec8 2018-04-29 stsp return error;
764 899d86c2 2018-05-10 stsp error = show_log_view(start_id, repo);
765 899d86c2 2018-05-10 stsp free(start_id);
766 80ddbec8 2018-04-29 stsp got_repo_close(repo);
767 80ddbec8 2018-04-29 stsp return error;
768 9f7d7167 2018-04-29 stsp }
769 9f7d7167 2018-04-29 stsp
770 4ed7e80c 2018-05-20 stsp __dead static void
771 9f7d7167 2018-04-29 stsp usage_diff(void)
772 9f7d7167 2018-04-29 stsp {
773 80ddbec8 2018-04-29 stsp endwin();
774 9f7d7167 2018-04-29 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
775 9f7d7167 2018-04-29 stsp getprogname());
776 9f7d7167 2018-04-29 stsp exit(1);
777 b304db33 2018-05-20 stsp }
778 b304db33 2018-05-20 stsp
779 b304db33 2018-05-20 stsp static char *
780 b304db33 2018-05-20 stsp parse_next_line(FILE *f, size_t *len)
781 b304db33 2018-05-20 stsp {
782 b304db33 2018-05-20 stsp char *line;
783 b304db33 2018-05-20 stsp size_t linelen;
784 b304db33 2018-05-20 stsp size_t lineno;
785 b304db33 2018-05-20 stsp const char delim[3] = { '\0', '\0', '\0'};
786 b304db33 2018-05-20 stsp
787 b304db33 2018-05-20 stsp line = fparseln(f, &linelen, &lineno, delim, 0);
788 b304db33 2018-05-20 stsp if (len)
789 b304db33 2018-05-20 stsp *len = linelen;
790 b304db33 2018-05-20 stsp return line;
791 26ed57b2 2018-05-19 stsp }
792 26ed57b2 2018-05-19 stsp
793 4ed7e80c 2018-05-20 stsp static const struct got_error *
794 26ed57b2 2018-05-19 stsp draw_diff(FILE *f, int *first_displayed_line, int *last_displayed_line,
795 26ed57b2 2018-05-19 stsp int *eof, int max_lines)
796 26ed57b2 2018-05-19 stsp {
797 26ed57b2 2018-05-19 stsp int nlines = 0, nprinted = 0;
798 b304db33 2018-05-20 stsp char *line;
799 b304db33 2018-05-20 stsp size_t len;
800 26ed57b2 2018-05-19 stsp
801 26ed57b2 2018-05-19 stsp rewind(f);
802 26ed57b2 2018-05-19 stsp wclear(tog_diff_view.window);
803 26ed57b2 2018-05-19 stsp
804 26ed57b2 2018-05-19 stsp *eof = 0;
805 26ed57b2 2018-05-19 stsp while (nprinted < max_lines) {
806 b304db33 2018-05-20 stsp line = parse_next_line(f, &len);
807 26ed57b2 2018-05-19 stsp if (line == NULL) {
808 26ed57b2 2018-05-19 stsp *eof = 1;
809 26ed57b2 2018-05-19 stsp break;
810 26ed57b2 2018-05-19 stsp }
811 26ed57b2 2018-05-19 stsp if (++nlines < *first_displayed_line) {
812 26ed57b2 2018-05-19 stsp free(line);
813 26ed57b2 2018-05-19 stsp continue;
814 26ed57b2 2018-05-19 stsp }
815 26ed57b2 2018-05-19 stsp
816 b304db33 2018-05-20 stsp if (len > COLS - 1)
817 26ed57b2 2018-05-19 stsp line[COLS - 1] = '\0';
818 26ed57b2 2018-05-19 stsp waddstr(tog_diff_view.window, line);
819 26ed57b2 2018-05-19 stsp waddch(tog_diff_view.window, '\n');
820 26ed57b2 2018-05-19 stsp if (++nprinted == 1)
821 26ed57b2 2018-05-19 stsp *first_displayed_line = nlines;
822 26ed57b2 2018-05-19 stsp free(line);
823 26ed57b2 2018-05-19 stsp }
824 26ed57b2 2018-05-19 stsp *last_displayed_line = nlines;
825 26ed57b2 2018-05-19 stsp
826 26ed57b2 2018-05-19 stsp update_panels();
827 26ed57b2 2018-05-19 stsp doupdate();
828 26ed57b2 2018-05-19 stsp
829 26ed57b2 2018-05-19 stsp return NULL;
830 9f7d7167 2018-04-29 stsp }
831 9f7d7167 2018-04-29 stsp
832 4ed7e80c 2018-05-20 stsp static const struct got_error *
833 26ed57b2 2018-05-19 stsp show_diff_view(struct got_object *obj1, struct got_object *obj2,
834 26ed57b2 2018-05-19 stsp struct got_repository *repo)
835 26ed57b2 2018-05-19 stsp {
836 26ed57b2 2018-05-19 stsp const struct got_error *err;
837 26ed57b2 2018-05-19 stsp FILE *f;
838 26ed57b2 2018-05-19 stsp int ch, done = 0, first_displayed_line = 1, last_displayed_line = LINES;
839 b304db33 2018-05-20 stsp int eof, i;
840 26ed57b2 2018-05-19 stsp
841 cd0acaa7 2018-05-20 stsp if (obj1 != NULL && obj2 != NULL &&
842 cd0acaa7 2018-05-20 stsp got_object_get_type(obj1) != got_object_get_type(obj2))
843 26ed57b2 2018-05-19 stsp return got_error(GOT_ERR_OBJ_TYPE);
844 26ed57b2 2018-05-19 stsp
845 511a516b 2018-05-19 stsp f = got_opentemp();
846 26ed57b2 2018-05-19 stsp if (f == NULL)
847 26ed57b2 2018-05-19 stsp return got_error_from_errno();
848 26ed57b2 2018-05-19 stsp
849 cd0acaa7 2018-05-20 stsp switch (got_object_get_type(obj1 ? obj1 : obj2)) {
850 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_BLOB:
851 11528a82 2018-05-19 stsp err = got_diff_objects_as_blobs(obj1, obj2, repo, f);
852 26ed57b2 2018-05-19 stsp break;
853 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_TREE:
854 11528a82 2018-05-19 stsp err = got_diff_objects_as_trees(obj1, obj2, repo, f);
855 26ed57b2 2018-05-19 stsp break;
856 26ed57b2 2018-05-19 stsp case GOT_OBJ_TYPE_COMMIT:
857 11528a82 2018-05-19 stsp err = got_diff_objects_as_commits(obj1, obj2, repo, f);
858 26ed57b2 2018-05-19 stsp break;
859 26ed57b2 2018-05-19 stsp default:
860 26ed57b2 2018-05-19 stsp return got_error(GOT_ERR_OBJ_TYPE);
861 26ed57b2 2018-05-19 stsp }
862 26ed57b2 2018-05-19 stsp
863 26ed57b2 2018-05-19 stsp fflush(f);
864 26ed57b2 2018-05-19 stsp
865 26ed57b2 2018-05-19 stsp if (tog_diff_view.window == NULL) {
866 26ed57b2 2018-05-19 stsp tog_diff_view.window = newwin(0, 0, 0, 0);
867 26ed57b2 2018-05-19 stsp if (tog_diff_view.window == NULL)
868 26ed57b2 2018-05-19 stsp return got_error_from_errno();
869 26ed57b2 2018-05-19 stsp keypad(tog_diff_view.window, TRUE);
870 26ed57b2 2018-05-19 stsp }
871 26ed57b2 2018-05-19 stsp if (tog_diff_view.panel == NULL) {
872 26ed57b2 2018-05-19 stsp tog_diff_view.panel = new_panel(tog_diff_view.window);
873 26ed57b2 2018-05-19 stsp if (tog_diff_view.panel == NULL)
874 26ed57b2 2018-05-19 stsp return got_error_from_errno();
875 26ed57b2 2018-05-19 stsp } else
876 26ed57b2 2018-05-19 stsp show_panel(tog_diff_view.panel);
877 26ed57b2 2018-05-19 stsp
878 26ed57b2 2018-05-19 stsp while (!done) {
879 26ed57b2 2018-05-19 stsp err = draw_diff(f, &first_displayed_line, &last_displayed_line,
880 26ed57b2 2018-05-19 stsp &eof, LINES);
881 26ed57b2 2018-05-19 stsp if (err)
882 26ed57b2 2018-05-19 stsp break;
883 26ed57b2 2018-05-19 stsp nodelay(stdscr, FALSE);
884 26ed57b2 2018-05-19 stsp ch = wgetch(tog_diff_view.window);
885 f7182337 2018-05-20 stsp nodelay(stdscr, TRUE);
886 26ed57b2 2018-05-19 stsp switch (ch) {
887 26ed57b2 2018-05-19 stsp case 'q':
888 26ed57b2 2018-05-19 stsp done = 1;
889 26ed57b2 2018-05-19 stsp break;
890 26ed57b2 2018-05-19 stsp case 'k':
891 26ed57b2 2018-05-19 stsp case KEY_UP:
892 925e6f23 2018-05-20 stsp case KEY_BACKSPACE:
893 26ed57b2 2018-05-19 stsp if (first_displayed_line > 1)
894 b304db33 2018-05-20 stsp first_displayed_line--;
895 b304db33 2018-05-20 stsp break;
896 b304db33 2018-05-20 stsp case KEY_PPAGE:
897 b304db33 2018-05-20 stsp i = 0;
898 b304db33 2018-05-20 stsp while (i++ < LINES - 1 && first_displayed_line > 1)
899 26ed57b2 2018-05-19 stsp first_displayed_line--;
900 26ed57b2 2018-05-19 stsp break;
901 26ed57b2 2018-05-19 stsp case 'j':
902 26ed57b2 2018-05-19 stsp case KEY_DOWN:
903 925e6f23 2018-05-20 stsp case KEY_ENTER:
904 925e6f23 2018-05-20 stsp case '\r':
905 26ed57b2 2018-05-19 stsp if (!eof)
906 26ed57b2 2018-05-19 stsp first_displayed_line++;
907 26ed57b2 2018-05-19 stsp break;
908 b304db33 2018-05-20 stsp case KEY_NPAGE:
909 75e48879 2018-05-20 stsp case ' ':
910 b304db33 2018-05-20 stsp i = 0;
911 b304db33 2018-05-20 stsp while (!eof && i++ < LINES - 1) {
912 b304db33 2018-05-20 stsp char *line = parse_next_line(f, NULL);
913 b304db33 2018-05-20 stsp first_displayed_line++;
914 b304db33 2018-05-20 stsp if (line == NULL)
915 b304db33 2018-05-20 stsp break;
916 b304db33 2018-05-20 stsp }
917 b304db33 2018-05-20 stsp break;
918 26ed57b2 2018-05-19 stsp default:
919 26ed57b2 2018-05-19 stsp break;
920 26ed57b2 2018-05-19 stsp }
921 26ed57b2 2018-05-19 stsp }
922 26ed57b2 2018-05-19 stsp fclose(f);
923 26ed57b2 2018-05-19 stsp return err;
924 26ed57b2 2018-05-19 stsp }
925 26ed57b2 2018-05-19 stsp
926 4ed7e80c 2018-05-20 stsp static const struct got_error *
927 9f7d7167 2018-04-29 stsp cmd_diff(int argc, char *argv[])
928 9f7d7167 2018-04-29 stsp {
929 26ed57b2 2018-05-19 stsp const struct got_error *error = NULL;
930 26ed57b2 2018-05-19 stsp struct got_repository *repo = NULL;
931 26ed57b2 2018-05-19 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
932 26ed57b2 2018-05-19 stsp char *repo_path = NULL;
933 26ed57b2 2018-05-19 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
934 26ed57b2 2018-05-19 stsp int ch;
935 26ed57b2 2018-05-19 stsp
936 26ed57b2 2018-05-19 stsp #ifndef PROFILE
937 26ed57b2 2018-05-19 stsp if (pledge("stdio rpath wpath cpath flock proc tty", NULL) == -1)
938 26ed57b2 2018-05-19 stsp err(1, "pledge");
939 26ed57b2 2018-05-19 stsp #endif
940 26ed57b2 2018-05-19 stsp
941 26ed57b2 2018-05-19 stsp while ((ch = getopt(argc, argv, "")) != -1) {
942 26ed57b2 2018-05-19 stsp switch (ch) {
943 26ed57b2 2018-05-19 stsp default:
944 26ed57b2 2018-05-19 stsp usage();
945 26ed57b2 2018-05-19 stsp /* NOTREACHED */
946 26ed57b2 2018-05-19 stsp }
947 26ed57b2 2018-05-19 stsp }
948 26ed57b2 2018-05-19 stsp
949 26ed57b2 2018-05-19 stsp argc -= optind;
950 26ed57b2 2018-05-19 stsp argv += optind;
951 26ed57b2 2018-05-19 stsp
952 26ed57b2 2018-05-19 stsp if (argc == 0) {
953 26ed57b2 2018-05-19 stsp usage_diff(); /* TODO show local worktree changes */
954 26ed57b2 2018-05-19 stsp } else if (argc == 2) {
955 26ed57b2 2018-05-19 stsp repo_path = getcwd(NULL, 0);
956 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
957 26ed57b2 2018-05-19 stsp return got_error_from_errno();
958 26ed57b2 2018-05-19 stsp obj_id_str1 = argv[0];
959 26ed57b2 2018-05-19 stsp obj_id_str2 = argv[1];
960 26ed57b2 2018-05-19 stsp } else if (argc == 3) {
961 26ed57b2 2018-05-19 stsp repo_path = realpath(argv[0], NULL);
962 26ed57b2 2018-05-19 stsp if (repo_path == NULL)
963 26ed57b2 2018-05-19 stsp return got_error_from_errno();
964 26ed57b2 2018-05-19 stsp obj_id_str1 = argv[1];
965 26ed57b2 2018-05-19 stsp obj_id_str2 = argv[2];
966 26ed57b2 2018-05-19 stsp } else
967 26ed57b2 2018-05-19 stsp usage_diff();
968 26ed57b2 2018-05-19 stsp
969 26ed57b2 2018-05-19 stsp error = got_repo_open(&repo, repo_path);
970 26ed57b2 2018-05-19 stsp free(repo_path);
971 26ed57b2 2018-05-19 stsp if (error)
972 26ed57b2 2018-05-19 stsp goto done;
973 26ed57b2 2018-05-19 stsp
974 26ed57b2 2018-05-19 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
975 26ed57b2 2018-05-19 stsp if (error)
976 26ed57b2 2018-05-19 stsp goto done;
977 26ed57b2 2018-05-19 stsp
978 26ed57b2 2018-05-19 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
979 26ed57b2 2018-05-19 stsp if (error)
980 26ed57b2 2018-05-19 stsp goto done;
981 26ed57b2 2018-05-19 stsp
982 26ed57b2 2018-05-19 stsp error = show_diff_view(obj1, obj2, repo);
983 26ed57b2 2018-05-19 stsp done:
984 26ed57b2 2018-05-19 stsp got_repo_close(repo);
985 26ed57b2 2018-05-19 stsp if (obj1)
986 26ed57b2 2018-05-19 stsp got_object_close(obj1);
987 26ed57b2 2018-05-19 stsp if (obj2)
988 26ed57b2 2018-05-19 stsp got_object_close(obj2);
989 26ed57b2 2018-05-19 stsp return error;
990 9f7d7167 2018-04-29 stsp }
991 9f7d7167 2018-04-29 stsp
992 4ed7e80c 2018-05-20 stsp __dead static void
993 9f7d7167 2018-04-29 stsp usage_blame(void)
994 9f7d7167 2018-04-29 stsp {
995 80ddbec8 2018-04-29 stsp endwin();
996 9f7d7167 2018-04-29 stsp fprintf(stderr, "usage: %s blame [repository-path] blob-object\n",
997 9f7d7167 2018-04-29 stsp getprogname());
998 9f7d7167 2018-04-29 stsp exit(1);
999 9f7d7167 2018-04-29 stsp }
1000 9f7d7167 2018-04-29 stsp
1001 4ed7e80c 2018-05-20 stsp static const struct got_error *
1002 9f7d7167 2018-04-29 stsp cmd_blame(int argc, char *argv[])
1003 9f7d7167 2018-04-29 stsp {
1004 9f7d7167 2018-04-29 stsp return got_error(GOT_ERR_NOT_IMPL);
1005 9f7d7167 2018-04-29 stsp }
1006 9f7d7167 2018-04-29 stsp
1007 5c5136c5 2018-05-20 stsp static void
1008 9f7d7167 2018-04-29 stsp init_curses(void)
1009 9f7d7167 2018-04-29 stsp {
1010 9f7d7167 2018-04-29 stsp initscr();
1011 9f7d7167 2018-04-29 stsp cbreak();
1012 9f7d7167 2018-04-29 stsp noecho();
1013 9f7d7167 2018-04-29 stsp nonl();
1014 9f7d7167 2018-04-29 stsp intrflush(stdscr, FALSE);
1015 9f7d7167 2018-04-29 stsp keypad(stdscr, TRUE);
1016 1f475ad8 2018-05-10 stsp curs_set(0);
1017 9f7d7167 2018-04-29 stsp }
1018 9f7d7167 2018-04-29 stsp
1019 4ed7e80c 2018-05-20 stsp __dead static void
1020 9f7d7167 2018-04-29 stsp usage(void)
1021 9f7d7167 2018-04-29 stsp {
1022 9f7d7167 2018-04-29 stsp int i;
1023 9f7d7167 2018-04-29 stsp
1024 c2301be8 2018-04-30 stsp fprintf(stderr, "usage: %s [-h] [command] [arg ...]\n\n"
1025 9f7d7167 2018-04-29 stsp "Available commands:\n", getprogname());
1026 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
1027 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = &tog_commands[i];
1028 c2301be8 2018-04-30 stsp fprintf(stderr, " %s: %s\n", cmd->name, cmd->descr);
1029 9f7d7167 2018-04-29 stsp }
1030 9f7d7167 2018-04-29 stsp exit(1);
1031 9f7d7167 2018-04-29 stsp }
1032 9f7d7167 2018-04-29 stsp
1033 c2301be8 2018-04-30 stsp static char **
1034 c2301be8 2018-04-30 stsp make_argv(const char *arg0, const char *arg1)
1035 c2301be8 2018-04-30 stsp {
1036 c2301be8 2018-04-30 stsp char **argv;
1037 c2301be8 2018-04-30 stsp int argc = (arg1 == NULL ? 1 : 2);
1038 c2301be8 2018-04-30 stsp
1039 c2301be8 2018-04-30 stsp argv = calloc(argc, sizeof(char *));
1040 c2301be8 2018-04-30 stsp if (argv == NULL)
1041 c2301be8 2018-04-30 stsp err(1, "calloc");
1042 c2301be8 2018-04-30 stsp argv[0] = strdup(arg0);
1043 c2301be8 2018-04-30 stsp if (argv[0] == NULL)
1044 c2301be8 2018-04-30 stsp err(1, "calloc");
1045 c2301be8 2018-04-30 stsp if (arg1) {
1046 c2301be8 2018-04-30 stsp argv[1] = strdup(arg1);
1047 c2301be8 2018-04-30 stsp if (argv[1] == NULL)
1048 c2301be8 2018-04-30 stsp err(1, "calloc");
1049 c2301be8 2018-04-30 stsp }
1050 c2301be8 2018-04-30 stsp
1051 c2301be8 2018-04-30 stsp return argv;
1052 c2301be8 2018-04-30 stsp }
1053 c2301be8 2018-04-30 stsp
1054 9f7d7167 2018-04-29 stsp int
1055 9f7d7167 2018-04-29 stsp main(int argc, char *argv[])
1056 9f7d7167 2018-04-29 stsp {
1057 9f7d7167 2018-04-29 stsp const struct got_error *error = NULL;
1058 9f7d7167 2018-04-29 stsp struct tog_cmd *cmd = NULL;
1059 9f7d7167 2018-04-29 stsp int ch, hflag = 0;
1060 c2301be8 2018-04-30 stsp char **cmd_argv = NULL;
1061 9f7d7167 2018-04-29 stsp
1062 9f7d7167 2018-04-29 stsp setlocale(LC_ALL, "");
1063 9f7d7167 2018-04-29 stsp
1064 9f7d7167 2018-04-29 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
1065 9f7d7167 2018-04-29 stsp switch (ch) {
1066 9f7d7167 2018-04-29 stsp case 'h':
1067 9f7d7167 2018-04-29 stsp hflag = 1;
1068 9f7d7167 2018-04-29 stsp break;
1069 9f7d7167 2018-04-29 stsp default:
1070 9f7d7167 2018-04-29 stsp usage();
1071 9f7d7167 2018-04-29 stsp /* NOTREACHED */
1072 9f7d7167 2018-04-29 stsp }
1073 9f7d7167 2018-04-29 stsp }
1074 9f7d7167 2018-04-29 stsp
1075 9f7d7167 2018-04-29 stsp argc -= optind;
1076 9f7d7167 2018-04-29 stsp argv += optind;
1077 9f7d7167 2018-04-29 stsp optind = 0;
1078 c2301be8 2018-04-30 stsp optreset = 1;
1079 9f7d7167 2018-04-29 stsp
1080 c2301be8 2018-04-30 stsp if (argc == 0) {
1081 c2301be8 2018-04-30 stsp /* Build an argument vector which runs a default command. */
1082 9f7d7167 2018-04-29 stsp cmd = &tog_commands[0];
1083 c2301be8 2018-04-30 stsp cmd_argv = make_argv(cmd->name, NULL);
1084 c2301be8 2018-04-30 stsp argc = 1;
1085 c2301be8 2018-04-30 stsp } else {
1086 9f7d7167 2018-04-29 stsp int i;
1087 9f7d7167 2018-04-29 stsp
1088 c2301be8 2018-04-30 stsp /* Did the user specific a command? */
1089 9f7d7167 2018-04-29 stsp for (i = 0; i < nitems(tog_commands); i++) {
1090 c2301be8 2018-04-30 stsp if (strncmp(tog_commands[i].name, argv[0],
1091 9f7d7167 2018-04-29 stsp strlen(argv[0])) == 0) {
1092 9f7d7167 2018-04-29 stsp cmd = &tog_commands[i];
1093 9f7d7167 2018-04-29 stsp if (hflag)
1094 9f7d7167 2018-04-29 stsp tog_commands[i].cmd_usage();
1095 9f7d7167 2018-04-29 stsp break;
1096 9f7d7167 2018-04-29 stsp }
1097 9f7d7167 2018-04-29 stsp }
1098 9f7d7167 2018-04-29 stsp if (cmd == NULL) {
1099 c2301be8 2018-04-30 stsp /* Did the user specify a repository? */
1100 c2301be8 2018-04-30 stsp char *repo_path = realpath(argv[0], NULL);
1101 c2301be8 2018-04-30 stsp if (repo_path) {
1102 c2301be8 2018-04-30 stsp struct got_repository *repo;
1103 c2301be8 2018-04-30 stsp error = got_repo_open(&repo, repo_path);
1104 c2301be8 2018-04-30 stsp if (error == NULL)
1105 c2301be8 2018-04-30 stsp got_repo_close(repo);
1106 c2301be8 2018-04-30 stsp } else
1107 ad7de8d9 2018-04-30 stsp error = got_error_from_errno();
1108 c2301be8 2018-04-30 stsp if (error) {
1109 ad7de8d9 2018-04-30 stsp fprintf(stderr, "%s: '%s' is neither a known "
1110 ad7de8d9 2018-04-30 stsp "command nor a path to a repository\n",
1111 c2301be8 2018-04-30 stsp getprogname(), argv[0]);
1112 ad7de8d9 2018-04-30 stsp free(repo_path);
1113 c2301be8 2018-04-30 stsp return 1;
1114 c2301be8 2018-04-30 stsp }
1115 c2301be8 2018-04-30 stsp cmd = &tog_commands[0];
1116 c2301be8 2018-04-30 stsp cmd_argv = make_argv(cmd->name, repo_path);
1117 c2301be8 2018-04-30 stsp argc = 2;
1118 c2301be8 2018-04-30 stsp free(repo_path);
1119 9f7d7167 2018-04-29 stsp }
1120 9f7d7167 2018-04-29 stsp }
1121 9f7d7167 2018-04-29 stsp
1122 5c5136c5 2018-05-20 stsp init_curses();
1123 9f7d7167 2018-04-29 stsp
1124 c2301be8 2018-04-30 stsp error = cmd->cmd_main(argc, cmd_argv ? cmd_argv : argv);
1125 9f7d7167 2018-04-29 stsp if (error)
1126 9f7d7167 2018-04-29 stsp goto done;
1127 9f7d7167 2018-04-29 stsp done:
1128 9f7d7167 2018-04-29 stsp endwin();
1129 c2301be8 2018-04-30 stsp free(cmd_argv);
1130 9f7d7167 2018-04-29 stsp if (error)
1131 9f7d7167 2018-04-29 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
1132 9f7d7167 2018-04-29 stsp return 0;
1133 9f7d7167 2018-04-29 stsp }