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 5de5890b 2018-10-18 stsp #include <sys/stat.h>
22 f42b1b34 2018-03-12 stsp
23 5c860e29 2018-03-12 stsp #include <err.h>
24 5c860e29 2018-03-12 stsp #include <errno.h>
25 5c860e29 2018-03-12 stsp #include <locale.h>
26 99437157 2018-11-11 stsp #include <signal.h>
27 5c860e29 2018-03-12 stsp #include <stdio.h>
28 5c860e29 2018-03-12 stsp #include <stdlib.h>
29 5c860e29 2018-03-12 stsp #include <string.h>
30 5c860e29 2018-03-12 stsp #include <unistd.h>
31 c09a553d 2018-03-12 stsp #include <libgen.h>
32 c0768b0f 2018-06-10 stsp #include <time.h>
33 5c860e29 2018-03-12 stsp
34 f42b1b34 2018-03-12 stsp #include "got_error.h"
35 f42b1b34 2018-03-12 stsp #include "got_object.h"
36 5261c201 2018-04-01 stsp #include "got_reference.h"
37 f42b1b34 2018-03-12 stsp #include "got_repository.h"
38 c09a553d 2018-03-12 stsp #include "got_worktree.h"
39 79109fed 2018-03-27 stsp #include "got_diff.h"
40 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
41 404c43c4 2018-06-21 stsp #include "got_blame.h"
42 5c860e29 2018-03-12 stsp
43 5c860e29 2018-03-12 stsp #ifndef nitems
44 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
45 5c860e29 2018-03-12 stsp #endif
46 99437157 2018-11-11 stsp
47 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
48 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
49 99437157 2018-11-11 stsp
50 99437157 2018-11-11 stsp static void
51 99437157 2018-11-11 stsp catch_sigint(int signo)
52 99437157 2018-11-11 stsp {
53 99437157 2018-11-11 stsp sigint_received = 1;
54 99437157 2018-11-11 stsp }
55 99437157 2018-11-11 stsp
56 99437157 2018-11-11 stsp static void
57 99437157 2018-11-11 stsp catch_sigpipe(int signo)
58 99437157 2018-11-11 stsp {
59 99437157 2018-11-11 stsp sigpipe_received = 1;
60 99437157 2018-11-11 stsp }
61 5c860e29 2018-03-12 stsp
62 99437157 2018-11-11 stsp
63 5c860e29 2018-03-12 stsp struct cmd {
64 5c860e29 2018-03-12 stsp const char *cmd_name;
65 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
66 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
67 46a0db7d 2018-03-12 stsp const char *cmd_descr;
68 5c860e29 2018-03-12 stsp };
69 5c860e29 2018-03-12 stsp
70 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
71 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
72 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
73 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
74 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
75 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
76 5c860e29 2018-03-12 stsp
77 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
78 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
79 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
80 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
81 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
82 4ed7e80c 2018-05-20 stsp #ifdef notyet
83 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
84 4ed7e80c 2018-05-20 stsp #endif
85 5c860e29 2018-03-12 stsp
86 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
87 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
88 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
89 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
90 1b6b95a8 2018-03-12 stsp "show repository history" },
91 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
92 b00d56cd 2018-04-01 stsp "compare files and directories" },
93 404c43c4 2018-06-21 stsp { "blame", cmd_blame, usage_blame,
94 404c43c4 2018-06-21 stsp " show when lines in a file were changed" },
95 5de5890b 2018-10-18 stsp { "tree", cmd_tree, usage_tree,
96 5de5890b 2018-10-18 stsp " list files and directories in repository" },
97 f42b1b34 2018-03-12 stsp #ifdef notyet
98 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
99 1b6b95a8 2018-03-12 stsp "show modification status of files" },
100 f42b1b34 2018-03-12 stsp #endif
101 5c860e29 2018-03-12 stsp };
102 5c860e29 2018-03-12 stsp
103 5c860e29 2018-03-12 stsp int
104 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
105 5c860e29 2018-03-12 stsp {
106 5c860e29 2018-03-12 stsp struct cmd *cmd;
107 5c860e29 2018-03-12 stsp unsigned int i;
108 5c860e29 2018-03-12 stsp int ch;
109 1b6b95a8 2018-03-12 stsp int hflag = 0;
110 5c860e29 2018-03-12 stsp
111 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
112 5c860e29 2018-03-12 stsp
113 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
114 5c860e29 2018-03-12 stsp switch (ch) {
115 1b6b95a8 2018-03-12 stsp case 'h':
116 1b6b95a8 2018-03-12 stsp hflag = 1;
117 1b6b95a8 2018-03-12 stsp break;
118 5c860e29 2018-03-12 stsp default:
119 5c860e29 2018-03-12 stsp usage();
120 5c860e29 2018-03-12 stsp /* NOTREACHED */
121 5c860e29 2018-03-12 stsp }
122 5c860e29 2018-03-12 stsp }
123 5c860e29 2018-03-12 stsp
124 5c860e29 2018-03-12 stsp argc -= optind;
125 5c860e29 2018-03-12 stsp argv += optind;
126 1e70621d 2018-03-27 stsp optind = 0;
127 5c860e29 2018-03-12 stsp
128 5c860e29 2018-03-12 stsp if (argc <= 0)
129 5c860e29 2018-03-12 stsp usage();
130 5c860e29 2018-03-12 stsp
131 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
132 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
133 99437157 2018-11-11 stsp
134 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
135 d7d4f210 2018-03-12 stsp const struct got_error *error;
136 d7d4f210 2018-03-12 stsp
137 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
138 5c860e29 2018-03-12 stsp
139 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
140 5c860e29 2018-03-12 stsp continue;
141 5c860e29 2018-03-12 stsp
142 1b6b95a8 2018-03-12 stsp if (hflag)
143 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
144 1b6b95a8 2018-03-12 stsp
145 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
146 80d5f134 2018-11-11 stsp if (error && !(sigint_received || sigpipe_received)) {
147 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
148 d7d4f210 2018-03-12 stsp return 1;
149 d7d4f210 2018-03-12 stsp }
150 d7d4f210 2018-03-12 stsp
151 d7d4f210 2018-03-12 stsp return 0;
152 5c860e29 2018-03-12 stsp }
153 5c860e29 2018-03-12 stsp
154 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
155 5c860e29 2018-03-12 stsp return 1;
156 5c860e29 2018-03-12 stsp }
157 5c860e29 2018-03-12 stsp
158 4ed7e80c 2018-05-20 stsp __dead static void
159 5c860e29 2018-03-12 stsp usage(void)
160 5c860e29 2018-03-12 stsp {
161 46a0db7d 2018-03-12 stsp int i;
162 46a0db7d 2018-03-12 stsp
163 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
164 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
165 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
166 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
167 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
168 46a0db7d 2018-03-12 stsp }
169 5c860e29 2018-03-12 stsp exit(1);
170 5c860e29 2018-03-12 stsp }
171 5c860e29 2018-03-12 stsp
172 4ed7e80c 2018-05-20 stsp __dead static void
173 c09a553d 2018-03-12 stsp usage_checkout(void)
174 c09a553d 2018-03-12 stsp {
175 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
176 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
177 c09a553d 2018-03-12 stsp exit(1);
178 92a684f4 2018-03-12 stsp }
179 92a684f4 2018-03-12 stsp
180 92a684f4 2018-03-12 stsp static void
181 92a684f4 2018-03-12 stsp checkout_progress(void *arg, const char *path)
182 92a684f4 2018-03-12 stsp {
183 92a684f4 2018-03-12 stsp char *worktree_path = arg;
184 92a684f4 2018-03-12 stsp
185 92a684f4 2018-03-12 stsp while (path[0] == '/')
186 92a684f4 2018-03-12 stsp path++;
187 92a684f4 2018-03-12 stsp
188 92a684f4 2018-03-12 stsp printf("A %s/%s\n", worktree_path, path);
189 99437157 2018-11-11 stsp }
190 99437157 2018-11-11 stsp
191 99437157 2018-11-11 stsp static const struct got_error *
192 99437157 2018-11-11 stsp checkout_cancel(void *arg)
193 99437157 2018-11-11 stsp {
194 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
195 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
196 99437157 2018-11-11 stsp return NULL;
197 c09a553d 2018-03-12 stsp }
198 c09a553d 2018-03-12 stsp
199 4ed7e80c 2018-05-20 stsp static const struct got_error *
200 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
201 c09a553d 2018-03-12 stsp {
202 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
203 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
204 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
205 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
206 c09a553d 2018-03-12 stsp char *repo_path = NULL;
207 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
208 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
209 0bb8a95e 2018-03-12 stsp int ch;
210 c09a553d 2018-03-12 stsp
211 0bb8a95e 2018-03-12 stsp while ((ch = getopt(argc, argv, "p:")) != -1) {
212 0bb8a95e 2018-03-12 stsp switch (ch) {
213 0bb8a95e 2018-03-12 stsp case 'p':
214 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
215 0bb8a95e 2018-03-12 stsp break;
216 0bb8a95e 2018-03-12 stsp default:
217 0bb8a95e 2018-03-12 stsp usage();
218 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
219 0bb8a95e 2018-03-12 stsp }
220 0bb8a95e 2018-03-12 stsp }
221 0bb8a95e 2018-03-12 stsp
222 0bb8a95e 2018-03-12 stsp argc -= optind;
223 0bb8a95e 2018-03-12 stsp argv += optind;
224 0bb8a95e 2018-03-12 stsp
225 6715a751 2018-03-16 stsp #ifndef PROFILE
226 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
227 ad242220 2018-09-08 stsp == -1)
228 c09a553d 2018-03-12 stsp err(1, "pledge");
229 6715a751 2018-03-16 stsp #endif
230 0bb8a95e 2018-03-12 stsp if (argc == 1) {
231 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
232 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
233 76089277 2018-04-01 stsp if (repo_path == NULL)
234 76089277 2018-04-01 stsp return got_error_from_errno();
235 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
236 76089277 2018-04-01 stsp if (cwd == NULL) {
237 76089277 2018-04-01 stsp error = got_error_from_errno();
238 76089277 2018-04-01 stsp goto done;
239 76089277 2018-04-01 stsp }
240 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
241 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
242 5d7c1dab 2018-04-01 stsp else
243 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
244 76089277 2018-04-01 stsp if (base == NULL) {
245 76089277 2018-04-01 stsp error = got_error_from_errno();
246 76089277 2018-04-01 stsp goto done;
247 76089277 2018-04-01 stsp }
248 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
249 c09a553d 2018-03-12 stsp if (dotgit)
250 c09a553d 2018-03-12 stsp *dotgit = '\0';
251 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
252 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
253 c09a553d 2018-03-12 stsp free(cwd);
254 76089277 2018-04-01 stsp goto done;
255 c09a553d 2018-03-12 stsp }
256 c09a553d 2018-03-12 stsp free(cwd);
257 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
258 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
259 76089277 2018-04-01 stsp if (repo_path == NULL) {
260 76089277 2018-04-01 stsp error = got_error_from_errno();
261 76089277 2018-04-01 stsp goto done;
262 76089277 2018-04-01 stsp }
263 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
264 76089277 2018-04-01 stsp if (worktree_path == NULL) {
265 76089277 2018-04-01 stsp error = got_error_from_errno();
266 76089277 2018-04-01 stsp goto done;
267 76089277 2018-04-01 stsp }
268 c09a553d 2018-03-12 stsp } else
269 c09a553d 2018-03-12 stsp usage_checkout();
270 c09a553d 2018-03-12 stsp
271 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
272 c09a553d 2018-03-12 stsp if (error != NULL)
273 c09a553d 2018-03-12 stsp goto done;
274 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
275 c09a553d 2018-03-12 stsp if (error != NULL)
276 c09a553d 2018-03-12 stsp goto done;
277 c09a553d 2018-03-12 stsp
278 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
279 c09a553d 2018-03-12 stsp if (error != NULL)
280 c09a553d 2018-03-12 stsp goto done;
281 c09a553d 2018-03-12 stsp
282 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
283 c09a553d 2018-03-12 stsp if (error != NULL)
284 c09a553d 2018-03-12 stsp goto done;
285 c09a553d 2018-03-12 stsp
286 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
287 99437157 2018-11-11 stsp checkout_progress, worktree_path, checkout_cancel, NULL);
288 c09a553d 2018-03-12 stsp if (error != NULL)
289 c09a553d 2018-03-12 stsp goto done;
290 c09a553d 2018-03-12 stsp
291 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
292 c09a553d 2018-03-12 stsp
293 c09a553d 2018-03-12 stsp done:
294 76089277 2018-04-01 stsp free(repo_path);
295 c09a553d 2018-03-12 stsp free(worktree_path);
296 c09a553d 2018-03-12 stsp return error;
297 c09a553d 2018-03-12 stsp }
298 c09a553d 2018-03-12 stsp
299 f42b1b34 2018-03-12 stsp static const struct got_error *
300 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
301 c0cc5c62 2018-10-18 stsp int diff_context, struct got_repository *repo)
302 5c860e29 2018-03-12 stsp {
303 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
304 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
305 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
306 0f2b3dca 2018-12-22 stsp char *id_str1 = NULL, *id_str2;
307 79109fed 2018-03-27 stsp
308 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo,
309 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
310 79109fed 2018-03-27 stsp if (err)
311 79109fed 2018-03-27 stsp return err;
312 79109fed 2018-03-27 stsp
313 45d799e2 2018-12-23 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
314 79f35eb3 2018-06-11 stsp if (qid != NULL) {
315 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
316 79109fed 2018-03-27 stsp
317 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
318 79109fed 2018-03-27 stsp if (err)
319 79109fed 2018-03-27 stsp return err;
320 79109fed 2018-03-27 stsp
321 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo,
322 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(pcommit));
323 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
324 0f2b3dca 2018-12-22 stsp if (err)
325 0f2b3dca 2018-12-22 stsp return err;
326 0f2b3dca 2018-12-22 stsp
327 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str1, qid->id);
328 79109fed 2018-03-27 stsp if (err)
329 79109fed 2018-03-27 stsp return err;
330 79109fed 2018-03-27 stsp }
331 79109fed 2018-03-27 stsp
332 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str2, id);
333 0f2b3dca 2018-12-22 stsp if (err)
334 0f2b3dca 2018-12-22 stsp goto done;
335 0f2b3dca 2018-12-22 stsp
336 56765ebb 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
337 c0cc5c62 2018-10-18 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
338 0f2b3dca 2018-12-22 stsp done:
339 79109fed 2018-03-27 stsp if (tree1)
340 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
341 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
342 0f2b3dca 2018-12-22 stsp free(id_str1);
343 0f2b3dca 2018-12-22 stsp free(id_str2);
344 79109fed 2018-03-27 stsp return err;
345 79109fed 2018-03-27 stsp }
346 79109fed 2018-03-27 stsp
347 4bb494d5 2018-06-16 stsp static char *
348 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
349 6c281f94 2018-06-11 stsp {
350 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
351 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
352 6c281f94 2018-06-11 stsp if (p)
353 6c281f94 2018-06-11 stsp *p = '\0';
354 6c281f94 2018-06-11 stsp return s;
355 6c281f94 2018-06-11 stsp }
356 6c281f94 2018-06-11 stsp
357 79109fed 2018-03-27 stsp static const struct got_error *
358 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
359 c0cc5c62 2018-10-18 stsp struct got_repository *repo, int show_patch, int diff_context)
360 79109fed 2018-03-27 stsp {
361 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
362 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
363 6c281f94 2018-06-11 stsp char datebuf[26];
364 45d799e2 2018-12-23 stsp time_t committer_time;
365 45d799e2 2018-12-23 stsp const char *author, *committer;
366 5c860e29 2018-03-12 stsp
367 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
368 8bf5b3c9 2018-03-17 stsp if (err)
369 8bf5b3c9 2018-03-17 stsp return err;
370 788c352e 2018-06-16 stsp
371 33d869be 2018-12-22 stsp printf("-----------------------------------------------\n");
372 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
373 832c249c 2018-06-10 stsp free(id_str);
374 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
375 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
376 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
377 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
378 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
379 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
380 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
381 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
382 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
383 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
384 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
385 3fe1abad 2018-06-10 stsp int n = 1;
386 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
387 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
388 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
389 a0603db2 2018-06-10 stsp if (err)
390 a0603db2 2018-06-10 stsp return err;
391 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
392 a0603db2 2018-06-10 stsp free(id_str);
393 a0603db2 2018-06-10 stsp }
394 a0603db2 2018-06-10 stsp }
395 832c249c 2018-06-10 stsp
396 45d799e2 2018-12-23 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
397 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
398 832c249c 2018-06-10 stsp return got_error_from_errno();
399 8bf5b3c9 2018-03-17 stsp
400 621015ac 2018-07-23 stsp logmsg = logmsg0;
401 832c249c 2018-06-10 stsp do {
402 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
403 832c249c 2018-06-10 stsp if (line)
404 832c249c 2018-06-10 stsp printf(" %s\n", line);
405 832c249c 2018-06-10 stsp } while (line);
406 621015ac 2018-07-23 stsp free(logmsg0);
407 832c249c 2018-06-10 stsp
408 971751ac 2018-03-27 stsp if (show_patch) {
409 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
410 971751ac 2018-03-27 stsp if (err == 0)
411 971751ac 2018-03-27 stsp printf("\n");
412 971751ac 2018-03-27 stsp }
413 07862c20 2018-09-15 stsp
414 d82de447 2018-09-15 stsp fflush(stdout);
415 07862c20 2018-09-15 stsp return err;
416 f42b1b34 2018-03-12 stsp }
417 5c860e29 2018-03-12 stsp
418 f42b1b34 2018-03-12 stsp static const struct got_error *
419 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
420 c0cc5c62 2018-10-18 stsp struct got_repository *repo, char *path, int show_patch, int diff_context,
421 c0cc5c62 2018-10-18 stsp int limit, int first_parent_traversal)
422 f42b1b34 2018-03-12 stsp {
423 f42b1b34 2018-03-12 stsp const struct got_error *err;
424 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
425 372ccdbb 2018-06-10 stsp
426 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
427 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
428 f42b1b34 2018-03-12 stsp if (err)
429 f42b1b34 2018-03-12 stsp return err;
430 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
431 372ccdbb 2018-06-10 stsp if (err)
432 fcc85cad 2018-07-22 stsp goto done;
433 31cedeaf 2018-09-15 stsp while (1) {
434 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
435 372ccdbb 2018-06-10 stsp struct got_object_id *id;
436 8bf5b3c9 2018-03-17 stsp
437 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
438 84453469 2018-11-11 stsp break;
439 84453469 2018-11-11 stsp
440 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
441 372ccdbb 2018-06-10 stsp if (err) {
442 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
443 9ba79e04 2018-06-11 stsp err = NULL;
444 9ba79e04 2018-06-11 stsp break;
445 9ba79e04 2018-06-11 stsp }
446 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
447 372ccdbb 2018-06-10 stsp break;
448 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
449 372ccdbb 2018-06-10 stsp if (err)
450 372ccdbb 2018-06-10 stsp break;
451 372ccdbb 2018-06-10 stsp else
452 372ccdbb 2018-06-10 stsp continue;
453 7e665116 2018-04-02 stsp }
454 b43fbaa0 2018-06-11 stsp if (id == NULL)
455 7e665116 2018-04-02 stsp break;
456 b43fbaa0 2018-06-11 stsp
457 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
458 b43fbaa0 2018-06-11 stsp if (err)
459 fcc85cad 2018-07-22 stsp break;
460 c0cc5c62 2018-10-18 stsp err = print_commit(commit, id, repo, show_patch, diff_context);
461 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
462 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
463 7e665116 2018-04-02 stsp break;
464 31cedeaf 2018-09-15 stsp }
465 fcc85cad 2018-07-22 stsp done:
466 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
467 f42b1b34 2018-03-12 stsp return err;
468 f42b1b34 2018-03-12 stsp }
469 5c860e29 2018-03-12 stsp
470 4ed7e80c 2018-05-20 stsp __dead static void
471 6f3d1eb0 2018-03-12 stsp usage_log(void)
472 6f3d1eb0 2018-03-12 stsp {
473 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
474 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
475 6f3d1eb0 2018-03-12 stsp exit(1);
476 6f3d1eb0 2018-03-12 stsp }
477 6f3d1eb0 2018-03-12 stsp
478 4ed7e80c 2018-05-20 stsp static const struct got_error *
479 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
480 f42b1b34 2018-03-12 stsp {
481 f42b1b34 2018-03-12 stsp const struct got_error *error;
482 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
483 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
484 d1f2edc9 2018-06-13 stsp struct got_object *obj = NULL;
485 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
486 d142fc45 2018-04-01 stsp char *start_commit = NULL;
487 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
488 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
489 64a96a6d 2018-04-01 stsp const char *errstr;
490 5c860e29 2018-03-12 stsp
491 6715a751 2018-03-16 stsp #ifndef PROFILE
492 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
493 ad242220 2018-09-08 stsp == -1)
494 f42b1b34 2018-03-12 stsp err(1, "pledge");
495 6715a751 2018-03-16 stsp #endif
496 79109fed 2018-03-27 stsp
497 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
498 79109fed 2018-03-27 stsp switch (ch) {
499 79109fed 2018-03-27 stsp case 'p':
500 79109fed 2018-03-27 stsp show_patch = 1;
501 d142fc45 2018-04-01 stsp break;
502 d142fc45 2018-04-01 stsp case 'c':
503 d142fc45 2018-04-01 stsp start_commit = optarg;
504 64a96a6d 2018-04-01 stsp break;
505 c0cc5c62 2018-10-18 stsp case 'C':
506 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
507 4a8520aa 2018-10-18 stsp &errstr);
508 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
509 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
510 c0cc5c62 2018-10-18 stsp break;
511 64a96a6d 2018-04-01 stsp case 'l':
512 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
513 64a96a6d 2018-04-01 stsp if (errstr != NULL)
514 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
515 79109fed 2018-03-27 stsp break;
516 0ed6ed4c 2018-06-13 stsp case 'f':
517 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
518 a0603db2 2018-06-10 stsp break;
519 04ca23f4 2018-07-16 stsp case 'r':
520 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
521 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
522 04ca23f4 2018-07-16 stsp err(1, "-r option");
523 04ca23f4 2018-07-16 stsp break;
524 79109fed 2018-03-27 stsp default:
525 79109fed 2018-03-27 stsp usage();
526 79109fed 2018-03-27 stsp /* NOTREACHED */
527 79109fed 2018-03-27 stsp }
528 79109fed 2018-03-27 stsp }
529 79109fed 2018-03-27 stsp
530 79109fed 2018-03-27 stsp argc -= optind;
531 79109fed 2018-03-27 stsp argv += optind;
532 79109fed 2018-03-27 stsp
533 04ca23f4 2018-07-16 stsp if (argc == 0)
534 04ca23f4 2018-07-16 stsp path = strdup("");
535 04ca23f4 2018-07-16 stsp else if (argc == 1)
536 04ca23f4 2018-07-16 stsp path = strdup(argv[0]);
537 04ca23f4 2018-07-16 stsp else
538 6f3d1eb0 2018-03-12 stsp usage_log();
539 04ca23f4 2018-07-16 stsp if (path == NULL)
540 04ca23f4 2018-07-16 stsp return got_error_from_errno();
541 f42b1b34 2018-03-12 stsp
542 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
543 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
544 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
545 04ca23f4 2018-07-16 stsp goto done;
546 04ca23f4 2018-07-16 stsp }
547 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
548 04ca23f4 2018-07-16 stsp repo_path = strdup(cwd);
549 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
550 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
551 04ca23f4 2018-07-16 stsp goto done;
552 04ca23f4 2018-07-16 stsp }
553 04ca23f4 2018-07-16 stsp }
554 04ca23f4 2018-07-16 stsp
555 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
556 d7d4f210 2018-03-12 stsp if (error != NULL)
557 04ca23f4 2018-07-16 stsp goto done;
558 f42b1b34 2018-03-12 stsp
559 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
560 3235492e 2018-04-01 stsp struct got_reference *head_ref;
561 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
562 3235492e 2018-04-01 stsp if (error != NULL)
563 3235492e 2018-04-01 stsp return error;
564 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
565 3235492e 2018-04-01 stsp got_ref_close(head_ref);
566 3235492e 2018-04-01 stsp if (error != NULL)
567 3235492e 2018-04-01 stsp return error;
568 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
569 3235492e 2018-04-01 stsp } else {
570 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
571 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
572 3235492e 2018-04-01 stsp if (error == NULL) {
573 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
574 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
575 d1f2edc9 2018-06-13 stsp if (error != NULL)
576 d1f2edc9 2018-06-13 stsp return error;
577 d1f2edc9 2018-06-13 stsp error = got_object_open(&obj, repo, id);
578 d1f2edc9 2018-06-13 stsp if (error != NULL)
579 d1f2edc9 2018-06-13 stsp return error;
580 d1f2edc9 2018-06-13 stsp }
581 d1f2edc9 2018-06-13 stsp if (obj == NULL) {
582 d1f2edc9 2018-06-13 stsp error = got_object_open_by_id_str(&obj, repo,
583 d1f2edc9 2018-06-13 stsp start_commit);
584 d1f2edc9 2018-06-13 stsp if (error != NULL)
585 d1f2edc9 2018-06-13 stsp return error;
586 6402fb3c 2018-09-15 stsp id = got_object_id_dup(got_object_get_id(obj));
587 3235492e 2018-04-01 stsp if (id == NULL)
588 3235492e 2018-04-01 stsp error = got_error_from_errno();
589 3235492e 2018-04-01 stsp }
590 3235492e 2018-04-01 stsp }
591 d7d4f210 2018-03-12 stsp if (error != NULL)
592 04ca23f4 2018-07-16 stsp goto done;
593 04ca23f4 2018-07-16 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT) {
594 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
595 04ca23f4 2018-07-16 stsp goto done;
596 04ca23f4 2018-07-16 stsp }
597 04ca23f4 2018-07-16 stsp
598 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
599 04ca23f4 2018-07-16 stsp if (error != NULL)
600 04ca23f4 2018-07-16 stsp goto done;
601 04ca23f4 2018-07-16 stsp if (in_repo_path) {
602 04ca23f4 2018-07-16 stsp free(path);
603 04ca23f4 2018-07-16 stsp path = in_repo_path;
604 04ca23f4 2018-07-16 stsp }
605 04ca23f4 2018-07-16 stsp
606 04ca23f4 2018-07-16 stsp error = print_commits(obj, id, repo, path, show_patch,
607 c0cc5c62 2018-10-18 stsp diff_context, limit, first_parent_traversal);
608 04ca23f4 2018-07-16 stsp done:
609 04ca23f4 2018-07-16 stsp free(path);
610 04ca23f4 2018-07-16 stsp free(repo_path);
611 04ca23f4 2018-07-16 stsp free(cwd);
612 04ca23f4 2018-07-16 stsp if (obj)
613 04ca23f4 2018-07-16 stsp got_object_close(obj);
614 f42b1b34 2018-03-12 stsp free(id);
615 ad242220 2018-09-08 stsp if (repo) {
616 ad242220 2018-09-08 stsp const struct got_error *repo_error;
617 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
618 ad242220 2018-09-08 stsp if (error == NULL)
619 ad242220 2018-09-08 stsp error = repo_error;
620 ad242220 2018-09-08 stsp }
621 8bf5b3c9 2018-03-17 stsp return error;
622 5c860e29 2018-03-12 stsp }
623 5c860e29 2018-03-12 stsp
624 4ed7e80c 2018-05-20 stsp __dead static void
625 3f8b7d6a 2018-04-01 stsp usage_diff(void)
626 3f8b7d6a 2018-04-01 stsp {
627 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s diff [-C number] [repository-path] "
628 c0cc5c62 2018-10-18 stsp "object1 object2\n", getprogname());
629 3f8b7d6a 2018-04-01 stsp exit(1);
630 b00d56cd 2018-04-01 stsp }
631 b00d56cd 2018-04-01 stsp
632 4ed7e80c 2018-05-20 stsp static const struct got_error *
633 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
634 b00d56cd 2018-04-01 stsp {
635 b00d56cd 2018-04-01 stsp const struct got_error *error;
636 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
637 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
638 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
639 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
640 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
641 c0cc5c62 2018-10-18 stsp const char *errstr;
642 b00d56cd 2018-04-01 stsp
643 b00d56cd 2018-04-01 stsp #ifndef PROFILE
644 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
645 ad242220 2018-09-08 stsp == -1)
646 b00d56cd 2018-04-01 stsp err(1, "pledge");
647 b00d56cd 2018-04-01 stsp #endif
648 b00d56cd 2018-04-01 stsp
649 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "C:")) != -1) {
650 b00d56cd 2018-04-01 stsp switch (ch) {
651 c0cc5c62 2018-10-18 stsp case 'C':
652 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
653 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
654 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
655 c0cc5c62 2018-10-18 stsp break;
656 b00d56cd 2018-04-01 stsp default:
657 b00d56cd 2018-04-01 stsp usage();
658 b00d56cd 2018-04-01 stsp /* NOTREACHED */
659 b00d56cd 2018-04-01 stsp }
660 b00d56cd 2018-04-01 stsp }
661 b00d56cd 2018-04-01 stsp
662 b00d56cd 2018-04-01 stsp argc -= optind;
663 b00d56cd 2018-04-01 stsp argv += optind;
664 b00d56cd 2018-04-01 stsp
665 b00d56cd 2018-04-01 stsp if (argc == 0) {
666 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
667 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
668 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
669 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
670 e1e3f570 2018-04-01 stsp return got_error_from_errno();
671 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
672 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
673 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
674 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
675 76089277 2018-04-01 stsp if (repo_path == NULL)
676 76089277 2018-04-01 stsp return got_error_from_errno();
677 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
678 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
679 b00d56cd 2018-04-01 stsp } else
680 b00d56cd 2018-04-01 stsp usage_diff();
681 b00d56cd 2018-04-01 stsp
682 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
683 76089277 2018-04-01 stsp free(repo_path);
684 b00d56cd 2018-04-01 stsp if (error != NULL)
685 b00d56cd 2018-04-01 stsp goto done;
686 b00d56cd 2018-04-01 stsp
687 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
688 6402fb3c 2018-09-15 stsp if (error)
689 b00d56cd 2018-04-01 stsp goto done;
690 b00d56cd 2018-04-01 stsp
691 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
692 6402fb3c 2018-09-15 stsp if (error)
693 b00d56cd 2018-04-01 stsp goto done;
694 b00d56cd 2018-04-01 stsp
695 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
696 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
697 b00d56cd 2018-04-01 stsp goto done;
698 b00d56cd 2018-04-01 stsp }
699 b00d56cd 2018-04-01 stsp
700 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
701 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
702 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_blobs(obj1, obj2, NULL, NULL,
703 c0cc5c62 2018-10-18 stsp diff_context, repo, stdout);
704 b00d56cd 2018-04-01 stsp break;
705 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
706 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_trees(obj1, obj2, "", "",
707 c0cc5c62 2018-10-18 stsp diff_context, repo, stdout);
708 b00d56cd 2018-04-01 stsp break;
709 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
710 56765ebb 2018-12-23 stsp printf("diff %s %s\n", obj_id_str1 ? obj_id_str1 : "/dev/null",
711 a9a46275 2018-12-22 stsp obj_id_str2);
712 c0cc5c62 2018-10-18 stsp error = got_diff_objects_as_commits(obj1, obj2, diff_context,
713 c0cc5c62 2018-10-18 stsp repo, stdout);
714 b00d56cd 2018-04-01 stsp break;
715 b00d56cd 2018-04-01 stsp default:
716 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
717 b00d56cd 2018-04-01 stsp }
718 b00d56cd 2018-04-01 stsp
719 b00d56cd 2018-04-01 stsp done:
720 b00d56cd 2018-04-01 stsp if (obj1)
721 b00d56cd 2018-04-01 stsp got_object_close(obj1);
722 b00d56cd 2018-04-01 stsp if (obj2)
723 b00d56cd 2018-04-01 stsp got_object_close(obj2);
724 ad242220 2018-09-08 stsp if (repo) {
725 ad242220 2018-09-08 stsp const struct got_error *repo_error;
726 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
727 ad242220 2018-09-08 stsp if (error == NULL)
728 ad242220 2018-09-08 stsp error = repo_error;
729 ad242220 2018-09-08 stsp }
730 b00d56cd 2018-04-01 stsp return error;
731 404c43c4 2018-06-21 stsp }
732 404c43c4 2018-06-21 stsp
733 404c43c4 2018-06-21 stsp __dead static void
734 404c43c4 2018-06-21 stsp usage_blame(void)
735 404c43c4 2018-06-21 stsp {
736 66bea077 2018-08-02 stsp fprintf(stderr, "usage: %s blame [-c commit] [-r repository-path] path\n",
737 404c43c4 2018-06-21 stsp getprogname());
738 404c43c4 2018-06-21 stsp exit(1);
739 b00d56cd 2018-04-01 stsp }
740 b00d56cd 2018-04-01 stsp
741 404c43c4 2018-06-21 stsp static const struct got_error *
742 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
743 404c43c4 2018-06-21 stsp {
744 404c43c4 2018-06-21 stsp const struct got_error *error;
745 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
746 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
747 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
748 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
749 404c43c4 2018-06-21 stsp int ch;
750 404c43c4 2018-06-21 stsp
751 404c43c4 2018-06-21 stsp #ifndef PROFILE
752 ad242220 2018-09-08 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
753 ad242220 2018-09-08 stsp == -1)
754 404c43c4 2018-06-21 stsp err(1, "pledge");
755 404c43c4 2018-06-21 stsp #endif
756 404c43c4 2018-06-21 stsp
757 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
758 404c43c4 2018-06-21 stsp switch (ch) {
759 404c43c4 2018-06-21 stsp case 'c':
760 404c43c4 2018-06-21 stsp commit_id_str = optarg;
761 404c43c4 2018-06-21 stsp break;
762 66bea077 2018-08-02 stsp case 'r':
763 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
764 66bea077 2018-08-02 stsp if (repo_path == NULL)
765 66bea077 2018-08-02 stsp err(1, "-r option");
766 66bea077 2018-08-02 stsp break;
767 404c43c4 2018-06-21 stsp default:
768 404c43c4 2018-06-21 stsp usage();
769 404c43c4 2018-06-21 stsp /* NOTREACHED */
770 404c43c4 2018-06-21 stsp }
771 404c43c4 2018-06-21 stsp }
772 404c43c4 2018-06-21 stsp
773 404c43c4 2018-06-21 stsp argc -= optind;
774 404c43c4 2018-06-21 stsp argv += optind;
775 404c43c4 2018-06-21 stsp
776 a39318fd 2018-08-02 stsp if (argc == 1)
777 404c43c4 2018-06-21 stsp path = argv[0];
778 a39318fd 2018-08-02 stsp else
779 404c43c4 2018-06-21 stsp usage_blame();
780 404c43c4 2018-06-21 stsp
781 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
782 66bea077 2018-08-02 stsp if (cwd == NULL) {
783 66bea077 2018-08-02 stsp error = got_error_from_errno();
784 66bea077 2018-08-02 stsp goto done;
785 66bea077 2018-08-02 stsp }
786 66bea077 2018-08-02 stsp if (repo_path == NULL) {
787 66bea077 2018-08-02 stsp repo_path = strdup(cwd);
788 66bea077 2018-08-02 stsp if (repo_path == NULL) {
789 66bea077 2018-08-02 stsp error = got_error_from_errno();
790 66bea077 2018-08-02 stsp goto done;
791 66bea077 2018-08-02 stsp }
792 66bea077 2018-08-02 stsp }
793 66bea077 2018-08-02 stsp
794 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
795 404c43c4 2018-06-21 stsp if (error != NULL)
796 404c43c4 2018-06-21 stsp goto done;
797 404c43c4 2018-06-21 stsp
798 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
799 66bea077 2018-08-02 stsp if (error != NULL)
800 66bea077 2018-08-02 stsp goto done;
801 66bea077 2018-08-02 stsp
802 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
803 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
804 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
805 404c43c4 2018-06-21 stsp if (error != NULL)
806 66bea077 2018-08-02 stsp goto done;
807 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
808 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
809 404c43c4 2018-06-21 stsp if (error != NULL)
810 66bea077 2018-08-02 stsp goto done;
811 404c43c4 2018-06-21 stsp } else {
812 404c43c4 2018-06-21 stsp struct got_object *obj;
813 404c43c4 2018-06-21 stsp error = got_object_open_by_id_str(&obj, repo, commit_id_str);
814 404c43c4 2018-06-21 stsp if (error != NULL)
815 66bea077 2018-08-02 stsp goto done;
816 6402fb3c 2018-09-15 stsp commit_id = got_object_id_dup(got_object_get_id(obj));
817 404c43c4 2018-06-21 stsp if (commit_id == NULL)
818 404c43c4 2018-06-21 stsp error = got_error_from_errno();
819 404c43c4 2018-06-21 stsp got_object_close(obj);
820 404c43c4 2018-06-21 stsp }
821 404c43c4 2018-06-21 stsp
822 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
823 404c43c4 2018-06-21 stsp done:
824 66bea077 2018-08-02 stsp free(in_repo_path);
825 66bea077 2018-08-02 stsp free(repo_path);
826 66bea077 2018-08-02 stsp free(cwd);
827 404c43c4 2018-06-21 stsp free(commit_id);
828 ad242220 2018-09-08 stsp if (repo) {
829 ad242220 2018-09-08 stsp const struct got_error *repo_error;
830 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
831 ad242220 2018-09-08 stsp if (error == NULL)
832 ad242220 2018-09-08 stsp error = repo_error;
833 ad242220 2018-09-08 stsp }
834 404c43c4 2018-06-21 stsp return error;
835 5de5890b 2018-10-18 stsp }
836 5de5890b 2018-10-18 stsp
837 5de5890b 2018-10-18 stsp __dead static void
838 5de5890b 2018-10-18 stsp usage_tree(void)
839 5de5890b 2018-10-18 stsp {
840 5de5890b 2018-10-18 stsp fprintf(stderr, "usage: %s tree [-c commit] [-r repository-path] [-i] path\n",
841 5de5890b 2018-10-18 stsp getprogname());
842 5de5890b 2018-10-18 stsp exit(1);
843 5de5890b 2018-10-18 stsp }
844 5de5890b 2018-10-18 stsp
845 5de5890b 2018-10-18 stsp
846 5de5890b 2018-10-18 stsp static const struct got_error *
847 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
848 5de5890b 2018-10-18 stsp int show_ids, struct got_repository *repo)
849 5de5890b 2018-10-18 stsp {
850 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
851 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
852 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
853 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
854 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
855 5de5890b 2018-10-18 stsp
856 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
857 5de5890b 2018-10-18 stsp if (err)
858 5de5890b 2018-10-18 stsp goto done;
859 5de5890b 2018-10-18 stsp
860 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
861 5de5890b 2018-10-18 stsp if (err)
862 5de5890b 2018-10-18 stsp goto done;
863 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
864 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
865 5de5890b 2018-10-18 stsp while (te) {
866 5de5890b 2018-10-18 stsp char *id = NULL;
867 84453469 2018-11-11 stsp
868 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
869 84453469 2018-11-11 stsp break;
870 84453469 2018-11-11 stsp
871 5de5890b 2018-10-18 stsp if (show_ids) {
872 5de5890b 2018-10-18 stsp char *id_str;
873 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
874 5de5890b 2018-10-18 stsp if (err)
875 5de5890b 2018-10-18 stsp goto done;
876 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
877 5de5890b 2018-10-18 stsp err = got_error_from_errno();
878 5de5890b 2018-10-18 stsp free(id_str);
879 5de5890b 2018-10-18 stsp goto done;
880 5de5890b 2018-10-18 stsp }
881 5de5890b 2018-10-18 stsp free(id_str);
882 5de5890b 2018-10-18 stsp }
883 5de5890b 2018-10-18 stsp printf("%s%s%s\n", id ? id : "",
884 5de5890b 2018-10-18 stsp te->name, S_ISDIR(te->mode) ? "/" : "");
885 5de5890b 2018-10-18 stsp te = SIMPLEQ_NEXT(te, entry);
886 5de5890b 2018-10-18 stsp free(id);
887 5de5890b 2018-10-18 stsp }
888 5de5890b 2018-10-18 stsp done:
889 5de5890b 2018-10-18 stsp if (tree)
890 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
891 5de5890b 2018-10-18 stsp free(tree_id);
892 5de5890b 2018-10-18 stsp return err;
893 404c43c4 2018-06-21 stsp }
894 404c43c4 2018-06-21 stsp
895 5de5890b 2018-10-18 stsp static const struct got_error *
896 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
897 5de5890b 2018-10-18 stsp {
898 5de5890b 2018-10-18 stsp const struct got_error *error;
899 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
900 5de5890b 2018-10-18 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
901 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
902 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
903 5de5890b 2018-10-18 stsp int show_ids = 0;
904 5de5890b 2018-10-18 stsp int ch;
905 5de5890b 2018-10-18 stsp
906 5de5890b 2018-10-18 stsp #ifndef PROFILE
907 5de5890b 2018-10-18 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
908 5de5890b 2018-10-18 stsp == -1)
909 5de5890b 2018-10-18 stsp err(1, "pledge");
910 5de5890b 2018-10-18 stsp #endif
911 5de5890b 2018-10-18 stsp
912 5de5890b 2018-10-18 stsp while ((ch = getopt(argc, argv, "c:r:i")) != -1) {
913 5de5890b 2018-10-18 stsp switch (ch) {
914 5de5890b 2018-10-18 stsp case 'c':
915 5de5890b 2018-10-18 stsp commit_id_str = optarg;
916 5de5890b 2018-10-18 stsp break;
917 5de5890b 2018-10-18 stsp case 'r':
918 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
919 5de5890b 2018-10-18 stsp if (repo_path == NULL)
920 5de5890b 2018-10-18 stsp err(1, "-r option");
921 5de5890b 2018-10-18 stsp break;
922 5de5890b 2018-10-18 stsp case 'i':
923 5de5890b 2018-10-18 stsp show_ids = 1;
924 5de5890b 2018-10-18 stsp break;
925 5de5890b 2018-10-18 stsp default:
926 5de5890b 2018-10-18 stsp usage();
927 5de5890b 2018-10-18 stsp /* NOTREACHED */
928 5de5890b 2018-10-18 stsp }
929 5de5890b 2018-10-18 stsp }
930 5de5890b 2018-10-18 stsp
931 5de5890b 2018-10-18 stsp argc -= optind;
932 5de5890b 2018-10-18 stsp argv += optind;
933 5de5890b 2018-10-18 stsp
934 5de5890b 2018-10-18 stsp if (argc == 1)
935 5de5890b 2018-10-18 stsp path = argv[0];
936 5de5890b 2018-10-18 stsp else if (argc > 1)
937 5de5890b 2018-10-18 stsp usage_tree();
938 5de5890b 2018-10-18 stsp else
939 5de5890b 2018-10-18 stsp path = "/";
940 5de5890b 2018-10-18 stsp
941 5de5890b 2018-10-18 stsp cwd = getcwd(NULL, 0);
942 5de5890b 2018-10-18 stsp if (cwd == NULL) {
943 5de5890b 2018-10-18 stsp error = got_error_from_errno();
944 5de5890b 2018-10-18 stsp goto done;
945 5de5890b 2018-10-18 stsp }
946 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
947 5de5890b 2018-10-18 stsp repo_path = strdup(cwd);
948 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
949 5de5890b 2018-10-18 stsp error = got_error_from_errno();
950 5de5890b 2018-10-18 stsp goto done;
951 5de5890b 2018-10-18 stsp }
952 5de5890b 2018-10-18 stsp }
953 5de5890b 2018-10-18 stsp
954 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
955 5de5890b 2018-10-18 stsp if (error != NULL)
956 5de5890b 2018-10-18 stsp goto done;
957 5de5890b 2018-10-18 stsp
958 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
959 5de5890b 2018-10-18 stsp if (error != NULL)
960 5de5890b 2018-10-18 stsp goto done;
961 5de5890b 2018-10-18 stsp
962 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
963 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
964 5de5890b 2018-10-18 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
965 5de5890b 2018-10-18 stsp if (error != NULL)
966 5de5890b 2018-10-18 stsp goto done;
967 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
968 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
969 5de5890b 2018-10-18 stsp if (error != NULL)
970 5de5890b 2018-10-18 stsp goto done;
971 5de5890b 2018-10-18 stsp } else {
972 5de5890b 2018-10-18 stsp struct got_object *obj;
973 5de5890b 2018-10-18 stsp error = got_object_open_by_id_str(&obj, repo, commit_id_str);
974 5de5890b 2018-10-18 stsp if (error != NULL)
975 5de5890b 2018-10-18 stsp goto done;
976 5de5890b 2018-10-18 stsp commit_id = got_object_id_dup(got_object_get_id(obj));
977 5de5890b 2018-10-18 stsp if (commit_id == NULL)
978 5de5890b 2018-10-18 stsp error = got_error_from_errno();
979 5de5890b 2018-10-18 stsp got_object_close(obj);
980 5de5890b 2018-10-18 stsp }
981 5de5890b 2018-10-18 stsp
982 5de5890b 2018-10-18 stsp error = print_tree(in_repo_path, commit_id, show_ids, repo);
983 5de5890b 2018-10-18 stsp done:
984 5de5890b 2018-10-18 stsp free(in_repo_path);
985 5de5890b 2018-10-18 stsp free(repo_path);
986 5de5890b 2018-10-18 stsp free(cwd);
987 5de5890b 2018-10-18 stsp free(commit_id);
988 5de5890b 2018-10-18 stsp if (repo) {
989 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
990 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
991 5de5890b 2018-10-18 stsp if (error == NULL)
992 5de5890b 2018-10-18 stsp error = repo_error;
993 5de5890b 2018-10-18 stsp }
994 5de5890b 2018-10-18 stsp return error;
995 5de5890b 2018-10-18 stsp }
996 5de5890b 2018-10-18 stsp
997 f42b1b34 2018-03-12 stsp #ifdef notyet
998 4ed7e80c 2018-05-20 stsp static const struct got_error *
999 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
1000 5c860e29 2018-03-12 stsp {
1001 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
1002 5c860e29 2018-03-12 stsp git_status_list *status;
1003 5c860e29 2018-03-12 stsp git_status_options statusopts;
1004 5c860e29 2018-03-12 stsp size_t i;
1005 5c860e29 2018-03-12 stsp
1006 5c860e29 2018-03-12 stsp git_libgit2_init();
1007 5c860e29 2018-03-12 stsp
1008 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
1009 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
1010 5c860e29 2018-03-12 stsp
1011 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
1012 5c860e29 2018-03-12 stsp errx(1, "bar repository");
1013 5c860e29 2018-03-12 stsp
1014 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
1015 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
1016 5c860e29 2018-03-12 stsp
1017 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
1018 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
1019 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
1020 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
1021 5c860e29 2018-03-12 stsp
1022 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
1023 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
1024 5c860e29 2018-03-12 stsp
1025 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
1026 5c860e29 2018-03-12 stsp const git_status_entry *se;
1027 5c860e29 2018-03-12 stsp
1028 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
1029 5c860e29 2018-03-12 stsp switch (se->status) {
1030 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
1031 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
1032 5c860e29 2018-03-12 stsp break;
1033 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
1034 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
1035 5c860e29 2018-03-12 stsp break;
1036 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
1037 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
1038 5c860e29 2018-03-12 stsp break;
1039 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
1040 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1041 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
1042 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
1043 5c860e29 2018-03-12 stsp break;
1044 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
1045 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
1046 5c860e29 2018-03-12 stsp break;
1047 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
1048 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
1049 5c860e29 2018-03-12 stsp break;
1050 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
1051 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
1052 5c860e29 2018-03-12 stsp break;
1053 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
1054 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
1055 5c860e29 2018-03-12 stsp break;
1056 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
1057 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
1058 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
1059 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
1060 5c860e29 2018-03-12 stsp break;
1061 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
1062 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
1063 5c860e29 2018-03-12 stsp break;
1064 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
1065 5c860e29 2018-03-12 stsp default:
1066 5c860e29 2018-03-12 stsp break;
1067 5c860e29 2018-03-12 stsp }
1068 5c860e29 2018-03-12 stsp }
1069 5c860e29 2018-03-12 stsp
1070 5c860e29 2018-03-12 stsp git_status_list_free(status);
1071 5c860e29 2018-03-12 stsp git_repository_free(repo);
1072 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
1073 5c860e29 2018-03-12 stsp
1074 5c860e29 2018-03-12 stsp return 0;
1075 5c860e29 2018-03-12 stsp }
1076 f42b1b34 2018-03-12 stsp #endif