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 f6861a81 2018-09-13 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 0dcf3e9c 2018-09-15 stsp printf("from: %s\n", commit->author);
335 dab5fe87 2018-09-14 stsp datestr = get_datestr(&committer_time, datebuf);
336 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
337 dab5fe87 2018-09-14 stsp if (strcmp(commit->author, commit->committer) != 0)
338 0dcf3e9c 2018-09-15 stsp printf("via: %s\n", commit->committer);
339 3fe1abad 2018-06-10 stsp if (commit->nparents > 1) {
340 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
341 3fe1abad 2018-06-10 stsp int n = 1;
342 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
343 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
344 a0603db2 2018-06-10 stsp if (err)
345 a0603db2 2018-06-10 stsp return err;
346 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
347 a0603db2 2018-06-10 stsp free(id_str);
348 a0603db2 2018-06-10 stsp }
349 a0603db2 2018-06-10 stsp }
350 832c249c 2018-06-10 stsp
351 621015ac 2018-07-23 stsp logmsg0 = strdup(commit->logmsg);
352 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
353 832c249c 2018-06-10 stsp return got_error_from_errno();
354 8bf5b3c9 2018-03-17 stsp
355 621015ac 2018-07-23 stsp logmsg = logmsg0;
356 832c249c 2018-06-10 stsp do {
357 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
358 832c249c 2018-06-10 stsp if (line)
359 832c249c 2018-06-10 stsp printf(" %s\n", line);
360 832c249c 2018-06-10 stsp } while (line);
361 621015ac 2018-07-23 stsp free(logmsg0);
362 832c249c 2018-06-10 stsp
363 971751ac 2018-03-27 stsp if (show_patch) {
364 79109fed 2018-03-27 stsp err = print_patch(commit, id, repo);
365 971751ac 2018-03-27 stsp if (err == 0)
366 971751ac 2018-03-27 stsp printf("\n");
367 971751ac 2018-03-27 stsp }
368 79109fed 2018-03-27 stsp
369 79109fed 2018-03-27 stsp return err;
370 f42b1b34 2018-03-12 stsp }
371 5c860e29 2018-03-12 stsp
372 f42b1b34 2018-03-12 stsp static const struct got_error *
373 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
374 04ca23f4 2018-07-16 stsp struct got_repository *repo, char *path, int show_patch, int limit,
375 0ed6ed4c 2018-06-13 stsp int first_parent_traversal)
376 f42b1b34 2018-03-12 stsp {
377 f42b1b34 2018-03-12 stsp const struct got_error *err;
378 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
379 04ca23f4 2018-07-16 stsp int ncommits, found_obj = 0;
380 6b765bce 2018-07-22 stsp int is_root_path = (strcmp(path, "/") == 0);
381 372ccdbb 2018-06-10 stsp
382 0ed6ed4c 2018-06-13 stsp err = got_commit_graph_open(&graph, root_id, first_parent_traversal,
383 0ed6ed4c 2018-06-13 stsp repo);
384 f42b1b34 2018-03-12 stsp if (err)
385 f42b1b34 2018-03-12 stsp return err;
386 372ccdbb 2018-06-10 stsp err = got_commit_graph_iter_start(graph, root_id);
387 372ccdbb 2018-06-10 stsp if (err)
388 fcc85cad 2018-07-22 stsp goto done;
389 372ccdbb 2018-06-10 stsp do {
390 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
391 372ccdbb 2018-06-10 stsp struct got_object_id *id;
392 8bf5b3c9 2018-03-17 stsp
393 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
394 372ccdbb 2018-06-10 stsp if (err) {
395 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
396 9ba79e04 2018-06-11 stsp err = NULL;
397 9ba79e04 2018-06-11 stsp break;
398 9ba79e04 2018-06-11 stsp }
399 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
400 372ccdbb 2018-06-10 stsp break;
401 372ccdbb 2018-06-10 stsp err = got_commit_graph_fetch_commits(&ncommits,
402 372ccdbb 2018-06-10 stsp graph, 1, repo);
403 372ccdbb 2018-06-10 stsp if (err)
404 372ccdbb 2018-06-10 stsp break;
405 372ccdbb 2018-06-10 stsp else
406 372ccdbb 2018-06-10 stsp continue;
407 7e665116 2018-04-02 stsp }
408 b43fbaa0 2018-06-11 stsp if (id == NULL)
409 7e665116 2018-04-02 stsp break;
410 b43fbaa0 2018-06-11 stsp
411 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
412 b43fbaa0 2018-06-11 stsp if (err)
413 fcc85cad 2018-07-22 stsp break;
414 fcc85cad 2018-07-22 stsp if (!is_root_path) {
415 04ca23f4 2018-07-16 stsp struct got_object *obj;
416 04ca23f4 2018-07-16 stsp struct got_object_qid *pid;
417 e456239b 2018-07-16 stsp int changed = 0;
418 04ca23f4 2018-07-16 stsp
419 04ca23f4 2018-07-16 stsp err = got_object_open_by_path(&obj, repo, id, path);
420 04ca23f4 2018-07-16 stsp if (err) {
421 fcc85cad 2018-07-22 stsp got_object_commit_close(commit);
422 04ca23f4 2018-07-16 stsp if (err->code == GOT_ERR_NO_OBJ && found_obj) {
423 04ca23f4 2018-07-16 stsp /*
424 fcc85cad 2018-07-22 stsp * History of the path stops here
425 fcc85cad 2018-07-22 stsp * on the current commit's branch.
426 fcc85cad 2018-07-22 stsp * Keep logging on other branches.
427 04ca23f4 2018-07-16 stsp */
428 04ca23f4 2018-07-16 stsp err = NULL;
429 fcc85cad 2018-07-22 stsp continue;
430 04ca23f4 2018-07-16 stsp }
431 04ca23f4 2018-07-16 stsp break;
432 04ca23f4 2018-07-16 stsp }
433 04ca23f4 2018-07-16 stsp found_obj = 1;
434 04ca23f4 2018-07-16 stsp
435 04ca23f4 2018-07-16 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
436 04ca23f4 2018-07-16 stsp if (pid != NULL) {
437 04ca23f4 2018-07-16 stsp struct got_object *pobj;
438 04ca23f4 2018-07-16 stsp err = got_object_open_by_path(&pobj, repo,
439 04ca23f4 2018-07-16 stsp pid->id, path);
440 04ca23f4 2018-07-16 stsp if (err) {
441 04ca23f4 2018-07-16 stsp if (err->code != GOT_ERR_NO_OBJ) {
442 04ca23f4 2018-07-16 stsp got_object_close(obj);
443 fcc85cad 2018-07-22 stsp got_object_commit_close(commit);
444 04ca23f4 2018-07-16 stsp break;
445 04ca23f4 2018-07-16 stsp }
446 04ca23f4 2018-07-16 stsp err = NULL;
447 04ca23f4 2018-07-16 stsp changed = 1;
448 04ca23f4 2018-07-16 stsp } else {
449 9c6e101a 2018-07-23 stsp struct got_object_id *id, *pid;
450 9c6e101a 2018-07-23 stsp id = got_object_get_id(obj);
451 9c6e101a 2018-07-23 stsp if (id == NULL) {
452 9c6e101a 2018-07-23 stsp err = got_error_from_errno();
453 472e0cad 2018-07-23 stsp got_object_close(obj);
454 9c6e101a 2018-07-23 stsp break;
455 9c6e101a 2018-07-23 stsp }
456 9c6e101a 2018-07-23 stsp pid = got_object_get_id(pobj);
457 9c6e101a 2018-07-23 stsp if (pid == NULL) {
458 9c6e101a 2018-07-23 stsp err = got_error_from_errno();
459 472e0cad 2018-07-23 stsp free(id);
460 472e0cad 2018-07-23 stsp got_object_close(obj);
461 472e0cad 2018-07-23 stsp got_object_close(pobj);
462 9c6e101a 2018-07-23 stsp break;
463 9c6e101a 2018-07-23 stsp }
464 9c6e101a 2018-07-23 stsp changed =
465 9c6e101a 2018-07-23 stsp (got_object_id_cmp(id, pid) != 0);
466 04ca23f4 2018-07-16 stsp got_object_close(pobj);
467 9c6e101a 2018-07-23 stsp free(id);
468 9c6e101a 2018-07-23 stsp free(pid);
469 04ca23f4 2018-07-16 stsp }
470 04ca23f4 2018-07-16 stsp }
471 fcc85cad 2018-07-22 stsp got_object_close(obj);
472 04ca23f4 2018-07-16 stsp if (!changed) {
473 04ca23f4 2018-07-16 stsp got_object_commit_close(commit);
474 04ca23f4 2018-07-16 stsp continue;
475 04ca23f4 2018-07-16 stsp }
476 04ca23f4 2018-07-16 stsp }
477 1fd6d7ea 2018-06-13 stsp err = print_commit(commit, id, repo, show_patch);
478 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
479 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
480 7e665116 2018-04-02 stsp break;
481 372ccdbb 2018-06-10 stsp } while (ncommits > 0);
482 fcc85cad 2018-07-22 stsp done:
483 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
484 f42b1b34 2018-03-12 stsp return err;
485 f42b1b34 2018-03-12 stsp }
486 5c860e29 2018-03-12 stsp
487 4ed7e80c 2018-05-20 stsp __dead static void
488 6f3d1eb0 2018-03-12 stsp usage_log(void)
489 6f3d1eb0 2018-03-12 stsp {
490 6238ee32 2018-06-13 stsp fprintf(stderr, "usage: %s log [-c commit] [-f] [ -l N ] [-p] "
491 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
492 6f3d1eb0 2018-03-12 stsp exit(1);
493 6f3d1eb0 2018-03-12 stsp }
494 6f3d1eb0 2018-03-12 stsp
495 4ed7e80c 2018-05-20 stsp static const struct got_error *
496 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
497 f42b1b34 2018-03-12 stsp {
498 f42b1b34 2018-03-12 stsp const struct got_error *error;
499 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
500 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
501 d1f2edc9 2018-06-13 stsp struct got_object *obj = NULL;
502 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
503 d142fc45 2018-04-01 stsp char *start_commit = NULL;
504 79109fed 2018-03-27 stsp int ch;
505 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
506 64a96a6d 2018-04-01 stsp const char *errstr;
507 5c860e29 2018-03-12 stsp
508 6715a751 2018-03-16 stsp #ifndef PROFILE
509 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
510 ad242220 2018-09-08 stsp == -1)
511 f42b1b34 2018-03-12 stsp err(1, "pledge");
512 6715a751 2018-03-16 stsp #endif
513 79109fed 2018-03-27 stsp
514 04ca23f4 2018-07-16 stsp while ((ch = getopt(argc, argv, "pc:l:fr:")) != -1) {
515 79109fed 2018-03-27 stsp switch (ch) {
516 79109fed 2018-03-27 stsp case 'p':
517 79109fed 2018-03-27 stsp show_patch = 1;
518 d142fc45 2018-04-01 stsp break;
519 d142fc45 2018-04-01 stsp case 'c':
520 d142fc45 2018-04-01 stsp start_commit = optarg;
521 64a96a6d 2018-04-01 stsp break;
522 64a96a6d 2018-04-01 stsp case 'l':
523 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
524 64a96a6d 2018-04-01 stsp if (errstr != NULL)
525 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
526 79109fed 2018-03-27 stsp break;
527 0ed6ed4c 2018-06-13 stsp case 'f':
528 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
529 a0603db2 2018-06-10 stsp break;
530 04ca23f4 2018-07-16 stsp case 'r':
531 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
532 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
533 04ca23f4 2018-07-16 stsp err(1, "-r option");
534 04ca23f4 2018-07-16 stsp break;
535 79109fed 2018-03-27 stsp default:
536 79109fed 2018-03-27 stsp usage();
537 79109fed 2018-03-27 stsp /* NOTREACHED */
538 79109fed 2018-03-27 stsp }
539 79109fed 2018-03-27 stsp }
540 79109fed 2018-03-27 stsp
541 79109fed 2018-03-27 stsp argc -= optind;
542 79109fed 2018-03-27 stsp argv += optind;
543 79109fed 2018-03-27 stsp
544 04ca23f4 2018-07-16 stsp if (argc == 0)
545 04ca23f4 2018-07-16 stsp path = strdup("");
546 04ca23f4 2018-07-16 stsp else if (argc == 1)
547 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
548 04ca23f4 2018-07-16 stsp else
549 6f3d1eb0 2018-03-12 stsp usage_log();
550 04ca23f4 2018-07-16 stsp if (path == NULL)
551 04ca23f4 2018-07-16 stsp return got_error_from_errno();
552 f42b1b34 2018-03-12 stsp
553 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
554 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
555 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
556 04ca23f4 2018-07-16 stsp goto done;
557 04ca23f4 2018-07-16 stsp }
558 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
559 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
560 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
561 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
562 04ca23f4 2018-07-16 stsp goto done;
563 04ca23f4 2018-07-16 stsp }
564 04ca23f4 2018-07-16 stsp }
565 04ca23f4 2018-07-16 stsp
566 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
567 d7d4f210 2018-03-12 stsp if (error != NULL)
568 04ca23f4 2018-07-16 stsp goto done;
569 f42b1b34 2018-03-12 stsp
570 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
571 3235492e 2018-04-01 stsp struct got_reference *head_ref;
572 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
573 3235492e 2018-04-01 stsp if (error != NULL)
574 3235492e 2018-04-01 stsp return error;
575 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
576 3235492e 2018-04-01 stsp got_ref_close(head_ref);
577 3235492e 2018-04-01 stsp if (error != NULL)
578 3235492e 2018-04-01 stsp return error;
579 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
580 3235492e 2018-04-01 stsp } else {
581 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
582 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
583 3235492e 2018-04-01 stsp if (error == NULL) {
584 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
585 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
586 d1f2edc9 2018-06-13 stsp if (error != NULL)
587 d1f2edc9 2018-06-13 stsp return error;
588 d1f2edc9 2018-06-13 stsp error = got_object_open(&obj, repo, id);
589 d1f2edc9 2018-06-13 stsp if (error != NULL)
590 d1f2edc9 2018-06-13 stsp return error;
591 d1f2edc9 2018-06-13 stsp }
592 d1f2edc9 2018-06-13 stsp if (obj == NULL) {
593 d1f2edc9 2018-06-13 stsp error = got_object_open_by_id_str(&obj, repo,
594 d1f2edc9 2018-06-13 stsp start_commit);
595 d1f2edc9 2018-06-13 stsp if (error != NULL)
596 d1f2edc9 2018-06-13 stsp return error;
597 3235492e 2018-04-01 stsp id = got_object_get_id(obj);
598 3235492e 2018-04-01 stsp if (id == NULL)
599 3235492e 2018-04-01 stsp error = got_error_from_errno();
600 3235492e 2018-04-01 stsp }
601 3235492e 2018-04-01 stsp }
602 d7d4f210 2018-03-12 stsp if (error != NULL)
603 04ca23f4 2018-07-16 stsp goto done;
604 04ca23f4 2018-07-16 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
605 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
606 04ca23f4 2018-07-16 stsp goto done;
607 04ca23f4 2018-07-16 stsp }
608 04ca23f4 2018-07-16 stsp
609 04ca23f4 2018-07-16 stsp error = got_repo_map_path(&in_repo_path, repo, path);
610 04ca23f4 2018-07-16 stsp if (error != NULL)
611 04ca23f4 2018-07-16 stsp goto done;
612 04ca23f4 2018-07-16 stsp if (in_repo_path) {
613 04ca23f4 2018-07-16 stsp free(path);
614 04ca23f4 2018-07-16 stsp path = in_repo_path;
615 04ca23f4 2018-07-16 stsp }
616 04ca23f4 2018-07-16 stsp
617 04ca23f4 2018-07-16 stsp error = print_commits(obj, id, repo, path, show_patch,
618 04ca23f4 2018-07-16 stsp limit, first_parent_traversal);
619 04ca23f4 2018-07-16 stsp done:
620 04ca23f4 2018-07-16 stsp free(path);
621 04ca23f4 2018-07-16 stsp free(repo_path);
622 04ca23f4 2018-07-16 stsp free(cwd);
623 04ca23f4 2018-07-16 stsp if (obj)
624 04ca23f4 2018-07-16 stsp got_object_close(obj);
625 f42b1b34 2018-03-12 stsp free(id);
626 ad242220 2018-09-08 stsp if (repo) {
627 ad242220 2018-09-08 stsp const struct got_error *repo_error;
628 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
629 ad242220 2018-09-08 stsp if (error == NULL)
630 ad242220 2018-09-08 stsp error = repo_error;
631 ad242220 2018-09-08 stsp }
632 8bf5b3c9 2018-03-17 stsp return error;
633 5c860e29 2018-03-12 stsp }
634 5c860e29 2018-03-12 stsp
635 4ed7e80c 2018-05-20 stsp __dead static void
636 3f8b7d6a 2018-04-01 stsp usage_diff(void)
637 3f8b7d6a 2018-04-01 stsp {
638 3f8b7d6a 2018-04-01 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
639 3f8b7d6a 2018-04-01 stsp getprogname());
640 3f8b7d6a 2018-04-01 stsp exit(1);
641 b00d56cd 2018-04-01 stsp }
642 b00d56cd 2018-04-01 stsp
643 4ed7e80c 2018-05-20 stsp static const struct got_error *
644 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
645 b00d56cd 2018-04-01 stsp {
646 b00d56cd 2018-04-01 stsp const struct got_error *error;
647 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
648 b00d56cd 2018-04-01 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
649 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
650 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
651 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
652 b00d56cd 2018-04-01 stsp int ch;
653 b00d56cd 2018-04-01 stsp
654 b00d56cd 2018-04-01 stsp #ifndef PROFILE
655 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
656 ad242220 2018-09-08 stsp == -1)
657 b00d56cd 2018-04-01 stsp err(1, "pledge");
658 b00d56cd 2018-04-01 stsp #endif
659 b00d56cd 2018-04-01 stsp
660 b00d56cd 2018-04-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
661 b00d56cd 2018-04-01 stsp switch (ch) {
662 b00d56cd 2018-04-01 stsp default:
663 b00d56cd 2018-04-01 stsp usage();
664 b00d56cd 2018-04-01 stsp /* NOTREACHED */
665 b00d56cd 2018-04-01 stsp }
666 b00d56cd 2018-04-01 stsp }
667 b00d56cd 2018-04-01 stsp
668 b00d56cd 2018-04-01 stsp argc -= optind;
669 b00d56cd 2018-04-01 stsp argv += optind;
670 b00d56cd 2018-04-01 stsp
671 b00d56cd 2018-04-01 stsp if (argc == 0) {
672 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
673 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
674 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
675 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
676 e1e3f570 2018-04-01 stsp return got_error_from_errno();
677 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
678 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
679 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
680 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
681 76089277 2018-04-01 stsp if (repo_path == NULL)
682 76089277 2018-04-01 stsp return got_error_from_errno();
683 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
684 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
685 b00d56cd 2018-04-01 stsp } else
686 b00d56cd 2018-04-01 stsp usage_diff();
687 b00d56cd 2018-04-01 stsp
688 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
689 76089277 2018-04-01 stsp free(repo_path);
690 b00d56cd 2018-04-01 stsp if (error != NULL)
691 b00d56cd 2018-04-01 stsp goto done;
692 b00d56cd 2018-04-01 stsp
693 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
694 b00d56cd 2018-04-01 stsp if (error == NULL) {
695 b00d56cd 2018-04-01 stsp id1 = got_object_get_id(obj1);
696 b00d56cd 2018-04-01 stsp if (id1 == NULL)
697 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
698 b00d56cd 2018-04-01 stsp }
699 b00d56cd 2018-04-01 stsp if (error != NULL)
700 b00d56cd 2018-04-01 stsp goto done;
701 b00d56cd 2018-04-01 stsp
702 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
703 b00d56cd 2018-04-01 stsp if (error == NULL) {
704 b00d56cd 2018-04-01 stsp id2 = got_object_get_id(obj2);
705 b00d56cd 2018-04-01 stsp if (id2 == NULL)
706 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
707 b00d56cd 2018-04-01 stsp }
708 b00d56cd 2018-04-01 stsp if (error != NULL)
709 b00d56cd 2018-04-01 stsp goto done;
710 b00d56cd 2018-04-01 stsp
711 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
712 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
713 b00d56cd 2018-04-01 stsp goto done;
714 b00d56cd 2018-04-01 stsp }
715 b00d56cd 2018-04-01 stsp
716 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
717 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
718 f6861a81 2018-09-13 stsp error = got_diff_objects_as_blobs(obj1, obj2, NULL, NULL,
719 f6861a81 2018-09-13 stsp repo, stdout);
720 b00d56cd 2018-04-01 stsp break;
721 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
722 f6861a81 2018-09-13 stsp error = got_diff_objects_as_trees(obj1, obj2, "", "", repo,
723 f6861a81 2018-09-13 stsp 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