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 c0cc5c62 2018-10-18 stsp int diff_context, 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 c0cc5c62 2018-10-18 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, 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 c0cc5c62 2018-10-18 stsp struct got_repository *repo, int show_patch, int diff_context)
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 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, 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 07862c20 2018-09-15 stsp
369 d82de447 2018-09-15 stsp fflush(stdout);
370 07862c20 2018-09-15 stsp return err;
371 f42b1b34 2018-03-12 stsp }
372 5c860e29 2018-03-12 stsp
373 f42b1b34 2018-03-12 stsp static const struct got_error *
374 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
375 c0cc5c62 2018-10-18 stsp struct got_repository *repo, char *path, int show_patch, int diff_context,
376 c0cc5c62 2018-10-18 stsp int limit, int first_parent_traversal)
377 f42b1b34 2018-03-12 stsp {
378 f42b1b34 2018-03-12 stsp const struct got_error *err;
379 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
380 372ccdbb 2018-06-10 stsp
381 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
382 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
383 f42b1b34 2018-03-12 stsp if (err)
384 f42b1b34 2018-03-12 stsp return err;
385 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
386 372ccdbb 2018-06-10 stsp if (err)
387 fcc85cad 2018-07-22 stsp goto done;
388 31cedeaf 2018-09-15 stsp while (1) {
389 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
390 372ccdbb 2018-06-10 stsp struct got_object_id *id;
391 8bf5b3c9 2018-03-17 stsp
392 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
393 372ccdbb 2018-06-10 stsp if (err) {
394 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
395 9ba79e04 2018-06-11 stsp err = NULL;
396 9ba79e04 2018-06-11 stsp break;
397 9ba79e04 2018-06-11 stsp }
398 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
399 372ccdbb 2018-06-10 stsp break;
400 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
401 372ccdbb 2018-06-10 stsp if (err)
402 372ccdbb 2018-06-10 stsp break;
403 372ccdbb 2018-06-10 stsp else
404 372ccdbb 2018-06-10 stsp continue;
405 7e665116 2018-04-02 stsp }
406 b43fbaa0 2018-06-11 stsp if (id == NULL)
407 7e665116 2018-04-02 stsp break;
408 b43fbaa0 2018-06-11 stsp
409 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
410 b43fbaa0 2018-06-11 stsp if (err)
411 fcc85cad 2018-07-22 stsp break;
412 c0cc5c62 2018-10-18 stsp err = print_commit(commit, id, repo, show_patch, diff_context);
413 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
414 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
415 7e665116 2018-04-02 stsp break;
416 31cedeaf 2018-09-15 stsp }
417 fcc85cad 2018-07-22 stsp done:
418 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
419 f42b1b34 2018-03-12 stsp return err;
420 f42b1b34 2018-03-12 stsp }
421 5c860e29 2018-03-12 stsp
422 4ed7e80c 2018-05-20 stsp __dead static void
423 6f3d1eb0 2018-03-12 stsp usage_log(void)
424 6f3d1eb0 2018-03-12 stsp {
425 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
426 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
427 6f3d1eb0 2018-03-12 stsp exit(1);
428 6f3d1eb0 2018-03-12 stsp }
429 6f3d1eb0 2018-03-12 stsp
430 4ed7e80c 2018-05-20 stsp static const struct got_error *
431 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
432 f42b1b34 2018-03-12 stsp {
433 f42b1b34 2018-03-12 stsp const struct got_error *error;
434 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
435 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
436 d1f2edc9 2018-06-13 stsp struct got_object *obj = NULL;
437 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
438 d142fc45 2018-04-01 stsp char *start_commit = NULL;
439 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
440 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
441 64a96a6d 2018-04-01 stsp const char *errstr;
442 5c860e29 2018-03-12 stsp
443 6715a751 2018-03-16 stsp #ifndef PROFILE
444 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
445 ad242220 2018-09-08 stsp == -1)
446 f42b1b34 2018-03-12 stsp err(1, "pledge");
447 6715a751 2018-03-16 stsp #endif
448 79109fed 2018-03-27 stsp
449 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
450 79109fed 2018-03-27 stsp switch (ch) {
451 79109fed 2018-03-27 stsp case 'p':
452 79109fed 2018-03-27 stsp show_patch = 1;
453 d142fc45 2018-04-01 stsp break;
454 d142fc45 2018-04-01 stsp case 'c':
455 d142fc45 2018-04-01 stsp start_commit = optarg;
456 64a96a6d 2018-04-01 stsp break;
457 c0cc5c62 2018-10-18 stsp case 'C':
458 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
459 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
460 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
461 c0cc5c62 2018-10-18 stsp break;
462 64a96a6d 2018-04-01 stsp case 'l':
463 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
464 64a96a6d 2018-04-01 stsp if (errstr != NULL)
465 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
466 79109fed 2018-03-27 stsp break;
467 0ed6ed4c 2018-06-13 stsp case 'f':
468 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
469 a0603db2 2018-06-10 stsp break;
470 04ca23f4 2018-07-16 stsp case 'r':
471 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
472 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
473 04ca23f4 2018-07-16 stsp err(1, "-r option");
474 04ca23f4 2018-07-16 stsp break;
475 79109fed 2018-03-27 stsp default:
476 79109fed 2018-03-27 stsp usage();
477 79109fed 2018-03-27 stsp /* NOTREACHED */
478 79109fed 2018-03-27 stsp }
479 79109fed 2018-03-27 stsp }
480 79109fed 2018-03-27 stsp
481 79109fed 2018-03-27 stsp argc -= optind;
482 79109fed 2018-03-27 stsp argv += optind;
483 79109fed 2018-03-27 stsp
484 04ca23f4 2018-07-16 stsp if (argc == 0)
485 04ca23f4 2018-07-16 stsp path = strdup("");
486 04ca23f4 2018-07-16 stsp else if (argc == 1)
487 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
488 04ca23f4 2018-07-16 stsp else
489 6f3d1eb0 2018-03-12 stsp usage_log();
490 04ca23f4 2018-07-16 stsp if (path == NULL)
491 04ca23f4 2018-07-16 stsp return got_error_from_errno();
492 f42b1b34 2018-03-12 stsp
493 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
494 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
495 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
496 04ca23f4 2018-07-16 stsp goto done;
497 04ca23f4 2018-07-16 stsp }
498 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
499 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
500 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
501 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
502 04ca23f4 2018-07-16 stsp goto done;
503 04ca23f4 2018-07-16 stsp }
504 04ca23f4 2018-07-16 stsp }
505 04ca23f4 2018-07-16 stsp
506 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
507 d7d4f210 2018-03-12 stsp if (error != NULL)
508 04ca23f4 2018-07-16 stsp goto done;
509 f42b1b34 2018-03-12 stsp
510 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
511 3235492e 2018-04-01 stsp struct got_reference *head_ref;
512 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
513 3235492e 2018-04-01 stsp if (error != NULL)
514 3235492e 2018-04-01 stsp return error;
515 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
516 3235492e 2018-04-01 stsp got_ref_close(head_ref);
517 3235492e 2018-04-01 stsp if (error != NULL)
518 3235492e 2018-04-01 stsp return error;
519 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
520 3235492e 2018-04-01 stsp } else {
521 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
522 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
523 3235492e 2018-04-01 stsp if (error == NULL) {
524 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
525 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
526 d1f2edc9 2018-06-13 stsp if (error != NULL)
527 d1f2edc9 2018-06-13 stsp return error;
528 d1f2edc9 2018-06-13 stsp error = got_object_open(&obj, repo, id);
529 d1f2edc9 2018-06-13 stsp if (error != NULL)
530 d1f2edc9 2018-06-13 stsp return error;
531 d1f2edc9 2018-06-13 stsp }
532 d1f2edc9 2018-06-13 stsp if (obj == NULL) {
533 d1f2edc9 2018-06-13 stsp error = got_object_open_by_id_str(&obj, repo,
534 d1f2edc9 2018-06-13 stsp start_commit);
535 d1f2edc9 2018-06-13 stsp if (error != NULL)
536 d1f2edc9 2018-06-13 stsp return error;
537 6402fb3c 2018-09-15 stsp id = got_object_id_dup(got_object_get_id(obj));
538 3235492e 2018-04-01 stsp if (id == NULL)
539 3235492e 2018-04-01 stsp error = got_error_from_errno();
540 3235492e 2018-04-01 stsp }
541 3235492e 2018-04-01 stsp }
542 d7d4f210 2018-03-12 stsp if (error != NULL)
543 04ca23f4 2018-07-16 stsp goto done;
544 04ca23f4 2018-07-16 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
545 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
546 04ca23f4 2018-07-16 stsp goto done;
547 04ca23f4 2018-07-16 stsp }
548 04ca23f4 2018-07-16 stsp
549 04ca23f4 2018-07-16 stsp error = got_repo_map_path(&in_repo_path, repo, path);
550 04ca23f4 2018-07-16 stsp if (error != NULL)
551 04ca23f4 2018-07-16 stsp goto done;
552 04ca23f4 2018-07-16 stsp if (in_repo_path) {
553 04ca23f4 2018-07-16 stsp free(path);
554 04ca23f4 2018-07-16 stsp path = in_repo_path;
555 04ca23f4 2018-07-16 stsp }
556 04ca23f4 2018-07-16 stsp
557 04ca23f4 2018-07-16 stsp error = print_commits(obj, id, repo, path, show_patch,
558 c0cc5c62 2018-10-18 stsp diff_context, limit, first_parent_traversal);
559 04ca23f4 2018-07-16 stsp done:
560 04ca23f4 2018-07-16 stsp free(path);
561 04ca23f4 2018-07-16 stsp free(repo_path);
562 04ca23f4 2018-07-16 stsp free(cwd);
563 04ca23f4 2018-07-16 stsp if (obj)
564 04ca23f4 2018-07-16 stsp got_object_close(obj);
565 f42b1b34 2018-03-12 stsp free(id);
566 ad242220 2018-09-08 stsp if (repo) {
567 ad242220 2018-09-08 stsp const struct got_error *repo_error;
568 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
569 ad242220 2018-09-08 stsp if (error == NULL)
570 ad242220 2018-09-08 stsp error = repo_error;
571 ad242220 2018-09-08 stsp }
572 8bf5b3c9 2018-03-17 stsp return error;
573 5c860e29 2018-03-12 stsp }
574 5c860e29 2018-03-12 stsp
575 4ed7e80c 2018-05-20 stsp __dead static void
576 3f8b7d6a 2018-04-01 stsp usage_diff(void)
577 3f8b7d6a 2018-04-01 stsp {
578 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s diff [-C number] [repository-path] "
579 c0cc5c62 2018-10-18 stsp "object1 object2\n", getprogname());
580 3f8b7d6a 2018-04-01 stsp exit(1);
581 b00d56cd 2018-04-01 stsp }
582 b00d56cd 2018-04-01 stsp
583 4ed7e80c 2018-05-20 stsp static const struct got_error *
584 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
585 b00d56cd 2018-04-01 stsp {
586 b00d56cd 2018-04-01 stsp const struct got_error *error;
587 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
588 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
589 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
590 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
591 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
592 c0cc5c62 2018-10-18 stsp const char *errstr;
593 b00d56cd 2018-04-01 stsp
594 b00d56cd 2018-04-01 stsp #ifndef PROFILE
595 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
596 ad242220 2018-09-08 stsp == -1)
597 b00d56cd 2018-04-01 stsp err(1, "pledge");
598 b00d56cd 2018-04-01 stsp #endif
599 b00d56cd 2018-04-01 stsp
600 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "C:")) != -1) {
601 b00d56cd 2018-04-01 stsp switch (ch) {
602 c0cc5c62 2018-10-18 stsp case 'C':
603 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
604 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
605 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
606 c0cc5c62 2018-10-18 stsp break;
607 b00d56cd 2018-04-01 stsp default:
608 b00d56cd 2018-04-01 stsp usage();
609 b00d56cd 2018-04-01 stsp /* NOTREACHED */
610 b00d56cd 2018-04-01 stsp }
611 b00d56cd 2018-04-01 stsp }
612 b00d56cd 2018-04-01 stsp
613 b00d56cd 2018-04-01 stsp argc -= optind;
614 b00d56cd 2018-04-01 stsp argv += optind;
615 b00d56cd 2018-04-01 stsp
616 b00d56cd 2018-04-01 stsp if (argc == 0) {
617 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
618 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
619 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
620 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
621 e1e3f570 2018-04-01 stsp return got_error_from_errno();
622 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
623 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
624 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
625 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
626 76089277 2018-04-01 stsp if (repo_path == NULL)
627 76089277 2018-04-01 stsp return got_error_from_errno();
628 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
629 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
630 b00d56cd 2018-04-01 stsp } else
631 b00d56cd 2018-04-01 stsp usage_diff();
632 b00d56cd 2018-04-01 stsp
633 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
634 76089277 2018-04-01 stsp free(repo_path);
635 b00d56cd 2018-04-01 stsp if (error != NULL)
636 b00d56cd 2018-04-01 stsp goto done;
637 b00d56cd 2018-04-01 stsp
638 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
639 6402fb3c 2018-09-15 stsp if (error)
640 b00d56cd 2018-04-01 stsp goto done;
641 b00d56cd 2018-04-01 stsp
642 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
643 6402fb3c 2018-09-15 stsp if (error)
644 b00d56cd 2018-04-01 stsp goto done;
645 b00d56cd 2018-04-01 stsp
646 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
647 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
648 b00d56cd 2018-04-01 stsp goto done;
649 b00d56cd 2018-04-01 stsp }
650 b00d56cd 2018-04-01 stsp
651 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
652 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
653 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_blobs(obj1, obj2, NULL, NULL,
654 c0cc5c62 2018-10-18 stsp diff_context, repo, stdout);
655 b00d56cd 2018-04-01 stsp break;
656 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
657 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_trees(obj1, obj2, "", "",
658 c0cc5c62 2018-10-18 stsp diff_context, repo, stdout);
659 b00d56cd 2018-04-01 stsp break;
660 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
661 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_commits(obj1, obj2, diff_context,
662 c0cc5c62 2018-10-18 stsp repo, stdout);
663 b00d56cd 2018-04-01 stsp break;
664 b00d56cd 2018-04-01 stsp default:
665 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
666 b00d56cd 2018-04-01 stsp }
667 b00d56cd 2018-04-01 stsp
668 b00d56cd 2018-04-01 stsp done:
669 b00d56cd 2018-04-01 stsp if (obj1)
670 b00d56cd 2018-04-01 stsp got_object_close(obj1);
671 b00d56cd 2018-04-01 stsp if (obj2)
672 b00d56cd 2018-04-01 stsp got_object_close(obj2);
673 ad242220 2018-09-08 stsp if (repo) {
674 ad242220 2018-09-08 stsp const struct got_error *repo_error;
675 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
676 ad242220 2018-09-08 stsp if (error == NULL)
677 ad242220 2018-09-08 stsp error = repo_error;
678 ad242220 2018-09-08 stsp }
679 b00d56cd 2018-04-01 stsp return error;
680 404c43c4 2018-06-21 stsp }
681 404c43c4 2018-06-21 stsp
682 404c43c4 2018-06-21 stsp __dead static void
683 404c43c4 2018-06-21 stsp usage_blame(void)
684 404c43c4 2018-06-21 stsp {
685 66bea077 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
686 404c43c4 2018-06-21 stsp getprogname());
687 404c43c4 2018-06-21 stsp exit(1);
688 b00d56cd 2018-04-01 stsp }
689 b00d56cd 2018-04-01 stsp
690 404c43c4 2018-06-21 stsp static const struct got_error *
691 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
692 404c43c4 2018-06-21 stsp {
693 404c43c4 2018-06-21 stsp const struct got_error *error;
694 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
695 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
696 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
697 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
698 404c43c4 2018-06-21 stsp int ch;
699 404c43c4 2018-06-21 stsp
700 404c43c4 2018-06-21 stsp #ifndef PROFILE
701 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
702 ad242220 2018-09-08 stsp == -1)
703 404c43c4 2018-06-21 stsp err(1, "pledge");
704 404c43c4 2018-06-21 stsp #endif
705 404c43c4 2018-06-21 stsp
706 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
707 404c43c4 2018-06-21 stsp switch (ch) {
708 404c43c4 2018-06-21 stsp case 'c':
709 404c43c4 2018-06-21 stsp commit_id_str = optarg;
710 404c43c4 2018-06-21 stsp break;
711 66bea077 2018-08-02 stsp case 'r':
712 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
713 66bea077 2018-08-02 stsp if (repo_path == NULL)
714 66bea077 2018-08-02 stsp err(1, "-r option");
715 66bea077 2018-08-02 stsp break;
716 404c43c4 2018-06-21 stsp default:
717 404c43c4 2018-06-21 stsp usage();
718 404c43c4 2018-06-21 stsp /* NOTREACHED */
719 404c43c4 2018-06-21 stsp }
720 404c43c4 2018-06-21 stsp }
721 404c43c4 2018-06-21 stsp
722 404c43c4 2018-06-21 stsp argc -= optind;
723 404c43c4 2018-06-21 stsp argv += optind;
724 404c43c4 2018-06-21 stsp
725 a39318fd 2018-08-02 stsp if (argc == 1)
726 404c43c4 2018-06-21 stsp path = argv[0];
727 a39318fd 2018-08-02 stsp else
728 404c43c4 2018-06-21 stsp usage_blame();
729 404c43c4 2018-06-21 stsp
730 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
731 66bea077 2018-08-02 stsp if (cwd == NULL) {
732 66bea077 2018-08-02 stsp error = got_error_from_errno();
733 66bea077 2018-08-02 stsp goto done;
734 66bea077 2018-08-02 stsp }
735 66bea077 2018-08-02 stsp if (repo_path == NULL) {
736 66bea077 2018-08-02 stsp repo_path = strdup(cwd);
737 66bea077 2018-08-02 stsp if (repo_path == NULL) {
738 66bea077 2018-08-02 stsp error = got_error_from_errno();
739 66bea077 2018-08-02 stsp goto done;
740 66bea077 2018-08-02 stsp }
741 66bea077 2018-08-02 stsp }
742 66bea077 2018-08-02 stsp
743 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
744 404c43c4 2018-06-21 stsp if (error != NULL)
745 404c43c4 2018-06-21 stsp goto done;
746 404c43c4 2018-06-21 stsp
747 66bea077 2018-08-02 stsp error = got_repo_map_path(&in_repo_path, repo, path);
748 66bea077 2018-08-02 stsp if (error != NULL)
749 66bea077 2018-08-02 stsp goto done;
750 66bea077 2018-08-02 stsp
751 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
752 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
753 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
754 404c43c4 2018-06-21 stsp if (error != NULL)
755 66bea077 2018-08-02 stsp goto done;
756 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
757 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
758 404c43c4 2018-06-21 stsp if (error != NULL)
759 66bea077 2018-08-02 stsp goto done;
760 404c43c4 2018-06-21 stsp } else {
761 404c43c4 2018-06-21 stsp struct got_object *obj;
762 404c43c4 2018-06-21 stsp error = got_object_open_by_id_str(&obj, repo, commit_id_str);
763 404c43c4 2018-06-21 stsp if (error != NULL)
764 66bea077 2018-08-02 stsp goto done;
765 6402fb3c 2018-09-15 stsp commit_id = got_object_id_dup(got_object_get_id(obj));
766 404c43c4 2018-06-21 stsp if (commit_id == NULL)
767 404c43c4 2018-06-21 stsp error = got_error_from_errno();
768 404c43c4 2018-06-21 stsp got_object_close(obj);
769 404c43c4 2018-06-21 stsp }
770 404c43c4 2018-06-21 stsp
771 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
772 404c43c4 2018-06-21 stsp done:
773 66bea077 2018-08-02 stsp free(in_repo_path);
774 66bea077 2018-08-02 stsp free(repo_path);
775 66bea077 2018-08-02 stsp free(cwd);
776 404c43c4 2018-06-21 stsp free(commit_id);
777 ad242220 2018-09-08 stsp if (repo) {
778 ad242220 2018-09-08 stsp const struct got_error *repo_error;
779 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
780 ad242220 2018-09-08 stsp if (error == NULL)
781 ad242220 2018-09-08 stsp error = repo_error;
782 ad242220 2018-09-08 stsp }
783 404c43c4 2018-06-21 stsp return error;
784 404c43c4 2018-06-21 stsp }
785 404c43c4 2018-06-21 stsp
786 f42b1b34 2018-03-12 stsp #ifdef notyet
787 4ed7e80c 2018-05-20 stsp static const struct got_error *
788 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
789 5c860e29 2018-03-12 stsp {
790 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
791 5c860e29 2018-03-12 stsp git_status_list *status;
792 5c860e29 2018-03-12 stsp git_status_options statusopts;
793 5c860e29 2018-03-12 stsp size_t i;
794 5c860e29 2018-03-12 stsp
795 5c860e29 2018-03-12 stsp git_libgit2_init();
796 5c860e29 2018-03-12 stsp
797 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
798 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
799 5c860e29 2018-03-12 stsp
800 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
801 5c860e29 2018-03-12 stsp errx(1, "bar repository");
802 5c860e29 2018-03-12 stsp
803 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
804 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
805 5c860e29 2018-03-12 stsp
806 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
807 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
808 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
809 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
810 5c860e29 2018-03-12 stsp
811 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
812 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
813 5c860e29 2018-03-12 stsp
814 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
815 5c860e29 2018-03-12 stsp const git_status_entry *se;
816 5c860e29 2018-03-12 stsp
817 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
818 5c860e29 2018-03-12 stsp switch (se->status) {
819 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
820 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
821 5c860e29 2018-03-12 stsp break;
822 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
823 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
824 5c860e29 2018-03-12 stsp break;
825 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
826 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
827 5c860e29 2018-03-12 stsp break;
828 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
829 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
830 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
831 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
832 5c860e29 2018-03-12 stsp break;
833 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
834 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
835 5c860e29 2018-03-12 stsp break;
836 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
837 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
838 5c860e29 2018-03-12 stsp break;
839 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
840 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
841 5c860e29 2018-03-12 stsp break;
842 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
843 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
844 5c860e29 2018-03-12 stsp break;
845 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
846 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
847 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
848 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
849 5c860e29 2018-03-12 stsp break;
850 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
851 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
852 5c860e29 2018-03-12 stsp break;
853 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
854 5c860e29 2018-03-12 stsp default:
855 5c860e29 2018-03-12 stsp break;
856 5c860e29 2018-03-12 stsp }
857 5c860e29 2018-03-12 stsp }
858 5c860e29 2018-03-12 stsp
859 5c860e29 2018-03-12 stsp git_status_list_free(status);
860 5c860e29 2018-03-12 stsp git_repository_free(repo);
861 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
862 5c860e29 2018-03-12 stsp
863 5c860e29 2018-03-12 stsp return 0;
864 5c860e29 2018-03-12 stsp }
865 f42b1b34 2018-03-12 stsp #endif