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 f42b1b34 2018-03-12 stsp
22 5c860e29 2018-03-12 stsp #include <err.h>
23 5c860e29 2018-03-12 stsp #include <errno.h>
24 5c860e29 2018-03-12 stsp #include <locale.h>
25 5c860e29 2018-03-12 stsp #include <stdio.h>
26 5c860e29 2018-03-12 stsp #include <stdlib.h>
27 5c860e29 2018-03-12 stsp #include <string.h>
28 5c860e29 2018-03-12 stsp #include <unistd.h>
29 c09a553d 2018-03-12 stsp #include <libgen.h>
30 c0768b0f 2018-06-10 stsp #include <time.h>
31 5c860e29 2018-03-12 stsp
32 f42b1b34 2018-03-12 stsp #include "got_error.h"
33 f42b1b34 2018-03-12 stsp #include "got_object.h"
34 5261c201 2018-04-01 stsp #include "got_reference.h"
35 f42b1b34 2018-03-12 stsp #include "got_repository.h"
36 c09a553d 2018-03-12 stsp #include "got_worktree.h"
37 79109fed 2018-03-27 stsp #include "got_diff.h"
38 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
39 404c43c4 2018-06-21 stsp #include "got_blame.h"
40 5c860e29 2018-03-12 stsp
41 5c860e29 2018-03-12 stsp #ifndef nitems
42 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
43 5c860e29 2018-03-12 stsp #endif
44 5c860e29 2018-03-12 stsp
45 5c860e29 2018-03-12 stsp struct cmd {
46 5c860e29 2018-03-12 stsp const char *cmd_name;
47 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
48 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
49 46a0db7d 2018-03-12 stsp const char *cmd_descr;
50 5c860e29 2018-03-12 stsp };
51 5c860e29 2018-03-12 stsp
52 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
53 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
54 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
55 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
56 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
57 5c860e29 2018-03-12 stsp
58 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
59 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
60 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
61 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
62 4ed7e80c 2018-05-20 stsp #ifdef notyet
63 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
64 4ed7e80c 2018-05-20 stsp #endif
65 5c860e29 2018-03-12 stsp
66 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
67 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
68 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
69 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
70 1b6b95a8 2018-03-12 stsp "show repository history" },
71 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
72 b00d56cd 2018-04-01 stsp "compare files and directories" },
73 404c43c4 2018-06-21 stsp { "blame", cmd_blame, usage_blame,
74 404c43c4 2018-06-21 stsp " show when lines in a file were changed" },
75 f42b1b34 2018-03-12 stsp #ifdef notyet
76 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
77 1b6b95a8 2018-03-12 stsp "show modification status of files" },
78 f42b1b34 2018-03-12 stsp #endif
79 5c860e29 2018-03-12 stsp };
80 5c860e29 2018-03-12 stsp
81 5c860e29 2018-03-12 stsp int
82 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
83 5c860e29 2018-03-12 stsp {
84 5c860e29 2018-03-12 stsp struct cmd *cmd;
85 5c860e29 2018-03-12 stsp unsigned int i;
86 5c860e29 2018-03-12 stsp int ch;
87 1b6b95a8 2018-03-12 stsp int hflag = 0;
88 5c860e29 2018-03-12 stsp
89 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
90 5c860e29 2018-03-12 stsp
91 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
92 5c860e29 2018-03-12 stsp switch (ch) {
93 1b6b95a8 2018-03-12 stsp case 'h':
94 1b6b95a8 2018-03-12 stsp hflag = 1;
95 1b6b95a8 2018-03-12 stsp break;
96 5c860e29 2018-03-12 stsp default:
97 5c860e29 2018-03-12 stsp usage();
98 5c860e29 2018-03-12 stsp /* NOTREACHED */
99 5c860e29 2018-03-12 stsp }
100 5c860e29 2018-03-12 stsp }
101 5c860e29 2018-03-12 stsp
102 5c860e29 2018-03-12 stsp argc -= optind;
103 5c860e29 2018-03-12 stsp argv += optind;
104 1e70621d 2018-03-27 stsp optind = 0;
105 5c860e29 2018-03-12 stsp
106 5c860e29 2018-03-12 stsp if (argc <= 0)
107 5c860e29 2018-03-12 stsp usage();
108 5c860e29 2018-03-12 stsp
109 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
110 d7d4f210 2018-03-12 stsp const struct got_error *error;
111 d7d4f210 2018-03-12 stsp
112 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
113 5c860e29 2018-03-12 stsp
114 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
115 5c860e29 2018-03-12 stsp continue;
116 5c860e29 2018-03-12 stsp
117 1b6b95a8 2018-03-12 stsp if (hflag)
118 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
119 1b6b95a8 2018-03-12 stsp
120 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
121 d7d4f210 2018-03-12 stsp if (error) {
122 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
123 d7d4f210 2018-03-12 stsp return 1;
124 d7d4f210 2018-03-12 stsp }
125 d7d4f210 2018-03-12 stsp
126 d7d4f210 2018-03-12 stsp return 0;
127 5c860e29 2018-03-12 stsp }
128 5c860e29 2018-03-12 stsp
129 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
130 5c860e29 2018-03-12 stsp return 1;
131 5c860e29 2018-03-12 stsp }
132 5c860e29 2018-03-12 stsp
133 4ed7e80c 2018-05-20 stsp __dead static void
134 5c860e29 2018-03-12 stsp usage(void)
135 5c860e29 2018-03-12 stsp {
136 46a0db7d 2018-03-12 stsp int i;
137 46a0db7d 2018-03-12 stsp
138 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
139 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
140 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
141 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
142 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
143 46a0db7d 2018-03-12 stsp }
144 5c860e29 2018-03-12 stsp exit(1);
145 5c860e29 2018-03-12 stsp }
146 5c860e29 2018-03-12 stsp
147 4ed7e80c 2018-05-20 stsp __dead static void
148 c09a553d 2018-03-12 stsp usage_checkout(void)
149 c09a553d 2018-03-12 stsp {
150 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
151 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
152 c09a553d 2018-03-12 stsp exit(1);
153 92a684f4 2018-03-12 stsp }
154 92a684f4 2018-03-12 stsp
155 92a684f4 2018-03-12 stsp static void
156 92a684f4 2018-03-12 stsp checkout_progress(void *arg, const char *path)
157 92a684f4 2018-03-12 stsp {
158 92a684f4 2018-03-12 stsp char *worktree_path = arg;
159 92a684f4 2018-03-12 stsp
160 92a684f4 2018-03-12 stsp while (path[0] == '/')
161 92a684f4 2018-03-12 stsp path++;
162 92a684f4 2018-03-12 stsp
163 92a684f4 2018-03-12 stsp printf("A %s/%s\n", worktree_path, path);
164 c09a553d 2018-03-12 stsp }
165 c09a553d 2018-03-12 stsp
166 4ed7e80c 2018-05-20 stsp static const struct got_error *
167 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
168 c09a553d 2018-03-12 stsp {
169 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
170 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
171 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
172 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
173 c09a553d 2018-03-12 stsp char *repo_path = NULL;
174 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
175 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
176 0bb8a95e 2018-03-12 stsp int ch;
177 c09a553d 2018-03-12 stsp
178 0bb8a95e 2018-03-12 stsp while ((ch = getopt(argc, argv, "p:")) != -1) {
179 0bb8a95e 2018-03-12 stsp switch (ch) {
180 0bb8a95e 2018-03-12 stsp case 'p':
181 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
182 0bb8a95e 2018-03-12 stsp break;
183 0bb8a95e 2018-03-12 stsp default:
184 0bb8a95e 2018-03-12 stsp usage();
185 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
186 0bb8a95e 2018-03-12 stsp }
187 0bb8a95e 2018-03-12 stsp }
188 0bb8a95e 2018-03-12 stsp
189 0bb8a95e 2018-03-12 stsp argc -= optind;
190 0bb8a95e 2018-03-12 stsp argv += optind;
191 0bb8a95e 2018-03-12 stsp
192 6715a751 2018-03-16 stsp #ifndef PROFILE
193 2178c42e 2018-04-22 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
194 c09a553d 2018-03-12 stsp err(1, "pledge");
195 6715a751 2018-03-16 stsp #endif
196 0bb8a95e 2018-03-12 stsp if (argc == 1) {
197 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
198 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
199 76089277 2018-04-01 stsp if (repo_path == NULL)
200 76089277 2018-04-01 stsp return got_error_from_errno();
201 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
202 76089277 2018-04-01 stsp if (cwd == NULL) {
203 76089277 2018-04-01 stsp error = got_error_from_errno();
204 76089277 2018-04-01 stsp goto done;
205 76089277 2018-04-01 stsp }
206 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
207 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
208 5d7c1dab 2018-04-01 stsp else
209 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
210 76089277 2018-04-01 stsp if (base == NULL) {
211 76089277 2018-04-01 stsp error = got_error_from_errno();
212 76089277 2018-04-01 stsp goto done;
213 76089277 2018-04-01 stsp }
214 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
215 c09a553d 2018-03-12 stsp if (dotgit)
216 c09a553d 2018-03-12 stsp *dotgit = '\0';
217 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
218 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
219 c09a553d 2018-03-12 stsp free(cwd);
220 76089277 2018-04-01 stsp goto done;
221 c09a553d 2018-03-12 stsp }
222 c09a553d 2018-03-12 stsp free(cwd);
223 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
224 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
225 76089277 2018-04-01 stsp if (repo_path == NULL) {
226 76089277 2018-04-01 stsp error = got_error_from_errno();
227 76089277 2018-04-01 stsp goto done;
228 76089277 2018-04-01 stsp }
229 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
230 76089277 2018-04-01 stsp if (worktree_path == NULL) {
231 76089277 2018-04-01 stsp error = got_error_from_errno();
232 76089277 2018-04-01 stsp goto done;
233 76089277 2018-04-01 stsp }
234 c09a553d 2018-03-12 stsp } else
235 c09a553d 2018-03-12 stsp usage_checkout();
236 c09a553d 2018-03-12 stsp
237 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
238 c09a553d 2018-03-12 stsp if (error != NULL)
239 c09a553d 2018-03-12 stsp goto done;
240 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
241 c09a553d 2018-03-12 stsp if (error != NULL)
242 c09a553d 2018-03-12 stsp goto done;
243 c09a553d 2018-03-12 stsp
244 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
245 c09a553d 2018-03-12 stsp if (error != NULL)
246 c09a553d 2018-03-12 stsp goto done;
247 c09a553d 2018-03-12 stsp
248 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
249 c09a553d 2018-03-12 stsp if (error != NULL)
250 c09a553d 2018-03-12 stsp goto done;
251 c09a553d 2018-03-12 stsp
252 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
253 92a684f4 2018-03-12 stsp checkout_progress, worktree_path);
254 c09a553d 2018-03-12 stsp if (error != NULL)
255 c09a553d 2018-03-12 stsp goto done;
256 c09a553d 2018-03-12 stsp
257 b65ae19a 2018-04-24 stsp printf("Checked out %s\n", worktree_path);
258 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
259 c09a553d 2018-03-12 stsp
260 c09a553d 2018-03-12 stsp done:
261 76089277 2018-04-01 stsp free(repo_path);
262 c09a553d 2018-03-12 stsp free(worktree_path);
263 c09a553d 2018-03-12 stsp return error;
264 c09a553d 2018-03-12 stsp }
265 c09a553d 2018-03-12 stsp
266 f42b1b34 2018-03-12 stsp static const struct got_error *
267 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
268 f42b1b34 2018-03-12 stsp struct got_repository *repo)
269 5c860e29 2018-03-12 stsp {
270 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
271 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
272 79109fed 2018-03-27 stsp struct got_object *obj;
273 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
274 79109fed 2018-03-27 stsp
275 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, commit->tree_id);
276 79109fed 2018-03-27 stsp if (err)
277 79109fed 2018-03-27 stsp return err;
278 79109fed 2018-03-27 stsp
279 79109fed 2018-03-27 stsp err = got_object_tree_open(&tree2, repo, obj);
280 79109fed 2018-03-27 stsp got_object_close(obj);
281 79109fed 2018-03-27 stsp if (err)
282 79109fed 2018-03-27 stsp return err;
283 79109fed 2018-03-27 stsp
284 79f35eb3 2018-06-11 stsp qid = SIMPLEQ_FIRST(&commit->parent_ids);
285 79f35eb3 2018-06-11 stsp if (qid != NULL) {
286 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
287 79109fed 2018-03-27 stsp
288 79f35eb3 2018-06-11 stsp err = got_object_open(&obj, repo, qid->id);
289 79109fed 2018-03-27 stsp if (err)
290 79109fed 2018-03-27 stsp return err;
291 79109fed 2018-03-27 stsp
292 79109fed 2018-03-27 stsp err = got_object_commit_open(&pcommit, repo, obj);
293 79109fed 2018-03-27 stsp got_object_close(obj);
294 79109fed 2018-03-27 stsp if (err)
295 79109fed 2018-03-27 stsp return err;
296 79109fed 2018-03-27 stsp
297 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, pcommit->tree_id);
298 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
299 79109fed 2018-03-27 stsp if (err)
300 79109fed 2018-03-27 stsp return err;
301 79109fed 2018-03-27 stsp err = got_object_tree_open(&tree1, repo, obj);
302 79109fed 2018-03-27 stsp got_object_close(obj);
303 79109fed 2018-03-27 stsp if (err)
304 79109fed 2018-03-27 stsp return err;
305 79109fed 2018-03-27 stsp }
306 79109fed 2018-03-27 stsp
307 79109fed 2018-03-27 stsp err = got_diff_tree(tree1, tree2, repo, stdout);
308 79109fed 2018-03-27 stsp if (tree1)
309 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
310 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
311 79109fed 2018-03-27 stsp return err;
312 79109fed 2018-03-27 stsp }
313 79109fed 2018-03-27 stsp
314 4bb494d5 2018-06-16 stsp static char *
315 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
316 6c281f94 2018-06-11 stsp {
317 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
318 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
319 6c281f94 2018-06-11 stsp if (p)
320 6c281f94 2018-06-11 stsp *p = '\0';
321 6c281f94 2018-06-11 stsp return s;
322 6c281f94 2018-06-11 stsp }
323 6c281f94 2018-06-11 stsp
324 79109fed 2018-03-27 stsp static const struct got_error *
325 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
326 1fd6d7ea 2018-06-13 stsp struct got_repository *repo, int show_patch)
327 79109fed 2018-03-27 stsp {
328 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
329 6c281f94 2018-06-11 stsp char *id_str, *datestr, *logmsg, *line;
330 6c281f94 2018-06-11 stsp char datebuf[26];
331 788c352e 2018-06-16 stsp time_t author_time, committer_time;
332 5c860e29 2018-03-12 stsp
333 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
334 8bf5b3c9 2018-03-17 stsp if (err)
335 8bf5b3c9 2018-03-17 stsp return err;
336 788c352e 2018-06-16 stsp
337 788c352e 2018-06-16 stsp author_time = mktime(&commit->tm_author);
338 788c352e 2018-06-16 stsp committer_time = mktime(&commit->tm_committer);
339 788c352e 2018-06-16 stsp #if 0
340 788c352e 2018-06-16 stsp /* This would express the date in committer's timezone. */
341 788c352e 2018-06-16 stsp author_time += commit->tm_author.tm_gmtoff;
342 788c352e 2018-06-16 stsp committer_time += commit->tm_committer.tm_gmtoff;
343 788c352e 2018-06-16 stsp #endif
344 5c860e29 2018-03-12 stsp
345 8bf5b3c9 2018-03-17 stsp printf("-----------------------------------------------\n");
346 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
347 832c249c 2018-06-10 stsp free(id_str);
348 788c352e 2018-06-16 stsp datestr = get_datestr(&author_time, datebuf);
349 788c352e 2018-06-16 stsp printf("author: %s %s UTC\n", commit->author, datestr);
350 6ede4e7a 2018-06-11 stsp if (strcmp(commit->author, commit->committer) != 0 ||
351 788c352e 2018-06-16 stsp author_time != committer_time) {
352 788c352e 2018-06-16 stsp datestr = get_datestr(&committer_time, datebuf);
353 788c352e 2018-06-16 stsp printf("committer: %s %s UTC\n", commit->committer, datestr);
354 6c281f94 2018-06-11 stsp }
355 3fe1abad 2018-06-10 stsp if (commit->nparents > 1) {
356 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
357 3fe1abad 2018-06-10 stsp int n = 1;
358 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
359 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
360 a0603db2 2018-06-10 stsp if (err)
361 a0603db2 2018-06-10 stsp return err;
362 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
363 a0603db2 2018-06-10 stsp free(id_str);
364 a0603db2 2018-06-10 stsp }
365 a0603db2 2018-06-10 stsp }
366 832c249c 2018-06-10 stsp
367 832c249c 2018-06-10 stsp logmsg = strdup(commit->logmsg);
368 832c249c 2018-06-10 stsp if (logmsg == NULL)
369 832c249c 2018-06-10 stsp return got_error_from_errno();
370 8bf5b3c9 2018-03-17 stsp
371 832c249c 2018-06-10 stsp do {
372 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
373 832c249c 2018-06-10 stsp if (line)
374 832c249c 2018-06-10 stsp printf(" %s\n", line);
375 832c249c 2018-06-10 stsp } while (line);
376 832c249c 2018-06-10 stsp free(logmsg);
377 832c249c 2018-06-10 stsp
378 971751ac 2018-03-27 stsp if (show_patch) {
379 79109fed 2018-03-27 stsp err = print_patch(commit, id, repo);
380 971751ac 2018-03-27 stsp if (err == 0)
381 971751ac 2018-03-27 stsp printf("\n");
382 971751ac 2018-03-27 stsp }
383 79109fed 2018-03-27 stsp
384 79109fed 2018-03-27 stsp return err;
385 f42b1b34 2018-03-12 stsp }
386 5c860e29 2018-03-12 stsp
387 f42b1b34 2018-03-12 stsp static const struct got_error *
388 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
389 04ca23f4 2018-07-16 stsp struct got_repository *repo, char *path, int show_patch, int limit,
390 0ed6ed4c 2018-06-13 stsp int first_parent_traversal)
391 f42b1b34 2018-03-12 stsp {
392 f42b1b34 2018-03-12 stsp const struct got_error *err;
393 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
394 04ca23f4 2018-07-16 stsp int ncommits, found_obj = 0;
395 6b765bce 2018-07-22 stsp int is_root_path = (strcmp(path, "/") == 0);
396 372ccdbb 2018-06-10 stsp
397 0ed6ed4c 2018-06-13 stsp err = got_commit_graph_open(&graph, root_id, first_parent_traversal,
398 0ed6ed4c 2018-06-13 stsp repo);
399 f42b1b34 2018-03-12 stsp if (err)
400 f42b1b34 2018-03-12 stsp return err;
401 372ccdbb 2018-06-10 stsp err = got_commit_graph_iter_start(graph, root_id);
402 372ccdbb 2018-06-10 stsp if (err)
403 fcc85cad 2018-07-22 stsp goto done;
404 372ccdbb 2018-06-10 stsp do {
405 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
406 372ccdbb 2018-06-10 stsp struct got_object_id *id;
407 8bf5b3c9 2018-03-17 stsp
408 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
409 372ccdbb 2018-06-10 stsp if (err) {
410 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
411 9ba79e04 2018-06-11 stsp err = NULL;
412 9ba79e04 2018-06-11 stsp break;
413 9ba79e04 2018-06-11 stsp }
414 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
415 372ccdbb 2018-06-10 stsp break;
416 372ccdbb 2018-06-10 stsp err = got_commit_graph_fetch_commits(&ncommits,
417 372ccdbb 2018-06-10 stsp graph, 1, repo);
418 372ccdbb 2018-06-10 stsp if (err)
419 372ccdbb 2018-06-10 stsp break;
420 372ccdbb 2018-06-10 stsp else
421 372ccdbb 2018-06-10 stsp continue;
422 7e665116 2018-04-02 stsp }
423 b43fbaa0 2018-06-11 stsp if (id == NULL)
424 7e665116 2018-04-02 stsp break;
425 b43fbaa0 2018-06-11 stsp
426 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
427 b43fbaa0 2018-06-11 stsp if (err)
428 fcc85cad 2018-07-22 stsp break;
429 fcc85cad 2018-07-22 stsp if (!is_root_path) {
430 04ca23f4 2018-07-16 stsp struct got_object *obj;
431 04ca23f4 2018-07-16 stsp struct got_object_qid *pid;
432 e456239b 2018-07-16 stsp int changed = 0;
433 04ca23f4 2018-07-16 stsp
434 04ca23f4 2018-07-16 stsp err = got_object_open_by_path(&obj, repo, id, path);
435 04ca23f4 2018-07-16 stsp if (err) {
436 fcc85cad 2018-07-22 stsp got_object_commit_close(commit);
437 04ca23f4 2018-07-16 stsp if (err->code == GOT_ERR_NO_OBJ && found_obj) {
438 04ca23f4 2018-07-16 stsp /*
439 fcc85cad 2018-07-22 stsp * History of the path stops here
440 fcc85cad 2018-07-22 stsp * on the current commit's branch.
441 fcc85cad 2018-07-22 stsp * Keep logging on other branches.
442 04ca23f4 2018-07-16 stsp */
443 04ca23f4 2018-07-16 stsp err = NULL;
444 fcc85cad 2018-07-22 stsp continue;
445 04ca23f4 2018-07-16 stsp }
446 04ca23f4 2018-07-16 stsp break;
447 04ca23f4 2018-07-16 stsp }
448 04ca23f4 2018-07-16 stsp found_obj = 1;
449 04ca23f4 2018-07-16 stsp
450 04ca23f4 2018-07-16 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
451 04ca23f4 2018-07-16 stsp if (pid != NULL) {
452 04ca23f4 2018-07-16 stsp struct got_object *pobj;
453 04ca23f4 2018-07-16 stsp err = got_object_open_by_path(&pobj, repo,
454 04ca23f4 2018-07-16 stsp pid->id, path);
455 04ca23f4 2018-07-16 stsp if (err) {
456 04ca23f4 2018-07-16 stsp if (err->code != GOT_ERR_NO_OBJ) {
457 04ca23f4 2018-07-16 stsp got_object_close(obj);
458 fcc85cad 2018-07-22 stsp got_object_commit_close(commit);
459 04ca23f4 2018-07-16 stsp break;
460 04ca23f4 2018-07-16 stsp }
461 04ca23f4 2018-07-16 stsp err = NULL;
462 04ca23f4 2018-07-16 stsp changed = 1;
463 04ca23f4 2018-07-16 stsp } else {
464 55ad411b 2018-07-16 stsp changed = (got_object_id_cmp(
465 04ca23f4 2018-07-16 stsp got_object_get_id(obj),
466 55ad411b 2018-07-16 stsp got_object_get_id(pobj)) != 0);
467 04ca23f4 2018-07-16 stsp got_object_close(pobj);
468 04ca23f4 2018-07-16 stsp }
469 04ca23f4 2018-07-16 stsp }
470 fcc85cad 2018-07-22 stsp got_object_close(obj);
471 04ca23f4 2018-07-16 stsp if (!changed) {
472 04ca23f4 2018-07-16 stsp got_object_commit_close(commit);
473 04ca23f4 2018-07-16 stsp continue;
474 04ca23f4 2018-07-16 stsp }
475 04ca23f4 2018-07-16 stsp }
476 1fd6d7ea 2018-06-13 stsp err = print_commit(commit, id, repo, show_patch);
477 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
478 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
479 7e665116 2018-04-02 stsp break;
480 372ccdbb 2018-06-10 stsp } while (ncommits > 0);
481 fcc85cad 2018-07-22 stsp done:
482 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
483 f42b1b34 2018-03-12 stsp return err;
484 f42b1b34 2018-03-12 stsp }
485 5c860e29 2018-03-12 stsp
486 4ed7e80c 2018-05-20 stsp __dead static void
487 6f3d1eb0 2018-03-12 stsp usage_log(void)
488 6f3d1eb0 2018-03-12 stsp {
489 6238ee32 2018-06-13 stsp fprintf(stderr, "usage: %s log [-c commit] [-f] [ -l N ] [-p] "
490 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
491 6f3d1eb0 2018-03-12 stsp exit(1);
492 6f3d1eb0 2018-03-12 stsp }
493 6f3d1eb0 2018-03-12 stsp
494 4ed7e80c 2018-05-20 stsp static const struct got_error *
495 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
496 f42b1b34 2018-03-12 stsp {
497 f42b1b34 2018-03-12 stsp const struct got_error *error;
498 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
499 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
500 d1f2edc9 2018-06-13 stsp struct got_object *obj = NULL;
501 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
502 d142fc45 2018-04-01 stsp char *start_commit = NULL;
503 79109fed 2018-03-27 stsp int ch;
504 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
505 64a96a6d 2018-04-01 stsp const char *errstr;
506 5c860e29 2018-03-12 stsp
507 6715a751 2018-03-16 stsp #ifndef PROFILE
508 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
509 f42b1b34 2018-03-12 stsp err(1, "pledge");
510 6715a751 2018-03-16 stsp #endif
511 79109fed 2018-03-27 stsp
512 04ca23f4 2018-07-16 stsp while ((ch = getopt(argc, argv, "pc:l:fr:")) != -1) {
513 79109fed 2018-03-27 stsp switch (ch) {
514 79109fed 2018-03-27 stsp case 'p':
515 79109fed 2018-03-27 stsp show_patch = 1;
516 d142fc45 2018-04-01 stsp break;
517 d142fc45 2018-04-01 stsp case 'c':
518 d142fc45 2018-04-01 stsp start_commit = optarg;
519 64a96a6d 2018-04-01 stsp break;
520 64a96a6d 2018-04-01 stsp case 'l':
521 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
522 64a96a6d 2018-04-01 stsp if (errstr != NULL)
523 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
524 79109fed 2018-03-27 stsp break;
525 0ed6ed4c 2018-06-13 stsp case 'f':
526 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
527 a0603db2 2018-06-10 stsp break;
528 04ca23f4 2018-07-16 stsp case 'r':
529 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
530 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
531 04ca23f4 2018-07-16 stsp err(1, "-r option");
532 04ca23f4 2018-07-16 stsp break;
533 79109fed 2018-03-27 stsp default:
534 79109fed 2018-03-27 stsp usage();
535 79109fed 2018-03-27 stsp /* NOTREACHED */
536 79109fed 2018-03-27 stsp }
537 79109fed 2018-03-27 stsp }
538 79109fed 2018-03-27 stsp
539 79109fed 2018-03-27 stsp argc -= optind;
540 79109fed 2018-03-27 stsp argv += optind;
541 79109fed 2018-03-27 stsp
542 04ca23f4 2018-07-16 stsp if (argc == 0)
543 04ca23f4 2018-07-16 stsp path = strdup("");
544 04ca23f4 2018-07-16 stsp else if (argc == 1)
545 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
546 04ca23f4 2018-07-16 stsp else
547 6f3d1eb0 2018-03-12 stsp usage_log();
548 04ca23f4 2018-07-16 stsp if (path == NULL)
549 04ca23f4 2018-07-16 stsp return got_error_from_errno();
550 f42b1b34 2018-03-12 stsp
551 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
552 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
553 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
554 04ca23f4 2018-07-16 stsp goto done;
555 04ca23f4 2018-07-16 stsp }
556 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
557 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
558 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
559 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
560 04ca23f4 2018-07-16 stsp goto done;
561 04ca23f4 2018-07-16 stsp }
562 04ca23f4 2018-07-16 stsp }
563 04ca23f4 2018-07-16 stsp
564 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
565 d7d4f210 2018-03-12 stsp if (error != NULL)
566 04ca23f4 2018-07-16 stsp goto done;
567 f42b1b34 2018-03-12 stsp
568 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
569 3235492e 2018-04-01 stsp struct got_reference *head_ref;
570 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
571 3235492e 2018-04-01 stsp if (error != NULL)
572 3235492e 2018-04-01 stsp return error;
573 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
574 3235492e 2018-04-01 stsp got_ref_close(head_ref);
575 3235492e 2018-04-01 stsp if (error != NULL)
576 3235492e 2018-04-01 stsp return error;
577 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
578 3235492e 2018-04-01 stsp } else {
579 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
580 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
581 3235492e 2018-04-01 stsp if (error == NULL) {
582 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
583 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
584 d1f2edc9 2018-06-13 stsp if (error != NULL)
585 d1f2edc9 2018-06-13 stsp return error;
586 d1f2edc9 2018-06-13 stsp error = got_object_open(&obj, repo, id);
587 d1f2edc9 2018-06-13 stsp if (error != NULL)
588 d1f2edc9 2018-06-13 stsp return error;
589 d1f2edc9 2018-06-13 stsp }
590 d1f2edc9 2018-06-13 stsp if (obj == NULL) {
591 d1f2edc9 2018-06-13 stsp error = got_object_open_by_id_str(&obj, repo,
592 d1f2edc9 2018-06-13 stsp start_commit);
593 d1f2edc9 2018-06-13 stsp if (error != NULL)
594 d1f2edc9 2018-06-13 stsp return error;
595 3235492e 2018-04-01 stsp id = got_object_get_id(obj);
596 3235492e 2018-04-01 stsp if (id == NULL)
597 3235492e 2018-04-01 stsp error = got_error_from_errno();
598 3235492e 2018-04-01 stsp }
599 3235492e 2018-04-01 stsp }
600 d7d4f210 2018-03-12 stsp if (error != NULL)
601 04ca23f4 2018-07-16 stsp goto done;
602 04ca23f4 2018-07-16 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
603 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
604 04ca23f4 2018-07-16 stsp goto done;
605 04ca23f4 2018-07-16 stsp }
606 04ca23f4 2018-07-16 stsp
607 04ca23f4 2018-07-16 stsp error = got_repo_map_path(&in_repo_path, repo, path);
608 04ca23f4 2018-07-16 stsp if (error != NULL)
609 04ca23f4 2018-07-16 stsp goto done;
610 04ca23f4 2018-07-16 stsp if (in_repo_path) {
611 04ca23f4 2018-07-16 stsp free(path);
612 04ca23f4 2018-07-16 stsp path = in_repo_path;
613 04ca23f4 2018-07-16 stsp }
614 04ca23f4 2018-07-16 stsp
615 04ca23f4 2018-07-16 stsp error = print_commits(obj, id, repo, path, show_patch,
616 04ca23f4 2018-07-16 stsp limit, first_parent_traversal);
617 04ca23f4 2018-07-16 stsp done:
618 04ca23f4 2018-07-16 stsp free(path);
619 04ca23f4 2018-07-16 stsp free(repo_path);
620 04ca23f4 2018-07-16 stsp free(cwd);
621 04ca23f4 2018-07-16 stsp if (obj)
622 04ca23f4 2018-07-16 stsp got_object_close(obj);
623 f42b1b34 2018-03-12 stsp free(id);
624 04ca23f4 2018-07-16 stsp if (repo)
625 04ca23f4 2018-07-16 stsp got_repo_close(repo);
626 8bf5b3c9 2018-03-17 stsp return error;
627 5c860e29 2018-03-12 stsp }
628 5c860e29 2018-03-12 stsp
629 4ed7e80c 2018-05-20 stsp __dead static void
630 3f8b7d6a 2018-04-01 stsp usage_diff(void)
631 3f8b7d6a 2018-04-01 stsp {
632 3f8b7d6a 2018-04-01 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
633 3f8b7d6a 2018-04-01 stsp getprogname());
634 3f8b7d6a 2018-04-01 stsp exit(1);
635 b00d56cd 2018-04-01 stsp }
636 b00d56cd 2018-04-01 stsp
637 4ed7e80c 2018-05-20 stsp static const struct got_error *
638 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
639 b00d56cd 2018-04-01 stsp {
640 b00d56cd 2018-04-01 stsp const struct got_error *error;
641 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
642 b00d56cd 2018-04-01 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
643 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
644 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
645 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
646 b00d56cd 2018-04-01 stsp int ch;
647 b00d56cd 2018-04-01 stsp
648 b00d56cd 2018-04-01 stsp #ifndef PROFILE
649 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
650 b00d56cd 2018-04-01 stsp err(1, "pledge");
651 b00d56cd 2018-04-01 stsp #endif
652 b00d56cd 2018-04-01 stsp
653 b00d56cd 2018-04-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
654 b00d56cd 2018-04-01 stsp switch (ch) {
655 b00d56cd 2018-04-01 stsp default:
656 b00d56cd 2018-04-01 stsp usage();
657 b00d56cd 2018-04-01 stsp /* NOTREACHED */
658 b00d56cd 2018-04-01 stsp }
659 b00d56cd 2018-04-01 stsp }
660 b00d56cd 2018-04-01 stsp
661 b00d56cd 2018-04-01 stsp argc -= optind;
662 b00d56cd 2018-04-01 stsp argv += optind;
663 b00d56cd 2018-04-01 stsp
664 b00d56cd 2018-04-01 stsp if (argc == 0) {
665 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
666 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
667 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
668 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
669 e1e3f570 2018-04-01 stsp return got_error_from_errno();
670 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
671 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
672 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
673 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
674 76089277 2018-04-01 stsp if (repo_path == NULL)
675 76089277 2018-04-01 stsp return got_error_from_errno();
676 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
677 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
678 b00d56cd 2018-04-01 stsp } else
679 b00d56cd 2018-04-01 stsp usage_diff();
680 b00d56cd 2018-04-01 stsp
681 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
682 76089277 2018-04-01 stsp free(repo_path);
683 b00d56cd 2018-04-01 stsp if (error != NULL)
684 b00d56cd 2018-04-01 stsp goto done;
685 b00d56cd 2018-04-01 stsp
686 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
687 b00d56cd 2018-04-01 stsp if (error == NULL) {
688 b00d56cd 2018-04-01 stsp id1 = got_object_get_id(obj1);
689 b00d56cd 2018-04-01 stsp if (id1 == NULL)
690 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
691 b00d56cd 2018-04-01 stsp }
692 b00d56cd 2018-04-01 stsp if (error != NULL)
693 b00d56cd 2018-04-01 stsp goto done;
694 b00d56cd 2018-04-01 stsp
695 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
696 b00d56cd 2018-04-01 stsp if (error == NULL) {
697 b00d56cd 2018-04-01 stsp id2 = got_object_get_id(obj2);
698 b00d56cd 2018-04-01 stsp if (id2 == NULL)
699 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
700 b00d56cd 2018-04-01 stsp }
701 b00d56cd 2018-04-01 stsp if (error != NULL)
702 b00d56cd 2018-04-01 stsp goto done;
703 b00d56cd 2018-04-01 stsp
704 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
705 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
706 b00d56cd 2018-04-01 stsp goto done;
707 b00d56cd 2018-04-01 stsp }
708 b00d56cd 2018-04-01 stsp
709 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
710 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
711 11528a82 2018-05-19 stsp error = got_diff_objects_as_blobs(obj1, obj2, repo, stdout);
712 b00d56cd 2018-04-01 stsp break;
713 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
714 11528a82 2018-05-19 stsp error = got_diff_objects_as_trees(obj1, obj2, repo, stdout);
715 b00d56cd 2018-04-01 stsp break;
716 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
717 11528a82 2018-05-19 stsp error = got_diff_objects_as_commits(obj1, obj2, repo, stdout);
718 b00d56cd 2018-04-01 stsp break;
719 b00d56cd 2018-04-01 stsp default:
720 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
721 b00d56cd 2018-04-01 stsp }
722 b00d56cd 2018-04-01 stsp
723 b00d56cd 2018-04-01 stsp done:
724 b00d56cd 2018-04-01 stsp if (obj1)
725 b00d56cd 2018-04-01 stsp got_object_close(obj1);
726 b00d56cd 2018-04-01 stsp if (obj2)
727 b00d56cd 2018-04-01 stsp got_object_close(obj2);
728 b00d56cd 2018-04-01 stsp if (id1)
729 b00d56cd 2018-04-01 stsp free(id1);
730 b00d56cd 2018-04-01 stsp if (id2)
731 b00d56cd 2018-04-01 stsp free(id2);
732 b00d56cd 2018-04-01 stsp if (repo)
733 b00d56cd 2018-04-01 stsp got_repo_close(repo);
734 b00d56cd 2018-04-01 stsp return error;
735 404c43c4 2018-06-21 stsp }
736 404c43c4 2018-06-21 stsp
737 404c43c4 2018-06-21 stsp __dead static void
738 404c43c4 2018-06-21 stsp usage_blame(void)
739 404c43c4 2018-06-21 stsp {
740 404c43c4 2018-06-21 stsp fprintf(stderr, "usage: %s blame [-c commit] [repository-path] path\n",
741 404c43c4 2018-06-21 stsp getprogname());
742 404c43c4 2018-06-21 stsp exit(1);
743 b00d56cd 2018-04-01 stsp }
744 b00d56cd 2018-04-01 stsp
745 404c43c4 2018-06-21 stsp static const struct got_error *
746 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
747 404c43c4 2018-06-21 stsp {
748 404c43c4 2018-06-21 stsp const struct got_error *error;
749 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
750 404c43c4 2018-06-21 stsp char *repo_path = NULL;
751 404c43c4 2018-06-21 stsp char *path = NULL;
752 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
753 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
754 404c43c4 2018-06-21 stsp int ch;
755 404c43c4 2018-06-21 stsp
756 404c43c4 2018-06-21 stsp #ifndef PROFILE
757 404c43c4 2018-06-21 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
758 404c43c4 2018-06-21 stsp err(1, "pledge");
759 404c43c4 2018-06-21 stsp #endif
760 404c43c4 2018-06-21 stsp
761 404c43c4 2018-06-21 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
762 404c43c4 2018-06-21 stsp switch (ch) {
763 404c43c4 2018-06-21 stsp case 'c':
764 404c43c4 2018-06-21 stsp commit_id_str = optarg;
765 404c43c4 2018-06-21 stsp break;
766 404c43c4 2018-06-21 stsp default:
767 404c43c4 2018-06-21 stsp usage();
768 404c43c4 2018-06-21 stsp /* NOTREACHED */
769 404c43c4 2018-06-21 stsp }
770 404c43c4 2018-06-21 stsp }
771 404c43c4 2018-06-21 stsp
772 404c43c4 2018-06-21 stsp argc -= optind;
773 404c43c4 2018-06-21 stsp argv += optind;
774 404c43c4 2018-06-21 stsp
775 404c43c4 2018-06-21 stsp if (argc == 0) {
776 404c43c4 2018-06-21 stsp usage_blame();
777 404c43c4 2018-06-21 stsp } else if (argc == 1) {
778 404c43c4 2018-06-21 stsp repo_path = getcwd(NULL, 0);
779 404c43c4 2018-06-21 stsp if (repo_path == NULL)
780 404c43c4 2018-06-21 stsp return got_error_from_errno();
781 404c43c4 2018-06-21 stsp path = argv[0];
782 404c43c4 2018-06-21 stsp } else if (argc == 2) {
783 404c43c4 2018-06-21 stsp repo_path = realpath(argv[0], NULL);
784 404c43c4 2018-06-21 stsp if (repo_path == NULL)
785 404c43c4 2018-06-21 stsp return got_error_from_errno();
786 404c43c4 2018-06-21 stsp path = argv[1];
787 404c43c4 2018-06-21 stsp } else
788 404c43c4 2018-06-21 stsp usage_blame();
789 404c43c4 2018-06-21 stsp
790 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
791 404c43c4 2018-06-21 stsp free(repo_path);
792 404c43c4 2018-06-21 stsp if (error != NULL)
793 404c43c4 2018-06-21 stsp goto done;
794 404c43c4 2018-06-21 stsp
795 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
796 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
797 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
798 404c43c4 2018-06-21 stsp if (error != NULL)
799 404c43c4 2018-06-21 stsp return error;
800 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
801 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
802 404c43c4 2018-06-21 stsp if (error != NULL)
803 404c43c4 2018-06-21 stsp return error;
804 404c43c4 2018-06-21 stsp } else {
805 404c43c4 2018-06-21 stsp struct got_object *obj;
806 404c43c4 2018-06-21 stsp error = got_object_open_by_id_str(&obj, repo, commit_id_str);
807 404c43c4 2018-06-21 stsp if (error != NULL)
808 404c43c4 2018-06-21 stsp return error;
809 404c43c4 2018-06-21 stsp commit_id = got_object_get_id(obj);
810 404c43c4 2018-06-21 stsp if (commit_id == NULL)
811 404c43c4 2018-06-21 stsp error = got_error_from_errno();
812 404c43c4 2018-06-21 stsp got_object_close(obj);
813 404c43c4 2018-06-21 stsp }
814 404c43c4 2018-06-21 stsp
815 404c43c4 2018-06-21 stsp error = got_blame(path, commit_id, repo, stdout);
816 404c43c4 2018-06-21 stsp done:
817 404c43c4 2018-06-21 stsp free(commit_id);
818 404c43c4 2018-06-21 stsp if (repo)
819 404c43c4 2018-06-21 stsp got_repo_close(repo);
820 404c43c4 2018-06-21 stsp return error;
821 404c43c4 2018-06-21 stsp }
822 404c43c4 2018-06-21 stsp
823 f42b1b34 2018-03-12 stsp #ifdef notyet
824 4ed7e80c 2018-05-20 stsp static const struct got_error *
825 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
826 5c860e29 2018-03-12 stsp {
827 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
828 5c860e29 2018-03-12 stsp git_status_list *status;
829 5c860e29 2018-03-12 stsp git_status_options statusopts;
830 5c860e29 2018-03-12 stsp size_t i;
831 5c860e29 2018-03-12 stsp
832 5c860e29 2018-03-12 stsp git_libgit2_init();
833 5c860e29 2018-03-12 stsp
834 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
835 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
836 5c860e29 2018-03-12 stsp
837 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
838 5c860e29 2018-03-12 stsp errx(1, "bar repository");
839 5c860e29 2018-03-12 stsp
840 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
841 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
842 5c860e29 2018-03-12 stsp
843 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
844 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
845 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
846 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
847 5c860e29 2018-03-12 stsp
848 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
849 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
850 5c860e29 2018-03-12 stsp
851 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
852 5c860e29 2018-03-12 stsp const git_status_entry *se;
853 5c860e29 2018-03-12 stsp
854 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
855 5c860e29 2018-03-12 stsp switch (se->status) {
856 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
857 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
858 5c860e29 2018-03-12 stsp break;
859 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
860 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
861 5c860e29 2018-03-12 stsp break;
862 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
863 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
864 5c860e29 2018-03-12 stsp break;
865 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
866 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
867 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
868 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
869 5c860e29 2018-03-12 stsp break;
870 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
871 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
872 5c860e29 2018-03-12 stsp break;
873 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
874 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
875 5c860e29 2018-03-12 stsp break;
876 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
877 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
878 5c860e29 2018-03-12 stsp break;
879 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
880 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
881 5c860e29 2018-03-12 stsp break;
882 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
883 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
884 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
885 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
886 5c860e29 2018-03-12 stsp break;
887 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
888 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
889 5c860e29 2018-03-12 stsp break;
890 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
891 5c860e29 2018-03-12 stsp default:
892 5c860e29 2018-03-12 stsp break;
893 5c860e29 2018-03-12 stsp }
894 5c860e29 2018-03-12 stsp }
895 5c860e29 2018-03-12 stsp
896 5c860e29 2018-03-12 stsp git_status_list_free(status);
897 5c860e29 2018-03-12 stsp git_repository_free(repo);
898 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
899 5c860e29 2018-03-12 stsp
900 5c860e29 2018-03-12 stsp return 0;
901 5c860e29 2018-03-12 stsp }
902 f42b1b34 2018-03-12 stsp #endif