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 2178c42e 2018-04-22 stsp if (pledge("stdio rpath wpath cpath flock proc", 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 c09a553d 2018-03-12 stsp if (error != NULL)
229 c09a553d 2018-03-12 stsp goto done;
230 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
231 c09a553d 2018-03-12 stsp if (error != NULL)
232 c09a553d 2018-03-12 stsp goto done;
233 c09a553d 2018-03-12 stsp
234 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
235 c09a553d 2018-03-12 stsp if (error != NULL)
236 c09a553d 2018-03-12 stsp goto done;
237 c09a553d 2018-03-12 stsp
238 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
239 c09a553d 2018-03-12 stsp if (error != NULL)
240 c09a553d 2018-03-12 stsp goto done;
241 c09a553d 2018-03-12 stsp
242 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
243 92a684f4 2018-03-12 stsp checkout_progress, worktree_path);
244 c09a553d 2018-03-12 stsp if (error != NULL)
245 c09a553d 2018-03-12 stsp goto done;
246 c09a553d 2018-03-12 stsp
247 b65ae19a 2018-04-24 stsp printf("Checked out %s\n", worktree_path);
248 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
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 b65ae19a 2018-04-24 stsp printf("commit %s\n", buf);
317 b65ae19a 2018-04-24 stsp printf("author: %s\n", commit->author);
318 f3d135e1 2018-04-01 stsp if (strcmp(commit->author, commit->committer) != 0)
319 b65ae19a 2018-04-24 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 7e665116 2018-04-02 stsp struct got_object *obj;
368 7e665116 2018-04-02 stsp struct got_commit_object *pcommit;
369 7e665116 2018-04-02 stsp struct commit_queue_entry *pentry;
370 5c860e29 2018-03-12 stsp
371 8bf5b3c9 2018-03-17 stsp entry = TAILQ_FIRST(&commits);
372 7e665116 2018-04-02 stsp
373 79109fed 2018-03-27 stsp err = print_commit(entry->commit, entry->id, repo, show_patch);
374 58379602 2018-04-02 stsp if (err)
375 8bf5b3c9 2018-03-17 stsp break;
376 5c860e29 2018-03-12 stsp
377 64a96a6d 2018-04-01 stsp if (limit && --limit == 0)
378 64a96a6d 2018-04-01 stsp break;
379 8bf5b3c9 2018-03-17 stsp
380 7e665116 2018-04-02 stsp if (entry->commit->nparents == 0)
381 7e665116 2018-04-02 stsp break;
382 8bf5b3c9 2018-03-17 stsp
383 7e665116 2018-04-02 stsp /* Follow the first parent (TODO: handle merge commits). */
384 7e665116 2018-04-02 stsp pid = SIMPLEQ_FIRST(&entry->commit->parent_ids);
385 7e665116 2018-04-02 stsp err = got_object_open(&obj, repo, pid->id);
386 7e665116 2018-04-02 stsp if (err)
387 7e665116 2018-04-02 stsp break;
388 7e665116 2018-04-02 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
389 7e665116 2018-04-02 stsp err = got_error(GOT_ERR_OBJ_TYPE);
390 7e665116 2018-04-02 stsp break;
391 7e665116 2018-04-02 stsp }
392 7e665116 2018-04-02 stsp
393 7e665116 2018-04-02 stsp err = got_object_commit_open(&pcommit, repo, obj);
394 7e665116 2018-04-02 stsp got_object_close(obj);
395 7e665116 2018-04-02 stsp if (err)
396 7e665116 2018-04-02 stsp break;
397 7e665116 2018-04-02 stsp
398 7e665116 2018-04-02 stsp pentry = calloc(1, sizeof(*pentry));
399 7e665116 2018-04-02 stsp if (pentry == NULL) {
400 7e665116 2018-04-02 stsp err = got_error_from_errno();
401 7e665116 2018-04-02 stsp got_object_commit_close(pcommit);
402 7e665116 2018-04-02 stsp break;
403 8bf5b3c9 2018-03-17 stsp }
404 7e665116 2018-04-02 stsp pentry->id = got_object_id_dup(pid->id);
405 7e665116 2018-04-02 stsp if (pentry->id == NULL) {
406 7e665116 2018-04-02 stsp err = got_error_from_errno();
407 7e665116 2018-04-02 stsp got_object_commit_close(pcommit);
408 7e665116 2018-04-02 stsp break;
409 7e665116 2018-04-02 stsp }
410 7e665116 2018-04-02 stsp pentry->commit = pcommit;
411 7e665116 2018-04-02 stsp TAILQ_INSERT_TAIL(&commits, pentry, entry);
412 8bf5b3c9 2018-03-17 stsp
413 8bf5b3c9 2018-03-17 stsp TAILQ_REMOVE(&commits, entry, entry);
414 8bf5b3c9 2018-03-17 stsp got_object_commit_close(entry->commit);
415 8bf5b3c9 2018-03-17 stsp free(entry->id);
416 8bf5b3c9 2018-03-17 stsp free(entry);
417 58379602 2018-04-02 stsp }
418 58379602 2018-04-02 stsp
419 675d71c4 2018-04-02 stsp while (!TAILQ_EMPTY(&commits)) {
420 675d71c4 2018-04-02 stsp entry = TAILQ_FIRST(&commits);
421 675d71c4 2018-04-02 stsp TAILQ_REMOVE(&commits, entry, entry);
422 675d71c4 2018-04-02 stsp got_object_commit_close(entry->commit);
423 675d71c4 2018-04-02 stsp free(entry->id);
424 675d71c4 2018-04-02 stsp free(entry);
425 8bf5b3c9 2018-03-17 stsp }
426 8bf5b3c9 2018-03-17 stsp
427 f42b1b34 2018-03-12 stsp return err;
428 f42b1b34 2018-03-12 stsp }
429 5c860e29 2018-03-12 stsp
430 6f3d1eb0 2018-03-12 stsp __dead void
431 6f3d1eb0 2018-03-12 stsp usage_log(void)
432 6f3d1eb0 2018-03-12 stsp {
433 64a96a6d 2018-04-01 stsp fprintf(stderr, "usage: %s log [-p] [-c commit] [ -l N ] "
434 64a96a6d 2018-04-01 stsp "[repository-path]\n", getprogname());
435 6f3d1eb0 2018-03-12 stsp exit(1);
436 6f3d1eb0 2018-03-12 stsp }
437 6f3d1eb0 2018-03-12 stsp
438 d7d4f210 2018-03-12 stsp const struct got_error *
439 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
440 f42b1b34 2018-03-12 stsp {
441 f42b1b34 2018-03-12 stsp const struct got_error *error;
442 f42b1b34 2018-03-12 stsp struct got_repository *repo;
443 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
444 f42b1b34 2018-03-12 stsp struct got_object *obj;
445 6f3d1eb0 2018-03-12 stsp char *repo_path = NULL;
446 d142fc45 2018-04-01 stsp char *start_commit = NULL;
447 79109fed 2018-03-27 stsp int ch;
448 64a96a6d 2018-04-01 stsp int show_patch = 0, limit = 0;
449 64a96a6d 2018-04-01 stsp const char *errstr;
450 5c860e29 2018-03-12 stsp
451 6715a751 2018-03-16 stsp #ifndef PROFILE
452 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
453 f42b1b34 2018-03-12 stsp err(1, "pledge");
454 6715a751 2018-03-16 stsp #endif
455 79109fed 2018-03-27 stsp
456 64a96a6d 2018-04-01 stsp while ((ch = getopt(argc, argv, "pc:l:")) != -1) {
457 79109fed 2018-03-27 stsp switch (ch) {
458 79109fed 2018-03-27 stsp case 'p':
459 79109fed 2018-03-27 stsp show_patch = 1;
460 d142fc45 2018-04-01 stsp break;
461 d142fc45 2018-04-01 stsp case 'c':
462 d142fc45 2018-04-01 stsp start_commit = optarg;
463 64a96a6d 2018-04-01 stsp break;
464 64a96a6d 2018-04-01 stsp case 'l':
465 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
466 64a96a6d 2018-04-01 stsp if (errstr != NULL)
467 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
468 79109fed 2018-03-27 stsp break;
469 79109fed 2018-03-27 stsp default:
470 79109fed 2018-03-27 stsp usage();
471 79109fed 2018-03-27 stsp /* NOTREACHED */
472 79109fed 2018-03-27 stsp }
473 79109fed 2018-03-27 stsp }
474 79109fed 2018-03-27 stsp
475 79109fed 2018-03-27 stsp argc -= optind;
476 79109fed 2018-03-27 stsp argv += optind;
477 79109fed 2018-03-27 stsp
478 79109fed 2018-03-27 stsp if (argc == 0) {
479 6f3d1eb0 2018-03-12 stsp repo_path = getcwd(NULL, 0);
480 6f3d1eb0 2018-03-12 stsp if (repo_path == NULL)
481 e1e3f570 2018-04-01 stsp return got_error_from_errno();
482 3235492e 2018-04-01 stsp } else if (argc == 1) {
483 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
484 76089277 2018-04-01 stsp if (repo_path == NULL)
485 76089277 2018-04-01 stsp return got_error_from_errno();
486 3235492e 2018-04-01 stsp } else
487 6f3d1eb0 2018-03-12 stsp usage_log();
488 f42b1b34 2018-03-12 stsp
489 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
490 76089277 2018-04-01 stsp free(repo_path);
491 d7d4f210 2018-03-12 stsp if (error != NULL)
492 d7d4f210 2018-03-12 stsp return error;
493 f42b1b34 2018-03-12 stsp
494 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
495 3235492e 2018-04-01 stsp struct got_reference *head_ref;
496 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
497 3235492e 2018-04-01 stsp if (error != NULL)
498 3235492e 2018-04-01 stsp return error;
499 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
500 3235492e 2018-04-01 stsp got_ref_close(head_ref);
501 3235492e 2018-04-01 stsp if (error != NULL)
502 3235492e 2018-04-01 stsp return error;
503 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
504 3235492e 2018-04-01 stsp } else {
505 d142fc45 2018-04-01 stsp error = got_object_open_by_id_str(&obj, repo, start_commit);
506 3235492e 2018-04-01 stsp if (error == NULL) {
507 3235492e 2018-04-01 stsp id = got_object_get_id(obj);
508 3235492e 2018-04-01 stsp if (id == NULL)
509 3235492e 2018-04-01 stsp error = got_error_from_errno();
510 3235492e 2018-04-01 stsp }
511 3235492e 2018-04-01 stsp }
512 d7d4f210 2018-03-12 stsp if (error != NULL)
513 d7d4f210 2018-03-12 stsp return error;
514 8bf5b3c9 2018-03-17 stsp if (got_object_get_type(obj) == GOT_OBJ_TYPE_COMMIT)
515 64a96a6d 2018-04-01 stsp error = print_commits(obj, id, repo, show_patch, limit);
516 8bf5b3c9 2018-03-17 stsp else
517 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
518 f42b1b34 2018-03-12 stsp got_object_close(obj);
519 f42b1b34 2018-03-12 stsp free(id);
520 f42b1b34 2018-03-12 stsp got_repo_close(repo);
521 8bf5b3c9 2018-03-17 stsp return error;
522 b00d56cd 2018-04-01 stsp }
523 b00d56cd 2018-04-01 stsp
524 b00d56cd 2018-04-01 stsp static const struct got_error *
525 b00d56cd 2018-04-01 stsp diff_blobs(struct got_object *obj1, struct got_object *obj2,
526 b00d56cd 2018-04-01 stsp struct got_repository *repo)
527 b00d56cd 2018-04-01 stsp {
528 b00d56cd 2018-04-01 stsp const struct got_error *err;
529 b00d56cd 2018-04-01 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
530 b00d56cd 2018-04-01 stsp
531 b00d56cd 2018-04-01 stsp err = got_object_blob_open(&blob1, repo, obj1, 8192);
532 b00d56cd 2018-04-01 stsp if (err)
533 b00d56cd 2018-04-01 stsp goto done;
534 28ec8409 2018-04-24 stsp err = got_object_blob_open(&blob2, repo, obj2, 8192);
535 b00d56cd 2018-04-01 stsp if (err)
536 b00d56cd 2018-04-01 stsp goto done;
537 b00d56cd 2018-04-01 stsp
538 b00d56cd 2018-04-01 stsp err = got_diff_blob(blob1, blob2, NULL, NULL, stdout);
539 b00d56cd 2018-04-01 stsp done:
540 b00d56cd 2018-04-01 stsp if (blob1)
541 b00d56cd 2018-04-01 stsp got_object_blob_close(blob1);
542 b00d56cd 2018-04-01 stsp if (blob2)
543 b00d56cd 2018-04-01 stsp got_object_blob_close(blob2);
544 b00d56cd 2018-04-01 stsp return err;
545 b00d56cd 2018-04-01 stsp }
546 b00d56cd 2018-04-01 stsp
547 b00d56cd 2018-04-01 stsp static const struct got_error *
548 b00d56cd 2018-04-01 stsp diff_trees(struct got_object *obj1, struct got_object *obj2,
549 b00d56cd 2018-04-01 stsp struct got_repository *repo)
550 b00d56cd 2018-04-01 stsp {
551 b00d56cd 2018-04-01 stsp const struct got_error *err;
552 b00d56cd 2018-04-01 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
553 b00d56cd 2018-04-01 stsp
554 b00d56cd 2018-04-01 stsp err = got_object_tree_open(&tree1, repo, obj1);
555 b00d56cd 2018-04-01 stsp if (err)
556 b00d56cd 2018-04-01 stsp goto done;
557 b00d56cd 2018-04-01 stsp err = got_object_tree_open(&tree2, repo, obj2);
558 b00d56cd 2018-04-01 stsp if (err)
559 b00d56cd 2018-04-01 stsp goto done;
560 b00d56cd 2018-04-01 stsp
561 b00d56cd 2018-04-01 stsp err = got_diff_tree(tree1, tree2, repo, stdout);
562 b00d56cd 2018-04-01 stsp done:
563 b00d56cd 2018-04-01 stsp if (tree1)
564 b00d56cd 2018-04-01 stsp got_object_tree_close(tree1);
565 b00d56cd 2018-04-01 stsp if (tree2)
566 b00d56cd 2018-04-01 stsp got_object_tree_close(tree2);
567 b00d56cd 2018-04-01 stsp return err;
568 5c860e29 2018-03-12 stsp }
569 5c860e29 2018-03-12 stsp
570 b00d56cd 2018-04-01 stsp static const struct got_error *
571 b00d56cd 2018-04-01 stsp diff_commits(struct got_object *obj1, struct got_object *obj2,
572 b00d56cd 2018-04-01 stsp struct got_repository *repo)
573 b00d56cd 2018-04-01 stsp {
574 b00d56cd 2018-04-01 stsp const struct got_error *err;
575 b00d56cd 2018-04-01 stsp struct got_commit_object *commit1 = NULL, *commit2 = NULL;
576 b00d56cd 2018-04-01 stsp struct got_object *tree_obj1 = NULL, *tree_obj2 = NULL;
577 b00d56cd 2018-04-01 stsp
578 b00d56cd 2018-04-01 stsp err = got_object_commit_open(&commit1, repo, obj1);
579 b00d56cd 2018-04-01 stsp if (err)
580 b00d56cd 2018-04-01 stsp goto done;
581 b00d56cd 2018-04-01 stsp err = got_object_commit_open(&commit2, repo, obj2);
582 b00d56cd 2018-04-01 stsp if (err)
583 b00d56cd 2018-04-01 stsp goto done;
584 b00d56cd 2018-04-01 stsp
585 b00d56cd 2018-04-01 stsp err = got_object_open(&tree_obj1, repo, commit1->tree_id);
586 b00d56cd 2018-04-01 stsp if (err)
587 b00d56cd 2018-04-01 stsp goto done;
588 b00d56cd 2018-04-01 stsp err = got_object_open(&tree_obj2, repo, commit2->tree_id);
589 b00d56cd 2018-04-01 stsp if (err)
590 b00d56cd 2018-04-01 stsp goto done;
591 b00d56cd 2018-04-01 stsp
592 b00d56cd 2018-04-01 stsp err = diff_trees(tree_obj1, tree_obj2, repo);
593 b00d56cd 2018-04-01 stsp done:
594 b00d56cd 2018-04-01 stsp if (tree_obj1)
595 b00d56cd 2018-04-01 stsp got_object_close(tree_obj1);
596 b00d56cd 2018-04-01 stsp if (tree_obj2)
597 b00d56cd 2018-04-01 stsp got_object_close(tree_obj2);
598 b00d56cd 2018-04-01 stsp if (commit1)
599 b00d56cd 2018-04-01 stsp got_object_commit_close(commit1);
600 b00d56cd 2018-04-01 stsp if (commit2)
601 b00d56cd 2018-04-01 stsp got_object_commit_close(commit2);
602 b00d56cd 2018-04-01 stsp return err;
603 b00d56cd 2018-04-01 stsp
604 3f8b7d6a 2018-04-01 stsp }
605 3f8b7d6a 2018-04-01 stsp
606 3f8b7d6a 2018-04-01 stsp __dead void
607 3f8b7d6a 2018-04-01 stsp usage_diff(void)
608 3f8b7d6a 2018-04-01 stsp {
609 3f8b7d6a 2018-04-01 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
610 3f8b7d6a 2018-04-01 stsp getprogname());
611 3f8b7d6a 2018-04-01 stsp exit(1);
612 b00d56cd 2018-04-01 stsp }
613 b00d56cd 2018-04-01 stsp
614 b00d56cd 2018-04-01 stsp const struct got_error *
615 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
616 b00d56cd 2018-04-01 stsp {
617 b00d56cd 2018-04-01 stsp const struct got_error *error;
618 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
619 b00d56cd 2018-04-01 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
620 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
621 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
622 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
623 b00d56cd 2018-04-01 stsp int ch;
624 b00d56cd 2018-04-01 stsp
625 b00d56cd 2018-04-01 stsp #ifndef PROFILE
626 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
627 b00d56cd 2018-04-01 stsp err(1, "pledge");
628 b00d56cd 2018-04-01 stsp #endif
629 b00d56cd 2018-04-01 stsp
630 b00d56cd 2018-04-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
631 b00d56cd 2018-04-01 stsp switch (ch) {
632 b00d56cd 2018-04-01 stsp default:
633 b00d56cd 2018-04-01 stsp usage();
634 b00d56cd 2018-04-01 stsp /* NOTREACHED */
635 b00d56cd 2018-04-01 stsp }
636 b00d56cd 2018-04-01 stsp }
637 b00d56cd 2018-04-01 stsp
638 b00d56cd 2018-04-01 stsp argc -= optind;
639 b00d56cd 2018-04-01 stsp argv += optind;
640 b00d56cd 2018-04-01 stsp
641 b00d56cd 2018-04-01 stsp if (argc == 0) {
642 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
643 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
644 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
645 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
646 e1e3f570 2018-04-01 stsp return got_error_from_errno();
647 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
648 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
649 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
650 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
651 76089277 2018-04-01 stsp if (repo_path == NULL)
652 76089277 2018-04-01 stsp return got_error_from_errno();
653 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
654 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
655 b00d56cd 2018-04-01 stsp } else
656 b00d56cd 2018-04-01 stsp usage_diff();
657 b00d56cd 2018-04-01 stsp
658 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
659 76089277 2018-04-01 stsp free(repo_path);
660 b00d56cd 2018-04-01 stsp if (error != NULL)
661 b00d56cd 2018-04-01 stsp goto done;
662 b00d56cd 2018-04-01 stsp
663 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
664 b00d56cd 2018-04-01 stsp if (error == NULL) {
665 b00d56cd 2018-04-01 stsp id1 = got_object_get_id(obj1);
666 b00d56cd 2018-04-01 stsp if (id1 == NULL)
667 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
668 b00d56cd 2018-04-01 stsp }
669 b00d56cd 2018-04-01 stsp if (error != NULL)
670 b00d56cd 2018-04-01 stsp goto done;
671 b00d56cd 2018-04-01 stsp
672 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
673 b00d56cd 2018-04-01 stsp if (error == NULL) {
674 b00d56cd 2018-04-01 stsp id2 = got_object_get_id(obj2);
675 b00d56cd 2018-04-01 stsp if (id2 == NULL)
676 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
677 b00d56cd 2018-04-01 stsp }
678 b00d56cd 2018-04-01 stsp if (error != NULL)
679 b00d56cd 2018-04-01 stsp goto done;
680 b00d56cd 2018-04-01 stsp
681 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
682 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
683 b00d56cd 2018-04-01 stsp goto done;
684 b00d56cd 2018-04-01 stsp }
685 b00d56cd 2018-04-01 stsp
686 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
687 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
688 b00d56cd 2018-04-01 stsp error = diff_blobs(obj1, obj2, repo);
689 b00d56cd 2018-04-01 stsp break;
690 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
691 b00d56cd 2018-04-01 stsp error = diff_trees(obj1, obj2, repo);
692 b00d56cd 2018-04-01 stsp break;
693 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
694 b00d56cd 2018-04-01 stsp error = diff_commits(obj1, obj2, repo);
695 b00d56cd 2018-04-01 stsp break;
696 b00d56cd 2018-04-01 stsp default:
697 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
698 b00d56cd 2018-04-01 stsp }
699 b00d56cd 2018-04-01 stsp
700 b00d56cd 2018-04-01 stsp done:
701 b00d56cd 2018-04-01 stsp if (obj1)
702 b00d56cd 2018-04-01 stsp got_object_close(obj1);
703 b00d56cd 2018-04-01 stsp if (obj2)
704 b00d56cd 2018-04-01 stsp got_object_close(obj2);
705 b00d56cd 2018-04-01 stsp if (id1)
706 b00d56cd 2018-04-01 stsp free(id1);
707 b00d56cd 2018-04-01 stsp if (id2)
708 b00d56cd 2018-04-01 stsp free(id2);
709 b00d56cd 2018-04-01 stsp if (repo)
710 b00d56cd 2018-04-01 stsp got_repo_close(repo);
711 b00d56cd 2018-04-01 stsp return error;
712 b00d56cd 2018-04-01 stsp }
713 b00d56cd 2018-04-01 stsp
714 f42b1b34 2018-03-12 stsp #ifdef notyet
715 d7d4f210 2018-03-12 stsp const struct got_error *
716 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
717 5c860e29 2018-03-12 stsp {
718 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
719 5c860e29 2018-03-12 stsp git_status_list *status;
720 5c860e29 2018-03-12 stsp git_status_options statusopts;
721 5c860e29 2018-03-12 stsp size_t i;
722 5c860e29 2018-03-12 stsp
723 5c860e29 2018-03-12 stsp git_libgit2_init();
724 5c860e29 2018-03-12 stsp
725 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
726 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
727 5c860e29 2018-03-12 stsp
728 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
729 5c860e29 2018-03-12 stsp errx(1, "bar repository");
730 5c860e29 2018-03-12 stsp
731 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
732 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
733 5c860e29 2018-03-12 stsp
734 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
735 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
736 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
737 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
738 5c860e29 2018-03-12 stsp
739 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
740 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
741 5c860e29 2018-03-12 stsp
742 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
743 5c860e29 2018-03-12 stsp const git_status_entry *se;
744 5c860e29 2018-03-12 stsp
745 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
746 5c860e29 2018-03-12 stsp switch (se->status) {
747 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
748 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
749 5c860e29 2018-03-12 stsp break;
750 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
751 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
752 5c860e29 2018-03-12 stsp break;
753 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
754 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
755 5c860e29 2018-03-12 stsp break;
756 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
757 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
758 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
759 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
760 5c860e29 2018-03-12 stsp break;
761 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
762 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
763 5c860e29 2018-03-12 stsp break;
764 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
765 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
766 5c860e29 2018-03-12 stsp break;
767 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
768 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
769 5c860e29 2018-03-12 stsp break;
770 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
771 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
772 5c860e29 2018-03-12 stsp break;
773 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
774 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
775 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
776 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
777 5c860e29 2018-03-12 stsp break;
778 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
779 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
780 5c860e29 2018-03-12 stsp break;
781 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
782 5c860e29 2018-03-12 stsp default:
783 5c860e29 2018-03-12 stsp break;
784 5c860e29 2018-03-12 stsp }
785 5c860e29 2018-03-12 stsp }
786 5c860e29 2018-03-12 stsp
787 5c860e29 2018-03-12 stsp git_status_list_free(status);
788 5c860e29 2018-03-12 stsp git_repository_free(repo);
789 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
790 5c860e29 2018-03-12 stsp
791 5c860e29 2018-03-12 stsp return 0;
792 5c860e29 2018-03-12 stsp }
793 f42b1b34 2018-03-12 stsp #endif