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 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
73 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
74 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
75 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
76 5c860e29 2018-03-12 stsp
77 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
78 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
79 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
80 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
81 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
82 4ed7e80c 2018-05-20 stsp #ifdef notyet
83 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
84 4ed7e80c 2018-05-20 stsp #endif
85 5c860e29 2018-03-12 stsp
86 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
87 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
88 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
89 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
90 1b6b95a8 2018-03-12 stsp "show repository history" },
91 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
92 b00d56cd 2018-04-01 stsp "compare files and directories" },
93 404c43c4 2018-06-21 stsp { "blame", cmd_blame, usage_blame,
94 404c43c4 2018-06-21 stsp " show when lines in a file were changed" },
95 5de5890b 2018-10-18 stsp { "tree", cmd_tree, usage_tree,
96 5de5890b 2018-10-18 stsp " list files and directories in repository" },
97 f42b1b34 2018-03-12 stsp #ifdef notyet
98 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
99 1b6b95a8 2018-03-12 stsp "show modification status of files" },
100 f42b1b34 2018-03-12 stsp #endif
101 5c860e29 2018-03-12 stsp };
102 5c860e29 2018-03-12 stsp
103 5c860e29 2018-03-12 stsp int
104 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
105 5c860e29 2018-03-12 stsp {
106 5c860e29 2018-03-12 stsp struct cmd *cmd;
107 5c860e29 2018-03-12 stsp unsigned int i;
108 5c860e29 2018-03-12 stsp int ch;
109 1b6b95a8 2018-03-12 stsp int hflag = 0;
110 5c860e29 2018-03-12 stsp
111 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
112 5c860e29 2018-03-12 stsp
113 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
114 5c860e29 2018-03-12 stsp switch (ch) {
115 1b6b95a8 2018-03-12 stsp case 'h':
116 1b6b95a8 2018-03-12 stsp hflag = 1;
117 1b6b95a8 2018-03-12 stsp break;
118 5c860e29 2018-03-12 stsp default:
119 5c860e29 2018-03-12 stsp usage();
120 5c860e29 2018-03-12 stsp /* NOTREACHED */
121 5c860e29 2018-03-12 stsp }
122 5c860e29 2018-03-12 stsp }
123 5c860e29 2018-03-12 stsp
124 5c860e29 2018-03-12 stsp argc -= optind;
125 5c860e29 2018-03-12 stsp argv += optind;
126 1e70621d 2018-03-27 stsp optind = 0;
127 5c860e29 2018-03-12 stsp
128 5c860e29 2018-03-12 stsp if (argc <= 0)
129 5c860e29 2018-03-12 stsp usage();
130 5c860e29 2018-03-12 stsp
131 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
132 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
133 99437157 2018-11-11 stsp
134 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
135 d7d4f210 2018-03-12 stsp const struct got_error *error;
136 d7d4f210 2018-03-12 stsp
137 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
138 5c860e29 2018-03-12 stsp
139 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
140 5c860e29 2018-03-12 stsp continue;
141 5c860e29 2018-03-12 stsp
142 1b6b95a8 2018-03-12 stsp if (hflag)
143 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
144 1b6b95a8 2018-03-12 stsp
145 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
146 80d5f134 2018-11-11 stsp if (error && !(sigint_received || sigpipe_received)) {
147 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
148 d7d4f210 2018-03-12 stsp return 1;
149 d7d4f210 2018-03-12 stsp }
150 d7d4f210 2018-03-12 stsp
151 d7d4f210 2018-03-12 stsp return 0;
152 5c860e29 2018-03-12 stsp }
153 5c860e29 2018-03-12 stsp
154 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
155 5c860e29 2018-03-12 stsp return 1;
156 5c860e29 2018-03-12 stsp }
157 5c860e29 2018-03-12 stsp
158 4ed7e80c 2018-05-20 stsp __dead static void
159 5c860e29 2018-03-12 stsp usage(void)
160 5c860e29 2018-03-12 stsp {
161 46a0db7d 2018-03-12 stsp int i;
162 46a0db7d 2018-03-12 stsp
163 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
164 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
165 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
166 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
167 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
168 46a0db7d 2018-03-12 stsp }
169 5c860e29 2018-03-12 stsp exit(1);
170 5c860e29 2018-03-12 stsp }
171 5c860e29 2018-03-12 stsp
172 4ed7e80c 2018-05-20 stsp __dead static void
173 c09a553d 2018-03-12 stsp usage_checkout(void)
174 c09a553d 2018-03-12 stsp {
175 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
176 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
177 c09a553d 2018-03-12 stsp exit(1);
178 92a684f4 2018-03-12 stsp }
179 92a684f4 2018-03-12 stsp
180 92a684f4 2018-03-12 stsp static void
181 92a684f4 2018-03-12 stsp checkout_progress(void *arg, const char *path)
182 92a684f4 2018-03-12 stsp {
183 92a684f4 2018-03-12 stsp char *worktree_path = arg;
184 92a684f4 2018-03-12 stsp
185 92a684f4 2018-03-12 stsp while (path[0] == '/')
186 92a684f4 2018-03-12 stsp path++;
187 92a684f4 2018-03-12 stsp
188 92a684f4 2018-03-12 stsp printf("A %s/%s\n", worktree_path, path);
189 99437157 2018-11-11 stsp }
190 99437157 2018-11-11 stsp
191 99437157 2018-11-11 stsp static const struct got_error *
192 99437157 2018-11-11 stsp checkout_cancel(void *arg)
193 99437157 2018-11-11 stsp {
194 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
195 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
196 99437157 2018-11-11 stsp return NULL;
197 c09a553d 2018-03-12 stsp }
198 c09a553d 2018-03-12 stsp
199 4ed7e80c 2018-05-20 stsp static const struct got_error *
200 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
201 c09a553d 2018-03-12 stsp {
202 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
203 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
204 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
205 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
206 c09a553d 2018-03-12 stsp char *repo_path = NULL;
207 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
208 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
209 0bb8a95e 2018-03-12 stsp int ch;
210 c09a553d 2018-03-12 stsp
211 0bb8a95e 2018-03-12 stsp while ((ch = getopt(argc, argv, "p:")) != -1) {
212 0bb8a95e 2018-03-12 stsp switch (ch) {
213 0bb8a95e 2018-03-12 stsp case 'p':
214 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
215 0bb8a95e 2018-03-12 stsp break;
216 0bb8a95e 2018-03-12 stsp default:
217 0bb8a95e 2018-03-12 stsp usage();
218 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
219 0bb8a95e 2018-03-12 stsp }
220 0bb8a95e 2018-03-12 stsp }
221 0bb8a95e 2018-03-12 stsp
222 0bb8a95e 2018-03-12 stsp argc -= optind;
223 0bb8a95e 2018-03-12 stsp argv += optind;
224 0bb8a95e 2018-03-12 stsp
225 6715a751 2018-03-16 stsp #ifndef PROFILE
226 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
227 ad242220 2018-09-08 stsp == -1)
228 c09a553d 2018-03-12 stsp err(1, "pledge");
229 6715a751 2018-03-16 stsp #endif
230 0bb8a95e 2018-03-12 stsp if (argc == 1) {
231 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
232 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
233 76089277 2018-04-01 stsp if (repo_path == NULL)
234 76089277 2018-04-01 stsp return got_error_from_errno();
235 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
236 76089277 2018-04-01 stsp if (cwd == NULL) {
237 76089277 2018-04-01 stsp error = got_error_from_errno();
238 76089277 2018-04-01 stsp goto done;
239 76089277 2018-04-01 stsp }
240 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
241 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
242 5d7c1dab 2018-04-01 stsp else
243 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
244 76089277 2018-04-01 stsp if (base == NULL) {
245 76089277 2018-04-01 stsp error = got_error_from_errno();
246 76089277 2018-04-01 stsp goto done;
247 76089277 2018-04-01 stsp }
248 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
249 c09a553d 2018-03-12 stsp if (dotgit)
250 c09a553d 2018-03-12 stsp *dotgit = '\0';
251 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
252 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
253 c09a553d 2018-03-12 stsp free(cwd);
254 76089277 2018-04-01 stsp goto done;
255 c09a553d 2018-03-12 stsp }
256 c09a553d 2018-03-12 stsp free(cwd);
257 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
258 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
259 76089277 2018-04-01 stsp if (repo_path == NULL) {
260 76089277 2018-04-01 stsp error = got_error_from_errno();
261 76089277 2018-04-01 stsp goto done;
262 76089277 2018-04-01 stsp }
263 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
264 76089277 2018-04-01 stsp if (worktree_path == NULL) {
265 76089277 2018-04-01 stsp error = got_error_from_errno();
266 76089277 2018-04-01 stsp goto done;
267 76089277 2018-04-01 stsp }
268 c09a553d 2018-03-12 stsp } else
269 c09a553d 2018-03-12 stsp usage_checkout();
270 c09a553d 2018-03-12 stsp
271 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
272 c09a553d 2018-03-12 stsp if (error != NULL)
273 c09a553d 2018-03-12 stsp goto done;
274 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
275 c09a553d 2018-03-12 stsp if (error != NULL)
276 c09a553d 2018-03-12 stsp goto done;
277 c09a553d 2018-03-12 stsp
278 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
279 c09a553d 2018-03-12 stsp if (error != NULL)
280 c09a553d 2018-03-12 stsp goto done;
281 c09a553d 2018-03-12 stsp
282 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
283 c09a553d 2018-03-12 stsp if (error != NULL)
284 c09a553d 2018-03-12 stsp goto done;
285 c09a553d 2018-03-12 stsp
286 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
287 99437157 2018-11-11 stsp checkout_progress, worktree_path, checkout_cancel, NULL);
288 c09a553d 2018-03-12 stsp if (error != NULL)
289 c09a553d 2018-03-12 stsp goto done;
290 c09a553d 2018-03-12 stsp
291 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
292 c09a553d 2018-03-12 stsp
293 c09a553d 2018-03-12 stsp done:
294 76089277 2018-04-01 stsp free(repo_path);
295 c09a553d 2018-03-12 stsp free(worktree_path);
296 c09a553d 2018-03-12 stsp return error;
297 c09a553d 2018-03-12 stsp }
298 c09a553d 2018-03-12 stsp
299 f42b1b34 2018-03-12 stsp static const struct got_error *
300 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
301 c0cc5c62 2018-10-18 stsp int diff_context, struct got_repository *repo)
302 5c860e29 2018-03-12 stsp {
303 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
304 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
305 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
306 0f2b3dca 2018-12-22 stsp char *id_str1 = NULL, *id_str2;
307 79109fed 2018-03-27 stsp
308 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo,
309 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
310 79109fed 2018-03-27 stsp if (err)
311 79109fed 2018-03-27 stsp return err;
312 79109fed 2018-03-27 stsp
313 45d799e2 2018-12-23 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
314 79f35eb3 2018-06-11 stsp if (qid != NULL) {
315 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
316 79109fed 2018-03-27 stsp
317 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
318 79109fed 2018-03-27 stsp if (err)
319 79109fed 2018-03-27 stsp return err;
320 79109fed 2018-03-27 stsp
321 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo,
322 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(pcommit));
323 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
324 0f2b3dca 2018-12-22 stsp if (err)
325 0f2b3dca 2018-12-22 stsp return err;
326 0f2b3dca 2018-12-22 stsp
327 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str1, qid->id);
328 79109fed 2018-03-27 stsp if (err)
329 79109fed 2018-03-27 stsp return err;
330 79109fed 2018-03-27 stsp }
331 79109fed 2018-03-27 stsp
332 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str2, id);
333 0f2b3dca 2018-12-22 stsp if (err)
334 0f2b3dca 2018-12-22 stsp goto done;
335 0f2b3dca 2018-12-22 stsp
336 56765ebb 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
337 54156555 2018-12-24 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
338 0f2b3dca 2018-12-22 stsp done:
339 79109fed 2018-03-27 stsp if (tree1)
340 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
341 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
342 0f2b3dca 2018-12-22 stsp free(id_str1);
343 0f2b3dca 2018-12-22 stsp free(id_str2);
344 79109fed 2018-03-27 stsp return err;
345 79109fed 2018-03-27 stsp }
346 79109fed 2018-03-27 stsp
347 4bb494d5 2018-06-16 stsp static char *
348 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
349 6c281f94 2018-06-11 stsp {
350 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
351 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
352 6c281f94 2018-06-11 stsp if (p)
353 6c281f94 2018-06-11 stsp *p = '\0';
354 6c281f94 2018-06-11 stsp return s;
355 6c281f94 2018-06-11 stsp }
356 6c281f94 2018-06-11 stsp
357 79109fed 2018-03-27 stsp static const struct got_error *
358 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
359 c0cc5c62 2018-10-18 stsp struct got_repository *repo, int show_patch, int diff_context)
360 79109fed 2018-03-27 stsp {
361 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
362 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
363 6c281f94 2018-06-11 stsp char datebuf[26];
364 45d799e2 2018-12-23 stsp time_t committer_time;
365 45d799e2 2018-12-23 stsp const char *author, *committer;
366 5c860e29 2018-03-12 stsp
367 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
368 8bf5b3c9 2018-03-17 stsp if (err)
369 8bf5b3c9 2018-03-17 stsp return err;
370 788c352e 2018-06-16 stsp
371 33d869be 2018-12-22 stsp printf("-----------------------------------------------\n");
372 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
373 832c249c 2018-06-10 stsp free(id_str);
374 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
375 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
376 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
377 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
378 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
379 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
380 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
381 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
382 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
383 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
384 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
385 3fe1abad 2018-06-10 stsp int n = 1;
386 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
387 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
388 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
389 a0603db2 2018-06-10 stsp if (err)
390 a0603db2 2018-06-10 stsp return err;
391 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
392 a0603db2 2018-06-10 stsp free(id_str);
393 a0603db2 2018-06-10 stsp }
394 a0603db2 2018-06-10 stsp }
395 832c249c 2018-06-10 stsp
396 45d799e2 2018-12-23 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
397 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
398 832c249c 2018-06-10 stsp return got_error_from_errno();
399 8bf5b3c9 2018-03-17 stsp
400 621015ac 2018-07-23 stsp logmsg = logmsg0;
401 832c249c 2018-06-10 stsp do {
402 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
403 832c249c 2018-06-10 stsp if (line)
404 832c249c 2018-06-10 stsp printf(" %s\n", line);
405 832c249c 2018-06-10 stsp } while (line);
406 621015ac 2018-07-23 stsp free(logmsg0);
407 832c249c 2018-06-10 stsp
408 971751ac 2018-03-27 stsp if (show_patch) {
409 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
410 971751ac 2018-03-27 stsp if (err == 0)
411 971751ac 2018-03-27 stsp printf("\n");
412 971751ac 2018-03-27 stsp }
413 07862c20 2018-09-15 stsp
414 d82de447 2018-09-15 stsp fflush(stdout);
415 07862c20 2018-09-15 stsp return err;
416 f42b1b34 2018-03-12 stsp }
417 5c860e29 2018-03-12 stsp
418 f42b1b34 2018-03-12 stsp static const struct got_error *
419 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
420 15a94983 2018-12-23 stsp char *path, int show_patch, int diff_context, int limit,
421 15a94983 2018-12-23 stsp int first_parent_traversal)
422 f42b1b34 2018-03-12 stsp {
423 f42b1b34 2018-03-12 stsp const struct got_error *err;
424 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
425 372ccdbb 2018-06-10 stsp
426 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
427 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
428 f42b1b34 2018-03-12 stsp if (err)
429 f42b1b34 2018-03-12 stsp return err;
430 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
431 372ccdbb 2018-06-10 stsp if (err)
432 fcc85cad 2018-07-22 stsp goto done;
433 31cedeaf 2018-09-15 stsp while (1) {
434 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
435 372ccdbb 2018-06-10 stsp struct got_object_id *id;
436 8bf5b3c9 2018-03-17 stsp
437 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
438 84453469 2018-11-11 stsp break;
439 84453469 2018-11-11 stsp
440 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
441 372ccdbb 2018-06-10 stsp if (err) {
442 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
443 9ba79e04 2018-06-11 stsp err = NULL;
444 9ba79e04 2018-06-11 stsp break;
445 9ba79e04 2018-06-11 stsp }
446 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
447 372ccdbb 2018-06-10 stsp break;
448 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
449 372ccdbb 2018-06-10 stsp if (err)
450 372ccdbb 2018-06-10 stsp break;
451 372ccdbb 2018-06-10 stsp else
452 372ccdbb 2018-06-10 stsp continue;
453 7e665116 2018-04-02 stsp }
454 b43fbaa0 2018-06-11 stsp if (id == NULL)
455 7e665116 2018-04-02 stsp break;
456 b43fbaa0 2018-06-11 stsp
457 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
458 b43fbaa0 2018-06-11 stsp if (err)
459 fcc85cad 2018-07-22 stsp break;
460 c0cc5c62 2018-10-18 stsp err = print_commit(commit, id, repo, show_patch, diff_context);
461 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
462 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
463 7e665116 2018-04-02 stsp break;
464 31cedeaf 2018-09-15 stsp }
465 fcc85cad 2018-07-22 stsp done:
466 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
467 f42b1b34 2018-03-12 stsp return err;
468 f42b1b34 2018-03-12 stsp }
469 5c860e29 2018-03-12 stsp
470 4ed7e80c 2018-05-20 stsp __dead static void
471 6f3d1eb0 2018-03-12 stsp usage_log(void)
472 6f3d1eb0 2018-03-12 stsp {
473 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
474 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
475 6f3d1eb0 2018-03-12 stsp exit(1);
476 6f3d1eb0 2018-03-12 stsp }
477 6f3d1eb0 2018-03-12 stsp
478 4ed7e80c 2018-05-20 stsp static const struct got_error *
479 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
480 f42b1b34 2018-03-12 stsp {
481 f42b1b34 2018-03-12 stsp const struct got_error *error;
482 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
483 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
484 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
485 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
486 d142fc45 2018-04-01 stsp char *start_commit = NULL;
487 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
488 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
489 64a96a6d 2018-04-01 stsp const char *errstr;
490 5c860e29 2018-03-12 stsp
491 6715a751 2018-03-16 stsp #ifndef PROFILE
492 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
493 ad242220 2018-09-08 stsp == -1)
494 f42b1b34 2018-03-12 stsp err(1, "pledge");
495 6715a751 2018-03-16 stsp #endif
496 79109fed 2018-03-27 stsp
497 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
498 79109fed 2018-03-27 stsp switch (ch) {
499 79109fed 2018-03-27 stsp case 'p':
500 79109fed 2018-03-27 stsp show_patch = 1;
501 d142fc45 2018-04-01 stsp break;
502 d142fc45 2018-04-01 stsp case 'c':
503 d142fc45 2018-04-01 stsp start_commit = optarg;
504 64a96a6d 2018-04-01 stsp break;
505 c0cc5c62 2018-10-18 stsp case 'C':
506 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
507 4a8520aa 2018-10-18 stsp &errstr);
508 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
509 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
510 c0cc5c62 2018-10-18 stsp break;
511 64a96a6d 2018-04-01 stsp case 'l':
512 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
513 64a96a6d 2018-04-01 stsp if (errstr != NULL)
514 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
515 79109fed 2018-03-27 stsp break;
516 0ed6ed4c 2018-06-13 stsp case 'f':
517 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
518 a0603db2 2018-06-10 stsp break;
519 04ca23f4 2018-07-16 stsp case 'r':
520 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
521 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
522 04ca23f4 2018-07-16 stsp err(1, "-r option");
523 04ca23f4 2018-07-16 stsp break;
524 79109fed 2018-03-27 stsp default:
525 79109fed 2018-03-27 stsp usage();
526 79109fed 2018-03-27 stsp /* NOTREACHED */
527 79109fed 2018-03-27 stsp }
528 79109fed 2018-03-27 stsp }
529 79109fed 2018-03-27 stsp
530 79109fed 2018-03-27 stsp argc -= optind;
531 79109fed 2018-03-27 stsp argv += optind;
532 79109fed 2018-03-27 stsp
533 04ca23f4 2018-07-16 stsp if (argc == 0)
534 04ca23f4 2018-07-16 stsp path = strdup("");
535 04ca23f4 2018-07-16 stsp else if (argc == 1)
536 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
537 04ca23f4 2018-07-16 stsp else
538 6f3d1eb0 2018-03-12 stsp usage_log();
539 04ca23f4 2018-07-16 stsp if (path == NULL)
540 04ca23f4 2018-07-16 stsp return got_error_from_errno();
541 f42b1b34 2018-03-12 stsp
542 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
543 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
544 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
545 04ca23f4 2018-07-16 stsp goto done;
546 04ca23f4 2018-07-16 stsp }
547 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
548 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
549 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
550 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
551 04ca23f4 2018-07-16 stsp goto done;
552 04ca23f4 2018-07-16 stsp }
553 04ca23f4 2018-07-16 stsp }
554 04ca23f4 2018-07-16 stsp
555 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
556 d7d4f210 2018-03-12 stsp if (error != NULL)
557 04ca23f4 2018-07-16 stsp goto done;
558 f42b1b34 2018-03-12 stsp
559 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
560 3235492e 2018-04-01 stsp struct got_reference *head_ref;
561 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
562 3235492e 2018-04-01 stsp if (error != NULL)
563 3235492e 2018-04-01 stsp return error;
564 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
565 3235492e 2018-04-01 stsp got_ref_close(head_ref);
566 3235492e 2018-04-01 stsp if (error != NULL)
567 3235492e 2018-04-01 stsp return error;
568 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
569 3235492e 2018-04-01 stsp } else {
570 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
571 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
572 3235492e 2018-04-01 stsp if (error == NULL) {
573 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
574 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
575 d1f2edc9 2018-06-13 stsp if (error != NULL)
576 d1f2edc9 2018-06-13 stsp return error;
577 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
578 d1f2edc9 2018-06-13 stsp if (error != NULL)
579 d1f2edc9 2018-06-13 stsp return error;
580 d1f2edc9 2018-06-13 stsp }
581 15a94983 2018-12-23 stsp if (commit == NULL) {
582 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id, repo,
583 d1f2edc9 2018-06-13 stsp start_commit);
584 d1f2edc9 2018-06-13 stsp if (error != NULL)
585 d1f2edc9 2018-06-13 stsp return error;
586 3235492e 2018-04-01 stsp }
587 3235492e 2018-04-01 stsp }
588 d7d4f210 2018-03-12 stsp if (error != NULL)
589 04ca23f4 2018-07-16 stsp goto done;
590 04ca23f4 2018-07-16 stsp
591 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
592 04ca23f4 2018-07-16 stsp if (error != NULL)
593 04ca23f4 2018-07-16 stsp goto done;
594 04ca23f4 2018-07-16 stsp if (in_repo_path) {
595 04ca23f4 2018-07-16 stsp free(path);
596 04ca23f4 2018-07-16 stsp path = in_repo_path;
597 04ca23f4 2018-07-16 stsp }
598 04ca23f4 2018-07-16 stsp
599 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
600 c0cc5c62 2018-10-18 stsp diff_context, limit, first_parent_traversal);
601 04ca23f4 2018-07-16 stsp done:
602 04ca23f4 2018-07-16 stsp free(path);
603 04ca23f4 2018-07-16 stsp free(repo_path);
604 04ca23f4 2018-07-16 stsp free(cwd);
605 f42b1b34 2018-03-12 stsp free(id);
606 ad242220 2018-09-08 stsp if (repo) {
607 ad242220 2018-09-08 stsp const struct got_error *repo_error;
608 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
609 ad242220 2018-09-08 stsp if (error == NULL)
610 ad242220 2018-09-08 stsp error = repo_error;
611 ad242220 2018-09-08 stsp }
612 8bf5b3c9 2018-03-17 stsp return error;
613 5c860e29 2018-03-12 stsp }
614 5c860e29 2018-03-12 stsp
615 4ed7e80c 2018-05-20 stsp __dead static void
616 3f8b7d6a 2018-04-01 stsp usage_diff(void)
617 3f8b7d6a 2018-04-01 stsp {
618 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s diff [-C number] [repository-path] "
619 c0cc5c62 2018-10-18 stsp "object1 object2\n", getprogname());
620 3f8b7d6a 2018-04-01 stsp exit(1);
621 b00d56cd 2018-04-01 stsp }
622 b00d56cd 2018-04-01 stsp
623 4ed7e80c 2018-05-20 stsp static const struct got_error *
624 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
625 b00d56cd 2018-04-01 stsp {
626 b00d56cd 2018-04-01 stsp const struct got_error *error;
627 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
628 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
629 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
630 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
631 15a94983 2018-12-23 stsp int type1, type2;
632 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
633 c0cc5c62 2018-10-18 stsp const char *errstr;
634 b00d56cd 2018-04-01 stsp
635 b00d56cd 2018-04-01 stsp #ifndef PROFILE
636 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
637 ad242220 2018-09-08 stsp == -1)
638 b00d56cd 2018-04-01 stsp err(1, "pledge");
639 b00d56cd 2018-04-01 stsp #endif
640 b00d56cd 2018-04-01 stsp
641 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "C:")) != -1) {
642 b00d56cd 2018-04-01 stsp switch (ch) {
643 c0cc5c62 2018-10-18 stsp case 'C':
644 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
645 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
646 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
647 c0cc5c62 2018-10-18 stsp break;
648 b00d56cd 2018-04-01 stsp default:
649 b00d56cd 2018-04-01 stsp usage();
650 b00d56cd 2018-04-01 stsp /* NOTREACHED */
651 b00d56cd 2018-04-01 stsp }
652 b00d56cd 2018-04-01 stsp }
653 b00d56cd 2018-04-01 stsp
654 b00d56cd 2018-04-01 stsp argc -= optind;
655 b00d56cd 2018-04-01 stsp argv += optind;
656 b00d56cd 2018-04-01 stsp
657 b00d56cd 2018-04-01 stsp if (argc == 0) {
658 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
659 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
660 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
661 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
662 e1e3f570 2018-04-01 stsp return got_error_from_errno();
663 15a94983 2018-12-23 stsp id_str1 = argv[0];
664 15a94983 2018-12-23 stsp id_str2 = argv[1];
665 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
666 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
667 76089277 2018-04-01 stsp if (repo_path == NULL)
668 76089277 2018-04-01 stsp return got_error_from_errno();
669 15a94983 2018-12-23 stsp id_str1 = argv[1];
670 15a94983 2018-12-23 stsp id_str2 = argv[2];
671 b00d56cd 2018-04-01 stsp } else
672 b00d56cd 2018-04-01 stsp usage_diff();
673 b00d56cd 2018-04-01 stsp
674 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
675 76089277 2018-04-01 stsp free(repo_path);
676 b00d56cd 2018-04-01 stsp if (error != NULL)
677 b00d56cd 2018-04-01 stsp goto done;
678 b00d56cd 2018-04-01 stsp
679 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id1, repo, id_str1);
680 6402fb3c 2018-09-15 stsp if (error)
681 b00d56cd 2018-04-01 stsp goto done;
682 b00d56cd 2018-04-01 stsp
683 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id2, repo, id_str2);
684 6402fb3c 2018-09-15 stsp if (error)
685 b00d56cd 2018-04-01 stsp goto done;
686 b00d56cd 2018-04-01 stsp
687 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
688 15a94983 2018-12-23 stsp if (error)
689 15a94983 2018-12-23 stsp goto done;
690 15a94983 2018-12-23 stsp
691 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
692 15a94983 2018-12-23 stsp if (error)
693 15a94983 2018-12-23 stsp goto done;
694 15a94983 2018-12-23 stsp
695 15a94983 2018-12-23 stsp if (type1 != type2) {
696 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
697 b00d56cd 2018-04-01 stsp goto done;
698 b00d56cd 2018-04-01 stsp }
699 b00d56cd 2018-04-01 stsp
700 15a94983 2018-12-23 stsp switch (type1) {
701 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
702 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
703 54156555 2018-12-24 stsp diff_context, repo, stdout);
704 b00d56cd 2018-04-01 stsp break;
705 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
706 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
707 54156555 2018-12-24 stsp diff_context, repo, stdout);
708 b00d56cd 2018-04-01 stsp break;
709 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
710 15a94983 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null",
711 15a94983 2018-12-23 stsp id_str2);
712 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
713 c0cc5c62 2018-10-18 stsp repo, stdout);
714 b00d56cd 2018-04-01 stsp break;
715 b00d56cd 2018-04-01 stsp default:
716 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
717 b00d56cd 2018-04-01 stsp }
718 b00d56cd 2018-04-01 stsp
719 b00d56cd 2018-04-01 stsp done:
720 15a94983 2018-12-23 stsp free(id1);
721 15a94983 2018-12-23 stsp free(id2);
722 ad242220 2018-09-08 stsp if (repo) {
723 ad242220 2018-09-08 stsp const struct got_error *repo_error;
724 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
725 ad242220 2018-09-08 stsp if (error == NULL)
726 ad242220 2018-09-08 stsp error = repo_error;
727 ad242220 2018-09-08 stsp }
728 b00d56cd 2018-04-01 stsp return error;
729 404c43c4 2018-06-21 stsp }
730 404c43c4 2018-06-21 stsp
731 404c43c4 2018-06-21 stsp __dead static void
732 404c43c4 2018-06-21 stsp usage_blame(void)
733 404c43c4 2018-06-21 stsp {
734 66bea077 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
735 404c43c4 2018-06-21 stsp getprogname());
736 404c43c4 2018-06-21 stsp exit(1);
737 b00d56cd 2018-04-01 stsp }
738 b00d56cd 2018-04-01 stsp
739 404c43c4 2018-06-21 stsp static const struct got_error *
740 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
741 404c43c4 2018-06-21 stsp {
742 404c43c4 2018-06-21 stsp const struct got_error *error;
743 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
744 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
745 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
746 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
747 404c43c4 2018-06-21 stsp int ch;
748 404c43c4 2018-06-21 stsp
749 404c43c4 2018-06-21 stsp #ifndef PROFILE
750 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
751 ad242220 2018-09-08 stsp == -1)
752 404c43c4 2018-06-21 stsp err(1, "pledge");
753 404c43c4 2018-06-21 stsp #endif
754 404c43c4 2018-06-21 stsp
755 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
756 404c43c4 2018-06-21 stsp switch (ch) {
757 404c43c4 2018-06-21 stsp case 'c':
758 404c43c4 2018-06-21 stsp commit_id_str = optarg;
759 404c43c4 2018-06-21 stsp break;
760 66bea077 2018-08-02 stsp case 'r':
761 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
762 66bea077 2018-08-02 stsp if (repo_path == NULL)
763 66bea077 2018-08-02 stsp err(1, "-r option");
764 66bea077 2018-08-02 stsp break;
765 404c43c4 2018-06-21 stsp default:
766 404c43c4 2018-06-21 stsp usage();
767 404c43c4 2018-06-21 stsp /* NOTREACHED */
768 404c43c4 2018-06-21 stsp }
769 404c43c4 2018-06-21 stsp }
770 404c43c4 2018-06-21 stsp
771 404c43c4 2018-06-21 stsp argc -= optind;
772 404c43c4 2018-06-21 stsp argv += optind;
773 404c43c4 2018-06-21 stsp
774 a39318fd 2018-08-02 stsp if (argc == 1)
775 404c43c4 2018-06-21 stsp path = argv[0];
776 a39318fd 2018-08-02 stsp else
777 404c43c4 2018-06-21 stsp usage_blame();
778 404c43c4 2018-06-21 stsp
779 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
780 66bea077 2018-08-02 stsp if (cwd == NULL) {
781 66bea077 2018-08-02 stsp error = got_error_from_errno();
782 66bea077 2018-08-02 stsp goto done;
783 66bea077 2018-08-02 stsp }
784 66bea077 2018-08-02 stsp if (repo_path == NULL) {
785 66bea077 2018-08-02 stsp repo_path = strdup(cwd);
786 66bea077 2018-08-02 stsp if (repo_path == NULL) {
787 66bea077 2018-08-02 stsp error = got_error_from_errno();
788 66bea077 2018-08-02 stsp goto done;
789 66bea077 2018-08-02 stsp }
790 66bea077 2018-08-02 stsp }
791 66bea077 2018-08-02 stsp
792 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
793 404c43c4 2018-06-21 stsp if (error != NULL)
794 404c43c4 2018-06-21 stsp goto done;
795 404c43c4 2018-06-21 stsp
796 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
797 66bea077 2018-08-02 stsp if (error != NULL)
798 66bea077 2018-08-02 stsp goto done;
799 66bea077 2018-08-02 stsp
800 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
801 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
802 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
803 404c43c4 2018-06-21 stsp if (error != NULL)
804 66bea077 2018-08-02 stsp goto done;
805 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
806 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
807 404c43c4 2018-06-21 stsp if (error != NULL)
808 66bea077 2018-08-02 stsp goto done;
809 404c43c4 2018-06-21 stsp } else {
810 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
811 15a94983 2018-12-23 stsp commit_id_str);
812 404c43c4 2018-06-21 stsp if (error != NULL)
813 66bea077 2018-08-02 stsp goto done;
814 404c43c4 2018-06-21 stsp }
815 404c43c4 2018-06-21 stsp
816 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
817 404c43c4 2018-06-21 stsp done:
818 66bea077 2018-08-02 stsp free(in_repo_path);
819 66bea077 2018-08-02 stsp free(repo_path);
820 66bea077 2018-08-02 stsp free(cwd);
821 404c43c4 2018-06-21 stsp free(commit_id);
822 ad242220 2018-09-08 stsp if (repo) {
823 ad242220 2018-09-08 stsp const struct got_error *repo_error;
824 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
825 ad242220 2018-09-08 stsp if (error == NULL)
826 ad242220 2018-09-08 stsp error = repo_error;
827 ad242220 2018-09-08 stsp }
828 404c43c4 2018-06-21 stsp return error;
829 5de5890b 2018-10-18 stsp }
830 5de5890b 2018-10-18 stsp
831 5de5890b 2018-10-18 stsp __dead static void
832 5de5890b 2018-10-18 stsp usage_tree(void)
833 5de5890b 2018-10-18 stsp {
834 5de5890b 2018-10-18 stsp fprintf(stderr, "usage: %s tree [-c commit] [-r repository-path] [-i] path\n",
835 5de5890b 2018-10-18 stsp getprogname());
836 5de5890b 2018-10-18 stsp exit(1);
837 5de5890b 2018-10-18 stsp }
838 5de5890b 2018-10-18 stsp
839 5de5890b 2018-10-18 stsp
840 5de5890b 2018-10-18 stsp static const struct got_error *
841 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
842 5de5890b 2018-10-18 stsp int show_ids, struct got_repository *repo)
843 5de5890b 2018-10-18 stsp {
844 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
845 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
846 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
847 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
848 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
849 5de5890b 2018-10-18 stsp
850 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
851 5de5890b 2018-10-18 stsp if (err)
852 5de5890b 2018-10-18 stsp goto done;
853 5de5890b 2018-10-18 stsp
854 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
855 5de5890b 2018-10-18 stsp if (err)
856 5de5890b 2018-10-18 stsp goto done;
857 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
858 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
859 5de5890b 2018-10-18 stsp while (te) {
860 5de5890b 2018-10-18 stsp char *id = NULL;
861 84453469 2018-11-11 stsp
862 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
863 84453469 2018-11-11 stsp break;
864 84453469 2018-11-11 stsp
865 5de5890b 2018-10-18 stsp if (show_ids) {
866 5de5890b 2018-10-18 stsp char *id_str;
867 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
868 5de5890b 2018-10-18 stsp if (err)
869 5de5890b 2018-10-18 stsp goto done;
870 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
871 5de5890b 2018-10-18 stsp err = got_error_from_errno();
872 5de5890b 2018-10-18 stsp free(id_str);
873 5de5890b 2018-10-18 stsp goto done;
874 5de5890b 2018-10-18 stsp }
875 5de5890b 2018-10-18 stsp free(id_str);
876 5de5890b 2018-10-18 stsp }
877 5de5890b 2018-10-18 stsp printf("%s%s%s\n", id ? id : "",
878 5de5890b 2018-10-18 stsp te->name, S_ISDIR(te->mode) ? "/" : "");
879 5de5890b 2018-10-18 stsp te = SIMPLEQ_NEXT(te, entry);
880 5de5890b 2018-10-18 stsp free(id);
881 5de5890b 2018-10-18 stsp }
882 5de5890b 2018-10-18 stsp done:
883 5de5890b 2018-10-18 stsp if (tree)
884 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
885 5de5890b 2018-10-18 stsp free(tree_id);
886 5de5890b 2018-10-18 stsp return err;
887 404c43c4 2018-06-21 stsp }
888 404c43c4 2018-06-21 stsp
889 5de5890b 2018-10-18 stsp static const struct got_error *
890 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
891 5de5890b 2018-10-18 stsp {
892 5de5890b 2018-10-18 stsp const struct got_error *error;
893 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
894 5de5890b 2018-10-18 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
895 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
896 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
897 5de5890b 2018-10-18 stsp int show_ids = 0;
898 5de5890b 2018-10-18 stsp int ch;
899 5de5890b 2018-10-18 stsp
900 5de5890b 2018-10-18 stsp #ifndef PROFILE
901 5de5890b 2018-10-18 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
902 5de5890b 2018-10-18 stsp == -1)
903 5de5890b 2018-10-18 stsp err(1, "pledge");
904 5de5890b 2018-10-18 stsp #endif
905 5de5890b 2018-10-18 stsp
906 5de5890b 2018-10-18 stsp while ((ch = getopt(argc, argv, "c:r:i")) != -1) {
907 5de5890b 2018-10-18 stsp switch (ch) {
908 5de5890b 2018-10-18 stsp case 'c':
909 5de5890b 2018-10-18 stsp commit_id_str = optarg;
910 5de5890b 2018-10-18 stsp break;
911 5de5890b 2018-10-18 stsp case 'r':
912 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
913 5de5890b 2018-10-18 stsp if (repo_path == NULL)
914 5de5890b 2018-10-18 stsp err(1, "-r option");
915 5de5890b 2018-10-18 stsp break;
916 5de5890b 2018-10-18 stsp case 'i':
917 5de5890b 2018-10-18 stsp show_ids = 1;
918 5de5890b 2018-10-18 stsp break;
919 5de5890b 2018-10-18 stsp default:
920 5de5890b 2018-10-18 stsp usage();
921 5de5890b 2018-10-18 stsp /* NOTREACHED */
922 5de5890b 2018-10-18 stsp }
923 5de5890b 2018-10-18 stsp }
924 5de5890b 2018-10-18 stsp
925 5de5890b 2018-10-18 stsp argc -= optind;
926 5de5890b 2018-10-18 stsp argv += optind;
927 5de5890b 2018-10-18 stsp
928 5de5890b 2018-10-18 stsp if (argc == 1)
929 5de5890b 2018-10-18 stsp path = argv[0];
930 5de5890b 2018-10-18 stsp else if (argc > 1)
931 5de5890b 2018-10-18 stsp usage_tree();
932 5de5890b 2018-10-18 stsp else
933 5de5890b 2018-10-18 stsp path = "/";
934 5de5890b 2018-10-18 stsp
935 5de5890b 2018-10-18 stsp cwd = getcwd(NULL, 0);
936 5de5890b 2018-10-18 stsp if (cwd == NULL) {
937 5de5890b 2018-10-18 stsp error = got_error_from_errno();
938 5de5890b 2018-10-18 stsp goto done;
939 5de5890b 2018-10-18 stsp }
940 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
941 5de5890b 2018-10-18 stsp repo_path = strdup(cwd);
942 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
943 5de5890b 2018-10-18 stsp error = got_error_from_errno();
944 5de5890b 2018-10-18 stsp goto done;
945 5de5890b 2018-10-18 stsp }
946 5de5890b 2018-10-18 stsp }
947 5de5890b 2018-10-18 stsp
948 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
949 5de5890b 2018-10-18 stsp if (error != NULL)
950 5de5890b 2018-10-18 stsp goto done;
951 5de5890b 2018-10-18 stsp
952 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
953 5de5890b 2018-10-18 stsp if (error != NULL)
954 5de5890b 2018-10-18 stsp goto done;
955 5de5890b 2018-10-18 stsp
956 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
957 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
958 5de5890b 2018-10-18 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
959 5de5890b 2018-10-18 stsp if (error != NULL)
960 5de5890b 2018-10-18 stsp goto done;
961 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
962 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
963 5de5890b 2018-10-18 stsp if (error != NULL)
964 5de5890b 2018-10-18 stsp goto done;
965 5de5890b 2018-10-18 stsp } else {
966 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
967 15a94983 2018-12-23 stsp commit_id_str);
968 5de5890b 2018-10-18 stsp if (error != NULL)
969 5de5890b 2018-10-18 stsp goto done;
970 5de5890b 2018-10-18 stsp }
971 5de5890b 2018-10-18 stsp
972 5de5890b 2018-10-18 stsp error = print_tree(in_repo_path, commit_id, show_ids, repo);
973 5de5890b 2018-10-18 stsp done:
974 5de5890b 2018-10-18 stsp free(in_repo_path);
975 5de5890b 2018-10-18 stsp free(repo_path);
976 5de5890b 2018-10-18 stsp free(cwd);
977 5de5890b 2018-10-18 stsp free(commit_id);
978 5de5890b 2018-10-18 stsp if (repo) {
979 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
980 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
981 5de5890b 2018-10-18 stsp if (error == NULL)
982 5de5890b 2018-10-18 stsp error = repo_error;
983 5de5890b 2018-10-18 stsp }
984 5de5890b 2018-10-18 stsp return error;
985 5de5890b 2018-10-18 stsp }
986 5de5890b 2018-10-18 stsp
987 f42b1b34 2018-03-12 stsp #ifdef notyet
988 4ed7e80c 2018-05-20 stsp static const struct got_error *
989 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
990 5c860e29 2018-03-12 stsp {
991 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
992 5c860e29 2018-03-12 stsp git_status_list *status;
993 5c860e29 2018-03-12 stsp git_status_options statusopts;
994 5c860e29 2018-03-12 stsp size_t i;
995 5c860e29 2018-03-12 stsp
996 5c860e29 2018-03-12 stsp git_libgit2_init();
997 5c860e29 2018-03-12 stsp
998 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
999 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
1000 5c860e29 2018-03-12 stsp
1001 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
1002 5c860e29 2018-03-12 stsp errx(1, "bar repository");
1003 5c860e29 2018-03-12 stsp
1004 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
1005 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
1006 5c860e29 2018-03-12 stsp
1007 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
1008 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
1009 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
1010 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
1011 5c860e29 2018-03-12 stsp
1012 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
1013 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
1014 5c860e29 2018-03-12 stsp
1015 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
1016 5c860e29 2018-03-12 stsp const git_status_entry *se;
1017 5c860e29 2018-03-12 stsp
1018 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
1019 5c860e29 2018-03-12 stsp switch (se->status) {
1020 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
1021 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
1022 5c860e29 2018-03-12 stsp break;
1023 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
1024 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
1025 5c860e29 2018-03-12 stsp break;
1026 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
1027 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
1028 5c860e29 2018-03-12 stsp break;
1029 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
1030 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1031 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
1032 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
1033 5c860e29 2018-03-12 stsp break;
1034 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
1035 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
1036 5c860e29 2018-03-12 stsp break;
1037 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
1038 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
1039 5c860e29 2018-03-12 stsp break;
1040 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
1041 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
1042 5c860e29 2018-03-12 stsp break;
1043 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
1044 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
1045 5c860e29 2018-03-12 stsp break;
1046 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
1047 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1048 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
1049 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
1050 5c860e29 2018-03-12 stsp break;
1051 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
1052 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
1053 5c860e29 2018-03-12 stsp break;
1054 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
1055 5c860e29 2018-03-12 stsp default:
1056 5c860e29 2018-03-12 stsp break;
1057 5c860e29 2018-03-12 stsp }
1058 5c860e29 2018-03-12 stsp }
1059 5c860e29 2018-03-12 stsp
1060 5c860e29 2018-03-12 stsp git_status_list_free(status);
1061 5c860e29 2018-03-12 stsp git_repository_free(repo);
1062 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
1063 5c860e29 2018-03-12 stsp
1064 5c860e29 2018-03-12 stsp return 0;
1065 5c860e29 2018-03-12 stsp }
1066 f42b1b34 2018-03-12 stsp #endif