Blame


1 5c860e29 2018-03-12 stsp /*
2 f42b1b34 2018-03-12 stsp * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 f42b1b34 2018-03-12 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
4 5c860e29 2018-03-12 stsp *
5 5c860e29 2018-03-12 stsp * Permission to use, copy, modify, and distribute this software for any
6 5c860e29 2018-03-12 stsp * purpose with or without fee is hereby granted, provided that the above
7 5c860e29 2018-03-12 stsp * copyright notice and this permission notice appear in all copies.
8 5c860e29 2018-03-12 stsp *
9 5c860e29 2018-03-12 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 5c860e29 2018-03-12 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 5c860e29 2018-03-12 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 5c860e29 2018-03-12 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 5c860e29 2018-03-12 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 5c860e29 2018-03-12 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 5c860e29 2018-03-12 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 5c860e29 2018-03-12 stsp */
17 5c860e29 2018-03-12 stsp
18 f42b1b34 2018-03-12 stsp #include <sys/queue.h>
19 64a96a6d 2018-04-01 stsp #include <sys/limits.h>
20 c0768b0f 2018-06-10 stsp #include <sys/types.h>
21 5de5890b 2018-10-18 stsp #include <sys/stat.h>
22 f42b1b34 2018-03-12 stsp
23 5c860e29 2018-03-12 stsp #include <err.h>
24 5c860e29 2018-03-12 stsp #include <errno.h>
25 5c860e29 2018-03-12 stsp #include <locale.h>
26 99437157 2018-11-11 stsp #include <signal.h>
27 5c860e29 2018-03-12 stsp #include <stdio.h>
28 5c860e29 2018-03-12 stsp #include <stdlib.h>
29 5c860e29 2018-03-12 stsp #include <string.h>
30 5c860e29 2018-03-12 stsp #include <unistd.h>
31 c09a553d 2018-03-12 stsp #include <libgen.h>
32 c0768b0f 2018-06-10 stsp #include <time.h>
33 5c860e29 2018-03-12 stsp
34 f42b1b34 2018-03-12 stsp #include "got_error.h"
35 f42b1b34 2018-03-12 stsp #include "got_object.h"
36 5261c201 2018-04-01 stsp #include "got_reference.h"
37 f42b1b34 2018-03-12 stsp #include "got_repository.h"
38 c09a553d 2018-03-12 stsp #include "got_worktree.h"
39 79109fed 2018-03-27 stsp #include "got_diff.h"
40 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
41 404c43c4 2018-06-21 stsp #include "got_blame.h"
42 5c860e29 2018-03-12 stsp
43 5c860e29 2018-03-12 stsp #ifndef nitems
44 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
45 5c860e29 2018-03-12 stsp #endif
46 99437157 2018-11-11 stsp
47 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
48 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
49 99437157 2018-11-11 stsp
50 99437157 2018-11-11 stsp static void
51 99437157 2018-11-11 stsp catch_sigint(int signo)
52 99437157 2018-11-11 stsp {
53 99437157 2018-11-11 stsp sigint_received = 1;
54 99437157 2018-11-11 stsp }
55 99437157 2018-11-11 stsp
56 99437157 2018-11-11 stsp static void
57 99437157 2018-11-11 stsp catch_sigpipe(int signo)
58 99437157 2018-11-11 stsp {
59 99437157 2018-11-11 stsp sigpipe_received = 1;
60 99437157 2018-11-11 stsp }
61 5c860e29 2018-03-12 stsp
62 99437157 2018-11-11 stsp
63 5c860e29 2018-03-12 stsp struct cmd {
64 5c860e29 2018-03-12 stsp const char *cmd_name;
65 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
66 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
67 46a0db7d 2018-03-12 stsp const char *cmd_descr;
68 5c860e29 2018-03-12 stsp };
69 5c860e29 2018-03-12 stsp
70 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
71 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
72 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
73 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
74 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
75 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
76 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
77 5c860e29 2018-03-12 stsp
78 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
79 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
80 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
81 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
82 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
83 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
84 4ed7e80c 2018-05-20 stsp #ifdef notyet
85 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
86 4ed7e80c 2018-05-20 stsp #endif
87 5c860e29 2018-03-12 stsp
88 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
89 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
90 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
91 507dc3bb 2018-12-29 stsp { "update", cmd_update, usage_update,
92 507dc3bb 2018-12-29 stsp "update a work tree to a different commit" },
93 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
94 1b6b95a8 2018-03-12 stsp "show repository history" },
95 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
96 b00d56cd 2018-04-01 stsp "compare files and directories" },
97 404c43c4 2018-06-21 stsp { "blame", cmd_blame, usage_blame,
98 404c43c4 2018-06-21 stsp " show when lines in a file were changed" },
99 5de5890b 2018-10-18 stsp { "tree", cmd_tree, usage_tree,
100 5de5890b 2018-10-18 stsp " list files and directories in repository" },
101 f42b1b34 2018-03-12 stsp #ifdef notyet
102 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
103 1b6b95a8 2018-03-12 stsp "show modification status of files" },
104 f42b1b34 2018-03-12 stsp #endif
105 5c860e29 2018-03-12 stsp };
106 5c860e29 2018-03-12 stsp
107 5c860e29 2018-03-12 stsp int
108 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
109 5c860e29 2018-03-12 stsp {
110 5c860e29 2018-03-12 stsp struct cmd *cmd;
111 5c860e29 2018-03-12 stsp unsigned int i;
112 5c860e29 2018-03-12 stsp int ch;
113 1b6b95a8 2018-03-12 stsp int hflag = 0;
114 5c860e29 2018-03-12 stsp
115 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
116 5c860e29 2018-03-12 stsp
117 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
118 5c860e29 2018-03-12 stsp switch (ch) {
119 1b6b95a8 2018-03-12 stsp case 'h':
120 1b6b95a8 2018-03-12 stsp hflag = 1;
121 1b6b95a8 2018-03-12 stsp break;
122 5c860e29 2018-03-12 stsp default:
123 5c860e29 2018-03-12 stsp usage();
124 5c860e29 2018-03-12 stsp /* NOTREACHED */
125 5c860e29 2018-03-12 stsp }
126 5c860e29 2018-03-12 stsp }
127 5c860e29 2018-03-12 stsp
128 5c860e29 2018-03-12 stsp argc -= optind;
129 5c860e29 2018-03-12 stsp argv += optind;
130 1e70621d 2018-03-27 stsp optind = 0;
131 5c860e29 2018-03-12 stsp
132 5c860e29 2018-03-12 stsp if (argc <= 0)
133 5c860e29 2018-03-12 stsp usage();
134 5c860e29 2018-03-12 stsp
135 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
136 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
137 99437157 2018-11-11 stsp
138 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
139 d7d4f210 2018-03-12 stsp const struct got_error *error;
140 d7d4f210 2018-03-12 stsp
141 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
142 5c860e29 2018-03-12 stsp
143 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
144 5c860e29 2018-03-12 stsp continue;
145 5c860e29 2018-03-12 stsp
146 1b6b95a8 2018-03-12 stsp if (hflag)
147 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
148 1b6b95a8 2018-03-12 stsp
149 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
150 80d5f134 2018-11-11 stsp if (error && !(sigint_received || sigpipe_received)) {
151 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
152 d7d4f210 2018-03-12 stsp return 1;
153 d7d4f210 2018-03-12 stsp }
154 d7d4f210 2018-03-12 stsp
155 d7d4f210 2018-03-12 stsp return 0;
156 5c860e29 2018-03-12 stsp }
157 5c860e29 2018-03-12 stsp
158 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
159 5c860e29 2018-03-12 stsp return 1;
160 5c860e29 2018-03-12 stsp }
161 5c860e29 2018-03-12 stsp
162 4ed7e80c 2018-05-20 stsp __dead static void
163 5c860e29 2018-03-12 stsp usage(void)
164 5c860e29 2018-03-12 stsp {
165 46a0db7d 2018-03-12 stsp int i;
166 46a0db7d 2018-03-12 stsp
167 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
168 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
169 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
170 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
171 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
172 46a0db7d 2018-03-12 stsp }
173 5c860e29 2018-03-12 stsp exit(1);
174 5c860e29 2018-03-12 stsp }
175 5c860e29 2018-03-12 stsp
176 4ed7e80c 2018-05-20 stsp __dead static void
177 c09a553d 2018-03-12 stsp usage_checkout(void)
178 c09a553d 2018-03-12 stsp {
179 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
180 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
181 c09a553d 2018-03-12 stsp exit(1);
182 92a684f4 2018-03-12 stsp }
183 92a684f4 2018-03-12 stsp
184 92a684f4 2018-03-12 stsp static void
185 a0eb853d 2018-12-29 stsp checkout_progress(void *arg, unsigned char status, const char *path)
186 92a684f4 2018-03-12 stsp {
187 92a684f4 2018-03-12 stsp char *worktree_path = arg;
188 92a684f4 2018-03-12 stsp
189 92a684f4 2018-03-12 stsp while (path[0] == '/')
190 92a684f4 2018-03-12 stsp path++;
191 92a684f4 2018-03-12 stsp
192 d7b62c98 2018-12-27 stsp printf("%c %s/%s\n", status, worktree_path, path);
193 99437157 2018-11-11 stsp }
194 99437157 2018-11-11 stsp
195 99437157 2018-11-11 stsp static const struct got_error *
196 99437157 2018-11-11 stsp checkout_cancel(void *arg)
197 99437157 2018-11-11 stsp {
198 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
199 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
200 99437157 2018-11-11 stsp return NULL;
201 c09a553d 2018-03-12 stsp }
202 c09a553d 2018-03-12 stsp
203 4ed7e80c 2018-05-20 stsp static const struct got_error *
204 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
205 c09a553d 2018-03-12 stsp {
206 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
207 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
208 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
209 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
210 c09a553d 2018-03-12 stsp char *repo_path = NULL;
211 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
212 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
213 e5dc7198 2018-12-29 stsp int ch, same_path_prefix;
214 c09a553d 2018-03-12 stsp
215 0bb8a95e 2018-03-12 stsp while ((ch = getopt(argc, argv, "p:")) != -1) {
216 0bb8a95e 2018-03-12 stsp switch (ch) {
217 0bb8a95e 2018-03-12 stsp case 'p':
218 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
219 0bb8a95e 2018-03-12 stsp break;
220 0bb8a95e 2018-03-12 stsp default:
221 0bb8a95e 2018-03-12 stsp usage();
222 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
223 0bb8a95e 2018-03-12 stsp }
224 0bb8a95e 2018-03-12 stsp }
225 0bb8a95e 2018-03-12 stsp
226 0bb8a95e 2018-03-12 stsp argc -= optind;
227 0bb8a95e 2018-03-12 stsp argv += optind;
228 0bb8a95e 2018-03-12 stsp
229 6715a751 2018-03-16 stsp #ifndef PROFILE
230 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
231 ad242220 2018-09-08 stsp == -1)
232 c09a553d 2018-03-12 stsp err(1, "pledge");
233 6715a751 2018-03-16 stsp #endif
234 0bb8a95e 2018-03-12 stsp if (argc == 1) {
235 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
236 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
237 76089277 2018-04-01 stsp if (repo_path == NULL)
238 76089277 2018-04-01 stsp return got_error_from_errno();
239 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
240 76089277 2018-04-01 stsp if (cwd == NULL) {
241 76089277 2018-04-01 stsp error = got_error_from_errno();
242 76089277 2018-04-01 stsp goto done;
243 76089277 2018-04-01 stsp }
244 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
245 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
246 5d7c1dab 2018-04-01 stsp else
247 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
248 76089277 2018-04-01 stsp if (base == NULL) {
249 76089277 2018-04-01 stsp error = got_error_from_errno();
250 76089277 2018-04-01 stsp goto done;
251 76089277 2018-04-01 stsp }
252 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
253 c09a553d 2018-03-12 stsp if (dotgit)
254 c09a553d 2018-03-12 stsp *dotgit = '\0';
255 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
256 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
257 c09a553d 2018-03-12 stsp free(cwd);
258 76089277 2018-04-01 stsp goto done;
259 c09a553d 2018-03-12 stsp }
260 c09a553d 2018-03-12 stsp free(cwd);
261 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
262 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
263 76089277 2018-04-01 stsp if (repo_path == NULL) {
264 76089277 2018-04-01 stsp error = got_error_from_errno();
265 76089277 2018-04-01 stsp goto done;
266 76089277 2018-04-01 stsp }
267 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
268 76089277 2018-04-01 stsp if (worktree_path == NULL) {
269 76089277 2018-04-01 stsp error = got_error_from_errno();
270 76089277 2018-04-01 stsp goto done;
271 76089277 2018-04-01 stsp }
272 c09a553d 2018-03-12 stsp } else
273 c09a553d 2018-03-12 stsp usage_checkout();
274 c09a553d 2018-03-12 stsp
275 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
276 c09a553d 2018-03-12 stsp if (error != NULL)
277 c09a553d 2018-03-12 stsp goto done;
278 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
279 c09a553d 2018-03-12 stsp if (error != NULL)
280 c09a553d 2018-03-12 stsp goto done;
281 c09a553d 2018-03-12 stsp
282 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
283 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
284 c09a553d 2018-03-12 stsp goto done;
285 c09a553d 2018-03-12 stsp
286 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
287 c09a553d 2018-03-12 stsp if (error != NULL)
288 c09a553d 2018-03-12 stsp goto done;
289 c09a553d 2018-03-12 stsp
290 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
291 e5dc7198 2018-12-29 stsp path_prefix);
292 e5dc7198 2018-12-29 stsp if (error != NULL)
293 e5dc7198 2018-12-29 stsp goto done;
294 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
295 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
296 49520a32 2018-12-29 stsp goto done;
297 49520a32 2018-12-29 stsp }
298 49520a32 2018-12-29 stsp
299 93a30277 2018-12-24 stsp error = got_worktree_checkout_files(worktree, repo,
300 99437157 2018-11-11 stsp checkout_progress, worktree_path, checkout_cancel, NULL);
301 c09a553d 2018-03-12 stsp if (error != NULL)
302 c09a553d 2018-03-12 stsp goto done;
303 c09a553d 2018-03-12 stsp
304 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
305 c09a553d 2018-03-12 stsp
306 c09a553d 2018-03-12 stsp done:
307 76089277 2018-04-01 stsp free(repo_path);
308 507dc3bb 2018-12-29 stsp free(worktree_path);
309 507dc3bb 2018-12-29 stsp return error;
310 507dc3bb 2018-12-29 stsp }
311 507dc3bb 2018-12-29 stsp
312 507dc3bb 2018-12-29 stsp __dead static void
313 507dc3bb 2018-12-29 stsp usage_update(void)
314 507dc3bb 2018-12-29 stsp {
315 507dc3bb 2018-12-29 stsp fprintf(stderr, "usage: %s update [-c commit] [worktree-path]\n",
316 507dc3bb 2018-12-29 stsp getprogname());
317 507dc3bb 2018-12-29 stsp exit(1);
318 507dc3bb 2018-12-29 stsp }
319 507dc3bb 2018-12-29 stsp
320 507dc3bb 2018-12-29 stsp static void
321 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
322 507dc3bb 2018-12-29 stsp {
323 507dc3bb 2018-12-29 stsp if (status == GOT_STATUS_EXISTS)
324 507dc3bb 2018-12-29 stsp return;
325 507dc3bb 2018-12-29 stsp
326 507dc3bb 2018-12-29 stsp while (path[0] == '/')
327 507dc3bb 2018-12-29 stsp path++;
328 507dc3bb 2018-12-29 stsp printf("%c %s\n", status, path);
329 507dc3bb 2018-12-29 stsp }
330 507dc3bb 2018-12-29 stsp
331 507dc3bb 2018-12-29 stsp static const struct got_error *
332 be7061eb 2018-12-30 stsp check_ancestry(struct got_worktree *worktree, struct got_object_id *commit_id,
333 be7061eb 2018-12-30 stsp struct got_repository *repo)
334 be7061eb 2018-12-30 stsp {
335 be7061eb 2018-12-30 stsp const struct got_error *err;
336 be7061eb 2018-12-30 stsp struct got_reference *head_ref = NULL;
337 be7061eb 2018-12-30 stsp struct got_object_id *head_commit_id = NULL;
338 be7061eb 2018-12-30 stsp struct got_commit_graph *graph = NULL;
339 be7061eb 2018-12-30 stsp
340 be7061eb 2018-12-30 stsp head_ref = got_worktree_get_head_ref(worktree);
341 be7061eb 2018-12-30 stsp if (head_ref == NULL)
342 be7061eb 2018-12-30 stsp return got_error_from_errno();
343 be7061eb 2018-12-30 stsp
344 2944241d 2018-12-30 stsp /* TODO: Check the reflog. The head ref may have been rebased. */
345 be7061eb 2018-12-30 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
346 be7061eb 2018-12-30 stsp if (err)
347 be7061eb 2018-12-30 stsp goto done;
348 be7061eb 2018-12-30 stsp
349 be7061eb 2018-12-30 stsp err = got_commit_graph_open(&graph, head_commit_id, "/", 1, repo);
350 be7061eb 2018-12-30 stsp if (err)
351 be7061eb 2018-12-30 stsp goto done;
352 be7061eb 2018-12-30 stsp
353 be7061eb 2018-12-30 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo);
354 be7061eb 2018-12-30 stsp if (err)
355 be7061eb 2018-12-30 stsp goto done;
356 be7061eb 2018-12-30 stsp while (1) {
357 be7061eb 2018-12-30 stsp struct got_object_id *id;
358 be7061eb 2018-12-30 stsp
359 be7061eb 2018-12-30 stsp if (sigint_received || sigpipe_received)
360 be7061eb 2018-12-30 stsp break;
361 be7061eb 2018-12-30 stsp
362 be7061eb 2018-12-30 stsp err = got_commit_graph_iter_next(&id, graph);
363 be7061eb 2018-12-30 stsp if (err) {
364 be7061eb 2018-12-30 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
365 be7061eb 2018-12-30 stsp err = got_error(GOT_ERR_ANCESTRY);
366 be7061eb 2018-12-30 stsp break;
367 be7061eb 2018-12-30 stsp }
368 be7061eb 2018-12-30 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
369 be7061eb 2018-12-30 stsp break;
370 be7061eb 2018-12-30 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
371 be7061eb 2018-12-30 stsp if (err)
372 be7061eb 2018-12-30 stsp break;
373 be7061eb 2018-12-30 stsp else
374 be7061eb 2018-12-30 stsp continue;
375 be7061eb 2018-12-30 stsp }
376 be7061eb 2018-12-30 stsp if (id == NULL)
377 be7061eb 2018-12-30 stsp break;
378 be7061eb 2018-12-30 stsp if (got_object_id_cmp(id, commit_id) == 0)
379 be7061eb 2018-12-30 stsp break;
380 be7061eb 2018-12-30 stsp }
381 be7061eb 2018-12-30 stsp done:
382 be7061eb 2018-12-30 stsp if (head_ref)
383 be7061eb 2018-12-30 stsp got_ref_close(head_ref);
384 be7061eb 2018-12-30 stsp if (graph)
385 be7061eb 2018-12-30 stsp got_commit_graph_close(graph);
386 be7061eb 2018-12-30 stsp return err;
387 be7061eb 2018-12-30 stsp }
388 be7061eb 2018-12-30 stsp
389 be7061eb 2018-12-30 stsp static const struct got_error *
390 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
391 507dc3bb 2018-12-29 stsp {
392 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
393 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
394 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
395 507dc3bb 2018-12-29 stsp char *worktree_path = NULL;
396 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
397 507dc3bb 2018-12-29 stsp const char *commit_id_str = NULL;
398 507dc3bb 2018-12-29 stsp int ch;
399 507dc3bb 2018-12-29 stsp
400 507dc3bb 2018-12-29 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
401 507dc3bb 2018-12-29 stsp switch (ch) {
402 507dc3bb 2018-12-29 stsp case 'c':
403 507dc3bb 2018-12-29 stsp commit_id_str = optarg;
404 507dc3bb 2018-12-29 stsp break;
405 507dc3bb 2018-12-29 stsp default:
406 507dc3bb 2018-12-29 stsp usage();
407 507dc3bb 2018-12-29 stsp /* NOTREACHED */
408 507dc3bb 2018-12-29 stsp }
409 507dc3bb 2018-12-29 stsp }
410 507dc3bb 2018-12-29 stsp
411 507dc3bb 2018-12-29 stsp argc -= optind;
412 507dc3bb 2018-12-29 stsp argv += optind;
413 507dc3bb 2018-12-29 stsp
414 507dc3bb 2018-12-29 stsp #ifndef PROFILE
415 507dc3bb 2018-12-29 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
416 507dc3bb 2018-12-29 stsp == -1)
417 507dc3bb 2018-12-29 stsp err(1, "pledge");
418 507dc3bb 2018-12-29 stsp #endif
419 507dc3bb 2018-12-29 stsp if (argc == 0) {
420 507dc3bb 2018-12-29 stsp worktree_path = getcwd(NULL, 0);
421 507dc3bb 2018-12-29 stsp if (worktree_path == NULL) {
422 507dc3bb 2018-12-29 stsp error = got_error_from_errno();
423 507dc3bb 2018-12-29 stsp goto done;
424 507dc3bb 2018-12-29 stsp }
425 507dc3bb 2018-12-29 stsp } else if (argc == 1) {
426 507dc3bb 2018-12-29 stsp worktree_path = realpath(argv[0], NULL);
427 507dc3bb 2018-12-29 stsp if (worktree_path == NULL) {
428 507dc3bb 2018-12-29 stsp error = got_error_from_errno();
429 507dc3bb 2018-12-29 stsp goto done;
430 507dc3bb 2018-12-29 stsp }
431 507dc3bb 2018-12-29 stsp } else
432 507dc3bb 2018-12-29 stsp usage_update();
433 507dc3bb 2018-12-29 stsp
434 507dc3bb 2018-12-29 stsp error = got_worktree_open(&worktree, worktree_path);
435 507dc3bb 2018-12-29 stsp if (error != NULL)
436 507dc3bb 2018-12-29 stsp goto done;
437 507dc3bb 2018-12-29 stsp
438 507dc3bb 2018-12-29 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
439 507dc3bb 2018-12-29 stsp if (error != NULL)
440 507dc3bb 2018-12-29 stsp goto done;
441 507dc3bb 2018-12-29 stsp
442 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
443 507dc3bb 2018-12-29 stsp struct got_reference *head_ref;
444 507dc3bb 2018-12-29 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
445 507dc3bb 2018-12-29 stsp if (error != NULL)
446 507dc3bb 2018-12-29 stsp goto done;
447 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
448 507dc3bb 2018-12-29 stsp if (error != NULL)
449 507dc3bb 2018-12-29 stsp goto done;
450 507dc3bb 2018-12-29 stsp } else {
451 507dc3bb 2018-12-29 stsp error = got_object_resolve_id_str(&commit_id, repo,
452 507dc3bb 2018-12-29 stsp commit_id_str);
453 507dc3bb 2018-12-29 stsp if (error != NULL)
454 507dc3bb 2018-12-29 stsp goto done;
455 507dc3bb 2018-12-29 stsp }
456 35c965b2 2018-12-29 stsp
457 be7061eb 2018-12-30 stsp error = check_ancestry(worktree, commit_id, repo);
458 be7061eb 2018-12-30 stsp if (error != NULL)
459 be7061eb 2018-12-30 stsp goto done;
460 507dc3bb 2018-12-29 stsp
461 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
462 507dc3bb 2018-12-29 stsp commit_id) != 0) {
463 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
464 507dc3bb 2018-12-29 stsp commit_id);
465 507dc3bb 2018-12-29 stsp if (error)
466 507dc3bb 2018-12-29 stsp goto done;
467 507dc3bb 2018-12-29 stsp }
468 507dc3bb 2018-12-29 stsp
469 507dc3bb 2018-12-29 stsp error = got_worktree_checkout_files(worktree, repo,
470 507dc3bb 2018-12-29 stsp update_progress, NULL, checkout_cancel, NULL);
471 507dc3bb 2018-12-29 stsp if (error != NULL)
472 507dc3bb 2018-12-29 stsp goto done;
473 507dc3bb 2018-12-29 stsp done:
474 c09a553d 2018-03-12 stsp free(worktree_path);
475 507dc3bb 2018-12-29 stsp free(commit_id);
476 c09a553d 2018-03-12 stsp return error;
477 c09a553d 2018-03-12 stsp }
478 c09a553d 2018-03-12 stsp
479 f42b1b34 2018-03-12 stsp static const struct got_error *
480 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
481 c0cc5c62 2018-10-18 stsp int diff_context, struct got_repository *repo)
482 5c860e29 2018-03-12 stsp {
483 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
484 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
485 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
486 0f2b3dca 2018-12-22 stsp char *id_str1 = NULL, *id_str2;
487 79109fed 2018-03-27 stsp
488 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo,
489 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
490 79109fed 2018-03-27 stsp if (err)
491 79109fed 2018-03-27 stsp return err;
492 79109fed 2018-03-27 stsp
493 45d799e2 2018-12-23 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
494 79f35eb3 2018-06-11 stsp if (qid != NULL) {
495 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
496 79109fed 2018-03-27 stsp
497 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
498 79109fed 2018-03-27 stsp if (err)
499 79109fed 2018-03-27 stsp return err;
500 79109fed 2018-03-27 stsp
501 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo,
502 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(pcommit));
503 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
504 0f2b3dca 2018-12-22 stsp if (err)
505 0f2b3dca 2018-12-22 stsp return err;
506 0f2b3dca 2018-12-22 stsp
507 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str1, qid->id);
508 79109fed 2018-03-27 stsp if (err)
509 79109fed 2018-03-27 stsp return err;
510 79109fed 2018-03-27 stsp }
511 79109fed 2018-03-27 stsp
512 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str2, id);
513 0f2b3dca 2018-12-22 stsp if (err)
514 0f2b3dca 2018-12-22 stsp goto done;
515 0f2b3dca 2018-12-22 stsp
516 56765ebb 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
517 54156555 2018-12-24 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
518 0f2b3dca 2018-12-22 stsp done:
519 79109fed 2018-03-27 stsp if (tree1)
520 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
521 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
522 0f2b3dca 2018-12-22 stsp free(id_str1);
523 0f2b3dca 2018-12-22 stsp free(id_str2);
524 79109fed 2018-03-27 stsp return err;
525 79109fed 2018-03-27 stsp }
526 79109fed 2018-03-27 stsp
527 4bb494d5 2018-06-16 stsp static char *
528 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
529 6c281f94 2018-06-11 stsp {
530 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
531 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
532 6c281f94 2018-06-11 stsp if (p)
533 6c281f94 2018-06-11 stsp *p = '\0';
534 6c281f94 2018-06-11 stsp return s;
535 6c281f94 2018-06-11 stsp }
536 6c281f94 2018-06-11 stsp
537 79109fed 2018-03-27 stsp static const struct got_error *
538 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
539 c0cc5c62 2018-10-18 stsp struct got_repository *repo, int show_patch, int diff_context)
540 79109fed 2018-03-27 stsp {
541 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
542 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
543 6c281f94 2018-06-11 stsp char datebuf[26];
544 45d799e2 2018-12-23 stsp time_t committer_time;
545 45d799e2 2018-12-23 stsp const char *author, *committer;
546 5c860e29 2018-03-12 stsp
547 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
548 8bf5b3c9 2018-03-17 stsp if (err)
549 8bf5b3c9 2018-03-17 stsp return err;
550 788c352e 2018-06-16 stsp
551 33d869be 2018-12-22 stsp printf("-----------------------------------------------\n");
552 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
553 832c249c 2018-06-10 stsp free(id_str);
554 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
555 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
556 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
557 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
558 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
559 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
560 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
561 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
562 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
563 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
564 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
565 3fe1abad 2018-06-10 stsp int n = 1;
566 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
567 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
568 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
569 a0603db2 2018-06-10 stsp if (err)
570 a0603db2 2018-06-10 stsp return err;
571 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
572 a0603db2 2018-06-10 stsp free(id_str);
573 a0603db2 2018-06-10 stsp }
574 a0603db2 2018-06-10 stsp }
575 832c249c 2018-06-10 stsp
576 45d799e2 2018-12-23 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
577 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
578 832c249c 2018-06-10 stsp return got_error_from_errno();
579 8bf5b3c9 2018-03-17 stsp
580 621015ac 2018-07-23 stsp logmsg = logmsg0;
581 832c249c 2018-06-10 stsp do {
582 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
583 832c249c 2018-06-10 stsp if (line)
584 832c249c 2018-06-10 stsp printf(" %s\n", line);
585 832c249c 2018-06-10 stsp } while (line);
586 621015ac 2018-07-23 stsp free(logmsg0);
587 832c249c 2018-06-10 stsp
588 971751ac 2018-03-27 stsp if (show_patch) {
589 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
590 971751ac 2018-03-27 stsp if (err == 0)
591 971751ac 2018-03-27 stsp printf("\n");
592 971751ac 2018-03-27 stsp }
593 07862c20 2018-09-15 stsp
594 d82de447 2018-09-15 stsp fflush(stdout);
595 07862c20 2018-09-15 stsp return err;
596 f42b1b34 2018-03-12 stsp }
597 5c860e29 2018-03-12 stsp
598 f42b1b34 2018-03-12 stsp static const struct got_error *
599 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
600 15a94983 2018-12-23 stsp char *path, int show_patch, int diff_context, int limit,
601 15a94983 2018-12-23 stsp int first_parent_traversal)
602 f42b1b34 2018-03-12 stsp {
603 f42b1b34 2018-03-12 stsp const struct got_error *err;
604 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
605 372ccdbb 2018-06-10 stsp
606 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
607 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
608 f42b1b34 2018-03-12 stsp if (err)
609 f42b1b34 2018-03-12 stsp return err;
610 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
611 372ccdbb 2018-06-10 stsp if (err)
612 fcc85cad 2018-07-22 stsp goto done;
613 31cedeaf 2018-09-15 stsp while (1) {
614 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
615 372ccdbb 2018-06-10 stsp struct got_object_id *id;
616 8bf5b3c9 2018-03-17 stsp
617 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
618 84453469 2018-11-11 stsp break;
619 84453469 2018-11-11 stsp
620 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
621 372ccdbb 2018-06-10 stsp if (err) {
622 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
623 9ba79e04 2018-06-11 stsp err = NULL;
624 9ba79e04 2018-06-11 stsp break;
625 9ba79e04 2018-06-11 stsp }
626 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
627 372ccdbb 2018-06-10 stsp break;
628 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
629 372ccdbb 2018-06-10 stsp if (err)
630 372ccdbb 2018-06-10 stsp break;
631 372ccdbb 2018-06-10 stsp else
632 372ccdbb 2018-06-10 stsp continue;
633 7e665116 2018-04-02 stsp }
634 b43fbaa0 2018-06-11 stsp if (id == NULL)
635 7e665116 2018-04-02 stsp break;
636 b43fbaa0 2018-06-11 stsp
637 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
638 b43fbaa0 2018-06-11 stsp if (err)
639 fcc85cad 2018-07-22 stsp break;
640 c0cc5c62 2018-10-18 stsp err = print_commit(commit, id, repo, show_patch, diff_context);
641 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
642 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
643 7e665116 2018-04-02 stsp break;
644 31cedeaf 2018-09-15 stsp }
645 fcc85cad 2018-07-22 stsp done:
646 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
647 f42b1b34 2018-03-12 stsp return err;
648 f42b1b34 2018-03-12 stsp }
649 5c860e29 2018-03-12 stsp
650 4ed7e80c 2018-05-20 stsp __dead static void
651 6f3d1eb0 2018-03-12 stsp usage_log(void)
652 6f3d1eb0 2018-03-12 stsp {
653 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
654 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
655 6f3d1eb0 2018-03-12 stsp exit(1);
656 6f3d1eb0 2018-03-12 stsp }
657 6f3d1eb0 2018-03-12 stsp
658 4ed7e80c 2018-05-20 stsp static const struct got_error *
659 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
660 f42b1b34 2018-03-12 stsp {
661 f42b1b34 2018-03-12 stsp const struct got_error *error;
662 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
663 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
664 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
665 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
666 d142fc45 2018-04-01 stsp char *start_commit = NULL;
667 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
668 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
669 64a96a6d 2018-04-01 stsp const char *errstr;
670 5c860e29 2018-03-12 stsp
671 6715a751 2018-03-16 stsp #ifndef PROFILE
672 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
673 ad242220 2018-09-08 stsp == -1)
674 f42b1b34 2018-03-12 stsp err(1, "pledge");
675 6715a751 2018-03-16 stsp #endif
676 79109fed 2018-03-27 stsp
677 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
678 79109fed 2018-03-27 stsp switch (ch) {
679 79109fed 2018-03-27 stsp case 'p':
680 79109fed 2018-03-27 stsp show_patch = 1;
681 d142fc45 2018-04-01 stsp break;
682 d142fc45 2018-04-01 stsp case 'c':
683 d142fc45 2018-04-01 stsp start_commit = optarg;
684 64a96a6d 2018-04-01 stsp break;
685 c0cc5c62 2018-10-18 stsp case 'C':
686 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
687 4a8520aa 2018-10-18 stsp &errstr);
688 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
689 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
690 c0cc5c62 2018-10-18 stsp break;
691 64a96a6d 2018-04-01 stsp case 'l':
692 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
693 64a96a6d 2018-04-01 stsp if (errstr != NULL)
694 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
695 79109fed 2018-03-27 stsp break;
696 0ed6ed4c 2018-06-13 stsp case 'f':
697 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
698 a0603db2 2018-06-10 stsp break;
699 04ca23f4 2018-07-16 stsp case 'r':
700 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
701 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
702 04ca23f4 2018-07-16 stsp err(1, "-r option");
703 04ca23f4 2018-07-16 stsp break;
704 79109fed 2018-03-27 stsp default:
705 79109fed 2018-03-27 stsp usage();
706 79109fed 2018-03-27 stsp /* NOTREACHED */
707 79109fed 2018-03-27 stsp }
708 79109fed 2018-03-27 stsp }
709 79109fed 2018-03-27 stsp
710 79109fed 2018-03-27 stsp argc -= optind;
711 79109fed 2018-03-27 stsp argv += optind;
712 79109fed 2018-03-27 stsp
713 04ca23f4 2018-07-16 stsp if (argc == 0)
714 04ca23f4 2018-07-16 stsp path = strdup("");
715 04ca23f4 2018-07-16 stsp else if (argc == 1)
716 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
717 04ca23f4 2018-07-16 stsp else
718 6f3d1eb0 2018-03-12 stsp usage_log();
719 04ca23f4 2018-07-16 stsp if (path == NULL)
720 04ca23f4 2018-07-16 stsp return got_error_from_errno();
721 f42b1b34 2018-03-12 stsp
722 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
723 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
724 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
725 04ca23f4 2018-07-16 stsp goto done;
726 04ca23f4 2018-07-16 stsp }
727 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
728 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
729 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
730 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
731 04ca23f4 2018-07-16 stsp goto done;
732 04ca23f4 2018-07-16 stsp }
733 04ca23f4 2018-07-16 stsp }
734 04ca23f4 2018-07-16 stsp
735 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
736 d7d4f210 2018-03-12 stsp if (error != NULL)
737 04ca23f4 2018-07-16 stsp goto done;
738 f42b1b34 2018-03-12 stsp
739 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
740 3235492e 2018-04-01 stsp struct got_reference *head_ref;
741 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
742 3235492e 2018-04-01 stsp if (error != NULL)
743 3235492e 2018-04-01 stsp return error;
744 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
745 3235492e 2018-04-01 stsp got_ref_close(head_ref);
746 3235492e 2018-04-01 stsp if (error != NULL)
747 3235492e 2018-04-01 stsp return error;
748 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
749 3235492e 2018-04-01 stsp } else {
750 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
751 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
752 3235492e 2018-04-01 stsp if (error == NULL) {
753 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
754 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
755 d1f2edc9 2018-06-13 stsp if (error != NULL)
756 d1f2edc9 2018-06-13 stsp return error;
757 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
758 d1f2edc9 2018-06-13 stsp if (error != NULL)
759 d1f2edc9 2018-06-13 stsp return error;
760 d1f2edc9 2018-06-13 stsp }
761 15a94983 2018-12-23 stsp if (commit == NULL) {
762 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id, repo,
763 d1f2edc9 2018-06-13 stsp start_commit);
764 d1f2edc9 2018-06-13 stsp if (error != NULL)
765 d1f2edc9 2018-06-13 stsp return error;
766 3235492e 2018-04-01 stsp }
767 3235492e 2018-04-01 stsp }
768 d7d4f210 2018-03-12 stsp if (error != NULL)
769 04ca23f4 2018-07-16 stsp goto done;
770 04ca23f4 2018-07-16 stsp
771 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
772 04ca23f4 2018-07-16 stsp if (error != NULL)
773 04ca23f4 2018-07-16 stsp goto done;
774 04ca23f4 2018-07-16 stsp if (in_repo_path) {
775 04ca23f4 2018-07-16 stsp free(path);
776 04ca23f4 2018-07-16 stsp path = in_repo_path;
777 04ca23f4 2018-07-16 stsp }
778 04ca23f4 2018-07-16 stsp
779 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
780 c0cc5c62 2018-10-18 stsp diff_context, limit, first_parent_traversal);
781 04ca23f4 2018-07-16 stsp done:
782 04ca23f4 2018-07-16 stsp free(path);
783 04ca23f4 2018-07-16 stsp free(repo_path);
784 04ca23f4 2018-07-16 stsp free(cwd);
785 f42b1b34 2018-03-12 stsp free(id);
786 ad242220 2018-09-08 stsp if (repo) {
787 ad242220 2018-09-08 stsp const struct got_error *repo_error;
788 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
789 ad242220 2018-09-08 stsp if (error == NULL)
790 ad242220 2018-09-08 stsp error = repo_error;
791 ad242220 2018-09-08 stsp }
792 8bf5b3c9 2018-03-17 stsp return error;
793 5c860e29 2018-03-12 stsp }
794 5c860e29 2018-03-12 stsp
795 4ed7e80c 2018-05-20 stsp __dead static void
796 3f8b7d6a 2018-04-01 stsp usage_diff(void)
797 3f8b7d6a 2018-04-01 stsp {
798 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s diff [-C number] [repository-path] "
799 c0cc5c62 2018-10-18 stsp "object1 object2\n", getprogname());
800 3f8b7d6a 2018-04-01 stsp exit(1);
801 b00d56cd 2018-04-01 stsp }
802 b00d56cd 2018-04-01 stsp
803 4ed7e80c 2018-05-20 stsp static const struct got_error *
804 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
805 b00d56cd 2018-04-01 stsp {
806 b00d56cd 2018-04-01 stsp const struct got_error *error;
807 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
808 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
809 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
810 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
811 15a94983 2018-12-23 stsp int type1, type2;
812 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
813 c0cc5c62 2018-10-18 stsp const char *errstr;
814 b00d56cd 2018-04-01 stsp
815 b00d56cd 2018-04-01 stsp #ifndef PROFILE
816 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
817 ad242220 2018-09-08 stsp == -1)
818 b00d56cd 2018-04-01 stsp err(1, "pledge");
819 b00d56cd 2018-04-01 stsp #endif
820 b00d56cd 2018-04-01 stsp
821 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "C:")) != -1) {
822 b00d56cd 2018-04-01 stsp switch (ch) {
823 c0cc5c62 2018-10-18 stsp case 'C':
824 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
825 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
826 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
827 c0cc5c62 2018-10-18 stsp break;
828 b00d56cd 2018-04-01 stsp default:
829 b00d56cd 2018-04-01 stsp usage();
830 b00d56cd 2018-04-01 stsp /* NOTREACHED */
831 b00d56cd 2018-04-01 stsp }
832 b00d56cd 2018-04-01 stsp }
833 b00d56cd 2018-04-01 stsp
834 b00d56cd 2018-04-01 stsp argc -= optind;
835 b00d56cd 2018-04-01 stsp argv += optind;
836 b00d56cd 2018-04-01 stsp
837 b00d56cd 2018-04-01 stsp if (argc == 0) {
838 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
839 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
840 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
841 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
842 e1e3f570 2018-04-01 stsp return got_error_from_errno();
843 15a94983 2018-12-23 stsp id_str1 = argv[0];
844 15a94983 2018-12-23 stsp id_str2 = argv[1];
845 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
846 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
847 76089277 2018-04-01 stsp if (repo_path == NULL)
848 76089277 2018-04-01 stsp return got_error_from_errno();
849 15a94983 2018-12-23 stsp id_str1 = argv[1];
850 15a94983 2018-12-23 stsp id_str2 = argv[2];
851 b00d56cd 2018-04-01 stsp } else
852 b00d56cd 2018-04-01 stsp usage_diff();
853 b00d56cd 2018-04-01 stsp
854 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
855 76089277 2018-04-01 stsp free(repo_path);
856 b00d56cd 2018-04-01 stsp if (error != NULL)
857 b00d56cd 2018-04-01 stsp goto done;
858 b00d56cd 2018-04-01 stsp
859 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id1, repo, id_str1);
860 6402fb3c 2018-09-15 stsp if (error)
861 b00d56cd 2018-04-01 stsp goto done;
862 b00d56cd 2018-04-01 stsp
863 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id2, repo, id_str2);
864 6402fb3c 2018-09-15 stsp if (error)
865 b00d56cd 2018-04-01 stsp goto done;
866 b00d56cd 2018-04-01 stsp
867 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
868 15a94983 2018-12-23 stsp if (error)
869 15a94983 2018-12-23 stsp goto done;
870 15a94983 2018-12-23 stsp
871 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
872 15a94983 2018-12-23 stsp if (error)
873 15a94983 2018-12-23 stsp goto done;
874 15a94983 2018-12-23 stsp
875 15a94983 2018-12-23 stsp if (type1 != type2) {
876 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
877 b00d56cd 2018-04-01 stsp goto done;
878 b00d56cd 2018-04-01 stsp }
879 b00d56cd 2018-04-01 stsp
880 15a94983 2018-12-23 stsp switch (type1) {
881 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
882 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
883 54156555 2018-12-24 stsp diff_context, repo, stdout);
884 b00d56cd 2018-04-01 stsp break;
885 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
886 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
887 54156555 2018-12-24 stsp diff_context, repo, stdout);
888 b00d56cd 2018-04-01 stsp break;
889 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
890 15a94983 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null",
891 15a94983 2018-12-23 stsp id_str2);
892 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
893 c0cc5c62 2018-10-18 stsp repo, stdout);
894 b00d56cd 2018-04-01 stsp break;
895 b00d56cd 2018-04-01 stsp default:
896 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
897 b00d56cd 2018-04-01 stsp }
898 b00d56cd 2018-04-01 stsp
899 b00d56cd 2018-04-01 stsp done:
900 15a94983 2018-12-23 stsp free(id1);
901 15a94983 2018-12-23 stsp free(id2);
902 ad242220 2018-09-08 stsp if (repo) {
903 ad242220 2018-09-08 stsp const struct got_error *repo_error;
904 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
905 ad242220 2018-09-08 stsp if (error == NULL)
906 ad242220 2018-09-08 stsp error = repo_error;
907 ad242220 2018-09-08 stsp }
908 b00d56cd 2018-04-01 stsp return error;
909 404c43c4 2018-06-21 stsp }
910 404c43c4 2018-06-21 stsp
911 404c43c4 2018-06-21 stsp __dead static void
912 404c43c4 2018-06-21 stsp usage_blame(void)
913 404c43c4 2018-06-21 stsp {
914 66bea077 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
915 404c43c4 2018-06-21 stsp getprogname());
916 404c43c4 2018-06-21 stsp exit(1);
917 b00d56cd 2018-04-01 stsp }
918 b00d56cd 2018-04-01 stsp
919 404c43c4 2018-06-21 stsp static const struct got_error *
920 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
921 404c43c4 2018-06-21 stsp {
922 404c43c4 2018-06-21 stsp const struct got_error *error;
923 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
924 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
925 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
926 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
927 404c43c4 2018-06-21 stsp int ch;
928 404c43c4 2018-06-21 stsp
929 404c43c4 2018-06-21 stsp #ifndef PROFILE
930 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
931 ad242220 2018-09-08 stsp == -1)
932 404c43c4 2018-06-21 stsp err(1, "pledge");
933 404c43c4 2018-06-21 stsp #endif
934 404c43c4 2018-06-21 stsp
935 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
936 404c43c4 2018-06-21 stsp switch (ch) {
937 404c43c4 2018-06-21 stsp case 'c':
938 404c43c4 2018-06-21 stsp commit_id_str = optarg;
939 404c43c4 2018-06-21 stsp break;
940 66bea077 2018-08-02 stsp case 'r':
941 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
942 66bea077 2018-08-02 stsp if (repo_path == NULL)
943 66bea077 2018-08-02 stsp err(1, "-r option");
944 66bea077 2018-08-02 stsp break;
945 404c43c4 2018-06-21 stsp default:
946 404c43c4 2018-06-21 stsp usage();
947 404c43c4 2018-06-21 stsp /* NOTREACHED */
948 404c43c4 2018-06-21 stsp }
949 404c43c4 2018-06-21 stsp }
950 404c43c4 2018-06-21 stsp
951 404c43c4 2018-06-21 stsp argc -= optind;
952 404c43c4 2018-06-21 stsp argv += optind;
953 404c43c4 2018-06-21 stsp
954 a39318fd 2018-08-02 stsp if (argc == 1)
955 404c43c4 2018-06-21 stsp path = argv[0];
956 a39318fd 2018-08-02 stsp else
957 404c43c4 2018-06-21 stsp usage_blame();
958 404c43c4 2018-06-21 stsp
959 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
960 66bea077 2018-08-02 stsp if (cwd == NULL) {
961 66bea077 2018-08-02 stsp error = got_error_from_errno();
962 66bea077 2018-08-02 stsp goto done;
963 66bea077 2018-08-02 stsp }
964 66bea077 2018-08-02 stsp if (repo_path == NULL) {
965 66bea077 2018-08-02 stsp repo_path = strdup(cwd);
966 66bea077 2018-08-02 stsp if (repo_path == NULL) {
967 66bea077 2018-08-02 stsp error = got_error_from_errno();
968 66bea077 2018-08-02 stsp goto done;
969 66bea077 2018-08-02 stsp }
970 66bea077 2018-08-02 stsp }
971 66bea077 2018-08-02 stsp
972 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
973 404c43c4 2018-06-21 stsp if (error != NULL)
974 404c43c4 2018-06-21 stsp goto done;
975 404c43c4 2018-06-21 stsp
976 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
977 66bea077 2018-08-02 stsp if (error != NULL)
978 66bea077 2018-08-02 stsp goto done;
979 66bea077 2018-08-02 stsp
980 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
981 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
982 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
983 404c43c4 2018-06-21 stsp if (error != NULL)
984 66bea077 2018-08-02 stsp goto done;
985 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
986 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
987 404c43c4 2018-06-21 stsp if (error != NULL)
988 66bea077 2018-08-02 stsp goto done;
989 404c43c4 2018-06-21 stsp } else {
990 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
991 15a94983 2018-12-23 stsp commit_id_str);
992 404c43c4 2018-06-21 stsp if (error != NULL)
993 66bea077 2018-08-02 stsp goto done;
994 404c43c4 2018-06-21 stsp }
995 404c43c4 2018-06-21 stsp
996 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
997 404c43c4 2018-06-21 stsp done:
998 66bea077 2018-08-02 stsp free(in_repo_path);
999 66bea077 2018-08-02 stsp free(repo_path);
1000 66bea077 2018-08-02 stsp free(cwd);
1001 404c43c4 2018-06-21 stsp free(commit_id);
1002 ad242220 2018-09-08 stsp if (repo) {
1003 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1004 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1005 ad242220 2018-09-08 stsp if (error == NULL)
1006 ad242220 2018-09-08 stsp error = repo_error;
1007 ad242220 2018-09-08 stsp }
1008 404c43c4 2018-06-21 stsp return error;
1009 5de5890b 2018-10-18 stsp }
1010 5de5890b 2018-10-18 stsp
1011 5de5890b 2018-10-18 stsp __dead static void
1012 5de5890b 2018-10-18 stsp usage_tree(void)
1013 5de5890b 2018-10-18 stsp {
1014 5de5890b 2018-10-18 stsp fprintf(stderr, "usage: %s tree [-c commit] [-r repository-path] [-i] path\n",
1015 5de5890b 2018-10-18 stsp getprogname());
1016 5de5890b 2018-10-18 stsp exit(1);
1017 5de5890b 2018-10-18 stsp }
1018 5de5890b 2018-10-18 stsp
1019 5de5890b 2018-10-18 stsp
1020 5de5890b 2018-10-18 stsp static const struct got_error *
1021 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
1022 5de5890b 2018-10-18 stsp int show_ids, struct got_repository *repo)
1023 5de5890b 2018-10-18 stsp {
1024 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
1025 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
1026 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
1027 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
1028 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
1029 5de5890b 2018-10-18 stsp
1030 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
1031 5de5890b 2018-10-18 stsp if (err)
1032 5de5890b 2018-10-18 stsp goto done;
1033 5de5890b 2018-10-18 stsp
1034 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1035 5de5890b 2018-10-18 stsp if (err)
1036 5de5890b 2018-10-18 stsp goto done;
1037 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
1038 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
1039 5de5890b 2018-10-18 stsp while (te) {
1040 5de5890b 2018-10-18 stsp char *id = NULL;
1041 84453469 2018-11-11 stsp
1042 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1043 84453469 2018-11-11 stsp break;
1044 84453469 2018-11-11 stsp
1045 5de5890b 2018-10-18 stsp if (show_ids) {
1046 5de5890b 2018-10-18 stsp char *id_str;
1047 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
1048 5de5890b 2018-10-18 stsp if (err)
1049 5de5890b 2018-10-18 stsp goto done;
1050 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
1051 5de5890b 2018-10-18 stsp err = got_error_from_errno();
1052 5de5890b 2018-10-18 stsp free(id_str);
1053 5de5890b 2018-10-18 stsp goto done;
1054 5de5890b 2018-10-18 stsp }
1055 5de5890b 2018-10-18 stsp free(id_str);
1056 5de5890b 2018-10-18 stsp }
1057 5de5890b 2018-10-18 stsp printf("%s%s%s\n", id ? id : "",
1058 5de5890b 2018-10-18 stsp te->name, S_ISDIR(te->mode) ? "/" : "");
1059 5de5890b 2018-10-18 stsp te = SIMPLEQ_NEXT(te, entry);
1060 5de5890b 2018-10-18 stsp free(id);
1061 5de5890b 2018-10-18 stsp }
1062 5de5890b 2018-10-18 stsp done:
1063 5de5890b 2018-10-18 stsp if (tree)
1064 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
1065 5de5890b 2018-10-18 stsp free(tree_id);
1066 5de5890b 2018-10-18 stsp return err;
1067 404c43c4 2018-06-21 stsp }
1068 404c43c4 2018-06-21 stsp
1069 5de5890b 2018-10-18 stsp static const struct got_error *
1070 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
1071 5de5890b 2018-10-18 stsp {
1072 5de5890b 2018-10-18 stsp const struct got_error *error;
1073 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
1074 5de5890b 2018-10-18 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1075 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
1076 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
1077 5de5890b 2018-10-18 stsp int show_ids = 0;
1078 5de5890b 2018-10-18 stsp int ch;
1079 5de5890b 2018-10-18 stsp
1080 5de5890b 2018-10-18 stsp #ifndef PROFILE
1081 5de5890b 2018-10-18 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
1082 5de5890b 2018-10-18 stsp == -1)
1083 5de5890b 2018-10-18 stsp err(1, "pledge");
1084 5de5890b 2018-10-18 stsp #endif
1085 5de5890b 2018-10-18 stsp
1086 5de5890b 2018-10-18 stsp while ((ch = getopt(argc, argv, "c:r:i")) != -1) {
1087 5de5890b 2018-10-18 stsp switch (ch) {
1088 5de5890b 2018-10-18 stsp case 'c':
1089 5de5890b 2018-10-18 stsp commit_id_str = optarg;
1090 5de5890b 2018-10-18 stsp break;
1091 5de5890b 2018-10-18 stsp case 'r':
1092 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
1093 5de5890b 2018-10-18 stsp if (repo_path == NULL)
1094 5de5890b 2018-10-18 stsp err(1, "-r option");
1095 5de5890b 2018-10-18 stsp break;
1096 5de5890b 2018-10-18 stsp case 'i':
1097 5de5890b 2018-10-18 stsp show_ids = 1;
1098 5de5890b 2018-10-18 stsp break;
1099 5de5890b 2018-10-18 stsp default:
1100 5de5890b 2018-10-18 stsp usage();
1101 5de5890b 2018-10-18 stsp /* NOTREACHED */
1102 5de5890b 2018-10-18 stsp }
1103 5de5890b 2018-10-18 stsp }
1104 5de5890b 2018-10-18 stsp
1105 5de5890b 2018-10-18 stsp argc -= optind;
1106 5de5890b 2018-10-18 stsp argv += optind;
1107 5de5890b 2018-10-18 stsp
1108 5de5890b 2018-10-18 stsp if (argc == 1)
1109 5de5890b 2018-10-18 stsp path = argv[0];
1110 5de5890b 2018-10-18 stsp else if (argc > 1)
1111 5de5890b 2018-10-18 stsp usage_tree();
1112 5de5890b 2018-10-18 stsp else
1113 5de5890b 2018-10-18 stsp path = "/";
1114 5de5890b 2018-10-18 stsp
1115 5de5890b 2018-10-18 stsp cwd = getcwd(NULL, 0);
1116 5de5890b 2018-10-18 stsp if (cwd == NULL) {
1117 5de5890b 2018-10-18 stsp error = got_error_from_errno();
1118 5de5890b 2018-10-18 stsp goto done;
1119 5de5890b 2018-10-18 stsp }
1120 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
1121 5de5890b 2018-10-18 stsp repo_path = strdup(cwd);
1122 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
1123 5de5890b 2018-10-18 stsp error = got_error_from_errno();
1124 5de5890b 2018-10-18 stsp goto done;
1125 5de5890b 2018-10-18 stsp }
1126 5de5890b 2018-10-18 stsp }
1127 5de5890b 2018-10-18 stsp
1128 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
1129 5de5890b 2018-10-18 stsp if (error != NULL)
1130 5de5890b 2018-10-18 stsp goto done;
1131 5de5890b 2018-10-18 stsp
1132 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1133 5de5890b 2018-10-18 stsp if (error != NULL)
1134 5de5890b 2018-10-18 stsp goto done;
1135 5de5890b 2018-10-18 stsp
1136 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
1137 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
1138 5de5890b 2018-10-18 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
1139 5de5890b 2018-10-18 stsp if (error != NULL)
1140 5de5890b 2018-10-18 stsp goto done;
1141 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1142 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
1143 5de5890b 2018-10-18 stsp if (error != NULL)
1144 5de5890b 2018-10-18 stsp goto done;
1145 5de5890b 2018-10-18 stsp } else {
1146 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1147 15a94983 2018-12-23 stsp commit_id_str);
1148 5de5890b 2018-10-18 stsp if (error != NULL)
1149 5de5890b 2018-10-18 stsp goto done;
1150 5de5890b 2018-10-18 stsp }
1151 5de5890b 2018-10-18 stsp
1152 5de5890b 2018-10-18 stsp error = print_tree(in_repo_path, commit_id, show_ids, repo);
1153 5de5890b 2018-10-18 stsp done:
1154 5de5890b 2018-10-18 stsp free(in_repo_path);
1155 5de5890b 2018-10-18 stsp free(repo_path);
1156 5de5890b 2018-10-18 stsp free(cwd);
1157 5de5890b 2018-10-18 stsp free(commit_id);
1158 5de5890b 2018-10-18 stsp if (repo) {
1159 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
1160 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
1161 5de5890b 2018-10-18 stsp if (error == NULL)
1162 5de5890b 2018-10-18 stsp error = repo_error;
1163 5de5890b 2018-10-18 stsp }
1164 5de5890b 2018-10-18 stsp return error;
1165 5de5890b 2018-10-18 stsp }
1166 5de5890b 2018-10-18 stsp
1167 f42b1b34 2018-03-12 stsp #ifdef notyet
1168 4ed7e80c 2018-05-20 stsp static const struct got_error *
1169 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
1170 5c860e29 2018-03-12 stsp {
1171 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
1172 5c860e29 2018-03-12 stsp git_status_list *status;
1173 5c860e29 2018-03-12 stsp git_status_options statusopts;
1174 5c860e29 2018-03-12 stsp size_t i;
1175 5c860e29 2018-03-12 stsp
1176 5c860e29 2018-03-12 stsp git_libgit2_init();
1177 5c860e29 2018-03-12 stsp
1178 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
1179 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
1180 5c860e29 2018-03-12 stsp
1181 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
1182 5c860e29 2018-03-12 stsp errx(1, "bar repository");
1183 5c860e29 2018-03-12 stsp
1184 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
1185 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
1186 5c860e29 2018-03-12 stsp
1187 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
1188 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
1189 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
1190 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
1191 5c860e29 2018-03-12 stsp
1192 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
1193 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
1194 5c860e29 2018-03-12 stsp
1195 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
1196 5c860e29 2018-03-12 stsp const git_status_entry *se;
1197 5c860e29 2018-03-12 stsp
1198 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
1199 5c860e29 2018-03-12 stsp switch (se->status) {
1200 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
1201 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
1202 5c860e29 2018-03-12 stsp break;
1203 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
1204 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
1205 5c860e29 2018-03-12 stsp break;
1206 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
1207 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
1208 5c860e29 2018-03-12 stsp break;
1209 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
1210 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1211 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
1212 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
1213 5c860e29 2018-03-12 stsp break;
1214 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
1215 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
1216 5c860e29 2018-03-12 stsp break;
1217 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
1218 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
1219 5c860e29 2018-03-12 stsp break;
1220 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
1221 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
1222 5c860e29 2018-03-12 stsp break;
1223 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
1224 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
1225 5c860e29 2018-03-12 stsp break;
1226 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
1227 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1228 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
1229 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
1230 5c860e29 2018-03-12 stsp break;
1231 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
1232 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
1233 5c860e29 2018-03-12 stsp break;
1234 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
1235 5c860e29 2018-03-12 stsp default:
1236 5c860e29 2018-03-12 stsp break;
1237 5c860e29 2018-03-12 stsp }
1238 5c860e29 2018-03-12 stsp }
1239 5c860e29 2018-03-12 stsp
1240 5c860e29 2018-03-12 stsp git_status_list_free(status);
1241 5c860e29 2018-03-12 stsp git_repository_free(repo);
1242 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
1243 5c860e29 2018-03-12 stsp
1244 5c860e29 2018-03-12 stsp return 0;
1245 5c860e29 2018-03-12 stsp }
1246 f42b1b34 2018-03-12 stsp #endif