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 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
194 ad242220 2018-09-08 stsp == -1)
195 c09a553d 2018-03-12 stsp err(1, "pledge");
196 6715a751 2018-03-16 stsp #endif
197 0bb8a95e 2018-03-12 stsp if (argc == 1) {
198 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
199 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
200 76089277 2018-04-01 stsp if (repo_path == NULL)
201 76089277 2018-04-01 stsp return got_error_from_errno();
202 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
203 76089277 2018-04-01 stsp if (cwd == NULL) {
204 76089277 2018-04-01 stsp error = got_error_from_errno();
205 76089277 2018-04-01 stsp goto done;
206 76089277 2018-04-01 stsp }
207 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
208 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
209 5d7c1dab 2018-04-01 stsp else
210 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
211 76089277 2018-04-01 stsp if (base == NULL) {
212 76089277 2018-04-01 stsp error = got_error_from_errno();
213 76089277 2018-04-01 stsp goto done;
214 76089277 2018-04-01 stsp }
215 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
216 c09a553d 2018-03-12 stsp if (dotgit)
217 c09a553d 2018-03-12 stsp *dotgit = '\0';
218 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
219 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
220 c09a553d 2018-03-12 stsp free(cwd);
221 76089277 2018-04-01 stsp goto done;
222 c09a553d 2018-03-12 stsp }
223 c09a553d 2018-03-12 stsp free(cwd);
224 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
225 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
226 76089277 2018-04-01 stsp if (repo_path == NULL) {
227 76089277 2018-04-01 stsp error = got_error_from_errno();
228 76089277 2018-04-01 stsp goto done;
229 76089277 2018-04-01 stsp }
230 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
231 76089277 2018-04-01 stsp if (worktree_path == NULL) {
232 76089277 2018-04-01 stsp error = got_error_from_errno();
233 76089277 2018-04-01 stsp goto done;
234 76089277 2018-04-01 stsp }
235 c09a553d 2018-03-12 stsp } else
236 c09a553d 2018-03-12 stsp usage_checkout();
237 c09a553d 2018-03-12 stsp
238 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
239 c09a553d 2018-03-12 stsp if (error != NULL)
240 c09a553d 2018-03-12 stsp goto done;
241 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
242 c09a553d 2018-03-12 stsp if (error != NULL)
243 c09a553d 2018-03-12 stsp goto done;
244 c09a553d 2018-03-12 stsp
245 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
246 c09a553d 2018-03-12 stsp if (error != NULL)
247 c09a553d 2018-03-12 stsp goto done;
248 c09a553d 2018-03-12 stsp
249 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
250 c09a553d 2018-03-12 stsp if (error != NULL)
251 c09a553d 2018-03-12 stsp goto done;
252 c09a553d 2018-03-12 stsp
253 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
254 92a684f4 2018-03-12 stsp checkout_progress, worktree_path);
255 c09a553d 2018-03-12 stsp if (error != NULL)
256 c09a553d 2018-03-12 stsp goto done;
257 c09a553d 2018-03-12 stsp
258 b65ae19a 2018-04-24 stsp printf("Checked out %s\n", worktree_path);
259 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
260 c09a553d 2018-03-12 stsp
261 c09a553d 2018-03-12 stsp done:
262 76089277 2018-04-01 stsp free(repo_path);
263 c09a553d 2018-03-12 stsp free(worktree_path);
264 c09a553d 2018-03-12 stsp return error;
265 c09a553d 2018-03-12 stsp }
266 c09a553d 2018-03-12 stsp
267 f42b1b34 2018-03-12 stsp static const struct got_error *
268 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
269 f42b1b34 2018-03-12 stsp struct got_repository *repo)
270 5c860e29 2018-03-12 stsp {
271 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
272 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
273 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
274 79109fed 2018-03-27 stsp
275 117e771c 2018-07-23 stsp err = got_object_open_as_tree(&tree2, 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 79f35eb3 2018-06-11 stsp qid = SIMPLEQ_FIRST(&commit->parent_ids);
280 79f35eb3 2018-06-11 stsp if (qid != NULL) {
281 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
282 79109fed 2018-03-27 stsp
283 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
284 79109fed 2018-03-27 stsp if (err)
285 79109fed 2018-03-27 stsp return err;
286 79109fed 2018-03-27 stsp
287 117e771c 2018-07-23 stsp err = got_object_open_as_tree(&tree1, repo, pcommit->tree_id);
288 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
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
293 79109fed 2018-03-27 stsp err = got_diff_tree(tree1, tree2, repo, stdout);
294 79109fed 2018-03-27 stsp if (tree1)
295 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
296 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
297 79109fed 2018-03-27 stsp return err;
298 79109fed 2018-03-27 stsp }
299 79109fed 2018-03-27 stsp
300 4bb494d5 2018-06-16 stsp static char *
301 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
302 6c281f94 2018-06-11 stsp {
303 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
304 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
305 6c281f94 2018-06-11 stsp if (p)
306 6c281f94 2018-06-11 stsp *p = '\0';
307 6c281f94 2018-06-11 stsp return s;
308 6c281f94 2018-06-11 stsp }
309 6c281f94 2018-06-11 stsp
310 79109fed 2018-03-27 stsp static const struct got_error *
311 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
312 1fd6d7ea 2018-06-13 stsp struct got_repository *repo, int show_patch)
313 79109fed 2018-03-27 stsp {
314 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
315 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
316 6c281f94 2018-06-11 stsp char datebuf[26];
317 788c352e 2018-06-16 stsp time_t author_time, committer_time;
318 5c860e29 2018-03-12 stsp
319 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
320 8bf5b3c9 2018-03-17 stsp if (err)
321 8bf5b3c9 2018-03-17 stsp return err;
322 788c352e 2018-06-16 stsp
323 788c352e 2018-06-16 stsp author_time = mktime(&commit->tm_author);
324 788c352e 2018-06-16 stsp committer_time = mktime(&commit->tm_committer);
325 788c352e 2018-06-16 stsp #if 0
326 788c352e 2018-06-16 stsp /* This would express the date in committer's timezone. */
327 788c352e 2018-06-16 stsp author_time += commit->tm_author.tm_gmtoff;
328 788c352e 2018-06-16 stsp committer_time += commit->tm_committer.tm_gmtoff;
329 788c352e 2018-06-16 stsp #endif
330 5c860e29 2018-03-12 stsp
331 8bf5b3c9 2018-03-17 stsp printf("-----------------------------------------------\n");
332 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
333 832c249c 2018-06-10 stsp free(id_str);
334 788c352e 2018-06-16 stsp datestr = get_datestr(&author_time, datebuf);
335 788c352e 2018-06-16 stsp printf("author: %s %s UTC\n", commit->author, datestr);
336 6ede4e7a 2018-06-11 stsp if (strcmp(commit->author, commit->committer) != 0 ||
337 788c352e 2018-06-16 stsp author_time != committer_time) {
338 788c352e 2018-06-16 stsp datestr = get_datestr(&committer_time, datebuf);
339 788c352e 2018-06-16 stsp printf("committer: %s %s UTC\n", commit->committer, datestr);
340 6c281f94 2018-06-11 stsp }
341 3fe1abad 2018-06-10 stsp if (commit->nparents > 1) {
342 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
343 3fe1abad 2018-06-10 stsp int n = 1;
344 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
345 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
346 a0603db2 2018-06-10 stsp if (err)
347 a0603db2 2018-06-10 stsp return err;
348 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
349 a0603db2 2018-06-10 stsp free(id_str);
350 a0603db2 2018-06-10 stsp }
351 a0603db2 2018-06-10 stsp }
352 832c249c 2018-06-10 stsp
353 621015ac 2018-07-23 stsp logmsg0 = strdup(commit->logmsg);
354 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
355 832c249c 2018-06-10 stsp return got_error_from_errno();
356 8bf5b3c9 2018-03-17 stsp
357 621015ac 2018-07-23 stsp logmsg = logmsg0;
358 832c249c 2018-06-10 stsp do {
359 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
360 832c249c 2018-06-10 stsp if (line)
361 832c249c 2018-06-10 stsp printf(" %s\n", line);
362 832c249c 2018-06-10 stsp } while (line);
363 621015ac 2018-07-23 stsp free(logmsg0);
364 832c249c 2018-06-10 stsp
365 971751ac 2018-03-27 stsp if (show_patch) {
366 79109fed 2018-03-27 stsp err = print_patch(commit, id, repo);
367 971751ac 2018-03-27 stsp if (err == 0)
368 971751ac 2018-03-27 stsp printf("\n");
369 971751ac 2018-03-27 stsp }
370 79109fed 2018-03-27 stsp
371 79109fed 2018-03-27 stsp return err;
372 f42b1b34 2018-03-12 stsp }
373 5c860e29 2018-03-12 stsp
374 f42b1b34 2018-03-12 stsp static const struct got_error *
375 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
376 04ca23f4 2018-07-16 stsp struct got_repository *repo, char *path, int show_patch, int limit,
377 0ed6ed4c 2018-06-13 stsp int first_parent_traversal)
378 f42b1b34 2018-03-12 stsp {
379 f42b1b34 2018-03-12 stsp const struct got_error *err;
380 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
381 04ca23f4 2018-07-16 stsp int ncommits, found_obj = 0;
382 6b765bce 2018-07-22 stsp int is_root_path = (strcmp(path, "/") == 0);
383 372ccdbb 2018-06-10 stsp
384 0ed6ed4c 2018-06-13 stsp err = got_commit_graph_open(&graph, root_id, first_parent_traversal,
385 0ed6ed4c 2018-06-13 stsp repo);
386 f42b1b34 2018-03-12 stsp if (err)
387 f42b1b34 2018-03-12 stsp return err;
388 372ccdbb 2018-06-10 stsp err = got_commit_graph_iter_start(graph, root_id);
389 372ccdbb 2018-06-10 stsp if (err)
390 fcc85cad 2018-07-22 stsp goto done;
391 372ccdbb 2018-06-10 stsp do {
392 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
393 372ccdbb 2018-06-10 stsp struct got_object_id *id;
394 8bf5b3c9 2018-03-17 stsp
395 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
396 372ccdbb 2018-06-10 stsp if (err) {
397 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
398 9ba79e04 2018-06-11 stsp err = NULL;
399 9ba79e04 2018-06-11 stsp break;
400 9ba79e04 2018-06-11 stsp }
401 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
402 372ccdbb 2018-06-10 stsp break;
403 372ccdbb 2018-06-10 stsp err = got_commit_graph_fetch_commits(&ncommits,
404 372ccdbb 2018-06-10 stsp graph, 1, repo);
405 372ccdbb 2018-06-10 stsp if (err)
406 372ccdbb 2018-06-10 stsp break;
407 372ccdbb 2018-06-10 stsp else
408 372ccdbb 2018-06-10 stsp continue;
409 7e665116 2018-04-02 stsp }
410 b43fbaa0 2018-06-11 stsp if (id == NULL)
411 7e665116 2018-04-02 stsp break;
412 b43fbaa0 2018-06-11 stsp
413 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
414 b43fbaa0 2018-06-11 stsp if (err)
415 fcc85cad 2018-07-22 stsp break;
416 fcc85cad 2018-07-22 stsp if (!is_root_path) {
417 04ca23f4 2018-07-16 stsp struct got_object *obj;
418 04ca23f4 2018-07-16 stsp struct got_object_qid *pid;
419 e456239b 2018-07-16 stsp int changed = 0;
420 04ca23f4 2018-07-16 stsp
421 04ca23f4 2018-07-16 stsp err = got_object_open_by_path(&obj, repo, id, path);
422 04ca23f4 2018-07-16 stsp if (err) {
423 fcc85cad 2018-07-22 stsp got_object_commit_close(commit);
424 04ca23f4 2018-07-16 stsp if (err->code == GOT_ERR_NO_OBJ && found_obj) {
425 04ca23f4 2018-07-16 stsp /*
426 fcc85cad 2018-07-22 stsp * History of the path stops here
427 fcc85cad 2018-07-22 stsp * on the current commit's branch.
428 fcc85cad 2018-07-22 stsp * Keep logging on other branches.
429 04ca23f4 2018-07-16 stsp */
430 04ca23f4 2018-07-16 stsp err = NULL;
431 fcc85cad 2018-07-22 stsp continue;
432 04ca23f4 2018-07-16 stsp }
433 04ca23f4 2018-07-16 stsp break;
434 04ca23f4 2018-07-16 stsp }
435 04ca23f4 2018-07-16 stsp found_obj = 1;
436 04ca23f4 2018-07-16 stsp
437 04ca23f4 2018-07-16 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
438 04ca23f4 2018-07-16 stsp if (pid != NULL) {
439 04ca23f4 2018-07-16 stsp struct got_object *pobj;
440 04ca23f4 2018-07-16 stsp err = got_object_open_by_path(&pobj, repo,
441 04ca23f4 2018-07-16 stsp pid->id, path);
442 04ca23f4 2018-07-16 stsp if (err) {
443 04ca23f4 2018-07-16 stsp if (err->code != GOT_ERR_NO_OBJ) {
444 04ca23f4 2018-07-16 stsp got_object_close(obj);
445 fcc85cad 2018-07-22 stsp got_object_commit_close(commit);
446 04ca23f4 2018-07-16 stsp break;
447 04ca23f4 2018-07-16 stsp }
448 04ca23f4 2018-07-16 stsp err = NULL;
449 04ca23f4 2018-07-16 stsp changed = 1;
450 04ca23f4 2018-07-16 stsp } else {
451 9c6e101a 2018-07-23 stsp struct got_object_id *id, *pid;
452 9c6e101a 2018-07-23 stsp id = got_object_get_id(obj);
453 9c6e101a 2018-07-23 stsp if (id == NULL) {
454 9c6e101a 2018-07-23 stsp err = got_error_from_errno();
455 472e0cad 2018-07-23 stsp got_object_close(obj);
456 9c6e101a 2018-07-23 stsp break;
457 9c6e101a 2018-07-23 stsp }
458 9c6e101a 2018-07-23 stsp pid = got_object_get_id(pobj);
459 9c6e101a 2018-07-23 stsp if (pid == NULL) {
460 9c6e101a 2018-07-23 stsp err = got_error_from_errno();
461 472e0cad 2018-07-23 stsp free(id);
462 472e0cad 2018-07-23 stsp got_object_close(obj);
463 472e0cad 2018-07-23 stsp got_object_close(pobj);
464 9c6e101a 2018-07-23 stsp break;
465 9c6e101a 2018-07-23 stsp }
466 9c6e101a 2018-07-23 stsp changed =
467 9c6e101a 2018-07-23 stsp (got_object_id_cmp(id, pid) != 0);
468 04ca23f4 2018-07-16 stsp got_object_close(pobj);
469 9c6e101a 2018-07-23 stsp free(id);
470 9c6e101a 2018-07-23 stsp free(pid);
471 04ca23f4 2018-07-16 stsp }
472 04ca23f4 2018-07-16 stsp }
473 fcc85cad 2018-07-22 stsp got_object_close(obj);
474 04ca23f4 2018-07-16 stsp if (!changed) {
475 04ca23f4 2018-07-16 stsp got_object_commit_close(commit);
476 04ca23f4 2018-07-16 stsp continue;
477 04ca23f4 2018-07-16 stsp }
478 04ca23f4 2018-07-16 stsp }
479 1fd6d7ea 2018-06-13 stsp err = print_commit(commit, id, repo, show_patch);
480 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
481 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
482 7e665116 2018-04-02 stsp break;
483 372ccdbb 2018-06-10 stsp } while (ncommits > 0);
484 fcc85cad 2018-07-22 stsp done:
485 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
486 f42b1b34 2018-03-12 stsp return err;
487 f42b1b34 2018-03-12 stsp }
488 5c860e29 2018-03-12 stsp
489 4ed7e80c 2018-05-20 stsp __dead static void
490 6f3d1eb0 2018-03-12 stsp usage_log(void)
491 6f3d1eb0 2018-03-12 stsp {
492 6238ee32 2018-06-13 stsp fprintf(stderr, "usage: %s log [-c commit] [-f] [ -l N ] [-p] "
493 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
494 6f3d1eb0 2018-03-12 stsp exit(1);
495 6f3d1eb0 2018-03-12 stsp }
496 6f3d1eb0 2018-03-12 stsp
497 4ed7e80c 2018-05-20 stsp static const struct got_error *
498 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
499 f42b1b34 2018-03-12 stsp {
500 f42b1b34 2018-03-12 stsp const struct got_error *error;
501 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
502 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
503 d1f2edc9 2018-06-13 stsp struct got_object *obj = NULL;
504 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
505 d142fc45 2018-04-01 stsp char *start_commit = NULL;
506 79109fed 2018-03-27 stsp int ch;
507 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
508 64a96a6d 2018-04-01 stsp const char *errstr;
509 5c860e29 2018-03-12 stsp
510 6715a751 2018-03-16 stsp #ifndef PROFILE
511 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
512 ad242220 2018-09-08 stsp == -1)
513 f42b1b34 2018-03-12 stsp err(1, "pledge");
514 6715a751 2018-03-16 stsp #endif
515 79109fed 2018-03-27 stsp
516 04ca23f4 2018-07-16 stsp while ((ch = getopt(argc, argv, "pc:l:fr:")) != -1) {
517 79109fed 2018-03-27 stsp switch (ch) {
518 79109fed 2018-03-27 stsp case 'p':
519 79109fed 2018-03-27 stsp show_patch = 1;
520 d142fc45 2018-04-01 stsp break;
521 d142fc45 2018-04-01 stsp case 'c':
522 d142fc45 2018-04-01 stsp start_commit = optarg;
523 64a96a6d 2018-04-01 stsp break;
524 64a96a6d 2018-04-01 stsp case 'l':
525 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
526 64a96a6d 2018-04-01 stsp if (errstr != NULL)
527 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
528 79109fed 2018-03-27 stsp break;
529 0ed6ed4c 2018-06-13 stsp case 'f':
530 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
531 a0603db2 2018-06-10 stsp break;
532 04ca23f4 2018-07-16 stsp case 'r':
533 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
534 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
535 04ca23f4 2018-07-16 stsp err(1, "-r option");
536 04ca23f4 2018-07-16 stsp break;
537 79109fed 2018-03-27 stsp default:
538 79109fed 2018-03-27 stsp usage();
539 79109fed 2018-03-27 stsp /* NOTREACHED */
540 79109fed 2018-03-27 stsp }
541 79109fed 2018-03-27 stsp }
542 79109fed 2018-03-27 stsp
543 79109fed 2018-03-27 stsp argc -= optind;
544 79109fed 2018-03-27 stsp argv += optind;
545 79109fed 2018-03-27 stsp
546 04ca23f4 2018-07-16 stsp if (argc == 0)
547 04ca23f4 2018-07-16 stsp path = strdup("");
548 04ca23f4 2018-07-16 stsp else if (argc == 1)
549 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
550 04ca23f4 2018-07-16 stsp else
551 6f3d1eb0 2018-03-12 stsp usage_log();
552 04ca23f4 2018-07-16 stsp if (path == NULL)
553 04ca23f4 2018-07-16 stsp return got_error_from_errno();
554 f42b1b34 2018-03-12 stsp
555 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
556 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
557 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
558 04ca23f4 2018-07-16 stsp goto done;
559 04ca23f4 2018-07-16 stsp }
560 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
561 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
562 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
563 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
564 04ca23f4 2018-07-16 stsp goto done;
565 04ca23f4 2018-07-16 stsp }
566 04ca23f4 2018-07-16 stsp }
567 04ca23f4 2018-07-16 stsp
568 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
569 d7d4f210 2018-03-12 stsp if (error != NULL)
570 04ca23f4 2018-07-16 stsp goto done;
571 f42b1b34 2018-03-12 stsp
572 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
573 3235492e 2018-04-01 stsp struct got_reference *head_ref;
574 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
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_ref_resolve(&id, repo, head_ref);
578 3235492e 2018-04-01 stsp got_ref_close(head_ref);
579 3235492e 2018-04-01 stsp if (error != NULL)
580 3235492e 2018-04-01 stsp return error;
581 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
582 3235492e 2018-04-01 stsp } else {
583 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
584 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
585 3235492e 2018-04-01 stsp if (error == NULL) {
586 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
587 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
588 d1f2edc9 2018-06-13 stsp if (error != NULL)
589 d1f2edc9 2018-06-13 stsp return error;
590 d1f2edc9 2018-06-13 stsp error = got_object_open(&obj, repo, id);
591 d1f2edc9 2018-06-13 stsp if (error != NULL)
592 d1f2edc9 2018-06-13 stsp return error;
593 d1f2edc9 2018-06-13 stsp }
594 d1f2edc9 2018-06-13 stsp if (obj == NULL) {
595 d1f2edc9 2018-06-13 stsp error = got_object_open_by_id_str(&obj, repo,
596 d1f2edc9 2018-06-13 stsp start_commit);
597 d1f2edc9 2018-06-13 stsp if (error != NULL)
598 d1f2edc9 2018-06-13 stsp return error;
599 3235492e 2018-04-01 stsp id = got_object_get_id(obj);
600 3235492e 2018-04-01 stsp if (id == NULL)
601 3235492e 2018-04-01 stsp error = got_error_from_errno();
602 3235492e 2018-04-01 stsp }
603 3235492e 2018-04-01 stsp }
604 d7d4f210 2018-03-12 stsp if (error != NULL)
605 04ca23f4 2018-07-16 stsp goto done;
606 04ca23f4 2018-07-16 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
607 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
608 04ca23f4 2018-07-16 stsp goto done;
609 04ca23f4 2018-07-16 stsp }
610 04ca23f4 2018-07-16 stsp
611 04ca23f4 2018-07-16 stsp error = got_repo_map_path(&in_repo_path, repo, path);
612 04ca23f4 2018-07-16 stsp if (error != NULL)
613 04ca23f4 2018-07-16 stsp goto done;
614 04ca23f4 2018-07-16 stsp if (in_repo_path) {
615 04ca23f4 2018-07-16 stsp free(path);
616 04ca23f4 2018-07-16 stsp path = in_repo_path;
617 04ca23f4 2018-07-16 stsp }
618 04ca23f4 2018-07-16 stsp
619 04ca23f4 2018-07-16 stsp error = print_commits(obj, id, repo, path, show_patch,
620 04ca23f4 2018-07-16 stsp limit, first_parent_traversal);
621 04ca23f4 2018-07-16 stsp done:
622 04ca23f4 2018-07-16 stsp free(path);
623 04ca23f4 2018-07-16 stsp free(repo_path);
624 04ca23f4 2018-07-16 stsp free(cwd);
625 04ca23f4 2018-07-16 stsp if (obj)
626 04ca23f4 2018-07-16 stsp got_object_close(obj);
627 f42b1b34 2018-03-12 stsp free(id);
628 ad242220 2018-09-08 stsp if (repo) {
629 ad242220 2018-09-08 stsp const struct got_error *repo_error;
630 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
631 ad242220 2018-09-08 stsp if (error == NULL)
632 ad242220 2018-09-08 stsp error = repo_error;
633 ad242220 2018-09-08 stsp }
634 8bf5b3c9 2018-03-17 stsp return error;
635 5c860e29 2018-03-12 stsp }
636 5c860e29 2018-03-12 stsp
637 4ed7e80c 2018-05-20 stsp __dead static void
638 3f8b7d6a 2018-04-01 stsp usage_diff(void)
639 3f8b7d6a 2018-04-01 stsp {
640 3f8b7d6a 2018-04-01 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
641 3f8b7d6a 2018-04-01 stsp getprogname());
642 3f8b7d6a 2018-04-01 stsp exit(1);
643 b00d56cd 2018-04-01 stsp }
644 b00d56cd 2018-04-01 stsp
645 4ed7e80c 2018-05-20 stsp static const struct got_error *
646 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
647 b00d56cd 2018-04-01 stsp {
648 b00d56cd 2018-04-01 stsp const struct got_error *error;
649 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
650 b00d56cd 2018-04-01 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
651 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
652 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
653 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
654 b00d56cd 2018-04-01 stsp int ch;
655 b00d56cd 2018-04-01 stsp
656 b00d56cd 2018-04-01 stsp #ifndef PROFILE
657 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
658 ad242220 2018-09-08 stsp == -1)
659 b00d56cd 2018-04-01 stsp err(1, "pledge");
660 b00d56cd 2018-04-01 stsp #endif
661 b00d56cd 2018-04-01 stsp
662 b00d56cd 2018-04-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
663 b00d56cd 2018-04-01 stsp switch (ch) {
664 b00d56cd 2018-04-01 stsp default:
665 b00d56cd 2018-04-01 stsp usage();
666 b00d56cd 2018-04-01 stsp /* NOTREACHED */
667 b00d56cd 2018-04-01 stsp }
668 b00d56cd 2018-04-01 stsp }
669 b00d56cd 2018-04-01 stsp
670 b00d56cd 2018-04-01 stsp argc -= optind;
671 b00d56cd 2018-04-01 stsp argv += optind;
672 b00d56cd 2018-04-01 stsp
673 b00d56cd 2018-04-01 stsp if (argc == 0) {
674 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
675 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
676 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
677 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
678 e1e3f570 2018-04-01 stsp return got_error_from_errno();
679 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
680 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
681 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
682 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
683 76089277 2018-04-01 stsp if (repo_path == NULL)
684 76089277 2018-04-01 stsp return got_error_from_errno();
685 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
686 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
687 b00d56cd 2018-04-01 stsp } else
688 b00d56cd 2018-04-01 stsp usage_diff();
689 b00d56cd 2018-04-01 stsp
690 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
691 76089277 2018-04-01 stsp free(repo_path);
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(&obj1, repo, obj_id_str1);
696 b00d56cd 2018-04-01 stsp if (error == NULL) {
697 b00d56cd 2018-04-01 stsp id1 = got_object_get_id(obj1);
698 b00d56cd 2018-04-01 stsp if (id1 == 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 error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
705 b00d56cd 2018-04-01 stsp if (error == NULL) {
706 b00d56cd 2018-04-01 stsp id2 = got_object_get_id(obj2);
707 b00d56cd 2018-04-01 stsp if (id2 == NULL)
708 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
709 b00d56cd 2018-04-01 stsp }
710 b00d56cd 2018-04-01 stsp if (error != NULL)
711 b00d56cd 2018-04-01 stsp goto done;
712 b00d56cd 2018-04-01 stsp
713 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
714 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
715 b00d56cd 2018-04-01 stsp goto done;
716 b00d56cd 2018-04-01 stsp }
717 b00d56cd 2018-04-01 stsp
718 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
719 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
720 11528a82 2018-05-19 stsp error = got_diff_objects_as_blobs(obj1, obj2, repo, stdout);
721 b00d56cd 2018-04-01 stsp break;
722 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
723 11528a82 2018-05-19 stsp error = got_diff_objects_as_trees(obj1, obj2, repo, stdout);
724 b00d56cd 2018-04-01 stsp break;
725 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
726 11528a82 2018-05-19 stsp error = got_diff_objects_as_commits(obj1, obj2, repo, stdout);
727 b00d56cd 2018-04-01 stsp break;
728 b00d56cd 2018-04-01 stsp default:
729 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
730 b00d56cd 2018-04-01 stsp }
731 b00d56cd 2018-04-01 stsp
732 b00d56cd 2018-04-01 stsp done:
733 b00d56cd 2018-04-01 stsp if (obj1)
734 b00d56cd 2018-04-01 stsp got_object_close(obj1);
735 b00d56cd 2018-04-01 stsp if (obj2)
736 b00d56cd 2018-04-01 stsp got_object_close(obj2);
737 b00d56cd 2018-04-01 stsp if (id1)
738 b00d56cd 2018-04-01 stsp free(id1);
739 b00d56cd 2018-04-01 stsp if (id2)
740 b00d56cd 2018-04-01 stsp free(id2);
741 ad242220 2018-09-08 stsp if (repo) {
742 ad242220 2018-09-08 stsp const struct got_error *repo_error;
743 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
744 ad242220 2018-09-08 stsp if (error == NULL)
745 ad242220 2018-09-08 stsp error = repo_error;
746 ad242220 2018-09-08 stsp }
747 b00d56cd 2018-04-01 stsp return error;
748 404c43c4 2018-06-21 stsp }
749 404c43c4 2018-06-21 stsp
750 404c43c4 2018-06-21 stsp __dead static void
751 404c43c4 2018-06-21 stsp usage_blame(void)
752 404c43c4 2018-06-21 stsp {
753 66bea077 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
754 404c43c4 2018-06-21 stsp getprogname());
755 404c43c4 2018-06-21 stsp exit(1);
756 b00d56cd 2018-04-01 stsp }
757 b00d56cd 2018-04-01 stsp
758 404c43c4 2018-06-21 stsp static const struct got_error *
759 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
760 404c43c4 2018-06-21 stsp {
761 404c43c4 2018-06-21 stsp const struct got_error *error;
762 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
763 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
764 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
765 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
766 404c43c4 2018-06-21 stsp int ch;
767 404c43c4 2018-06-21 stsp
768 404c43c4 2018-06-21 stsp #ifndef PROFILE
769 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
770 ad242220 2018-09-08 stsp == -1)
771 404c43c4 2018-06-21 stsp err(1, "pledge");
772 404c43c4 2018-06-21 stsp #endif
773 404c43c4 2018-06-21 stsp
774 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
775 404c43c4 2018-06-21 stsp switch (ch) {
776 404c43c4 2018-06-21 stsp case 'c':
777 404c43c4 2018-06-21 stsp commit_id_str = optarg;
778 404c43c4 2018-06-21 stsp break;
779 66bea077 2018-08-02 stsp case 'r':
780 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
781 66bea077 2018-08-02 stsp if (repo_path == NULL)
782 66bea077 2018-08-02 stsp err(1, "-r option");
783 66bea077 2018-08-02 stsp break;
784 404c43c4 2018-06-21 stsp default:
785 404c43c4 2018-06-21 stsp usage();
786 404c43c4 2018-06-21 stsp /* NOTREACHED */
787 404c43c4 2018-06-21 stsp }
788 404c43c4 2018-06-21 stsp }
789 404c43c4 2018-06-21 stsp
790 404c43c4 2018-06-21 stsp argc -= optind;
791 404c43c4 2018-06-21 stsp argv += optind;
792 404c43c4 2018-06-21 stsp
793 a39318fd 2018-08-02 stsp if (argc == 1)
794 404c43c4 2018-06-21 stsp path = argv[0];
795 a39318fd 2018-08-02 stsp else
796 404c43c4 2018-06-21 stsp usage_blame();
797 404c43c4 2018-06-21 stsp
798 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
799 66bea077 2018-08-02 stsp if (cwd == NULL) {
800 66bea077 2018-08-02 stsp error = got_error_from_errno();
801 66bea077 2018-08-02 stsp goto done;
802 66bea077 2018-08-02 stsp }
803 66bea077 2018-08-02 stsp if (repo_path == NULL) {
804 66bea077 2018-08-02 stsp repo_path = strdup(cwd);
805 66bea077 2018-08-02 stsp if (repo_path == NULL) {
806 66bea077 2018-08-02 stsp error = got_error_from_errno();
807 66bea077 2018-08-02 stsp goto done;
808 66bea077 2018-08-02 stsp }
809 66bea077 2018-08-02 stsp }
810 66bea077 2018-08-02 stsp
811 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
812 404c43c4 2018-06-21 stsp if (error != NULL)
813 404c43c4 2018-06-21 stsp goto done;
814 404c43c4 2018-06-21 stsp
815 66bea077 2018-08-02 stsp error = got_repo_map_path(&in_repo_path, repo, path);
816 66bea077 2018-08-02 stsp if (error != NULL)
817 66bea077 2018-08-02 stsp goto done;
818 66bea077 2018-08-02 stsp
819 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
820 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
821 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
822 404c43c4 2018-06-21 stsp if (error != NULL)
823 66bea077 2018-08-02 stsp goto done;
824 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
825 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
826 404c43c4 2018-06-21 stsp if (error != NULL)
827 66bea077 2018-08-02 stsp goto done;
828 404c43c4 2018-06-21 stsp } else {
829 404c43c4 2018-06-21 stsp struct got_object *obj;
830 404c43c4 2018-06-21 stsp error = got_object_open_by_id_str(&obj, repo, commit_id_str);
831 404c43c4 2018-06-21 stsp if (error != NULL)
832 66bea077 2018-08-02 stsp goto done;
833 404c43c4 2018-06-21 stsp commit_id = got_object_get_id(obj);
834 404c43c4 2018-06-21 stsp if (commit_id == NULL)
835 404c43c4 2018-06-21 stsp error = got_error_from_errno();
836 404c43c4 2018-06-21 stsp got_object_close(obj);
837 404c43c4 2018-06-21 stsp }
838 404c43c4 2018-06-21 stsp
839 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
840 404c43c4 2018-06-21 stsp done:
841 66bea077 2018-08-02 stsp free(in_repo_path);
842 66bea077 2018-08-02 stsp free(repo_path);
843 66bea077 2018-08-02 stsp free(cwd);
844 404c43c4 2018-06-21 stsp free(commit_id);
845 ad242220 2018-09-08 stsp if (repo) {
846 ad242220 2018-09-08 stsp const struct got_error *repo_error;
847 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
848 ad242220 2018-09-08 stsp if (error == NULL)
849 ad242220 2018-09-08 stsp error = repo_error;
850 ad242220 2018-09-08 stsp }
851 404c43c4 2018-06-21 stsp return error;
852 404c43c4 2018-06-21 stsp }
853 404c43c4 2018-06-21 stsp
854 f42b1b34 2018-03-12 stsp #ifdef notyet
855 4ed7e80c 2018-05-20 stsp static const struct got_error *
856 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
857 5c860e29 2018-03-12 stsp {
858 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
859 5c860e29 2018-03-12 stsp git_status_list *status;
860 5c860e29 2018-03-12 stsp git_status_options statusopts;
861 5c860e29 2018-03-12 stsp size_t i;
862 5c860e29 2018-03-12 stsp
863 5c860e29 2018-03-12 stsp git_libgit2_init();
864 5c860e29 2018-03-12 stsp
865 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
866 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
867 5c860e29 2018-03-12 stsp
868 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
869 5c860e29 2018-03-12 stsp errx(1, "bar repository");
870 5c860e29 2018-03-12 stsp
871 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
872 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
873 5c860e29 2018-03-12 stsp
874 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
875 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
876 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
877 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
878 5c860e29 2018-03-12 stsp
879 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
880 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
881 5c860e29 2018-03-12 stsp
882 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
883 5c860e29 2018-03-12 stsp const git_status_entry *se;
884 5c860e29 2018-03-12 stsp
885 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
886 5c860e29 2018-03-12 stsp switch (se->status) {
887 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
888 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
889 5c860e29 2018-03-12 stsp break;
890 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
891 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
892 5c860e29 2018-03-12 stsp break;
893 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
894 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
895 5c860e29 2018-03-12 stsp break;
896 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
897 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
898 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
899 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
900 5c860e29 2018-03-12 stsp break;
901 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
902 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
903 5c860e29 2018-03-12 stsp break;
904 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
905 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
906 5c860e29 2018-03-12 stsp break;
907 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
908 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
909 5c860e29 2018-03-12 stsp break;
910 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
911 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
912 5c860e29 2018-03-12 stsp break;
913 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
914 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
915 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
916 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
917 5c860e29 2018-03-12 stsp break;
918 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
919 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
920 5c860e29 2018-03-12 stsp break;
921 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
922 5c860e29 2018-03-12 stsp default:
923 5c860e29 2018-03-12 stsp break;
924 5c860e29 2018-03-12 stsp }
925 5c860e29 2018-03-12 stsp }
926 5c860e29 2018-03-12 stsp
927 5c860e29 2018-03-12 stsp git_status_list_free(status);
928 5c860e29 2018-03-12 stsp git_repository_free(repo);
929 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
930 5c860e29 2018-03-12 stsp
931 5c860e29 2018-03-12 stsp return 0;
932 5c860e29 2018-03-12 stsp }
933 f42b1b34 2018-03-12 stsp #endif