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 79109fed 2018-03-27 stsp
307 117e771c 2018-07-23 stsp err = got_object_open_as_tree(&tree2, repo, commit->tree_id);
308 79109fed 2018-03-27 stsp if (err)
309 79109fed 2018-03-27 stsp return err;
310 79109fed 2018-03-27 stsp
311 79f35eb3 2018-06-11 stsp qid = SIMPLEQ_FIRST(&commit->parent_ids);
312 79f35eb3 2018-06-11 stsp if (qid != NULL) {
313 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
314 79109fed 2018-03-27 stsp
315 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
316 79109fed 2018-03-27 stsp if (err)
317 79109fed 2018-03-27 stsp return err;
318 79109fed 2018-03-27 stsp
319 117e771c 2018-07-23 stsp err = got_object_open_as_tree(&tree1, repo, pcommit->tree_id);
320 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
321 79109fed 2018-03-27 stsp if (err)
322 79109fed 2018-03-27 stsp return err;
323 79109fed 2018-03-27 stsp }
324 79109fed 2018-03-27 stsp
325 c0cc5c62 2018-10-18 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
326 79109fed 2018-03-27 stsp if (tree1)
327 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
328 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
329 79109fed 2018-03-27 stsp return err;
330 79109fed 2018-03-27 stsp }
331 79109fed 2018-03-27 stsp
332 4bb494d5 2018-06-16 stsp static char *
333 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
334 6c281f94 2018-06-11 stsp {
335 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
336 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
337 6c281f94 2018-06-11 stsp if (p)
338 6c281f94 2018-06-11 stsp *p = '\0';
339 6c281f94 2018-06-11 stsp return s;
340 6c281f94 2018-06-11 stsp }
341 6c281f94 2018-06-11 stsp
342 79109fed 2018-03-27 stsp static const struct got_error *
343 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
344 c0cc5c62 2018-10-18 stsp struct got_repository *repo, int show_patch, int diff_context)
345 79109fed 2018-03-27 stsp {
346 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
347 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
348 6c281f94 2018-06-11 stsp char datebuf[26];
349 5c860e29 2018-03-12 stsp
350 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
351 8bf5b3c9 2018-03-17 stsp if (err)
352 8bf5b3c9 2018-03-17 stsp return err;
353 788c352e 2018-06-16 stsp
354 8bf5b3c9 2018-03-17 stsp printf("-----------------------------------------------\n");
355 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
356 832c249c 2018-06-10 stsp free(id_str);
357 0dcf3e9c 2018-09-15 stsp printf("from: %s\n", commit->author);
358 ccb26ccd 2018-11-05 stsp datestr = get_datestr(&commit->committer_time, datebuf);
359 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
360 dab5fe87 2018-09-14 stsp if (strcmp(commit->author, commit->committer) != 0)
361 0dcf3e9c 2018-09-15 stsp printf("via: %s\n", commit->committer);
362 3fe1abad 2018-06-10 stsp if (commit->nparents > 1) {
363 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
364 3fe1abad 2018-06-10 stsp int n = 1;
365 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
366 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
367 a0603db2 2018-06-10 stsp if (err)
368 a0603db2 2018-06-10 stsp return err;
369 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
370 a0603db2 2018-06-10 stsp free(id_str);
371 a0603db2 2018-06-10 stsp }
372 a0603db2 2018-06-10 stsp }
373 832c249c 2018-06-10 stsp
374 621015ac 2018-07-23 stsp logmsg0 = strdup(commit->logmsg);
375 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
376 832c249c 2018-06-10 stsp return got_error_from_errno();
377 8bf5b3c9 2018-03-17 stsp
378 621015ac 2018-07-23 stsp logmsg = logmsg0;
379 832c249c 2018-06-10 stsp do {
380 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
381 832c249c 2018-06-10 stsp if (line)
382 832c249c 2018-06-10 stsp printf(" %s\n", line);
383 832c249c 2018-06-10 stsp } while (line);
384 621015ac 2018-07-23 stsp free(logmsg0);
385 832c249c 2018-06-10 stsp
386 971751ac 2018-03-27 stsp if (show_patch) {
387 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
388 971751ac 2018-03-27 stsp if (err == 0)
389 971751ac 2018-03-27 stsp printf("\n");
390 971751ac 2018-03-27 stsp }
391 07862c20 2018-09-15 stsp
392 d82de447 2018-09-15 stsp fflush(stdout);
393 07862c20 2018-09-15 stsp return err;
394 f42b1b34 2018-03-12 stsp }
395 5c860e29 2018-03-12 stsp
396 f42b1b34 2018-03-12 stsp static const struct got_error *
397 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
398 c0cc5c62 2018-10-18 stsp struct got_repository *repo, char *path, int show_patch, int diff_context,
399 c0cc5c62 2018-10-18 stsp int limit, int first_parent_traversal)
400 f42b1b34 2018-03-12 stsp {
401 f42b1b34 2018-03-12 stsp const struct got_error *err;
402 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
403 372ccdbb 2018-06-10 stsp
404 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
405 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
406 f42b1b34 2018-03-12 stsp if (err)
407 f42b1b34 2018-03-12 stsp return err;
408 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
409 372ccdbb 2018-06-10 stsp if (err)
410 fcc85cad 2018-07-22 stsp goto done;
411 31cedeaf 2018-09-15 stsp while (1) {
412 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
413 372ccdbb 2018-06-10 stsp struct got_object_id *id;
414 8bf5b3c9 2018-03-17 stsp
415 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
416 84453469 2018-11-11 stsp break;
417 84453469 2018-11-11 stsp
418 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
419 372ccdbb 2018-06-10 stsp if (err) {
420 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
421 9ba79e04 2018-06-11 stsp err = NULL;
422 9ba79e04 2018-06-11 stsp break;
423 9ba79e04 2018-06-11 stsp }
424 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
425 372ccdbb 2018-06-10 stsp break;
426 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
427 372ccdbb 2018-06-10 stsp if (err)
428 372ccdbb 2018-06-10 stsp break;
429 372ccdbb 2018-06-10 stsp else
430 372ccdbb 2018-06-10 stsp continue;
431 7e665116 2018-04-02 stsp }
432 b43fbaa0 2018-06-11 stsp if (id == NULL)
433 7e665116 2018-04-02 stsp break;
434 b43fbaa0 2018-06-11 stsp
435 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
436 b43fbaa0 2018-06-11 stsp if (err)
437 fcc85cad 2018-07-22 stsp break;
438 c0cc5c62 2018-10-18 stsp err = print_commit(commit, id, repo, show_patch, diff_context);
439 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
440 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
441 7e665116 2018-04-02 stsp break;
442 31cedeaf 2018-09-15 stsp }
443 fcc85cad 2018-07-22 stsp done:
444 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
445 f42b1b34 2018-03-12 stsp return err;
446 f42b1b34 2018-03-12 stsp }
447 5c860e29 2018-03-12 stsp
448 4ed7e80c 2018-05-20 stsp __dead static void
449 6f3d1eb0 2018-03-12 stsp usage_log(void)
450 6f3d1eb0 2018-03-12 stsp {
451 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
452 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
453 6f3d1eb0 2018-03-12 stsp exit(1);
454 6f3d1eb0 2018-03-12 stsp }
455 6f3d1eb0 2018-03-12 stsp
456 4ed7e80c 2018-05-20 stsp static const struct got_error *
457 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
458 f42b1b34 2018-03-12 stsp {
459 f42b1b34 2018-03-12 stsp const struct got_error *error;
460 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
461 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
462 d1f2edc9 2018-06-13 stsp struct got_object *obj = NULL;
463 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
464 d142fc45 2018-04-01 stsp char *start_commit = NULL;
465 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
466 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
467 64a96a6d 2018-04-01 stsp const char *errstr;
468 5c860e29 2018-03-12 stsp
469 6715a751 2018-03-16 stsp #ifndef PROFILE
470 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
471 ad242220 2018-09-08 stsp == -1)
472 f42b1b34 2018-03-12 stsp err(1, "pledge");
473 6715a751 2018-03-16 stsp #endif
474 79109fed 2018-03-27 stsp
475 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
476 79109fed 2018-03-27 stsp switch (ch) {
477 79109fed 2018-03-27 stsp case 'p':
478 79109fed 2018-03-27 stsp show_patch = 1;
479 d142fc45 2018-04-01 stsp break;
480 d142fc45 2018-04-01 stsp case 'c':
481 d142fc45 2018-04-01 stsp start_commit = optarg;
482 64a96a6d 2018-04-01 stsp break;
483 c0cc5c62 2018-10-18 stsp case 'C':
484 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
485 4a8520aa 2018-10-18 stsp &errstr);
486 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
487 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
488 c0cc5c62 2018-10-18 stsp break;
489 64a96a6d 2018-04-01 stsp case 'l':
490 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
491 64a96a6d 2018-04-01 stsp if (errstr != NULL)
492 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
493 79109fed 2018-03-27 stsp break;
494 0ed6ed4c 2018-06-13 stsp case 'f':
495 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
496 a0603db2 2018-06-10 stsp break;
497 04ca23f4 2018-07-16 stsp case 'r':
498 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
499 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
500 04ca23f4 2018-07-16 stsp err(1, "-r option");
501 04ca23f4 2018-07-16 stsp break;
502 79109fed 2018-03-27 stsp default:
503 79109fed 2018-03-27 stsp usage();
504 79109fed 2018-03-27 stsp /* NOTREACHED */
505 79109fed 2018-03-27 stsp }
506 79109fed 2018-03-27 stsp }
507 79109fed 2018-03-27 stsp
508 79109fed 2018-03-27 stsp argc -= optind;
509 79109fed 2018-03-27 stsp argv += optind;
510 79109fed 2018-03-27 stsp
511 04ca23f4 2018-07-16 stsp if (argc == 0)
512 04ca23f4 2018-07-16 stsp path = strdup("");
513 04ca23f4 2018-07-16 stsp else if (argc == 1)
514 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
515 04ca23f4 2018-07-16 stsp else
516 6f3d1eb0 2018-03-12 stsp usage_log();
517 04ca23f4 2018-07-16 stsp if (path == NULL)
518 04ca23f4 2018-07-16 stsp return got_error_from_errno();
519 f42b1b34 2018-03-12 stsp
520 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
521 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
522 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
523 04ca23f4 2018-07-16 stsp goto done;
524 04ca23f4 2018-07-16 stsp }
525 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
526 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
527 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
528 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
529 04ca23f4 2018-07-16 stsp goto done;
530 04ca23f4 2018-07-16 stsp }
531 04ca23f4 2018-07-16 stsp }
532 04ca23f4 2018-07-16 stsp
533 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
534 d7d4f210 2018-03-12 stsp if (error != NULL)
535 04ca23f4 2018-07-16 stsp goto done;
536 f42b1b34 2018-03-12 stsp
537 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
538 3235492e 2018-04-01 stsp struct got_reference *head_ref;
539 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
540 3235492e 2018-04-01 stsp if (error != NULL)
541 3235492e 2018-04-01 stsp return error;
542 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
543 3235492e 2018-04-01 stsp got_ref_close(head_ref);
544 3235492e 2018-04-01 stsp if (error != NULL)
545 3235492e 2018-04-01 stsp return error;
546 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
547 3235492e 2018-04-01 stsp } else {
548 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
549 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
550 3235492e 2018-04-01 stsp if (error == NULL) {
551 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
552 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
553 d1f2edc9 2018-06-13 stsp if (error != NULL)
554 d1f2edc9 2018-06-13 stsp return error;
555 d1f2edc9 2018-06-13 stsp error = got_object_open(&obj, repo, id);
556 d1f2edc9 2018-06-13 stsp if (error != NULL)
557 d1f2edc9 2018-06-13 stsp return error;
558 d1f2edc9 2018-06-13 stsp }
559 d1f2edc9 2018-06-13 stsp if (obj == NULL) {
560 d1f2edc9 2018-06-13 stsp error = got_object_open_by_id_str(&obj, repo,
561 d1f2edc9 2018-06-13 stsp start_commit);
562 d1f2edc9 2018-06-13 stsp if (error != NULL)
563 d1f2edc9 2018-06-13 stsp return error;
564 6402fb3c 2018-09-15 stsp id = got_object_id_dup(got_object_get_id(obj));
565 3235492e 2018-04-01 stsp if (id == NULL)
566 3235492e 2018-04-01 stsp error = got_error_from_errno();
567 3235492e 2018-04-01 stsp }
568 3235492e 2018-04-01 stsp }
569 d7d4f210 2018-03-12 stsp if (error != NULL)
570 04ca23f4 2018-07-16 stsp goto done;
571 04ca23f4 2018-07-16 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
572 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
573 04ca23f4 2018-07-16 stsp goto done;
574 04ca23f4 2018-07-16 stsp }
575 04ca23f4 2018-07-16 stsp
576 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
577 04ca23f4 2018-07-16 stsp if (error != NULL)
578 04ca23f4 2018-07-16 stsp goto done;
579 04ca23f4 2018-07-16 stsp if (in_repo_path) {
580 04ca23f4 2018-07-16 stsp free(path);
581 04ca23f4 2018-07-16 stsp path = in_repo_path;
582 04ca23f4 2018-07-16 stsp }
583 04ca23f4 2018-07-16 stsp
584 04ca23f4 2018-07-16 stsp error = print_commits(obj, id, repo, path, show_patch,
585 c0cc5c62 2018-10-18 stsp diff_context, limit, first_parent_traversal);
586 04ca23f4 2018-07-16 stsp done:
587 04ca23f4 2018-07-16 stsp free(path);
588 04ca23f4 2018-07-16 stsp free(repo_path);
589 04ca23f4 2018-07-16 stsp free(cwd);
590 04ca23f4 2018-07-16 stsp if (obj)
591 04ca23f4 2018-07-16 stsp got_object_close(obj);
592 f42b1b34 2018-03-12 stsp free(id);
593 ad242220 2018-09-08 stsp if (repo) {
594 ad242220 2018-09-08 stsp const struct got_error *repo_error;
595 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
596 ad242220 2018-09-08 stsp if (error == NULL)
597 ad242220 2018-09-08 stsp error = repo_error;
598 ad242220 2018-09-08 stsp }
599 8bf5b3c9 2018-03-17 stsp return error;
600 5c860e29 2018-03-12 stsp }
601 5c860e29 2018-03-12 stsp
602 4ed7e80c 2018-05-20 stsp __dead static void
603 3f8b7d6a 2018-04-01 stsp usage_diff(void)
604 3f8b7d6a 2018-04-01 stsp {
605 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s diff [-C number] [repository-path] "
606 c0cc5c62 2018-10-18 stsp "object1 object2\n", getprogname());
607 3f8b7d6a 2018-04-01 stsp exit(1);
608 b00d56cd 2018-04-01 stsp }
609 b00d56cd 2018-04-01 stsp
610 4ed7e80c 2018-05-20 stsp static const struct got_error *
611 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
612 b00d56cd 2018-04-01 stsp {
613 b00d56cd 2018-04-01 stsp const struct got_error *error;
614 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
615 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
616 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
617 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
618 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
619 c0cc5c62 2018-10-18 stsp const char *errstr;
620 b00d56cd 2018-04-01 stsp
621 b00d56cd 2018-04-01 stsp #ifndef PROFILE
622 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
623 ad242220 2018-09-08 stsp == -1)
624 b00d56cd 2018-04-01 stsp err(1, "pledge");
625 b00d56cd 2018-04-01 stsp #endif
626 b00d56cd 2018-04-01 stsp
627 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "C:")) != -1) {
628 b00d56cd 2018-04-01 stsp switch (ch) {
629 c0cc5c62 2018-10-18 stsp case 'C':
630 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
631 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
632 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
633 c0cc5c62 2018-10-18 stsp break;
634 b00d56cd 2018-04-01 stsp default:
635 b00d56cd 2018-04-01 stsp usage();
636 b00d56cd 2018-04-01 stsp /* NOTREACHED */
637 b00d56cd 2018-04-01 stsp }
638 b00d56cd 2018-04-01 stsp }
639 b00d56cd 2018-04-01 stsp
640 b00d56cd 2018-04-01 stsp argc -= optind;
641 b00d56cd 2018-04-01 stsp argv += optind;
642 b00d56cd 2018-04-01 stsp
643 b00d56cd 2018-04-01 stsp if (argc == 0) {
644 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
645 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
646 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
647 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
648 e1e3f570 2018-04-01 stsp return got_error_from_errno();
649 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
650 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
651 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
652 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
653 76089277 2018-04-01 stsp if (repo_path == NULL)
654 76089277 2018-04-01 stsp return got_error_from_errno();
655 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
656 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
657 b00d56cd 2018-04-01 stsp } else
658 b00d56cd 2018-04-01 stsp usage_diff();
659 b00d56cd 2018-04-01 stsp
660 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
661 76089277 2018-04-01 stsp free(repo_path);
662 b00d56cd 2018-04-01 stsp if (error != NULL)
663 b00d56cd 2018-04-01 stsp goto done;
664 b00d56cd 2018-04-01 stsp
665 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
666 6402fb3c 2018-09-15 stsp if (error)
667 b00d56cd 2018-04-01 stsp goto done;
668 b00d56cd 2018-04-01 stsp
669 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
670 6402fb3c 2018-09-15 stsp if (error)
671 b00d56cd 2018-04-01 stsp goto done;
672 b00d56cd 2018-04-01 stsp
673 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
674 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
675 b00d56cd 2018-04-01 stsp goto done;
676 b00d56cd 2018-04-01 stsp }
677 b00d56cd 2018-04-01 stsp
678 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
679 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
680 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_blobs(obj1, obj2, NULL, NULL,
681 c0cc5c62 2018-10-18 stsp diff_context, repo, stdout);
682 b00d56cd 2018-04-01 stsp break;
683 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
684 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_trees(obj1, obj2, "", "",
685 c0cc5c62 2018-10-18 stsp diff_context, repo, stdout);
686 b00d56cd 2018-04-01 stsp break;
687 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
688 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_commits(obj1, obj2, diff_context,
689 c0cc5c62 2018-10-18 stsp repo, stdout);
690 b00d56cd 2018-04-01 stsp break;
691 b00d56cd 2018-04-01 stsp default:
692 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
693 b00d56cd 2018-04-01 stsp }
694 b00d56cd 2018-04-01 stsp
695 b00d56cd 2018-04-01 stsp done:
696 b00d56cd 2018-04-01 stsp if (obj1)
697 b00d56cd 2018-04-01 stsp got_object_close(obj1);
698 b00d56cd 2018-04-01 stsp if (obj2)
699 b00d56cd 2018-04-01 stsp got_object_close(obj2);
700 ad242220 2018-09-08 stsp if (repo) {
701 ad242220 2018-09-08 stsp const struct got_error *repo_error;
702 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
703 ad242220 2018-09-08 stsp if (error == NULL)
704 ad242220 2018-09-08 stsp error = repo_error;
705 ad242220 2018-09-08 stsp }
706 b00d56cd 2018-04-01 stsp return error;
707 404c43c4 2018-06-21 stsp }
708 404c43c4 2018-06-21 stsp
709 404c43c4 2018-06-21 stsp __dead static void
710 404c43c4 2018-06-21 stsp usage_blame(void)
711 404c43c4 2018-06-21 stsp {
712 66bea077 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
713 404c43c4 2018-06-21 stsp getprogname());
714 404c43c4 2018-06-21 stsp exit(1);
715 b00d56cd 2018-04-01 stsp }
716 b00d56cd 2018-04-01 stsp
717 404c43c4 2018-06-21 stsp static const struct got_error *
718 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
719 404c43c4 2018-06-21 stsp {
720 404c43c4 2018-06-21 stsp const struct got_error *error;
721 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
722 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
723 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
724 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
725 404c43c4 2018-06-21 stsp int ch;
726 404c43c4 2018-06-21 stsp
727 404c43c4 2018-06-21 stsp #ifndef PROFILE
728 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
729 ad242220 2018-09-08 stsp == -1)
730 404c43c4 2018-06-21 stsp err(1, "pledge");
731 404c43c4 2018-06-21 stsp #endif
732 404c43c4 2018-06-21 stsp
733 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
734 404c43c4 2018-06-21 stsp switch (ch) {
735 404c43c4 2018-06-21 stsp case 'c':
736 404c43c4 2018-06-21 stsp commit_id_str = optarg;
737 404c43c4 2018-06-21 stsp break;
738 66bea077 2018-08-02 stsp case 'r':
739 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
740 66bea077 2018-08-02 stsp if (repo_path == NULL)
741 66bea077 2018-08-02 stsp err(1, "-r option");
742 66bea077 2018-08-02 stsp break;
743 404c43c4 2018-06-21 stsp default:
744 404c43c4 2018-06-21 stsp usage();
745 404c43c4 2018-06-21 stsp /* NOTREACHED */
746 404c43c4 2018-06-21 stsp }
747 404c43c4 2018-06-21 stsp }
748 404c43c4 2018-06-21 stsp
749 404c43c4 2018-06-21 stsp argc -= optind;
750 404c43c4 2018-06-21 stsp argv += optind;
751 404c43c4 2018-06-21 stsp
752 a39318fd 2018-08-02 stsp if (argc == 1)
753 404c43c4 2018-06-21 stsp path = argv[0];
754 a39318fd 2018-08-02 stsp else
755 404c43c4 2018-06-21 stsp usage_blame();
756 404c43c4 2018-06-21 stsp
757 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
758 66bea077 2018-08-02 stsp if (cwd == NULL) {
759 66bea077 2018-08-02 stsp error = got_error_from_errno();
760 66bea077 2018-08-02 stsp goto done;
761 66bea077 2018-08-02 stsp }
762 66bea077 2018-08-02 stsp if (repo_path == NULL) {
763 66bea077 2018-08-02 stsp repo_path = strdup(cwd);
764 66bea077 2018-08-02 stsp if (repo_path == NULL) {
765 66bea077 2018-08-02 stsp error = got_error_from_errno();
766 66bea077 2018-08-02 stsp goto done;
767 66bea077 2018-08-02 stsp }
768 66bea077 2018-08-02 stsp }
769 66bea077 2018-08-02 stsp
770 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
771 404c43c4 2018-06-21 stsp if (error != NULL)
772 404c43c4 2018-06-21 stsp goto done;
773 404c43c4 2018-06-21 stsp
774 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
775 66bea077 2018-08-02 stsp if (error != NULL)
776 66bea077 2018-08-02 stsp goto done;
777 66bea077 2018-08-02 stsp
778 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
779 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
780 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
781 404c43c4 2018-06-21 stsp if (error != NULL)
782 66bea077 2018-08-02 stsp goto done;
783 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
784 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
785 404c43c4 2018-06-21 stsp if (error != NULL)
786 66bea077 2018-08-02 stsp goto done;
787 404c43c4 2018-06-21 stsp } else {
788 404c43c4 2018-06-21 stsp struct got_object *obj;
789 404c43c4 2018-06-21 stsp error = got_object_open_by_id_str(&obj, repo, commit_id_str);
790 404c43c4 2018-06-21 stsp if (error != NULL)
791 66bea077 2018-08-02 stsp goto done;
792 6402fb3c 2018-09-15 stsp commit_id = got_object_id_dup(got_object_get_id(obj));
793 404c43c4 2018-06-21 stsp if (commit_id == NULL)
794 404c43c4 2018-06-21 stsp error = got_error_from_errno();
795 404c43c4 2018-06-21 stsp got_object_close(obj);
796 404c43c4 2018-06-21 stsp }
797 404c43c4 2018-06-21 stsp
798 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
799 404c43c4 2018-06-21 stsp done:
800 66bea077 2018-08-02 stsp free(in_repo_path);
801 66bea077 2018-08-02 stsp free(repo_path);
802 66bea077 2018-08-02 stsp free(cwd);
803 404c43c4 2018-06-21 stsp free(commit_id);
804 ad242220 2018-09-08 stsp if (repo) {
805 ad242220 2018-09-08 stsp const struct got_error *repo_error;
806 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
807 ad242220 2018-09-08 stsp if (error == NULL)
808 ad242220 2018-09-08 stsp error = repo_error;
809 ad242220 2018-09-08 stsp }
810 404c43c4 2018-06-21 stsp return error;
811 5de5890b 2018-10-18 stsp }
812 5de5890b 2018-10-18 stsp
813 5de5890b 2018-10-18 stsp __dead static void
814 5de5890b 2018-10-18 stsp usage_tree(void)
815 5de5890b 2018-10-18 stsp {
816 5de5890b 2018-10-18 stsp fprintf(stderr, "usage: %s tree [-c commit] [-r repository-path] [-i] path\n",
817 5de5890b 2018-10-18 stsp getprogname());
818 5de5890b 2018-10-18 stsp exit(1);
819 5de5890b 2018-10-18 stsp }
820 5de5890b 2018-10-18 stsp
821 5de5890b 2018-10-18 stsp
822 5de5890b 2018-10-18 stsp static const struct got_error *
823 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
824 5de5890b 2018-10-18 stsp int show_ids, struct got_repository *repo)
825 5de5890b 2018-10-18 stsp {
826 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
827 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
828 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
829 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
830 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
831 5de5890b 2018-10-18 stsp
832 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
833 5de5890b 2018-10-18 stsp if (err)
834 5de5890b 2018-10-18 stsp goto done;
835 5de5890b 2018-10-18 stsp
836 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
837 5de5890b 2018-10-18 stsp if (err)
838 5de5890b 2018-10-18 stsp goto done;
839 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
840 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
841 5de5890b 2018-10-18 stsp while (te) {
842 5de5890b 2018-10-18 stsp char *id = NULL;
843 84453469 2018-11-11 stsp
844 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
845 84453469 2018-11-11 stsp break;
846 84453469 2018-11-11 stsp
847 5de5890b 2018-10-18 stsp if (show_ids) {
848 5de5890b 2018-10-18 stsp char *id_str;
849 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
850 5de5890b 2018-10-18 stsp if (err)
851 5de5890b 2018-10-18 stsp goto done;
852 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
853 5de5890b 2018-10-18 stsp err = got_error_from_errno();
854 5de5890b 2018-10-18 stsp free(id_str);
855 5de5890b 2018-10-18 stsp goto done;
856 5de5890b 2018-10-18 stsp }
857 5de5890b 2018-10-18 stsp free(id_str);
858 5de5890b 2018-10-18 stsp }
859 5de5890b 2018-10-18 stsp printf("%s%s%s\n", id ? id : "",
860 5de5890b 2018-10-18 stsp te->name, S_ISDIR(te->mode) ? "/" : "");
861 5de5890b 2018-10-18 stsp te = SIMPLEQ_NEXT(te, entry);
862 5de5890b 2018-10-18 stsp free(id);
863 5de5890b 2018-10-18 stsp }
864 5de5890b 2018-10-18 stsp done:
865 5de5890b 2018-10-18 stsp if (tree)
866 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
867 5de5890b 2018-10-18 stsp free(tree_id);
868 5de5890b 2018-10-18 stsp return err;
869 404c43c4 2018-06-21 stsp }
870 404c43c4 2018-06-21 stsp
871 5de5890b 2018-10-18 stsp static const struct got_error *
872 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
873 5de5890b 2018-10-18 stsp {
874 5de5890b 2018-10-18 stsp const struct got_error *error;
875 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
876 5de5890b 2018-10-18 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
877 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
878 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
879 5de5890b 2018-10-18 stsp int show_ids = 0;
880 5de5890b 2018-10-18 stsp int ch;
881 5de5890b 2018-10-18 stsp
882 5de5890b 2018-10-18 stsp #ifndef PROFILE
883 5de5890b 2018-10-18 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
884 5de5890b 2018-10-18 stsp == -1)
885 5de5890b 2018-10-18 stsp err(1, "pledge");
886 5de5890b 2018-10-18 stsp #endif
887 5de5890b 2018-10-18 stsp
888 5de5890b 2018-10-18 stsp while ((ch = getopt(argc, argv, "c:r:i")) != -1) {
889 5de5890b 2018-10-18 stsp switch (ch) {
890 5de5890b 2018-10-18 stsp case 'c':
891 5de5890b 2018-10-18 stsp commit_id_str = optarg;
892 5de5890b 2018-10-18 stsp break;
893 5de5890b 2018-10-18 stsp case 'r':
894 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
895 5de5890b 2018-10-18 stsp if (repo_path == NULL)
896 5de5890b 2018-10-18 stsp err(1, "-r option");
897 5de5890b 2018-10-18 stsp break;
898 5de5890b 2018-10-18 stsp case 'i':
899 5de5890b 2018-10-18 stsp show_ids = 1;
900 5de5890b 2018-10-18 stsp break;
901 5de5890b 2018-10-18 stsp default:
902 5de5890b 2018-10-18 stsp usage();
903 5de5890b 2018-10-18 stsp /* NOTREACHED */
904 5de5890b 2018-10-18 stsp }
905 5de5890b 2018-10-18 stsp }
906 5de5890b 2018-10-18 stsp
907 5de5890b 2018-10-18 stsp argc -= optind;
908 5de5890b 2018-10-18 stsp argv += optind;
909 5de5890b 2018-10-18 stsp
910 5de5890b 2018-10-18 stsp if (argc == 1)
911 5de5890b 2018-10-18 stsp path = argv[0];
912 5de5890b 2018-10-18 stsp else if (argc > 1)
913 5de5890b 2018-10-18 stsp usage_tree();
914 5de5890b 2018-10-18 stsp else
915 5de5890b 2018-10-18 stsp path = "/";
916 5de5890b 2018-10-18 stsp
917 5de5890b 2018-10-18 stsp cwd = getcwd(NULL, 0);
918 5de5890b 2018-10-18 stsp if (cwd == NULL) {
919 5de5890b 2018-10-18 stsp error = got_error_from_errno();
920 5de5890b 2018-10-18 stsp goto done;
921 5de5890b 2018-10-18 stsp }
922 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
923 5de5890b 2018-10-18 stsp repo_path = strdup(cwd);
924 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
925 5de5890b 2018-10-18 stsp error = got_error_from_errno();
926 5de5890b 2018-10-18 stsp goto done;
927 5de5890b 2018-10-18 stsp }
928 5de5890b 2018-10-18 stsp }
929 5de5890b 2018-10-18 stsp
930 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
931 5de5890b 2018-10-18 stsp if (error != NULL)
932 5de5890b 2018-10-18 stsp goto done;
933 5de5890b 2018-10-18 stsp
934 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
935 5de5890b 2018-10-18 stsp if (error != NULL)
936 5de5890b 2018-10-18 stsp goto done;
937 5de5890b 2018-10-18 stsp
938 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
939 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
940 5de5890b 2018-10-18 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
941 5de5890b 2018-10-18 stsp if (error != NULL)
942 5de5890b 2018-10-18 stsp goto done;
943 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
944 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
945 5de5890b 2018-10-18 stsp if (error != NULL)
946 5de5890b 2018-10-18 stsp goto done;
947 5de5890b 2018-10-18 stsp } else {
948 5de5890b 2018-10-18 stsp struct got_object *obj;
949 5de5890b 2018-10-18 stsp error = got_object_open_by_id_str(&obj, repo, commit_id_str);
950 5de5890b 2018-10-18 stsp if (error != NULL)
951 5de5890b 2018-10-18 stsp goto done;
952 5de5890b 2018-10-18 stsp commit_id = got_object_id_dup(got_object_get_id(obj));
953 5de5890b 2018-10-18 stsp if (commit_id == NULL)
954 5de5890b 2018-10-18 stsp error = got_error_from_errno();
955 5de5890b 2018-10-18 stsp got_object_close(obj);
956 5de5890b 2018-10-18 stsp }
957 5de5890b 2018-10-18 stsp
958 5de5890b 2018-10-18 stsp error = print_tree(in_repo_path, commit_id, show_ids, repo);
959 5de5890b 2018-10-18 stsp done:
960 5de5890b 2018-10-18 stsp free(in_repo_path);
961 5de5890b 2018-10-18 stsp free(repo_path);
962 5de5890b 2018-10-18 stsp free(cwd);
963 5de5890b 2018-10-18 stsp free(commit_id);
964 5de5890b 2018-10-18 stsp if (repo) {
965 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
966 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
967 5de5890b 2018-10-18 stsp if (error == NULL)
968 5de5890b 2018-10-18 stsp error = repo_error;
969 5de5890b 2018-10-18 stsp }
970 5de5890b 2018-10-18 stsp return error;
971 5de5890b 2018-10-18 stsp }
972 5de5890b 2018-10-18 stsp
973 f42b1b34 2018-03-12 stsp #ifdef notyet
974 4ed7e80c 2018-05-20 stsp static const struct got_error *
975 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
976 5c860e29 2018-03-12 stsp {
977 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
978 5c860e29 2018-03-12 stsp git_status_list *status;
979 5c860e29 2018-03-12 stsp git_status_options statusopts;
980 5c860e29 2018-03-12 stsp size_t i;
981 5c860e29 2018-03-12 stsp
982 5c860e29 2018-03-12 stsp git_libgit2_init();
983 5c860e29 2018-03-12 stsp
984 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
985 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
986 5c860e29 2018-03-12 stsp
987 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
988 5c860e29 2018-03-12 stsp errx(1, "bar repository");
989 5c860e29 2018-03-12 stsp
990 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
991 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
992 5c860e29 2018-03-12 stsp
993 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
994 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
995 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
996 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
997 5c860e29 2018-03-12 stsp
998 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
999 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
1000 5c860e29 2018-03-12 stsp
1001 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
1002 5c860e29 2018-03-12 stsp const git_status_entry *se;
1003 5c860e29 2018-03-12 stsp
1004 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
1005 5c860e29 2018-03-12 stsp switch (se->status) {
1006 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
1007 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
1008 5c860e29 2018-03-12 stsp break;
1009 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
1010 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
1011 5c860e29 2018-03-12 stsp break;
1012 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
1013 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
1014 5c860e29 2018-03-12 stsp break;
1015 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
1016 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1017 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
1018 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
1019 5c860e29 2018-03-12 stsp break;
1020 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
1021 5c860e29 2018-03-12 stsp printf("t %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_INDEX_NEW:
1024 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
1025 5c860e29 2018-03-12 stsp break;
1026 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
1027 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
1028 5c860e29 2018-03-12 stsp break;
1029 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
1030 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
1031 5c860e29 2018-03-12 stsp break;
1032 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
1033 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1034 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
1035 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
1036 5c860e29 2018-03-12 stsp break;
1037 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
1038 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
1039 5c860e29 2018-03-12 stsp break;
1040 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
1041 5c860e29 2018-03-12 stsp default:
1042 5c860e29 2018-03-12 stsp break;
1043 5c860e29 2018-03-12 stsp }
1044 5c860e29 2018-03-12 stsp }
1045 5c860e29 2018-03-12 stsp
1046 5c860e29 2018-03-12 stsp git_status_list_free(status);
1047 5c860e29 2018-03-12 stsp git_repository_free(repo);
1048 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
1049 5c860e29 2018-03-12 stsp
1050 5c860e29 2018-03-12 stsp return 0;
1051 5c860e29 2018-03-12 stsp }
1052 f42b1b34 2018-03-12 stsp #endif