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