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 f42b1b34 2018-03-12 stsp
21 5c860e29 2018-03-12 stsp #include <err.h>
22 5c860e29 2018-03-12 stsp #include <errno.h>
23 5c860e29 2018-03-12 stsp #include <locale.h>
24 5c860e29 2018-03-12 stsp #include <stdio.h>
25 5c860e29 2018-03-12 stsp #include <stdlib.h>
26 5c860e29 2018-03-12 stsp #include <string.h>
27 5c860e29 2018-03-12 stsp #include <unistd.h>
28 c09a553d 2018-03-12 stsp #include <libgen.h>
29 5c860e29 2018-03-12 stsp
30 f42b1b34 2018-03-12 stsp #include "got_error.h"
31 f42b1b34 2018-03-12 stsp #include "got_object.h"
32 5261c201 2018-04-01 stsp #include "got_reference.h"
33 f42b1b34 2018-03-12 stsp #include "got_repository.h"
34 c09a553d 2018-03-12 stsp #include "got_worktree.h"
35 79109fed 2018-03-27 stsp #include "got_diff.h"
36 5c860e29 2018-03-12 stsp
37 5c860e29 2018-03-12 stsp #ifndef nitems
38 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
39 5c860e29 2018-03-12 stsp #endif
40 5c860e29 2018-03-12 stsp
41 5c860e29 2018-03-12 stsp struct cmd {
42 5c860e29 2018-03-12 stsp const char *cmd_name;
43 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
44 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
45 46a0db7d 2018-03-12 stsp const char *cmd_descr;
46 5c860e29 2018-03-12 stsp };
47 5c860e29 2018-03-12 stsp
48 5c860e29 2018-03-12 stsp __dead void usage(void);
49 c09a553d 2018-03-12 stsp __dead void usage_checkout(void);
50 6f3d1eb0 2018-03-12 stsp __dead void usage_log(void);
51 b00d56cd 2018-04-01 stsp __dead void usage_diff(void);
52 5c860e29 2018-03-12 stsp
53 c09a553d 2018-03-12 stsp const struct got_error* cmd_checkout(int, char *[]);
54 d7d4f210 2018-03-12 stsp const struct got_error* cmd_log(int, char *[]);
55 b00d56cd 2018-04-01 stsp const struct got_error* cmd_diff(int, char *[]);
56 d7d4f210 2018-03-12 stsp const struct got_error* cmd_status(int, char *[]);
57 5c860e29 2018-03-12 stsp
58 5c860e29 2018-03-12 stsp struct cmd got_commands[] = {
59 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
60 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
61 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
62 1b6b95a8 2018-03-12 stsp "show repository history" },
63 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
64 b00d56cd 2018-04-01 stsp "compare files and directories" },
65 f42b1b34 2018-03-12 stsp #ifdef notyet
66 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
67 1b6b95a8 2018-03-12 stsp "show modification status of files" },
68 f42b1b34 2018-03-12 stsp #endif
69 5c860e29 2018-03-12 stsp };
70 5c860e29 2018-03-12 stsp
71 5c860e29 2018-03-12 stsp int
72 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
73 5c860e29 2018-03-12 stsp {
74 5c860e29 2018-03-12 stsp struct cmd *cmd;
75 5c860e29 2018-03-12 stsp unsigned int i;
76 5c860e29 2018-03-12 stsp int ch;
77 1b6b95a8 2018-03-12 stsp int hflag = 0;
78 5c860e29 2018-03-12 stsp
79 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
80 5c860e29 2018-03-12 stsp
81 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
82 5c860e29 2018-03-12 stsp switch (ch) {
83 1b6b95a8 2018-03-12 stsp case 'h':
84 1b6b95a8 2018-03-12 stsp hflag = 1;
85 1b6b95a8 2018-03-12 stsp break;
86 5c860e29 2018-03-12 stsp default:
87 5c860e29 2018-03-12 stsp usage();
88 5c860e29 2018-03-12 stsp /* NOTREACHED */
89 5c860e29 2018-03-12 stsp }
90 5c860e29 2018-03-12 stsp }
91 5c860e29 2018-03-12 stsp
92 5c860e29 2018-03-12 stsp argc -= optind;
93 5c860e29 2018-03-12 stsp argv += optind;
94 1e70621d 2018-03-27 stsp optind = 0;
95 5c860e29 2018-03-12 stsp
96 5c860e29 2018-03-12 stsp if (argc <= 0)
97 5c860e29 2018-03-12 stsp usage();
98 5c860e29 2018-03-12 stsp
99 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
100 d7d4f210 2018-03-12 stsp const struct got_error *error;
101 d7d4f210 2018-03-12 stsp
102 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
103 5c860e29 2018-03-12 stsp
104 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
105 5c860e29 2018-03-12 stsp continue;
106 5c860e29 2018-03-12 stsp
107 1b6b95a8 2018-03-12 stsp if (hflag)
108 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
109 1b6b95a8 2018-03-12 stsp
110 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
111 d7d4f210 2018-03-12 stsp if (error) {
112 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
113 d7d4f210 2018-03-12 stsp return 1;
114 d7d4f210 2018-03-12 stsp }
115 d7d4f210 2018-03-12 stsp
116 d7d4f210 2018-03-12 stsp return 0;
117 5c860e29 2018-03-12 stsp }
118 5c860e29 2018-03-12 stsp
119 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
120 5c860e29 2018-03-12 stsp return 1;
121 5c860e29 2018-03-12 stsp }
122 5c860e29 2018-03-12 stsp
123 5c860e29 2018-03-12 stsp __dead void
124 5c860e29 2018-03-12 stsp usage(void)
125 5c860e29 2018-03-12 stsp {
126 46a0db7d 2018-03-12 stsp int i;
127 46a0db7d 2018-03-12 stsp
128 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
129 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
130 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
131 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
132 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
133 46a0db7d 2018-03-12 stsp }
134 5c860e29 2018-03-12 stsp exit(1);
135 5c860e29 2018-03-12 stsp }
136 5c860e29 2018-03-12 stsp
137 c09a553d 2018-03-12 stsp __dead void
138 c09a553d 2018-03-12 stsp usage_checkout(void)
139 c09a553d 2018-03-12 stsp {
140 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
141 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
142 c09a553d 2018-03-12 stsp exit(1);
143 92a684f4 2018-03-12 stsp }
144 92a684f4 2018-03-12 stsp
145 92a684f4 2018-03-12 stsp static void
146 92a684f4 2018-03-12 stsp checkout_progress(void *arg, const char *path)
147 92a684f4 2018-03-12 stsp {
148 92a684f4 2018-03-12 stsp char *worktree_path = arg;
149 92a684f4 2018-03-12 stsp
150 92a684f4 2018-03-12 stsp while (path[0] == '/')
151 92a684f4 2018-03-12 stsp path++;
152 92a684f4 2018-03-12 stsp
153 92a684f4 2018-03-12 stsp printf("A %s/%s\n", worktree_path, path);
154 c09a553d 2018-03-12 stsp }
155 c09a553d 2018-03-12 stsp
156 c09a553d 2018-03-12 stsp const struct got_error *
157 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
158 c09a553d 2018-03-12 stsp {
159 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
160 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
161 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
162 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
163 c09a553d 2018-03-12 stsp char *repo_path = NULL;
164 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
165 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
166 0bb8a95e 2018-03-12 stsp int ch;
167 c09a553d 2018-03-12 stsp
168 0bb8a95e 2018-03-12 stsp while ((ch = getopt(argc, argv, "p:")) != -1) {
169 0bb8a95e 2018-03-12 stsp switch (ch) {
170 0bb8a95e 2018-03-12 stsp case 'p':
171 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
172 0bb8a95e 2018-03-12 stsp break;
173 0bb8a95e 2018-03-12 stsp default:
174 0bb8a95e 2018-03-12 stsp usage();
175 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
176 0bb8a95e 2018-03-12 stsp }
177 0bb8a95e 2018-03-12 stsp }
178 0bb8a95e 2018-03-12 stsp
179 0bb8a95e 2018-03-12 stsp argc -= optind;
180 0bb8a95e 2018-03-12 stsp argv += optind;
181 0bb8a95e 2018-03-12 stsp
182 6715a751 2018-03-16 stsp #ifndef PROFILE
183 c09a553d 2018-03-12 stsp if (pledge("stdio rpath wpath cpath flock", NULL) == -1)
184 c09a553d 2018-03-12 stsp err(1, "pledge");
185 6715a751 2018-03-16 stsp #endif
186 0bb8a95e 2018-03-12 stsp if (argc == 1) {
187 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
188 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
189 76089277 2018-04-01 stsp if (repo_path == NULL)
190 76089277 2018-04-01 stsp return got_error_from_errno();
191 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
192 76089277 2018-04-01 stsp if (cwd == NULL) {
193 76089277 2018-04-01 stsp error = got_error_from_errno();
194 76089277 2018-04-01 stsp goto done;
195 76089277 2018-04-01 stsp }
196 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
197 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
198 5d7c1dab 2018-04-01 stsp else
199 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
200 76089277 2018-04-01 stsp if (base == NULL) {
201 76089277 2018-04-01 stsp error = got_error_from_errno();
202 76089277 2018-04-01 stsp goto done;
203 76089277 2018-04-01 stsp }
204 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
205 c09a553d 2018-03-12 stsp if (dotgit)
206 c09a553d 2018-03-12 stsp *dotgit = '\0';
207 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
208 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
209 c09a553d 2018-03-12 stsp free(cwd);
210 76089277 2018-04-01 stsp goto done;
211 c09a553d 2018-03-12 stsp }
212 c09a553d 2018-03-12 stsp free(cwd);
213 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
214 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
215 76089277 2018-04-01 stsp if (repo_path == NULL) {
216 76089277 2018-04-01 stsp error = got_error_from_errno();
217 76089277 2018-04-01 stsp goto done;
218 76089277 2018-04-01 stsp }
219 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
220 76089277 2018-04-01 stsp if (worktree_path == NULL) {
221 76089277 2018-04-01 stsp error = got_error_from_errno();
222 76089277 2018-04-01 stsp goto done;
223 76089277 2018-04-01 stsp }
224 c09a553d 2018-03-12 stsp } else
225 c09a553d 2018-03-12 stsp usage_checkout();
226 c09a553d 2018-03-12 stsp
227 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
228 76089277 2018-04-01 stsp free(repo_path);
229 c09a553d 2018-03-12 stsp if (error != NULL)
230 c09a553d 2018-03-12 stsp goto done;
231 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
232 c09a553d 2018-03-12 stsp if (error != NULL)
233 c09a553d 2018-03-12 stsp goto done;
234 c09a553d 2018-03-12 stsp
235 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
236 c09a553d 2018-03-12 stsp if (error != NULL)
237 c09a553d 2018-03-12 stsp goto done;
238 c09a553d 2018-03-12 stsp
239 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
240 c09a553d 2018-03-12 stsp if (error != NULL)
241 c09a553d 2018-03-12 stsp goto done;
242 c09a553d 2018-03-12 stsp
243 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
244 92a684f4 2018-03-12 stsp checkout_progress, worktree_path);
245 c09a553d 2018-03-12 stsp if (error != NULL)
246 c09a553d 2018-03-12 stsp goto done;
247 c09a553d 2018-03-12 stsp
248 c09a553d 2018-03-12 stsp printf("checked out %s\n", worktree_path);
249 c09a553d 2018-03-12 stsp
250 c09a553d 2018-03-12 stsp done:
251 76089277 2018-04-01 stsp free(repo_path);
252 c09a553d 2018-03-12 stsp free(worktree_path);
253 c09a553d 2018-03-12 stsp return error;
254 c09a553d 2018-03-12 stsp }
255 c09a553d 2018-03-12 stsp
256 f42b1b34 2018-03-12 stsp static const struct got_error *
257 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
258 f42b1b34 2018-03-12 stsp struct got_repository *repo)
259 5c860e29 2018-03-12 stsp {
260 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
261 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
262 79109fed 2018-03-27 stsp struct got_object *obj;
263 79109fed 2018-03-27 stsp struct got_parent_id *pid;
264 79109fed 2018-03-27 stsp
265 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, commit->tree_id);
266 79109fed 2018-03-27 stsp if (err)
267 79109fed 2018-03-27 stsp return err;
268 79109fed 2018-03-27 stsp
269 79109fed 2018-03-27 stsp err = got_object_tree_open(&tree2, repo, obj);
270 79109fed 2018-03-27 stsp got_object_close(obj);
271 79109fed 2018-03-27 stsp if (err)
272 79109fed 2018-03-27 stsp return err;
273 79109fed 2018-03-27 stsp
274 79109fed 2018-03-27 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
275 79109fed 2018-03-27 stsp if (pid != NULL) {
276 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
277 79109fed 2018-03-27 stsp
278 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, pid->id);
279 79109fed 2018-03-27 stsp if (err)
280 79109fed 2018-03-27 stsp return err;
281 79109fed 2018-03-27 stsp
282 79109fed 2018-03-27 stsp err = got_object_commit_open(&pcommit, repo, obj);
283 79109fed 2018-03-27 stsp got_object_close(obj);
284 79109fed 2018-03-27 stsp if (err)
285 79109fed 2018-03-27 stsp return err;
286 79109fed 2018-03-27 stsp
287 79109fed 2018-03-27 stsp err = got_object_open(&obj, 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 err = got_object_tree_open(&tree1, repo, obj);
292 79109fed 2018-03-27 stsp got_object_close(obj);
293 79109fed 2018-03-27 stsp if (err)
294 79109fed 2018-03-27 stsp return err;
295 79109fed 2018-03-27 stsp }
296 79109fed 2018-03-27 stsp
297 79109fed 2018-03-27 stsp err = got_diff_tree(tree1, tree2, repo, stdout);
298 79109fed 2018-03-27 stsp if (tree1)
299 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
300 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
301 79109fed 2018-03-27 stsp return err;
302 79109fed 2018-03-27 stsp }
303 79109fed 2018-03-27 stsp
304 79109fed 2018-03-27 stsp static const struct got_error *
305 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
306 79109fed 2018-03-27 stsp struct got_repository *repo, int show_patch)
307 79109fed 2018-03-27 stsp {
308 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
309 8bf5b3c9 2018-03-17 stsp char *buf;
310 5c860e29 2018-03-12 stsp
311 8bf5b3c9 2018-03-17 stsp err = got_object_id_str(&buf, id);
312 8bf5b3c9 2018-03-17 stsp if (err)
313 8bf5b3c9 2018-03-17 stsp return err;
314 5c860e29 2018-03-12 stsp
315 8bf5b3c9 2018-03-17 stsp printf("-----------------------------------------------\n");
316 8bf5b3c9 2018-03-17 stsp printf("commit: %s\n", buf);
317 8bf5b3c9 2018-03-17 stsp printf("Author: %s\n", commit->author);
318 f3d135e1 2018-04-01 stsp if (strcmp(commit->author, commit->committer) != 0)
319 f3d135e1 2018-04-01 stsp printf("Committer: %s\n", commit->committer);
320 8bf5b3c9 2018-03-17 stsp printf("\n%s\n", commit->logmsg);
321 8bf5b3c9 2018-03-17 stsp
322 971751ac 2018-03-27 stsp if (show_patch) {
323 79109fed 2018-03-27 stsp err = print_patch(commit, id, repo);
324 971751ac 2018-03-27 stsp if (err == 0)
325 971751ac 2018-03-27 stsp printf("\n");
326 971751ac 2018-03-27 stsp }
327 79109fed 2018-03-27 stsp
328 8bf5b3c9 2018-03-17 stsp free(buf);
329 79109fed 2018-03-27 stsp return err;
330 f42b1b34 2018-03-12 stsp }
331 8bf5b3c9 2018-03-17 stsp
332 8bf5b3c9 2018-03-17 stsp struct commit_queue_entry {
333 8bf5b3c9 2018-03-17 stsp TAILQ_ENTRY(commit_queue_entry) entry;
334 8bf5b3c9 2018-03-17 stsp struct got_object_id *id;
335 8bf5b3c9 2018-03-17 stsp struct got_commit_object *commit;
336 8bf5b3c9 2018-03-17 stsp };
337 5c860e29 2018-03-12 stsp
338 f42b1b34 2018-03-12 stsp static const struct got_error *
339 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
340 64a96a6d 2018-04-01 stsp struct got_repository *repo, int show_patch, int limit)
341 f42b1b34 2018-03-12 stsp {
342 f42b1b34 2018-03-12 stsp const struct got_error *err;
343 8bf5b3c9 2018-03-17 stsp struct got_commit_object *root_commit;
344 8bf5b3c9 2018-03-17 stsp TAILQ_HEAD(, commit_queue_entry) commits;
345 8bf5b3c9 2018-03-17 stsp struct commit_queue_entry *entry;
346 5c860e29 2018-03-12 stsp
347 8bf5b3c9 2018-03-17 stsp TAILQ_INIT(&commits);
348 5c860e29 2018-03-12 stsp
349 8bf5b3c9 2018-03-17 stsp err = got_object_commit_open(&root_commit, repo, root_obj);
350 f42b1b34 2018-03-12 stsp if (err)
351 f42b1b34 2018-03-12 stsp return err;
352 5c860e29 2018-03-12 stsp
353 8bf5b3c9 2018-03-17 stsp entry = calloc(1, sizeof(*entry));
354 8bf5b3c9 2018-03-17 stsp if (entry == NULL)
355 0a585a0d 2018-03-17 stsp return got_error_from_errno();
356 8bf5b3c9 2018-03-17 stsp entry->id = got_object_id_dup(root_id);
357 8bf5b3c9 2018-03-17 stsp if (entry->id == NULL) {
358 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
359 8bf5b3c9 2018-03-17 stsp free(entry);
360 0a585a0d 2018-03-17 stsp return err;
361 8bf5b3c9 2018-03-17 stsp }
362 8bf5b3c9 2018-03-17 stsp entry->commit = root_commit;
363 8bf5b3c9 2018-03-17 stsp TAILQ_INSERT_HEAD(&commits, entry, entry);
364 8bf5b3c9 2018-03-17 stsp
365 8bf5b3c9 2018-03-17 stsp while (!TAILQ_EMPTY(&commits)) {
366 8bf5b3c9 2018-03-17 stsp struct got_parent_id *pid;
367 5c860e29 2018-03-12 stsp
368 8bf5b3c9 2018-03-17 stsp entry = TAILQ_FIRST(&commits);
369 79109fed 2018-03-27 stsp err = print_commit(entry->commit, entry->id, repo, show_patch);
370 58379602 2018-04-02 stsp if (err)
371 8bf5b3c9 2018-03-17 stsp break;
372 5c860e29 2018-03-12 stsp
373 64a96a6d 2018-04-01 stsp if (limit && --limit == 0)
374 64a96a6d 2018-04-01 stsp break;
375 64a96a6d 2018-04-01 stsp
376 8bf5b3c9 2018-03-17 stsp SIMPLEQ_FOREACH(pid, &entry->commit->parent_ids, entry) {
377 8bf5b3c9 2018-03-17 stsp struct got_object *obj;
378 8bf5b3c9 2018-03-17 stsp struct got_commit_object *pcommit;
379 8bf5b3c9 2018-03-17 stsp struct commit_queue_entry *pentry;
380 8bf5b3c9 2018-03-17 stsp
381 8bf5b3c9 2018-03-17 stsp err = got_object_open(&obj, repo, pid->id);
382 8bf5b3c9 2018-03-17 stsp if (err)
383 8bf5b3c9 2018-03-17 stsp break;
384 8bf5b3c9 2018-03-17 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
385 8bf5b3c9 2018-03-17 stsp err = got_error(GOT_ERR_OBJ_TYPE);
386 8bf5b3c9 2018-03-17 stsp break;
387 8bf5b3c9 2018-03-17 stsp }
388 8bf5b3c9 2018-03-17 stsp
389 8bf5b3c9 2018-03-17 stsp err = got_object_commit_open(&pcommit, repo, obj);
390 8bf5b3c9 2018-03-17 stsp got_object_close(obj);
391 8bf5b3c9 2018-03-17 stsp if (err)
392 8bf5b3c9 2018-03-17 stsp break;
393 8bf5b3c9 2018-03-17 stsp
394 8bf5b3c9 2018-03-17 stsp pentry = calloc(1, sizeof(*pentry));
395 8bf5b3c9 2018-03-17 stsp if (pentry == NULL) {
396 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
397 8bf5b3c9 2018-03-17 stsp got_object_commit_close(pcommit);
398 8bf5b3c9 2018-03-17 stsp break;
399 8bf5b3c9 2018-03-17 stsp }
400 8bf5b3c9 2018-03-17 stsp pentry->id = got_object_id_dup(pid->id);
401 8bf5b3c9 2018-03-17 stsp if (pentry->id == NULL) {
402 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
403 8bf5b3c9 2018-03-17 stsp got_object_commit_close(pcommit);
404 8bf5b3c9 2018-03-17 stsp break;
405 8bf5b3c9 2018-03-17 stsp }
406 8bf5b3c9 2018-03-17 stsp pentry->commit = pcommit;
407 8bf5b3c9 2018-03-17 stsp TAILQ_INSERT_TAIL(&commits, pentry, entry);
408 8bf5b3c9 2018-03-17 stsp }
409 8bf5b3c9 2018-03-17 stsp
410 8bf5b3c9 2018-03-17 stsp TAILQ_REMOVE(&commits, entry, entry);
411 8bf5b3c9 2018-03-17 stsp got_object_commit_close(entry->commit);
412 8bf5b3c9 2018-03-17 stsp free(entry->id);
413 8bf5b3c9 2018-03-17 stsp free(entry);
414 58379602 2018-04-02 stsp }
415 58379602 2018-04-02 stsp
416 58379602 2018-04-02 stsp if (err) {
417 58379602 2018-04-02 stsp while (!TAILQ_EMPTY(&commits)) {
418 58379602 2018-04-02 stsp entry = TAILQ_FIRST(&commits);
419 58379602 2018-04-02 stsp TAILQ_REMOVE(&commits, entry, entry);
420 58379602 2018-04-02 stsp got_object_commit_close(entry->commit);
421 58379602 2018-04-02 stsp free(entry->id);
422 58379602 2018-04-02 stsp free(entry);
423 58379602 2018-04-02 stsp }
424 8bf5b3c9 2018-03-17 stsp }
425 8bf5b3c9 2018-03-17 stsp
426 f42b1b34 2018-03-12 stsp return err;
427 f42b1b34 2018-03-12 stsp }
428 5c860e29 2018-03-12 stsp
429 6f3d1eb0 2018-03-12 stsp __dead void
430 6f3d1eb0 2018-03-12 stsp usage_log(void)
431 6f3d1eb0 2018-03-12 stsp {
432 64a96a6d 2018-04-01 stsp fprintf(stderr, "usage: %s log [-p] [-c commit] [ -l N ] "
433 64a96a6d 2018-04-01 stsp "[repository-path]\n", getprogname());
434 6f3d1eb0 2018-03-12 stsp exit(1);
435 6f3d1eb0 2018-03-12 stsp }
436 6f3d1eb0 2018-03-12 stsp
437 d7d4f210 2018-03-12 stsp const struct got_error *
438 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
439 f42b1b34 2018-03-12 stsp {
440 f42b1b34 2018-03-12 stsp const struct got_error *error;
441 f42b1b34 2018-03-12 stsp struct got_repository *repo;
442 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
443 f42b1b34 2018-03-12 stsp struct got_object *obj;
444 6f3d1eb0 2018-03-12 stsp char *repo_path = NULL;
445 d142fc45 2018-04-01 stsp char *start_commit = NULL;
446 79109fed 2018-03-27 stsp int ch;
447 64a96a6d 2018-04-01 stsp int show_patch = 0, limit = 0;
448 64a96a6d 2018-04-01 stsp const char *errstr;
449 5c860e29 2018-03-12 stsp
450 6715a751 2018-03-16 stsp #ifndef PROFILE
451 f42b1b34 2018-03-12 stsp if (pledge("stdio rpath wpath cpath", NULL) == -1)
452 f42b1b34 2018-03-12 stsp err(1, "pledge");
453 6715a751 2018-03-16 stsp #endif
454 79109fed 2018-03-27 stsp
455 64a96a6d 2018-04-01 stsp while ((ch = getopt(argc, argv, "pc:l:")) != -1) {
456 79109fed 2018-03-27 stsp switch (ch) {
457 79109fed 2018-03-27 stsp case 'p':
458 79109fed 2018-03-27 stsp show_patch = 1;
459 d142fc45 2018-04-01 stsp break;
460 d142fc45 2018-04-01 stsp case 'c':
461 d142fc45 2018-04-01 stsp start_commit = optarg;
462 64a96a6d 2018-04-01 stsp break;
463 64a96a6d 2018-04-01 stsp case 'l':
464 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
465 64a96a6d 2018-04-01 stsp if (errstr != NULL)
466 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
467 79109fed 2018-03-27 stsp break;
468 79109fed 2018-03-27 stsp default:
469 79109fed 2018-03-27 stsp usage();
470 79109fed 2018-03-27 stsp /* NOTREACHED */
471 79109fed 2018-03-27 stsp }
472 79109fed 2018-03-27 stsp }
473 79109fed 2018-03-27 stsp
474 79109fed 2018-03-27 stsp argc -= optind;
475 79109fed 2018-03-27 stsp argv += optind;
476 79109fed 2018-03-27 stsp
477 79109fed 2018-03-27 stsp if (argc == 0) {
478 6f3d1eb0 2018-03-12 stsp repo_path = getcwd(NULL, 0);
479 6f3d1eb0 2018-03-12 stsp if (repo_path == NULL)
480 e1e3f570 2018-04-01 stsp return got_error_from_errno();
481 3235492e 2018-04-01 stsp } else if (argc == 1) {
482 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
483 76089277 2018-04-01 stsp if (repo_path == NULL)
484 76089277 2018-04-01 stsp return got_error_from_errno();
485 3235492e 2018-04-01 stsp } else
486 6f3d1eb0 2018-03-12 stsp usage_log();
487 f42b1b34 2018-03-12 stsp
488 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
489 76089277 2018-04-01 stsp free(repo_path);
490 d7d4f210 2018-03-12 stsp if (error != NULL)
491 d7d4f210 2018-03-12 stsp return error;
492 f42b1b34 2018-03-12 stsp
493 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
494 3235492e 2018-04-01 stsp struct got_reference *head_ref;
495 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
496 3235492e 2018-04-01 stsp if (error != NULL)
497 3235492e 2018-04-01 stsp return error;
498 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
499 3235492e 2018-04-01 stsp got_ref_close(head_ref);
500 3235492e 2018-04-01 stsp if (error != NULL)
501 3235492e 2018-04-01 stsp return error;
502 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
503 3235492e 2018-04-01 stsp } else {
504 d142fc45 2018-04-01 stsp error = got_object_open_by_id_str(&obj, repo, start_commit);
505 3235492e 2018-04-01 stsp if (error == NULL) {
506 3235492e 2018-04-01 stsp id = got_object_get_id(obj);
507 3235492e 2018-04-01 stsp if (id == NULL)
508 3235492e 2018-04-01 stsp error = got_error_from_errno();
509 3235492e 2018-04-01 stsp }
510 3235492e 2018-04-01 stsp }
511 d7d4f210 2018-03-12 stsp if (error != NULL)
512 d7d4f210 2018-03-12 stsp return error;
513 8bf5b3c9 2018-03-17 stsp if (got_object_get_type(obj) == GOT_OBJ_TYPE_COMMIT)
514 64a96a6d 2018-04-01 stsp error = print_commits(obj, id, repo, show_patch, limit);
515 8bf5b3c9 2018-03-17 stsp else
516 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
517 f42b1b34 2018-03-12 stsp got_object_close(obj);
518 f42b1b34 2018-03-12 stsp free(id);
519 f42b1b34 2018-03-12 stsp got_repo_close(repo);
520 8bf5b3c9 2018-03-17 stsp return error;
521 b00d56cd 2018-04-01 stsp }
522 b00d56cd 2018-04-01 stsp
523 b00d56cd 2018-04-01 stsp static const struct got_error *
524 b00d56cd 2018-04-01 stsp diff_blobs(struct got_object *obj1, struct got_object *obj2,
525 b00d56cd 2018-04-01 stsp struct got_repository *repo)
526 b00d56cd 2018-04-01 stsp {
527 b00d56cd 2018-04-01 stsp const struct got_error *err;
528 b00d56cd 2018-04-01 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
529 b00d56cd 2018-04-01 stsp
530 b00d56cd 2018-04-01 stsp err = got_object_blob_open(&blob1, repo, obj1, 8192);
531 b00d56cd 2018-04-01 stsp if (err)
532 b00d56cd 2018-04-01 stsp goto done;
533 b00d56cd 2018-04-01 stsp err = got_object_blob_open(&blob2, repo, obj2, 81992);
534 b00d56cd 2018-04-01 stsp if (err)
535 b00d56cd 2018-04-01 stsp goto done;
536 b00d56cd 2018-04-01 stsp
537 b00d56cd 2018-04-01 stsp err = got_diff_blob(blob1, blob2, NULL, NULL, stdout);
538 b00d56cd 2018-04-01 stsp done:
539 b00d56cd 2018-04-01 stsp if (blob1)
540 b00d56cd 2018-04-01 stsp got_object_blob_close(blob1);
541 b00d56cd 2018-04-01 stsp if (blob2)
542 b00d56cd 2018-04-01 stsp got_object_blob_close(blob2);
543 b00d56cd 2018-04-01 stsp return err;
544 b00d56cd 2018-04-01 stsp }
545 b00d56cd 2018-04-01 stsp
546 b00d56cd 2018-04-01 stsp static const struct got_error *
547 b00d56cd 2018-04-01 stsp diff_trees(struct got_object *obj1, struct got_object *obj2,
548 b00d56cd 2018-04-01 stsp struct got_repository *repo)
549 b00d56cd 2018-04-01 stsp {
550 b00d56cd 2018-04-01 stsp const struct got_error *err;
551 b00d56cd 2018-04-01 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
552 b00d56cd 2018-04-01 stsp
553 b00d56cd 2018-04-01 stsp err = got_object_tree_open(&tree1, repo, obj1);
554 b00d56cd 2018-04-01 stsp if (err)
555 b00d56cd 2018-04-01 stsp goto done;
556 b00d56cd 2018-04-01 stsp err = got_object_tree_open(&tree2, repo, obj2);
557 b00d56cd 2018-04-01 stsp if (err)
558 b00d56cd 2018-04-01 stsp goto done;
559 b00d56cd 2018-04-01 stsp
560 b00d56cd 2018-04-01 stsp err = got_diff_tree(tree1, tree2, repo, stdout);
561 b00d56cd 2018-04-01 stsp done:
562 b00d56cd 2018-04-01 stsp if (tree1)
563 b00d56cd 2018-04-01 stsp got_object_tree_close(tree1);
564 b00d56cd 2018-04-01 stsp if (tree2)
565 b00d56cd 2018-04-01 stsp got_object_tree_close(tree2);
566 b00d56cd 2018-04-01 stsp return err;
567 5c860e29 2018-03-12 stsp }
568 5c860e29 2018-03-12 stsp
569 b00d56cd 2018-04-01 stsp static const struct got_error *
570 b00d56cd 2018-04-01 stsp diff_commits(struct got_object *obj1, struct got_object *obj2,
571 b00d56cd 2018-04-01 stsp struct got_repository *repo)
572 b00d56cd 2018-04-01 stsp {
573 b00d56cd 2018-04-01 stsp const struct got_error *err;
574 b00d56cd 2018-04-01 stsp struct got_commit_object *commit1 = NULL, *commit2 = NULL;
575 b00d56cd 2018-04-01 stsp struct got_object *tree_obj1 = NULL, *tree_obj2 = NULL;
576 b00d56cd 2018-04-01 stsp
577 b00d56cd 2018-04-01 stsp err = got_object_commit_open(&commit1, repo, obj1);
578 b00d56cd 2018-04-01 stsp if (err)
579 b00d56cd 2018-04-01 stsp goto done;
580 b00d56cd 2018-04-01 stsp err = got_object_commit_open(&commit2, repo, obj2);
581 b00d56cd 2018-04-01 stsp if (err)
582 b00d56cd 2018-04-01 stsp goto done;
583 b00d56cd 2018-04-01 stsp
584 b00d56cd 2018-04-01 stsp err = got_object_open(&tree_obj1, repo, commit1->tree_id);
585 b00d56cd 2018-04-01 stsp if (err)
586 b00d56cd 2018-04-01 stsp goto done;
587 b00d56cd 2018-04-01 stsp err = got_object_open(&tree_obj2, repo, commit2->tree_id);
588 b00d56cd 2018-04-01 stsp if (err)
589 b00d56cd 2018-04-01 stsp goto done;
590 b00d56cd 2018-04-01 stsp
591 b00d56cd 2018-04-01 stsp err = diff_trees(tree_obj1, tree_obj2, repo);
592 b00d56cd 2018-04-01 stsp done:
593 b00d56cd 2018-04-01 stsp if (tree_obj1)
594 b00d56cd 2018-04-01 stsp got_object_close(tree_obj1);
595 b00d56cd 2018-04-01 stsp if (tree_obj2)
596 b00d56cd 2018-04-01 stsp got_object_close(tree_obj2);
597 b00d56cd 2018-04-01 stsp if (commit1)
598 b00d56cd 2018-04-01 stsp got_object_commit_close(commit1);
599 b00d56cd 2018-04-01 stsp if (commit2)
600 b00d56cd 2018-04-01 stsp got_object_commit_close(commit2);
601 b00d56cd 2018-04-01 stsp return err;
602 b00d56cd 2018-04-01 stsp
603 3f8b7d6a 2018-04-01 stsp }
604 3f8b7d6a 2018-04-01 stsp
605 3f8b7d6a 2018-04-01 stsp __dead void
606 3f8b7d6a 2018-04-01 stsp usage_diff(void)
607 3f8b7d6a 2018-04-01 stsp {
608 3f8b7d6a 2018-04-01 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
609 3f8b7d6a 2018-04-01 stsp getprogname());
610 3f8b7d6a 2018-04-01 stsp exit(1);
611 b00d56cd 2018-04-01 stsp }
612 b00d56cd 2018-04-01 stsp
613 b00d56cd 2018-04-01 stsp const struct got_error *
614 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
615 b00d56cd 2018-04-01 stsp {
616 b00d56cd 2018-04-01 stsp const struct got_error *error;
617 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
618 b00d56cd 2018-04-01 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
619 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
620 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
621 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
622 b00d56cd 2018-04-01 stsp int ch;
623 b00d56cd 2018-04-01 stsp
624 b00d56cd 2018-04-01 stsp #ifndef PROFILE
625 b00d56cd 2018-04-01 stsp if (pledge("stdio rpath wpath cpath", NULL) == -1)
626 b00d56cd 2018-04-01 stsp err(1, "pledge");
627 b00d56cd 2018-04-01 stsp #endif
628 b00d56cd 2018-04-01 stsp
629 b00d56cd 2018-04-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
630 b00d56cd 2018-04-01 stsp switch (ch) {
631 b00d56cd 2018-04-01 stsp default:
632 b00d56cd 2018-04-01 stsp usage();
633 b00d56cd 2018-04-01 stsp /* NOTREACHED */
634 b00d56cd 2018-04-01 stsp }
635 b00d56cd 2018-04-01 stsp }
636 b00d56cd 2018-04-01 stsp
637 b00d56cd 2018-04-01 stsp argc -= optind;
638 b00d56cd 2018-04-01 stsp argv += optind;
639 b00d56cd 2018-04-01 stsp
640 b00d56cd 2018-04-01 stsp if (argc == 0) {
641 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
642 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
643 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
644 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
645 e1e3f570 2018-04-01 stsp return got_error_from_errno();
646 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
647 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
648 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
649 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
650 76089277 2018-04-01 stsp if (repo_path == NULL)
651 76089277 2018-04-01 stsp return got_error_from_errno();
652 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
653 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
654 b00d56cd 2018-04-01 stsp } else
655 b00d56cd 2018-04-01 stsp usage_diff();
656 b00d56cd 2018-04-01 stsp
657 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
658 76089277 2018-04-01 stsp free(repo_path);
659 b00d56cd 2018-04-01 stsp if (error != NULL)
660 b00d56cd 2018-04-01 stsp goto done;
661 b00d56cd 2018-04-01 stsp
662 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
663 b00d56cd 2018-04-01 stsp if (error == NULL) {
664 b00d56cd 2018-04-01 stsp id1 = got_object_get_id(obj1);
665 b00d56cd 2018-04-01 stsp if (id1 == NULL)
666 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
667 b00d56cd 2018-04-01 stsp }
668 b00d56cd 2018-04-01 stsp if (error != NULL)
669 b00d56cd 2018-04-01 stsp goto done;
670 b00d56cd 2018-04-01 stsp
671 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
672 b00d56cd 2018-04-01 stsp if (error == NULL) {
673 b00d56cd 2018-04-01 stsp id2 = got_object_get_id(obj2);
674 b00d56cd 2018-04-01 stsp if (id2 == NULL)
675 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
676 b00d56cd 2018-04-01 stsp }
677 b00d56cd 2018-04-01 stsp if (error != NULL)
678 b00d56cd 2018-04-01 stsp goto done;
679 b00d56cd 2018-04-01 stsp
680 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
681 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
682 b00d56cd 2018-04-01 stsp goto done;
683 b00d56cd 2018-04-01 stsp }
684 b00d56cd 2018-04-01 stsp
685 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
686 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
687 b00d56cd 2018-04-01 stsp error = diff_blobs(obj1, obj2, repo);
688 b00d56cd 2018-04-01 stsp break;
689 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
690 b00d56cd 2018-04-01 stsp error = diff_trees(obj1, obj2, repo);
691 b00d56cd 2018-04-01 stsp break;
692 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
693 b00d56cd 2018-04-01 stsp error = diff_commits(obj1, obj2, repo);
694 b00d56cd 2018-04-01 stsp break;
695 b00d56cd 2018-04-01 stsp default:
696 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
697 b00d56cd 2018-04-01 stsp }
698 b00d56cd 2018-04-01 stsp
699 b00d56cd 2018-04-01 stsp done:
700 b00d56cd 2018-04-01 stsp if (obj1)
701 b00d56cd 2018-04-01 stsp got_object_close(obj1);
702 b00d56cd 2018-04-01 stsp if (obj2)
703 b00d56cd 2018-04-01 stsp got_object_close(obj2);
704 b00d56cd 2018-04-01 stsp if (id1)
705 b00d56cd 2018-04-01 stsp free(id1);
706 b00d56cd 2018-04-01 stsp if (id2)
707 b00d56cd 2018-04-01 stsp free(id2);
708 b00d56cd 2018-04-01 stsp if (repo)
709 b00d56cd 2018-04-01 stsp got_repo_close(repo);
710 b00d56cd 2018-04-01 stsp return error;
711 b00d56cd 2018-04-01 stsp }
712 b00d56cd 2018-04-01 stsp
713 f42b1b34 2018-03-12 stsp #ifdef notyet
714 d7d4f210 2018-03-12 stsp const struct got_error *
715 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
716 5c860e29 2018-03-12 stsp {
717 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
718 5c860e29 2018-03-12 stsp git_status_list *status;
719 5c860e29 2018-03-12 stsp git_status_options statusopts;
720 5c860e29 2018-03-12 stsp size_t i;
721 5c860e29 2018-03-12 stsp
722 5c860e29 2018-03-12 stsp git_libgit2_init();
723 5c860e29 2018-03-12 stsp
724 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
725 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
726 5c860e29 2018-03-12 stsp
727 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
728 5c860e29 2018-03-12 stsp errx(1, "bar repository");
729 5c860e29 2018-03-12 stsp
730 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
731 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
732 5c860e29 2018-03-12 stsp
733 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
734 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
735 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
736 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
737 5c860e29 2018-03-12 stsp
738 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
739 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
740 5c860e29 2018-03-12 stsp
741 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
742 5c860e29 2018-03-12 stsp const git_status_entry *se;
743 5c860e29 2018-03-12 stsp
744 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
745 5c860e29 2018-03-12 stsp switch (se->status) {
746 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
747 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
748 5c860e29 2018-03-12 stsp break;
749 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
750 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
751 5c860e29 2018-03-12 stsp break;
752 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
753 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
754 5c860e29 2018-03-12 stsp break;
755 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
756 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
757 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
758 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
759 5c860e29 2018-03-12 stsp break;
760 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
761 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
762 5c860e29 2018-03-12 stsp break;
763 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
764 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
765 5c860e29 2018-03-12 stsp break;
766 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
767 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
768 5c860e29 2018-03-12 stsp break;
769 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
770 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
771 5c860e29 2018-03-12 stsp break;
772 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
773 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
774 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
775 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
776 5c860e29 2018-03-12 stsp break;
777 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
778 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
779 5c860e29 2018-03-12 stsp break;
780 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
781 5c860e29 2018-03-12 stsp default:
782 5c860e29 2018-03-12 stsp break;
783 5c860e29 2018-03-12 stsp }
784 5c860e29 2018-03-12 stsp }
785 5c860e29 2018-03-12 stsp
786 5c860e29 2018-03-12 stsp git_status_list_free(status);
787 5c860e29 2018-03-12 stsp git_repository_free(repo);
788 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
789 5c860e29 2018-03-12 stsp
790 5c860e29 2018-03-12 stsp return 0;
791 5c860e29 2018-03-12 stsp }
792 f42b1b34 2018-03-12 stsp #endif