Blame


1 5c860e29 2018-03-12 stsp /*
2 f42b1b34 2018-03-12 stsp * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 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 63219cd2 2019-01-04 stsp #include "got_privsep.h"
43 5c860e29 2018-03-12 stsp
44 5c860e29 2018-03-12 stsp #ifndef nitems
45 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
46 5c860e29 2018-03-12 stsp #endif
47 99437157 2018-11-11 stsp
48 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
49 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
50 99437157 2018-11-11 stsp
51 99437157 2018-11-11 stsp static void
52 99437157 2018-11-11 stsp catch_sigint(int signo)
53 99437157 2018-11-11 stsp {
54 99437157 2018-11-11 stsp sigint_received = 1;
55 99437157 2018-11-11 stsp }
56 99437157 2018-11-11 stsp
57 99437157 2018-11-11 stsp static void
58 99437157 2018-11-11 stsp catch_sigpipe(int signo)
59 99437157 2018-11-11 stsp {
60 99437157 2018-11-11 stsp sigpipe_received = 1;
61 99437157 2018-11-11 stsp }
62 5c860e29 2018-03-12 stsp
63 99437157 2018-11-11 stsp
64 5c860e29 2018-03-12 stsp struct cmd {
65 5c860e29 2018-03-12 stsp const char *cmd_name;
66 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
67 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
68 46a0db7d 2018-03-12 stsp const char *cmd_descr;
69 5c860e29 2018-03-12 stsp };
70 5c860e29 2018-03-12 stsp
71 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
72 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
73 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
74 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
75 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
76 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
77 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
78 6bad629b 2019-02-04 stsp __dead static void usage_status(void);
79 d0eebce4 2019-03-11 stsp __dead static void usage_ref(void);
80 d00136be 2019-03-26 stsp __dead static void usage_add(void);
81 2ec1f75b 2019-03-26 stsp __dead static void usage_rm(void);
82 a129376b 2019-03-28 stsp __dead static void usage_revert(void);
83 c4296144 2019-05-09 stsp __dead static void usage_commit(void);
84 5c860e29 2018-03-12 stsp
85 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
86 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
87 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
88 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
89 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
90 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
91 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
92 d0eebce4 2019-03-11 stsp static const struct got_error* cmd_ref(int, char *[]);
93 d00136be 2019-03-26 stsp static const struct got_error* cmd_add(int, char *[]);
94 2ec1f75b 2019-03-26 stsp static const struct got_error* cmd_rm(int, char *[]);
95 a129376b 2019-03-28 stsp static const struct got_error* cmd_revert(int, char *[]);
96 c4296144 2019-05-09 stsp static const struct got_error* cmd_commit(int, char *[]);
97 5c860e29 2018-03-12 stsp
98 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
99 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
100 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
101 507dc3bb 2018-12-29 stsp { "update", cmd_update, usage_update,
102 507dc3bb 2018-12-29 stsp "update a work tree to a different commit" },
103 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
104 1b6b95a8 2018-03-12 stsp "show repository history" },
105 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
106 b00d56cd 2018-04-01 stsp "compare files and directories" },
107 404c43c4 2018-06-21 stsp { "blame", cmd_blame, usage_blame,
108 a67e2392 2019-03-26 stsp "show when lines in a file were changed" },
109 5de5890b 2018-10-18 stsp { "tree", cmd_tree, usage_tree,
110 a67e2392 2019-03-26 stsp "list files and directories in repository" },
111 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
112 1b6b95a8 2018-03-12 stsp "show modification status of files" },
113 d0eebce4 2019-03-11 stsp { "ref", cmd_ref, usage_ref,
114 d0eebce4 2019-03-11 stsp "manage references in repository" },
115 d00136be 2019-03-26 stsp { "add", cmd_add, usage_add,
116 d00136be 2019-03-26 stsp "add a new file to version control" },
117 2ec1f75b 2019-03-26 stsp { "rm", cmd_rm, usage_rm,
118 2ec1f75b 2019-03-26 stsp "remove a versioned file" },
119 a129376b 2019-03-28 stsp { "revert", cmd_revert, usage_revert,
120 a129376b 2019-03-28 stsp "revert uncommitted changes" },
121 c4296144 2019-05-09 stsp { "commit", cmd_commit, usage_commit,
122 c4296144 2019-05-09 stsp "create blob from file (WIP; can't create commits yet)" },
123 5c860e29 2018-03-12 stsp };
124 5c860e29 2018-03-12 stsp
125 5c860e29 2018-03-12 stsp int
126 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
127 5c860e29 2018-03-12 stsp {
128 5c860e29 2018-03-12 stsp struct cmd *cmd;
129 5c860e29 2018-03-12 stsp unsigned int i;
130 5c860e29 2018-03-12 stsp int ch;
131 1b6b95a8 2018-03-12 stsp int hflag = 0;
132 5c860e29 2018-03-12 stsp
133 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
134 5c860e29 2018-03-12 stsp
135 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
136 5c860e29 2018-03-12 stsp switch (ch) {
137 1b6b95a8 2018-03-12 stsp case 'h':
138 1b6b95a8 2018-03-12 stsp hflag = 1;
139 1b6b95a8 2018-03-12 stsp break;
140 5c860e29 2018-03-12 stsp default:
141 5c860e29 2018-03-12 stsp usage();
142 5c860e29 2018-03-12 stsp /* NOTREACHED */
143 5c860e29 2018-03-12 stsp }
144 5c860e29 2018-03-12 stsp }
145 5c860e29 2018-03-12 stsp
146 5c860e29 2018-03-12 stsp argc -= optind;
147 5c860e29 2018-03-12 stsp argv += optind;
148 1e70621d 2018-03-27 stsp optind = 0;
149 5c860e29 2018-03-12 stsp
150 5c860e29 2018-03-12 stsp if (argc <= 0)
151 5c860e29 2018-03-12 stsp usage();
152 5c860e29 2018-03-12 stsp
153 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
154 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
155 99437157 2018-11-11 stsp
156 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
157 d7d4f210 2018-03-12 stsp const struct got_error *error;
158 d7d4f210 2018-03-12 stsp
159 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
160 5c860e29 2018-03-12 stsp
161 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
162 5c860e29 2018-03-12 stsp continue;
163 5c860e29 2018-03-12 stsp
164 1b6b95a8 2018-03-12 stsp if (hflag)
165 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
166 1b6b95a8 2018-03-12 stsp
167 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
168 80d5f134 2018-11-11 stsp if (error && !(sigint_received || sigpipe_received)) {
169 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
170 d7d4f210 2018-03-12 stsp return 1;
171 d7d4f210 2018-03-12 stsp }
172 d7d4f210 2018-03-12 stsp
173 d7d4f210 2018-03-12 stsp return 0;
174 5c860e29 2018-03-12 stsp }
175 5c860e29 2018-03-12 stsp
176 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
177 5c860e29 2018-03-12 stsp return 1;
178 5c860e29 2018-03-12 stsp }
179 5c860e29 2018-03-12 stsp
180 4ed7e80c 2018-05-20 stsp __dead static void
181 5c860e29 2018-03-12 stsp usage(void)
182 5c860e29 2018-03-12 stsp {
183 46a0db7d 2018-03-12 stsp int i;
184 46a0db7d 2018-03-12 stsp
185 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
186 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
187 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
188 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
189 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
190 46a0db7d 2018-03-12 stsp }
191 5c860e29 2018-03-12 stsp exit(1);
192 5c860e29 2018-03-12 stsp }
193 5c860e29 2018-03-12 stsp
194 0266afb7 2019-01-04 stsp static const struct got_error *
195 d0eebce4 2019-03-11 stsp apply_unveil(const char *repo_path, int repo_read_only,
196 d0eebce4 2019-03-11 stsp const char *worktree_path)
197 0266afb7 2019-01-04 stsp {
198 0266afb7 2019-01-04 stsp const struct got_error *error;
199 0266afb7 2019-01-04 stsp
200 d0eebce4 2019-03-11 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
201 0266afb7 2019-01-04 stsp return got_error_from_errno();
202 0266afb7 2019-01-04 stsp
203 0266afb7 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
204 0266afb7 2019-01-04 stsp return got_error_from_errno();
205 0266afb7 2019-01-04 stsp
206 f12d0dbe 2019-01-04 stsp if (unveil("/tmp", "rwc") != 0)
207 0266afb7 2019-01-04 stsp return got_error_from_errno();
208 0266afb7 2019-01-04 stsp
209 0266afb7 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
210 0266afb7 2019-01-04 stsp if (error != NULL)
211 0266afb7 2019-01-04 stsp return error;
212 0266afb7 2019-01-04 stsp
213 0266afb7 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
214 0266afb7 2019-01-04 stsp return got_error_from_errno();
215 0266afb7 2019-01-04 stsp
216 0266afb7 2019-01-04 stsp return NULL;
217 0266afb7 2019-01-04 stsp }
218 0266afb7 2019-01-04 stsp
219 4ed7e80c 2018-05-20 stsp __dead static void
220 c09a553d 2018-03-12 stsp usage_checkout(void)
221 c09a553d 2018-03-12 stsp {
222 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
223 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
224 c09a553d 2018-03-12 stsp exit(1);
225 92a684f4 2018-03-12 stsp }
226 92a684f4 2018-03-12 stsp
227 92a684f4 2018-03-12 stsp static void
228 a0eb853d 2018-12-29 stsp checkout_progress(void *arg, unsigned char status, const char *path)
229 92a684f4 2018-03-12 stsp {
230 92a684f4 2018-03-12 stsp char *worktree_path = arg;
231 92a684f4 2018-03-12 stsp
232 92a684f4 2018-03-12 stsp while (path[0] == '/')
233 92a684f4 2018-03-12 stsp path++;
234 92a684f4 2018-03-12 stsp
235 d7b62c98 2018-12-27 stsp printf("%c %s/%s\n", status, worktree_path, path);
236 99437157 2018-11-11 stsp }
237 99437157 2018-11-11 stsp
238 99437157 2018-11-11 stsp static const struct got_error *
239 6bad629b 2019-02-04 stsp check_cancelled(void *arg)
240 99437157 2018-11-11 stsp {
241 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
242 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
243 99437157 2018-11-11 stsp return NULL;
244 8069f636 2019-01-12 stsp }
245 8069f636 2019-01-12 stsp
246 8069f636 2019-01-12 stsp static const struct got_error *
247 8069f636 2019-01-12 stsp check_ancestry(struct got_worktree *worktree, struct got_object_id *commit_id,
248 8069f636 2019-01-12 stsp struct got_repository *repo)
249 8069f636 2019-01-12 stsp {
250 8069f636 2019-01-12 stsp const struct got_error *err;
251 8069f636 2019-01-12 stsp struct got_reference *head_ref = NULL;
252 8069f636 2019-01-12 stsp struct got_object_id *head_commit_id = NULL;
253 8069f636 2019-01-12 stsp struct got_commit_graph *graph = NULL;
254 8069f636 2019-01-12 stsp
255 8069f636 2019-01-12 stsp head_ref = got_worktree_get_head_ref(worktree);
256 8069f636 2019-01-12 stsp if (head_ref == NULL)
257 8069f636 2019-01-12 stsp return got_error_from_errno();
258 8069f636 2019-01-12 stsp
259 8069f636 2019-01-12 stsp /* TODO: Check the reflog. The head ref may have been rebased. */
260 8069f636 2019-01-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
261 8069f636 2019-01-12 stsp if (err)
262 8069f636 2019-01-12 stsp goto done;
263 8069f636 2019-01-12 stsp
264 8069f636 2019-01-12 stsp err = got_commit_graph_open(&graph, head_commit_id, "/", 1, repo);
265 8069f636 2019-01-12 stsp if (err)
266 8069f636 2019-01-12 stsp goto done;
267 8069f636 2019-01-12 stsp
268 8069f636 2019-01-12 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo);
269 8069f636 2019-01-12 stsp if (err)
270 8069f636 2019-01-12 stsp goto done;
271 8069f636 2019-01-12 stsp while (1) {
272 8069f636 2019-01-12 stsp struct got_object_id *id;
273 8069f636 2019-01-12 stsp
274 8069f636 2019-01-12 stsp if (sigint_received || sigpipe_received)
275 8069f636 2019-01-12 stsp break;
276 8069f636 2019-01-12 stsp
277 8069f636 2019-01-12 stsp err = got_commit_graph_iter_next(&id, graph);
278 8069f636 2019-01-12 stsp if (err) {
279 8069f636 2019-01-12 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
280 8069f636 2019-01-12 stsp err = got_error(GOT_ERR_ANCESTRY);
281 8069f636 2019-01-12 stsp break;
282 8069f636 2019-01-12 stsp }
283 8069f636 2019-01-12 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
284 8069f636 2019-01-12 stsp break;
285 8069f636 2019-01-12 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
286 8069f636 2019-01-12 stsp if (err)
287 8069f636 2019-01-12 stsp break;
288 8069f636 2019-01-12 stsp else
289 8069f636 2019-01-12 stsp continue;
290 8069f636 2019-01-12 stsp }
291 8069f636 2019-01-12 stsp if (id == NULL)
292 8069f636 2019-01-12 stsp break;
293 8069f636 2019-01-12 stsp if (got_object_id_cmp(id, commit_id) == 0)
294 8069f636 2019-01-12 stsp break;
295 8069f636 2019-01-12 stsp }
296 8069f636 2019-01-12 stsp done:
297 8069f636 2019-01-12 stsp if (head_ref)
298 8069f636 2019-01-12 stsp got_ref_close(head_ref);
299 8069f636 2019-01-12 stsp if (graph)
300 8069f636 2019-01-12 stsp got_commit_graph_close(graph);
301 8069f636 2019-01-12 stsp return err;
302 c09a553d 2018-03-12 stsp }
303 c09a553d 2018-03-12 stsp
304 8069f636 2019-01-12 stsp
305 4ed7e80c 2018-05-20 stsp static const struct got_error *
306 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
307 c09a553d 2018-03-12 stsp {
308 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
309 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
310 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
311 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
312 c09a553d 2018-03-12 stsp char *repo_path = NULL;
313 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
314 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
315 8069f636 2019-01-12 stsp char *commit_id_str = NULL;
316 e5dc7198 2018-12-29 stsp int ch, same_path_prefix;
317 c09a553d 2018-03-12 stsp
318 8069f636 2019-01-12 stsp while ((ch = getopt(argc, argv, "c:p:")) != -1) {
319 0bb8a95e 2018-03-12 stsp switch (ch) {
320 8069f636 2019-01-12 stsp case 'c':
321 8069f636 2019-01-12 stsp commit_id_str = strdup(optarg);
322 8069f636 2019-01-12 stsp if (commit_id_str == NULL)
323 8069f636 2019-01-12 stsp return got_error_from_errno();
324 8069f636 2019-01-12 stsp break;
325 0bb8a95e 2018-03-12 stsp case 'p':
326 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
327 0bb8a95e 2018-03-12 stsp break;
328 0bb8a95e 2018-03-12 stsp default:
329 2deda0b9 2019-03-07 stsp usage_checkout();
330 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
331 0bb8a95e 2018-03-12 stsp }
332 0bb8a95e 2018-03-12 stsp }
333 0bb8a95e 2018-03-12 stsp
334 0bb8a95e 2018-03-12 stsp argc -= optind;
335 0bb8a95e 2018-03-12 stsp argv += optind;
336 0bb8a95e 2018-03-12 stsp
337 6715a751 2018-03-16 stsp #ifndef PROFILE
338 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
339 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
340 c09a553d 2018-03-12 stsp err(1, "pledge");
341 6715a751 2018-03-16 stsp #endif
342 0bb8a95e 2018-03-12 stsp if (argc == 1) {
343 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
344 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
345 76089277 2018-04-01 stsp if (repo_path == NULL)
346 76089277 2018-04-01 stsp return got_error_from_errno();
347 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
348 76089277 2018-04-01 stsp if (cwd == NULL) {
349 76089277 2018-04-01 stsp error = got_error_from_errno();
350 76089277 2018-04-01 stsp goto done;
351 76089277 2018-04-01 stsp }
352 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
353 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
354 5d7c1dab 2018-04-01 stsp else
355 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
356 76089277 2018-04-01 stsp if (base == NULL) {
357 76089277 2018-04-01 stsp error = got_error_from_errno();
358 76089277 2018-04-01 stsp goto done;
359 76089277 2018-04-01 stsp }
360 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
361 c09a553d 2018-03-12 stsp if (dotgit)
362 c09a553d 2018-03-12 stsp *dotgit = '\0';
363 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
364 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
365 c09a553d 2018-03-12 stsp free(cwd);
366 76089277 2018-04-01 stsp goto done;
367 c09a553d 2018-03-12 stsp }
368 c09a553d 2018-03-12 stsp free(cwd);
369 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
370 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
371 76089277 2018-04-01 stsp if (repo_path == NULL) {
372 76089277 2018-04-01 stsp error = got_error_from_errno();
373 76089277 2018-04-01 stsp goto done;
374 76089277 2018-04-01 stsp }
375 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
376 76089277 2018-04-01 stsp if (worktree_path == NULL) {
377 76089277 2018-04-01 stsp error = got_error_from_errno();
378 76089277 2018-04-01 stsp goto done;
379 76089277 2018-04-01 stsp }
380 c09a553d 2018-03-12 stsp } else
381 c09a553d 2018-03-12 stsp usage_checkout();
382 c09a553d 2018-03-12 stsp
383 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
384 c09a553d 2018-03-12 stsp if (error != NULL)
385 c02c541e 2019-03-29 stsp goto done;
386 c02c541e 2019-03-29 stsp
387 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 0, worktree_path);
388 c02c541e 2019-03-29 stsp if (error)
389 c09a553d 2018-03-12 stsp goto done;
390 8069f636 2019-01-12 stsp
391 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
392 c09a553d 2018-03-12 stsp if (error != NULL)
393 c09a553d 2018-03-12 stsp goto done;
394 c09a553d 2018-03-12 stsp
395 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
396 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
397 c09a553d 2018-03-12 stsp goto done;
398 c09a553d 2018-03-12 stsp
399 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
400 c09a553d 2018-03-12 stsp if (error != NULL)
401 c09a553d 2018-03-12 stsp goto done;
402 c09a553d 2018-03-12 stsp
403 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
404 e5dc7198 2018-12-29 stsp path_prefix);
405 e5dc7198 2018-12-29 stsp if (error != NULL)
406 e5dc7198 2018-12-29 stsp goto done;
407 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
408 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
409 49520a32 2018-12-29 stsp goto done;
410 49520a32 2018-12-29 stsp }
411 49520a32 2018-12-29 stsp
412 8069f636 2019-01-12 stsp if (commit_id_str) {
413 8069f636 2019-01-12 stsp struct got_object_id *commit_id;
414 8069f636 2019-01-12 stsp error = got_object_resolve_id_str(&commit_id, repo,
415 8069f636 2019-01-12 stsp commit_id_str);
416 8069f636 2019-01-12 stsp if (error != NULL)
417 8069f636 2019-01-12 stsp goto done;
418 8069f636 2019-01-12 stsp error = check_ancestry(worktree, commit_id, repo);
419 8069f636 2019-01-12 stsp if (error != NULL) {
420 8069f636 2019-01-12 stsp free(commit_id);
421 8069f636 2019-01-12 stsp goto done;
422 8069f636 2019-01-12 stsp }
423 8069f636 2019-01-12 stsp error = got_worktree_set_base_commit_id(worktree, repo,
424 8069f636 2019-01-12 stsp commit_id);
425 8069f636 2019-01-12 stsp free(commit_id);
426 8069f636 2019-01-12 stsp if (error)
427 8069f636 2019-01-12 stsp goto done;
428 8069f636 2019-01-12 stsp }
429 8069f636 2019-01-12 stsp
430 c4cdcb68 2019-04-03 stsp error = got_worktree_checkout_files(worktree, "", repo,
431 6bad629b 2019-02-04 stsp checkout_progress, worktree_path, check_cancelled, NULL);
432 c09a553d 2018-03-12 stsp if (error != NULL)
433 c09a553d 2018-03-12 stsp goto done;
434 c09a553d 2018-03-12 stsp
435 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
436 c09a553d 2018-03-12 stsp
437 c09a553d 2018-03-12 stsp done:
438 8069f636 2019-01-12 stsp free(commit_id_str);
439 76089277 2018-04-01 stsp free(repo_path);
440 507dc3bb 2018-12-29 stsp free(worktree_path);
441 507dc3bb 2018-12-29 stsp return error;
442 507dc3bb 2018-12-29 stsp }
443 507dc3bb 2018-12-29 stsp
444 507dc3bb 2018-12-29 stsp __dead static void
445 507dc3bb 2018-12-29 stsp usage_update(void)
446 507dc3bb 2018-12-29 stsp {
447 c4cdcb68 2019-04-03 stsp fprintf(stderr, "usage: %s update [-c commit] [path]\n",
448 507dc3bb 2018-12-29 stsp getprogname());
449 507dc3bb 2018-12-29 stsp exit(1);
450 507dc3bb 2018-12-29 stsp }
451 507dc3bb 2018-12-29 stsp
452 507dc3bb 2018-12-29 stsp static void
453 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
454 507dc3bb 2018-12-29 stsp {
455 784955db 2019-01-12 stsp int *did_something = arg;
456 784955db 2019-01-12 stsp
457 507dc3bb 2018-12-29 stsp if (status == GOT_STATUS_EXISTS)
458 507dc3bb 2018-12-29 stsp return;
459 507dc3bb 2018-12-29 stsp
460 1545c615 2019-02-10 stsp *did_something = 1;
461 507dc3bb 2018-12-29 stsp while (path[0] == '/')
462 507dc3bb 2018-12-29 stsp path++;
463 507dc3bb 2018-12-29 stsp printf("%c %s\n", status, path);
464 be7061eb 2018-12-30 stsp }
465 be7061eb 2018-12-30 stsp
466 be7061eb 2018-12-30 stsp static const struct got_error *
467 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
468 507dc3bb 2018-12-29 stsp {
469 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
470 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
471 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
472 c4cdcb68 2019-04-03 stsp char *worktree_path = NULL, *path = NULL;
473 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
474 9c4b8182 2019-01-02 stsp char *commit_id_str = NULL;
475 784955db 2019-01-12 stsp int ch, did_something = 0;
476 507dc3bb 2018-12-29 stsp
477 507dc3bb 2018-12-29 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
478 507dc3bb 2018-12-29 stsp switch (ch) {
479 507dc3bb 2018-12-29 stsp case 'c':
480 9c4b8182 2019-01-02 stsp commit_id_str = strdup(optarg);
481 9c4b8182 2019-01-02 stsp if (commit_id_str == NULL)
482 9c4b8182 2019-01-02 stsp return got_error_from_errno();
483 507dc3bb 2018-12-29 stsp break;
484 507dc3bb 2018-12-29 stsp default:
485 2deda0b9 2019-03-07 stsp usage_update();
486 507dc3bb 2018-12-29 stsp /* NOTREACHED */
487 507dc3bb 2018-12-29 stsp }
488 507dc3bb 2018-12-29 stsp }
489 507dc3bb 2018-12-29 stsp
490 507dc3bb 2018-12-29 stsp argc -= optind;
491 507dc3bb 2018-12-29 stsp argv += optind;
492 507dc3bb 2018-12-29 stsp
493 507dc3bb 2018-12-29 stsp #ifndef PROFILE
494 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
495 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
496 507dc3bb 2018-12-29 stsp err(1, "pledge");
497 507dc3bb 2018-12-29 stsp #endif
498 c4cdcb68 2019-04-03 stsp worktree_path = getcwd(NULL, 0);
499 c4cdcb68 2019-04-03 stsp if (worktree_path == NULL) {
500 c4cdcb68 2019-04-03 stsp error = got_error_from_errno();
501 c4cdcb68 2019-04-03 stsp goto done;
502 c4cdcb68 2019-04-03 stsp }
503 c4cdcb68 2019-04-03 stsp error = got_worktree_open(&worktree, worktree_path);
504 c4cdcb68 2019-04-03 stsp if (error)
505 c4cdcb68 2019-04-03 stsp goto done;
506 c4cdcb68 2019-04-03 stsp
507 507dc3bb 2018-12-29 stsp if (argc == 0) {
508 c4cdcb68 2019-04-03 stsp path = strdup("");
509 c4cdcb68 2019-04-03 stsp if (path == NULL) {
510 507dc3bb 2018-12-29 stsp error = got_error_from_errno();
511 507dc3bb 2018-12-29 stsp goto done;
512 507dc3bb 2018-12-29 stsp }
513 507dc3bb 2018-12-29 stsp } else if (argc == 1) {
514 c4cdcb68 2019-04-03 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
515 c4cdcb68 2019-04-03 stsp if (error)
516 507dc3bb 2018-12-29 stsp goto done;
517 507dc3bb 2018-12-29 stsp } else
518 507dc3bb 2018-12-29 stsp usage_update();
519 507dc3bb 2018-12-29 stsp
520 507dc3bb 2018-12-29 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
521 507dc3bb 2018-12-29 stsp if (error != NULL)
522 507dc3bb 2018-12-29 stsp goto done;
523 507dc3bb 2018-12-29 stsp
524 97430839 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
525 8c02d095 2019-02-05 stsp got_worktree_get_root_path(worktree));
526 0266afb7 2019-01-04 stsp if (error)
527 0266afb7 2019-01-04 stsp goto done;
528 0266afb7 2019-01-04 stsp
529 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
530 507dc3bb 2018-12-29 stsp struct got_reference *head_ref;
531 507dc3bb 2018-12-29 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
532 507dc3bb 2018-12-29 stsp if (error != NULL)
533 507dc3bb 2018-12-29 stsp goto done;
534 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
535 9c4b8182 2019-01-02 stsp if (error != NULL)
536 9c4b8182 2019-01-02 stsp goto done;
537 9c4b8182 2019-01-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
538 507dc3bb 2018-12-29 stsp if (error != NULL)
539 507dc3bb 2018-12-29 stsp goto done;
540 507dc3bb 2018-12-29 stsp } else {
541 507dc3bb 2018-12-29 stsp error = got_object_resolve_id_str(&commit_id, repo,
542 507dc3bb 2018-12-29 stsp commit_id_str);
543 507dc3bb 2018-12-29 stsp if (error != NULL)
544 507dc3bb 2018-12-29 stsp goto done;
545 507dc3bb 2018-12-29 stsp }
546 35c965b2 2018-12-29 stsp
547 be7061eb 2018-12-30 stsp error = check_ancestry(worktree, commit_id, repo);
548 be7061eb 2018-12-30 stsp if (error != NULL)
549 be7061eb 2018-12-30 stsp goto done;
550 507dc3bb 2018-12-29 stsp
551 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
552 507dc3bb 2018-12-29 stsp commit_id) != 0) {
553 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
554 507dc3bb 2018-12-29 stsp commit_id);
555 507dc3bb 2018-12-29 stsp if (error)
556 507dc3bb 2018-12-29 stsp goto done;
557 507dc3bb 2018-12-29 stsp }
558 507dc3bb 2018-12-29 stsp
559 c4cdcb68 2019-04-03 stsp error = got_worktree_checkout_files(worktree, path, repo,
560 6bad629b 2019-02-04 stsp update_progress, &did_something, check_cancelled, NULL);
561 507dc3bb 2018-12-29 stsp if (error != NULL)
562 507dc3bb 2018-12-29 stsp goto done;
563 9c4b8182 2019-01-02 stsp
564 784955db 2019-01-12 stsp if (did_something)
565 784955db 2019-01-12 stsp printf("Updated to commit %s\n", commit_id_str);
566 784955db 2019-01-12 stsp else
567 784955db 2019-01-12 stsp printf("Already up-to-date\n");
568 507dc3bb 2018-12-29 stsp done:
569 c09a553d 2018-03-12 stsp free(worktree_path);
570 c4cdcb68 2019-04-03 stsp free(path);
571 507dc3bb 2018-12-29 stsp free(commit_id);
572 9c4b8182 2019-01-02 stsp free(commit_id_str);
573 c09a553d 2018-03-12 stsp return error;
574 c09a553d 2018-03-12 stsp }
575 c09a553d 2018-03-12 stsp
576 f42b1b34 2018-03-12 stsp static const struct got_error *
577 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
578 c0cc5c62 2018-10-18 stsp int diff_context, struct got_repository *repo)
579 5c860e29 2018-03-12 stsp {
580 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
581 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
582 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
583 0f2b3dca 2018-12-22 stsp char *id_str1 = NULL, *id_str2;
584 79109fed 2018-03-27 stsp
585 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo,
586 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
587 79109fed 2018-03-27 stsp if (err)
588 79109fed 2018-03-27 stsp return err;
589 79109fed 2018-03-27 stsp
590 45d799e2 2018-12-23 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
591 79f35eb3 2018-06-11 stsp if (qid != NULL) {
592 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
593 79109fed 2018-03-27 stsp
594 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
595 79109fed 2018-03-27 stsp if (err)
596 79109fed 2018-03-27 stsp return err;
597 79109fed 2018-03-27 stsp
598 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo,
599 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(pcommit));
600 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
601 0f2b3dca 2018-12-22 stsp if (err)
602 0f2b3dca 2018-12-22 stsp return err;
603 0f2b3dca 2018-12-22 stsp
604 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str1, qid->id);
605 79109fed 2018-03-27 stsp if (err)
606 79109fed 2018-03-27 stsp return err;
607 79109fed 2018-03-27 stsp }
608 79109fed 2018-03-27 stsp
609 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str2, id);
610 0f2b3dca 2018-12-22 stsp if (err)
611 0f2b3dca 2018-12-22 stsp goto done;
612 0f2b3dca 2018-12-22 stsp
613 56765ebb 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
614 54156555 2018-12-24 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
615 0f2b3dca 2018-12-22 stsp done:
616 79109fed 2018-03-27 stsp if (tree1)
617 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
618 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
619 0f2b3dca 2018-12-22 stsp free(id_str1);
620 0f2b3dca 2018-12-22 stsp free(id_str2);
621 79109fed 2018-03-27 stsp return err;
622 79109fed 2018-03-27 stsp }
623 79109fed 2018-03-27 stsp
624 4bb494d5 2018-06-16 stsp static char *
625 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
626 6c281f94 2018-06-11 stsp {
627 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
628 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
629 6c281f94 2018-06-11 stsp if (p)
630 6c281f94 2018-06-11 stsp *p = '\0';
631 6c281f94 2018-06-11 stsp return s;
632 6c281f94 2018-06-11 stsp }
633 6c281f94 2018-06-11 stsp
634 79109fed 2018-03-27 stsp static const struct got_error *
635 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
636 199a4027 2019-02-02 stsp struct got_repository *repo, int show_patch, int diff_context,
637 199a4027 2019-02-02 stsp struct got_reflist_head *refs)
638 79109fed 2018-03-27 stsp {
639 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
640 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
641 6c281f94 2018-06-11 stsp char datebuf[26];
642 45d799e2 2018-12-23 stsp time_t committer_time;
643 45d799e2 2018-12-23 stsp const char *author, *committer;
644 199a4027 2019-02-02 stsp char *refs_str = NULL;
645 199a4027 2019-02-02 stsp struct got_reflist_entry *re;
646 5c860e29 2018-03-12 stsp
647 199a4027 2019-02-02 stsp SIMPLEQ_FOREACH(re, refs, entry) {
648 199a4027 2019-02-02 stsp char *s;
649 199a4027 2019-02-02 stsp const char *name;
650 199a4027 2019-02-02 stsp if (got_object_id_cmp(re->id, id) != 0)
651 199a4027 2019-02-02 stsp continue;
652 199a4027 2019-02-02 stsp name = got_ref_get_name(re->ref);
653 d9498b20 2019-02-05 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
654 d9498b20 2019-02-05 stsp continue;
655 199a4027 2019-02-02 stsp if (strncmp(name, "refs/", 5) == 0)
656 199a4027 2019-02-02 stsp name += 5;
657 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
658 7143d404 2019-03-12 stsp continue;
659 e34f9ed6 2019-02-02 stsp if (strncmp(name, "heads/", 6) == 0)
660 e34f9ed6 2019-02-02 stsp name += 6;
661 141c2bff 2019-02-04 stsp if (strncmp(name, "remotes/", 8) == 0)
662 141c2bff 2019-02-04 stsp name += 8;
663 199a4027 2019-02-02 stsp s = refs_str;
664 199a4027 2019-02-02 stsp if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
665 199a4027 2019-02-02 stsp name) == -1) {
666 199a4027 2019-02-02 stsp err = got_error_from_errno();
667 199a4027 2019-02-02 stsp free(s);
668 199a4027 2019-02-02 stsp break;
669 199a4027 2019-02-02 stsp }
670 199a4027 2019-02-02 stsp free(s);
671 199a4027 2019-02-02 stsp }
672 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
673 8bf5b3c9 2018-03-17 stsp if (err)
674 8bf5b3c9 2018-03-17 stsp return err;
675 788c352e 2018-06-16 stsp
676 33d869be 2018-12-22 stsp printf("-----------------------------------------------\n");
677 199a4027 2019-02-02 stsp printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
678 199a4027 2019-02-02 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
679 832c249c 2018-06-10 stsp free(id_str);
680 d3d493d7 2019-02-21 stsp id_str = NULL;
681 d3d493d7 2019-02-21 stsp free(refs_str);
682 d3d493d7 2019-02-21 stsp refs_str = NULL;
683 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
684 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
685 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
686 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
687 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
688 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
689 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
690 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
691 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
692 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
693 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
694 3fe1abad 2018-06-10 stsp int n = 1;
695 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
696 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
697 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
698 a0603db2 2018-06-10 stsp if (err)
699 a0603db2 2018-06-10 stsp return err;
700 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
701 a0603db2 2018-06-10 stsp free(id_str);
702 a0603db2 2018-06-10 stsp }
703 a0603db2 2018-06-10 stsp }
704 832c249c 2018-06-10 stsp
705 45d799e2 2018-12-23 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
706 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
707 832c249c 2018-06-10 stsp return got_error_from_errno();
708 8bf5b3c9 2018-03-17 stsp
709 621015ac 2018-07-23 stsp logmsg = logmsg0;
710 832c249c 2018-06-10 stsp do {
711 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
712 832c249c 2018-06-10 stsp if (line)
713 832c249c 2018-06-10 stsp printf(" %s\n", line);
714 832c249c 2018-06-10 stsp } while (line);
715 621015ac 2018-07-23 stsp free(logmsg0);
716 832c249c 2018-06-10 stsp
717 971751ac 2018-03-27 stsp if (show_patch) {
718 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
719 971751ac 2018-03-27 stsp if (err == 0)
720 971751ac 2018-03-27 stsp printf("\n");
721 971751ac 2018-03-27 stsp }
722 07862c20 2018-09-15 stsp
723 cbe7f848 2019-02-11 stsp if (fflush(stdout) != 0 && err == NULL)
724 cbe7f848 2019-02-11 stsp err = got_error_from_errno();
725 07862c20 2018-09-15 stsp return err;
726 f42b1b34 2018-03-12 stsp }
727 5c860e29 2018-03-12 stsp
728 f42b1b34 2018-03-12 stsp static const struct got_error *
729 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
730 15a94983 2018-12-23 stsp char *path, int show_patch, int diff_context, int limit,
731 199a4027 2019-02-02 stsp int first_parent_traversal, struct got_reflist_head *refs)
732 f42b1b34 2018-03-12 stsp {
733 f42b1b34 2018-03-12 stsp const struct got_error *err;
734 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
735 372ccdbb 2018-06-10 stsp
736 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
737 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
738 f42b1b34 2018-03-12 stsp if (err)
739 f42b1b34 2018-03-12 stsp return err;
740 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
741 372ccdbb 2018-06-10 stsp if (err)
742 fcc85cad 2018-07-22 stsp goto done;
743 31cedeaf 2018-09-15 stsp while (1) {
744 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
745 372ccdbb 2018-06-10 stsp struct got_object_id *id;
746 8bf5b3c9 2018-03-17 stsp
747 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
748 84453469 2018-11-11 stsp break;
749 84453469 2018-11-11 stsp
750 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
751 372ccdbb 2018-06-10 stsp if (err) {
752 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
753 9ba79e04 2018-06-11 stsp err = NULL;
754 9ba79e04 2018-06-11 stsp break;
755 9ba79e04 2018-06-11 stsp }
756 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
757 372ccdbb 2018-06-10 stsp break;
758 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
759 372ccdbb 2018-06-10 stsp if (err)
760 372ccdbb 2018-06-10 stsp break;
761 372ccdbb 2018-06-10 stsp else
762 372ccdbb 2018-06-10 stsp continue;
763 7e665116 2018-04-02 stsp }
764 b43fbaa0 2018-06-11 stsp if (id == NULL)
765 7e665116 2018-04-02 stsp break;
766 b43fbaa0 2018-06-11 stsp
767 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
768 b43fbaa0 2018-06-11 stsp if (err)
769 fcc85cad 2018-07-22 stsp break;
770 199a4027 2019-02-02 stsp err = print_commit(commit, id, repo, show_patch, diff_context,
771 199a4027 2019-02-02 stsp refs);
772 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
773 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
774 7e665116 2018-04-02 stsp break;
775 31cedeaf 2018-09-15 stsp }
776 fcc85cad 2018-07-22 stsp done:
777 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
778 f42b1b34 2018-03-12 stsp return err;
779 f42b1b34 2018-03-12 stsp }
780 5c860e29 2018-03-12 stsp
781 4ed7e80c 2018-05-20 stsp __dead static void
782 6f3d1eb0 2018-03-12 stsp usage_log(void)
783 6f3d1eb0 2018-03-12 stsp {
784 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
785 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
786 6f3d1eb0 2018-03-12 stsp exit(1);
787 6f3d1eb0 2018-03-12 stsp }
788 6f3d1eb0 2018-03-12 stsp
789 4ed7e80c 2018-05-20 stsp static const struct got_error *
790 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
791 f42b1b34 2018-03-12 stsp {
792 f42b1b34 2018-03-12 stsp const struct got_error *error;
793 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
794 cffc0aa4 2019-02-05 stsp struct got_worktree *worktree = NULL;
795 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
796 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
797 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
798 d142fc45 2018-04-01 stsp char *start_commit = NULL;
799 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
800 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
801 64a96a6d 2018-04-01 stsp const char *errstr;
802 199a4027 2019-02-02 stsp struct got_reflist_head refs;
803 1b3893a2 2019-03-18 stsp
804 1b3893a2 2019-03-18 stsp SIMPLEQ_INIT(&refs);
805 5c860e29 2018-03-12 stsp
806 6715a751 2018-03-16 stsp #ifndef PROFILE
807 6098196c 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
808 6098196c 2019-01-04 stsp NULL)
809 ad242220 2018-09-08 stsp == -1)
810 f42b1b34 2018-03-12 stsp err(1, "pledge");
811 6715a751 2018-03-16 stsp #endif
812 79109fed 2018-03-27 stsp
813 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
814 79109fed 2018-03-27 stsp switch (ch) {
815 79109fed 2018-03-27 stsp case 'p':
816 79109fed 2018-03-27 stsp show_patch = 1;
817 d142fc45 2018-04-01 stsp break;
818 d142fc45 2018-04-01 stsp case 'c':
819 d142fc45 2018-04-01 stsp start_commit = optarg;
820 64a96a6d 2018-04-01 stsp break;
821 c0cc5c62 2018-10-18 stsp case 'C':
822 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
823 4a8520aa 2018-10-18 stsp &errstr);
824 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
825 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
826 c0cc5c62 2018-10-18 stsp break;
827 64a96a6d 2018-04-01 stsp case 'l':
828 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
829 64a96a6d 2018-04-01 stsp if (errstr != NULL)
830 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
831 79109fed 2018-03-27 stsp break;
832 0ed6ed4c 2018-06-13 stsp case 'f':
833 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
834 a0603db2 2018-06-10 stsp break;
835 04ca23f4 2018-07-16 stsp case 'r':
836 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
837 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
838 04ca23f4 2018-07-16 stsp err(1, "-r option");
839 04ca23f4 2018-07-16 stsp break;
840 79109fed 2018-03-27 stsp default:
841 2deda0b9 2019-03-07 stsp usage_log();
842 79109fed 2018-03-27 stsp /* NOTREACHED */
843 79109fed 2018-03-27 stsp }
844 79109fed 2018-03-27 stsp }
845 79109fed 2018-03-27 stsp
846 79109fed 2018-03-27 stsp argc -= optind;
847 79109fed 2018-03-27 stsp argv += optind;
848 f42b1b34 2018-03-12 stsp
849 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
850 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
851 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
852 04ca23f4 2018-07-16 stsp goto done;
853 04ca23f4 2018-07-16 stsp }
854 cffc0aa4 2019-02-05 stsp
855 cffc0aa4 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
856 cffc0aa4 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
857 cffc0aa4 2019-02-05 stsp goto done;
858 cffc0aa4 2019-02-05 stsp error = NULL;
859 cffc0aa4 2019-02-05 stsp
860 e7301579 2019-03-18 stsp if (argc == 0) {
861 cbd1af7a 2019-03-18 stsp path = strdup("");
862 e7301579 2019-03-18 stsp if (path == NULL) {
863 e7301579 2019-03-18 stsp error = got_error_from_errno();
864 cbd1af7a 2019-03-18 stsp goto done;
865 e7301579 2019-03-18 stsp }
866 e7301579 2019-03-18 stsp } else if (argc == 1) {
867 e7301579 2019-03-18 stsp if (worktree) {
868 e7301579 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
869 e7301579 2019-03-18 stsp argv[0]);
870 e7301579 2019-03-18 stsp if (error)
871 e7301579 2019-03-18 stsp goto done;
872 e7301579 2019-03-18 stsp } else {
873 e7301579 2019-03-18 stsp path = strdup(argv[0]);
874 e7301579 2019-03-18 stsp if (path == NULL) {
875 e7301579 2019-03-18 stsp error = got_error_from_errno();
876 e7301579 2019-03-18 stsp goto done;
877 e7301579 2019-03-18 stsp }
878 e7301579 2019-03-18 stsp }
879 cbd1af7a 2019-03-18 stsp } else
880 cbd1af7a 2019-03-18 stsp usage_log();
881 cbd1af7a 2019-03-18 stsp
882 cffc0aa4 2019-02-05 stsp repo_path = worktree ?
883 cffc0aa4 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
884 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
885 cffc0aa4 2019-02-05 stsp error = got_error_from_errno();
886 cffc0aa4 2019-02-05 stsp goto done;
887 04ca23f4 2018-07-16 stsp }
888 6098196c 2019-01-04 stsp
889 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
890 d7d4f210 2018-03-12 stsp if (error != NULL)
891 04ca23f4 2018-07-16 stsp goto done;
892 f42b1b34 2018-03-12 stsp
893 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
894 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
895 c02c541e 2019-03-29 stsp if (error)
896 c02c541e 2019-03-29 stsp goto done;
897 c02c541e 2019-03-29 stsp
898 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
899 3235492e 2018-04-01 stsp struct got_reference *head_ref;
900 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
901 3235492e 2018-04-01 stsp if (error != NULL)
902 3235492e 2018-04-01 stsp return error;
903 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
904 3235492e 2018-04-01 stsp got_ref_close(head_ref);
905 3235492e 2018-04-01 stsp if (error != NULL)
906 3235492e 2018-04-01 stsp return error;
907 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
908 3235492e 2018-04-01 stsp } else {
909 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
910 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
911 3235492e 2018-04-01 stsp if (error == NULL) {
912 1caad61b 2019-02-01 stsp int obj_type;
913 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
914 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
915 d1f2edc9 2018-06-13 stsp if (error != NULL)
916 1caad61b 2019-02-01 stsp goto done;
917 1caad61b 2019-02-01 stsp error = got_object_get_type(&obj_type, repo, id);
918 1caad61b 2019-02-01 stsp if (error != NULL)
919 1caad61b 2019-02-01 stsp goto done;
920 1caad61b 2019-02-01 stsp if (obj_type == GOT_OBJ_TYPE_TAG) {
921 1caad61b 2019-02-01 stsp struct got_tag_object *tag;
922 1caad61b 2019-02-01 stsp error = got_object_open_as_tag(&tag, repo, id);
923 1caad61b 2019-02-01 stsp if (error != NULL)
924 1caad61b 2019-02-01 stsp goto done;
925 1caad61b 2019-02-01 stsp if (got_object_tag_get_object_type(tag) !=
926 1caad61b 2019-02-01 stsp GOT_OBJ_TYPE_COMMIT) {
927 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
928 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
929 1caad61b 2019-02-01 stsp goto done;
930 1caad61b 2019-02-01 stsp }
931 1caad61b 2019-02-01 stsp free(id);
932 1caad61b 2019-02-01 stsp id = got_object_id_dup(
933 1caad61b 2019-02-01 stsp got_object_tag_get_object_id(tag));
934 1caad61b 2019-02-01 stsp if (id == NULL)
935 1caad61b 2019-02-01 stsp error = got_error_from_errno();
936 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
937 1caad61b 2019-02-01 stsp if (error)
938 1caad61b 2019-02-01 stsp goto done;
939 1caad61b 2019-02-01 stsp } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
940 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
941 1caad61b 2019-02-01 stsp goto done;
942 1caad61b 2019-02-01 stsp }
943 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
944 d1f2edc9 2018-06-13 stsp if (error != NULL)
945 1caad61b 2019-02-01 stsp goto done;
946 d1f2edc9 2018-06-13 stsp }
947 15a94983 2018-12-23 stsp if (commit == NULL) {
948 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id, repo,
949 d1f2edc9 2018-06-13 stsp start_commit);
950 d1f2edc9 2018-06-13 stsp if (error != NULL)
951 d1f2edc9 2018-06-13 stsp return error;
952 3235492e 2018-04-01 stsp }
953 3235492e 2018-04-01 stsp }
954 d7d4f210 2018-03-12 stsp if (error != NULL)
955 04ca23f4 2018-07-16 stsp goto done;
956 04ca23f4 2018-07-16 stsp
957 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
958 04ca23f4 2018-07-16 stsp if (error != NULL)
959 04ca23f4 2018-07-16 stsp goto done;
960 04ca23f4 2018-07-16 stsp if (in_repo_path) {
961 04ca23f4 2018-07-16 stsp free(path);
962 04ca23f4 2018-07-16 stsp path = in_repo_path;
963 04ca23f4 2018-07-16 stsp }
964 199a4027 2019-02-02 stsp
965 199a4027 2019-02-02 stsp error = got_ref_list(&refs, repo);
966 199a4027 2019-02-02 stsp if (error)
967 199a4027 2019-02-02 stsp goto done;
968 04ca23f4 2018-07-16 stsp
969 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
970 199a4027 2019-02-02 stsp diff_context, limit, first_parent_traversal, &refs);
971 04ca23f4 2018-07-16 stsp done:
972 04ca23f4 2018-07-16 stsp free(path);
973 04ca23f4 2018-07-16 stsp free(repo_path);
974 04ca23f4 2018-07-16 stsp free(cwd);
975 f42b1b34 2018-03-12 stsp free(id);
976 cffc0aa4 2019-02-05 stsp if (worktree)
977 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
978 ad242220 2018-09-08 stsp if (repo) {
979 ad242220 2018-09-08 stsp const struct got_error *repo_error;
980 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
981 ad242220 2018-09-08 stsp if (error == NULL)
982 ad242220 2018-09-08 stsp error = repo_error;
983 ad242220 2018-09-08 stsp }
984 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
985 8bf5b3c9 2018-03-17 stsp return error;
986 5c860e29 2018-03-12 stsp }
987 5c860e29 2018-03-12 stsp
988 4ed7e80c 2018-05-20 stsp __dead static void
989 3f8b7d6a 2018-04-01 stsp usage_diff(void)
990 3f8b7d6a 2018-04-01 stsp {
991 b72f483a 2019-02-05 stsp fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] "
992 927df6b7 2019-02-10 stsp "[object1 object2 | path]\n", getprogname());
993 3f8b7d6a 2018-04-01 stsp exit(1);
994 b00d56cd 2018-04-01 stsp }
995 b00d56cd 2018-04-01 stsp
996 b72f483a 2019-02-05 stsp struct print_diff_arg {
997 b72f483a 2019-02-05 stsp struct got_repository *repo;
998 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
999 b72f483a 2019-02-05 stsp int diff_context;
1000 3fc0c068 2019-02-10 stsp const char *id_str;
1001 3fc0c068 2019-02-10 stsp int header_shown;
1002 b72f483a 2019-02-05 stsp };
1003 b72f483a 2019-02-05 stsp
1004 4ed7e80c 2018-05-20 stsp static const struct got_error *
1005 b72f483a 2019-02-05 stsp print_diff(void *arg, unsigned char status, const char *path,
1006 b72f483a 2019-02-05 stsp struct got_object_id *id)
1007 b72f483a 2019-02-05 stsp {
1008 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
1009 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1010 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
1011 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
1012 b72f483a 2019-02-05 stsp char *abspath = NULL;
1013 b72f483a 2019-02-05 stsp struct stat sb;
1014 b72f483a 2019-02-05 stsp
1015 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
1016 7154f6ce 2019-03-27 stsp status != GOT_STATUS_DELETE && status != GOT_STATUS_CONFLICT)
1017 b72f483a 2019-02-05 stsp return NULL;
1018 3fc0c068 2019-02-10 stsp
1019 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
1020 3fc0c068 2019-02-10 stsp printf("diff %s %s\n", a->id_str,
1021 3fc0c068 2019-02-10 stsp got_worktree_get_root_path(a->worktree));
1022 3fc0c068 2019-02-10 stsp a->header_shown = 1;
1023 3fc0c068 2019-02-10 stsp }
1024 b72f483a 2019-02-05 stsp
1025 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_ADD) {
1026 d00136be 2019-03-26 stsp err = got_object_open_as_blob(&blob1, a->repo, id, 8192);
1027 d00136be 2019-03-26 stsp if (err)
1028 d00136be 2019-03-26 stsp goto done;
1029 b72f483a 2019-02-05 stsp
1030 d00136be 2019-03-26 stsp }
1031 d00136be 2019-03-26 stsp
1032 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_DELETE) {
1033 2ec1f75b 2019-03-26 stsp if (asprintf(&abspath, "%s/%s",
1034 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
1035 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
1036 2ec1f75b 2019-03-26 stsp goto done;
1037 2ec1f75b 2019-03-26 stsp }
1038 b72f483a 2019-02-05 stsp
1039 2ec1f75b 2019-03-26 stsp f2 = fopen(abspath, "r");
1040 2ec1f75b 2019-03-26 stsp if (f2 == NULL) {
1041 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
1042 2ec1f75b 2019-03-26 stsp goto done;
1043 2ec1f75b 2019-03-26 stsp }
1044 2ec1f75b 2019-03-26 stsp if (lstat(abspath, &sb) == -1) {
1045 2ec1f75b 2019-03-26 stsp err = got_error_from_errno();
1046 2ec1f75b 2019-03-26 stsp goto done;
1047 2ec1f75b 2019-03-26 stsp }
1048 2ec1f75b 2019-03-26 stsp } else
1049 2ec1f75b 2019-03-26 stsp sb.st_size = 0;
1050 b72f483a 2019-02-05 stsp
1051 b72f483a 2019-02-05 stsp err = got_diff_blob_file(blob1, f2, sb.st_size, path, a->diff_context,
1052 b72f483a 2019-02-05 stsp stdout);
1053 b72f483a 2019-02-05 stsp done:
1054 b72f483a 2019-02-05 stsp if (blob1)
1055 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
1056 fb43ecf1 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
1057 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
1058 b72f483a 2019-02-05 stsp free(abspath);
1059 927df6b7 2019-02-10 stsp return err;
1060 927df6b7 2019-02-10 stsp }
1061 927df6b7 2019-02-10 stsp
1062 927df6b7 2019-02-10 stsp static const struct got_error *
1063 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
1064 b00d56cd 2018-04-01 stsp {
1065 b00d56cd 2018-04-01 stsp const struct got_error *error;
1066 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
1067 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
1068 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
1069 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
1070 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
1071 15a94983 2018-12-23 stsp int type1, type2;
1072 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
1073 c0cc5c62 2018-10-18 stsp const char *errstr;
1074 927df6b7 2019-02-10 stsp char *path = NULL;
1075 b00d56cd 2018-04-01 stsp
1076 b00d56cd 2018-04-01 stsp #ifndef PROFILE
1077 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1078 25eccc22 2019-01-04 stsp NULL) == -1)
1079 b00d56cd 2018-04-01 stsp err(1, "pledge");
1080 b00d56cd 2018-04-01 stsp #endif
1081 b00d56cd 2018-04-01 stsp
1082 b72f483a 2019-02-05 stsp while ((ch = getopt(argc, argv, "C:r:")) != -1) {
1083 b00d56cd 2018-04-01 stsp switch (ch) {
1084 c0cc5c62 2018-10-18 stsp case 'C':
1085 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
1086 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1087 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1088 c0cc5c62 2018-10-18 stsp break;
1089 b72f483a 2019-02-05 stsp case 'r':
1090 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
1091 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1092 b72f483a 2019-02-05 stsp err(1, "-r option");
1093 b72f483a 2019-02-05 stsp break;
1094 b00d56cd 2018-04-01 stsp default:
1095 2deda0b9 2019-03-07 stsp usage_diff();
1096 b00d56cd 2018-04-01 stsp /* NOTREACHED */
1097 b00d56cd 2018-04-01 stsp }
1098 b00d56cd 2018-04-01 stsp }
1099 b00d56cd 2018-04-01 stsp
1100 b00d56cd 2018-04-01 stsp argc -= optind;
1101 b00d56cd 2018-04-01 stsp argv += optind;
1102 b00d56cd 2018-04-01 stsp
1103 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
1104 b72f483a 2019-02-05 stsp if (cwd == NULL) {
1105 b72f483a 2019-02-05 stsp error = got_error_from_errno();
1106 b72f483a 2019-02-05 stsp goto done;
1107 b72f483a 2019-02-05 stsp }
1108 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1109 927df6b7 2019-02-10 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1110 927df6b7 2019-02-10 stsp goto done;
1111 927df6b7 2019-02-10 stsp if (argc <= 1) {
1112 927df6b7 2019-02-10 stsp if (worktree == NULL) {
1113 927df6b7 2019-02-10 stsp error = got_error(GOT_ERR_NOT_WORKTREE);
1114 927df6b7 2019-02-10 stsp goto done;
1115 927df6b7 2019-02-10 stsp }
1116 b72f483a 2019-02-05 stsp if (repo_path)
1117 b72f483a 2019-02-05 stsp errx(1,
1118 b72f483a 2019-02-05 stsp "-r option can't be used when diffing a work tree");
1119 b72f483a 2019-02-05 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
1120 927df6b7 2019-02-10 stsp if (repo_path == NULL) {
1121 927df6b7 2019-02-10 stsp error = got_error_from_errno();
1122 927df6b7 2019-02-10 stsp goto done;
1123 927df6b7 2019-02-10 stsp }
1124 927df6b7 2019-02-10 stsp if (argc == 1) {
1125 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1126 cbd1af7a 2019-03-18 stsp argv[0]);
1127 927df6b7 2019-02-10 stsp if (error)
1128 927df6b7 2019-02-10 stsp goto done;
1129 927df6b7 2019-02-10 stsp } else {
1130 927df6b7 2019-02-10 stsp path = strdup("");
1131 927df6b7 2019-02-10 stsp if (path == NULL) {
1132 927df6b7 2019-02-10 stsp error = got_error_from_errno();
1133 927df6b7 2019-02-10 stsp goto done;
1134 927df6b7 2019-02-10 stsp }
1135 927df6b7 2019-02-10 stsp }
1136 b72f483a 2019-02-05 stsp } else if (argc == 2) {
1137 15a94983 2018-12-23 stsp id_str1 = argv[0];
1138 15a94983 2018-12-23 stsp id_str2 = argv[1];
1139 b00d56cd 2018-04-01 stsp } else
1140 b00d56cd 2018-04-01 stsp usage_diff();
1141 25eccc22 2019-01-04 stsp
1142 b72f483a 2019-02-05 stsp if (repo_path == NULL) {
1143 b72f483a 2019-02-05 stsp repo_path = getcwd(NULL, 0);
1144 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1145 b72f483a 2019-02-05 stsp return got_error_from_errno();
1146 b72f483a 2019-02-05 stsp }
1147 b00d56cd 2018-04-01 stsp
1148 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
1149 76089277 2018-04-01 stsp free(repo_path);
1150 b00d56cd 2018-04-01 stsp if (error != NULL)
1151 b00d56cd 2018-04-01 stsp goto done;
1152 b00d56cd 2018-04-01 stsp
1153 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1154 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
1155 c02c541e 2019-03-29 stsp if (error)
1156 c02c541e 2019-03-29 stsp goto done;
1157 c02c541e 2019-03-29 stsp
1158 b72f483a 2019-02-05 stsp if (worktree) {
1159 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
1160 b72f483a 2019-02-05 stsp char *id_str;
1161 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
1162 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
1163 b72f483a 2019-02-05 stsp if (error)
1164 b72f483a 2019-02-05 stsp goto done;
1165 b72f483a 2019-02-05 stsp arg.repo = repo;
1166 b72f483a 2019-02-05 stsp arg.worktree = worktree;
1167 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
1168 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
1169 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
1170 b72f483a 2019-02-05 stsp
1171 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_diff,
1172 b72f483a 2019-02-05 stsp &arg, check_cancelled, NULL);
1173 b72f483a 2019-02-05 stsp free(id_str);
1174 b72f483a 2019-02-05 stsp goto done;
1175 b72f483a 2019-02-05 stsp }
1176 b72f483a 2019-02-05 stsp
1177 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id1, repo, id_str1);
1178 6402fb3c 2018-09-15 stsp if (error)
1179 b00d56cd 2018-04-01 stsp goto done;
1180 b00d56cd 2018-04-01 stsp
1181 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id2, repo, id_str2);
1182 6402fb3c 2018-09-15 stsp if (error)
1183 b00d56cd 2018-04-01 stsp goto done;
1184 b00d56cd 2018-04-01 stsp
1185 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
1186 15a94983 2018-12-23 stsp if (error)
1187 15a94983 2018-12-23 stsp goto done;
1188 15a94983 2018-12-23 stsp
1189 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
1190 15a94983 2018-12-23 stsp if (error)
1191 15a94983 2018-12-23 stsp goto done;
1192 15a94983 2018-12-23 stsp
1193 15a94983 2018-12-23 stsp if (type1 != type2) {
1194 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1195 b00d56cd 2018-04-01 stsp goto done;
1196 b00d56cd 2018-04-01 stsp }
1197 b00d56cd 2018-04-01 stsp
1198 15a94983 2018-12-23 stsp switch (type1) {
1199 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
1200 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
1201 54156555 2018-12-24 stsp diff_context, repo, stdout);
1202 b00d56cd 2018-04-01 stsp break;
1203 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
1204 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
1205 54156555 2018-12-24 stsp diff_context, repo, stdout);
1206 b00d56cd 2018-04-01 stsp break;
1207 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
1208 15a94983 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null",
1209 15a94983 2018-12-23 stsp id_str2);
1210 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
1211 c0cc5c62 2018-10-18 stsp repo, stdout);
1212 b00d56cd 2018-04-01 stsp break;
1213 b00d56cd 2018-04-01 stsp default:
1214 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1215 b00d56cd 2018-04-01 stsp }
1216 b00d56cd 2018-04-01 stsp
1217 b00d56cd 2018-04-01 stsp done:
1218 15a94983 2018-12-23 stsp free(id1);
1219 15a94983 2018-12-23 stsp free(id2);
1220 927df6b7 2019-02-10 stsp free(path);
1221 b72f483a 2019-02-05 stsp if (worktree)
1222 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
1223 ad242220 2018-09-08 stsp if (repo) {
1224 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1225 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1226 ad242220 2018-09-08 stsp if (error == NULL)
1227 ad242220 2018-09-08 stsp error = repo_error;
1228 ad242220 2018-09-08 stsp }
1229 b00d56cd 2018-04-01 stsp return error;
1230 404c43c4 2018-06-21 stsp }
1231 404c43c4 2018-06-21 stsp
1232 404c43c4 2018-06-21 stsp __dead static void
1233 404c43c4 2018-06-21 stsp usage_blame(void)
1234 404c43c4 2018-06-21 stsp {
1235 9270e621 2019-02-05 stsp fprintf(stderr,
1236 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
1237 404c43c4 2018-06-21 stsp getprogname());
1238 404c43c4 2018-06-21 stsp exit(1);
1239 b00d56cd 2018-04-01 stsp }
1240 b00d56cd 2018-04-01 stsp
1241 404c43c4 2018-06-21 stsp static const struct got_error *
1242 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
1243 404c43c4 2018-06-21 stsp {
1244 404c43c4 2018-06-21 stsp const struct got_error *error;
1245 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
1246 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
1247 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1248 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
1249 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
1250 404c43c4 2018-06-21 stsp int ch;
1251 404c43c4 2018-06-21 stsp
1252 404c43c4 2018-06-21 stsp #ifndef PROFILE
1253 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1254 36e2fb66 2019-01-04 stsp NULL) == -1)
1255 404c43c4 2018-06-21 stsp err(1, "pledge");
1256 404c43c4 2018-06-21 stsp #endif
1257 404c43c4 2018-06-21 stsp
1258 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
1259 404c43c4 2018-06-21 stsp switch (ch) {
1260 404c43c4 2018-06-21 stsp case 'c':
1261 404c43c4 2018-06-21 stsp commit_id_str = optarg;
1262 404c43c4 2018-06-21 stsp break;
1263 66bea077 2018-08-02 stsp case 'r':
1264 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
1265 66bea077 2018-08-02 stsp if (repo_path == NULL)
1266 66bea077 2018-08-02 stsp err(1, "-r option");
1267 66bea077 2018-08-02 stsp break;
1268 404c43c4 2018-06-21 stsp default:
1269 2deda0b9 2019-03-07 stsp usage_blame();
1270 404c43c4 2018-06-21 stsp /* NOTREACHED */
1271 404c43c4 2018-06-21 stsp }
1272 404c43c4 2018-06-21 stsp }
1273 404c43c4 2018-06-21 stsp
1274 404c43c4 2018-06-21 stsp argc -= optind;
1275 404c43c4 2018-06-21 stsp argv += optind;
1276 404c43c4 2018-06-21 stsp
1277 a39318fd 2018-08-02 stsp if (argc == 1)
1278 404c43c4 2018-06-21 stsp path = argv[0];
1279 a39318fd 2018-08-02 stsp else
1280 404c43c4 2018-06-21 stsp usage_blame();
1281 404c43c4 2018-06-21 stsp
1282 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
1283 66bea077 2018-08-02 stsp if (cwd == NULL) {
1284 66bea077 2018-08-02 stsp error = got_error_from_errno();
1285 66bea077 2018-08-02 stsp goto done;
1286 66bea077 2018-08-02 stsp }
1287 66bea077 2018-08-02 stsp if (repo_path == NULL) {
1288 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1289 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1290 66bea077 2018-08-02 stsp goto done;
1291 0c06baac 2019-02-05 stsp else
1292 0c06baac 2019-02-05 stsp error = NULL;
1293 0c06baac 2019-02-05 stsp if (worktree) {
1294 0c06baac 2019-02-05 stsp repo_path =
1295 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1296 0c06baac 2019-02-05 stsp if (repo_path == NULL)
1297 0c06baac 2019-02-05 stsp error = got_error_from_errno();
1298 0c06baac 2019-02-05 stsp if (error)
1299 0c06baac 2019-02-05 stsp goto done;
1300 0c06baac 2019-02-05 stsp } else {
1301 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
1302 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
1303 0c06baac 2019-02-05 stsp error = got_error_from_errno();
1304 0c06baac 2019-02-05 stsp goto done;
1305 0c06baac 2019-02-05 stsp }
1306 66bea077 2018-08-02 stsp }
1307 66bea077 2018-08-02 stsp }
1308 36e2fb66 2019-01-04 stsp
1309 c02c541e 2019-03-29 stsp error = got_repo_open(&repo, repo_path);
1310 c02c541e 2019-03-29 stsp if (error != NULL)
1311 36e2fb66 2019-01-04 stsp goto done;
1312 66bea077 2018-08-02 stsp
1313 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
1314 c02c541e 2019-03-29 stsp if (error)
1315 404c43c4 2018-06-21 stsp goto done;
1316 404c43c4 2018-06-21 stsp
1317 0c06baac 2019-02-05 stsp if (worktree) {
1318 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
1319 0c06baac 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1320 0c06baac 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1321 6efaaa2d 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
1322 6efaaa2d 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
1323 6efaaa2d 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
1324 6efaaa2d 2019-02-05 stsp path) == -1) {
1325 0c06baac 2019-02-05 stsp error = got_error_from_errno();
1326 0c06baac 2019-02-05 stsp goto done;
1327 0c06baac 2019-02-05 stsp }
1328 6efaaa2d 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
1329 0c06baac 2019-02-05 stsp free(p);
1330 0c06baac 2019-02-05 stsp } else {
1331 0c06baac 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1332 0c06baac 2019-02-05 stsp }
1333 0c06baac 2019-02-05 stsp if (error)
1334 66bea077 2018-08-02 stsp goto done;
1335 66bea077 2018-08-02 stsp
1336 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
1337 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
1338 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
1339 404c43c4 2018-06-21 stsp if (error != NULL)
1340 66bea077 2018-08-02 stsp goto done;
1341 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1342 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
1343 404c43c4 2018-06-21 stsp if (error != NULL)
1344 66bea077 2018-08-02 stsp goto done;
1345 404c43c4 2018-06-21 stsp } else {
1346 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1347 15a94983 2018-12-23 stsp commit_id_str);
1348 404c43c4 2018-06-21 stsp if (error != NULL)
1349 66bea077 2018-08-02 stsp goto done;
1350 404c43c4 2018-06-21 stsp }
1351 404c43c4 2018-06-21 stsp
1352 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
1353 404c43c4 2018-06-21 stsp done:
1354 66bea077 2018-08-02 stsp free(in_repo_path);
1355 66bea077 2018-08-02 stsp free(repo_path);
1356 66bea077 2018-08-02 stsp free(cwd);
1357 404c43c4 2018-06-21 stsp free(commit_id);
1358 0c06baac 2019-02-05 stsp if (worktree)
1359 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
1360 ad242220 2018-09-08 stsp if (repo) {
1361 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1362 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1363 ad242220 2018-09-08 stsp if (error == NULL)
1364 ad242220 2018-09-08 stsp error = repo_error;
1365 ad242220 2018-09-08 stsp }
1366 404c43c4 2018-06-21 stsp return error;
1367 5de5890b 2018-10-18 stsp }
1368 5de5890b 2018-10-18 stsp
1369 5de5890b 2018-10-18 stsp __dead static void
1370 5de5890b 2018-10-18 stsp usage_tree(void)
1371 5de5890b 2018-10-18 stsp {
1372 c1669e2e 2019-01-09 stsp fprintf(stderr,
1373 c1669e2e 2019-01-09 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
1374 5de5890b 2018-10-18 stsp getprogname());
1375 5de5890b 2018-10-18 stsp exit(1);
1376 5de5890b 2018-10-18 stsp }
1377 5de5890b 2018-10-18 stsp
1378 c1669e2e 2019-01-09 stsp static void
1379 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
1380 c1669e2e 2019-01-09 stsp const char *root_path)
1381 c1669e2e 2019-01-09 stsp {
1382 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
1383 5de5890b 2018-10-18 stsp
1384 c1669e2e 2019-01-09 stsp path += strlen(root_path);
1385 c1669e2e 2019-01-09 stsp while (path[0] == '/')
1386 c1669e2e 2019-01-09 stsp path++;
1387 c1669e2e 2019-01-09 stsp
1388 c1669e2e 2019-01-09 stsp printf("%s%s%s%s%s\n", id ? id : "", path,
1389 d6e648b4 2019-02-10 stsp is_root_path ? "" : "/", te->name,
1390 d6e648b4 2019-02-10 stsp S_ISDIR(te->mode) ? "/" : ((te->mode & S_IXUSR) ? "*" : ""));
1391 c1669e2e 2019-01-09 stsp }
1392 c1669e2e 2019-01-09 stsp
1393 5de5890b 2018-10-18 stsp static const struct got_error *
1394 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
1395 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
1396 c1669e2e 2019-01-09 stsp struct got_repository *repo)
1397 5de5890b 2018-10-18 stsp {
1398 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
1399 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
1400 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
1401 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
1402 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
1403 5de5890b 2018-10-18 stsp
1404 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
1405 5de5890b 2018-10-18 stsp if (err)
1406 5de5890b 2018-10-18 stsp goto done;
1407 5de5890b 2018-10-18 stsp
1408 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1409 5de5890b 2018-10-18 stsp if (err)
1410 5de5890b 2018-10-18 stsp goto done;
1411 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
1412 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
1413 5de5890b 2018-10-18 stsp while (te) {
1414 5de5890b 2018-10-18 stsp char *id = NULL;
1415 84453469 2018-11-11 stsp
1416 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1417 84453469 2018-11-11 stsp break;
1418 84453469 2018-11-11 stsp
1419 5de5890b 2018-10-18 stsp if (show_ids) {
1420 5de5890b 2018-10-18 stsp char *id_str;
1421 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
1422 5de5890b 2018-10-18 stsp if (err)
1423 5de5890b 2018-10-18 stsp goto done;
1424 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
1425 5de5890b 2018-10-18 stsp err = got_error_from_errno();
1426 5de5890b 2018-10-18 stsp free(id_str);
1427 5de5890b 2018-10-18 stsp goto done;
1428 5de5890b 2018-10-18 stsp }
1429 5de5890b 2018-10-18 stsp free(id_str);
1430 5de5890b 2018-10-18 stsp }
1431 c1669e2e 2019-01-09 stsp print_entry(te, id, path, root_path);
1432 5de5890b 2018-10-18 stsp free(id);
1433 c1669e2e 2019-01-09 stsp
1434 c1669e2e 2019-01-09 stsp if (recurse && S_ISDIR(te->mode)) {
1435 c1669e2e 2019-01-09 stsp char *child_path;
1436 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
1437 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
1438 c1669e2e 2019-01-09 stsp te->name) == -1) {
1439 c1669e2e 2019-01-09 stsp err = got_error_from_errno();
1440 c1669e2e 2019-01-09 stsp goto done;
1441 c1669e2e 2019-01-09 stsp }
1442 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
1443 c1669e2e 2019-01-09 stsp root_path, repo);
1444 c1669e2e 2019-01-09 stsp free(child_path);
1445 c1669e2e 2019-01-09 stsp if (err)
1446 c1669e2e 2019-01-09 stsp goto done;
1447 c1669e2e 2019-01-09 stsp }
1448 c1669e2e 2019-01-09 stsp
1449 c1669e2e 2019-01-09 stsp te = SIMPLEQ_NEXT(te, entry);
1450 5de5890b 2018-10-18 stsp }
1451 5de5890b 2018-10-18 stsp done:
1452 5de5890b 2018-10-18 stsp if (tree)
1453 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
1454 5de5890b 2018-10-18 stsp free(tree_id);
1455 5de5890b 2018-10-18 stsp return err;
1456 404c43c4 2018-06-21 stsp }
1457 404c43c4 2018-06-21 stsp
1458 5de5890b 2018-10-18 stsp static const struct got_error *
1459 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
1460 5de5890b 2018-10-18 stsp {
1461 5de5890b 2018-10-18 stsp const struct got_error *error;
1462 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
1463 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
1464 7a2c19d6 2019-02-05 stsp const char *path;
1465 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1466 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
1467 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
1468 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
1469 5de5890b 2018-10-18 stsp int ch;
1470 5de5890b 2018-10-18 stsp
1471 5de5890b 2018-10-18 stsp #ifndef PROFILE
1472 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1473 0f8d269b 2019-01-04 stsp NULL) == -1)
1474 5de5890b 2018-10-18 stsp err(1, "pledge");
1475 5de5890b 2018-10-18 stsp #endif
1476 5de5890b 2018-10-18 stsp
1477 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
1478 5de5890b 2018-10-18 stsp switch (ch) {
1479 5de5890b 2018-10-18 stsp case 'c':
1480 5de5890b 2018-10-18 stsp commit_id_str = optarg;
1481 5de5890b 2018-10-18 stsp break;
1482 5de5890b 2018-10-18 stsp case 'r':
1483 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
1484 5de5890b 2018-10-18 stsp if (repo_path == NULL)
1485 5de5890b 2018-10-18 stsp err(1, "-r option");
1486 5de5890b 2018-10-18 stsp break;
1487 5de5890b 2018-10-18 stsp case 'i':
1488 5de5890b 2018-10-18 stsp show_ids = 1;
1489 5de5890b 2018-10-18 stsp break;
1490 c1669e2e 2019-01-09 stsp case 'R':
1491 c1669e2e 2019-01-09 stsp recurse = 1;
1492 c1669e2e 2019-01-09 stsp break;
1493 5de5890b 2018-10-18 stsp default:
1494 2deda0b9 2019-03-07 stsp usage_tree();
1495 5de5890b 2018-10-18 stsp /* NOTREACHED */
1496 5de5890b 2018-10-18 stsp }
1497 5de5890b 2018-10-18 stsp }
1498 5de5890b 2018-10-18 stsp
1499 5de5890b 2018-10-18 stsp argc -= optind;
1500 5de5890b 2018-10-18 stsp argv += optind;
1501 5de5890b 2018-10-18 stsp
1502 5de5890b 2018-10-18 stsp if (argc == 1)
1503 5de5890b 2018-10-18 stsp path = argv[0];
1504 5de5890b 2018-10-18 stsp else if (argc > 1)
1505 5de5890b 2018-10-18 stsp usage_tree();
1506 5de5890b 2018-10-18 stsp else
1507 7a2c19d6 2019-02-05 stsp path = NULL;
1508 7a2c19d6 2019-02-05 stsp
1509 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
1510 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
1511 9bf7a39b 2019-02-05 stsp error = got_error_from_errno();
1512 9bf7a39b 2019-02-05 stsp goto done;
1513 9bf7a39b 2019-02-05 stsp }
1514 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
1515 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1516 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1517 7a2c19d6 2019-02-05 stsp goto done;
1518 7a2c19d6 2019-02-05 stsp else
1519 7a2c19d6 2019-02-05 stsp error = NULL;
1520 7a2c19d6 2019-02-05 stsp if (worktree) {
1521 7a2c19d6 2019-02-05 stsp repo_path =
1522 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1523 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
1524 7a2c19d6 2019-02-05 stsp error = got_error_from_errno();
1525 7a2c19d6 2019-02-05 stsp if (error)
1526 7a2c19d6 2019-02-05 stsp goto done;
1527 7a2c19d6 2019-02-05 stsp } else {
1528 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
1529 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
1530 7a2c19d6 2019-02-05 stsp error = got_error_from_errno();
1531 7a2c19d6 2019-02-05 stsp goto done;
1532 7a2c19d6 2019-02-05 stsp }
1533 5de5890b 2018-10-18 stsp }
1534 5de5890b 2018-10-18 stsp }
1535 5de5890b 2018-10-18 stsp
1536 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
1537 5de5890b 2018-10-18 stsp if (error != NULL)
1538 c02c541e 2019-03-29 stsp goto done;
1539 c02c541e 2019-03-29 stsp
1540 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
1541 c02c541e 2019-03-29 stsp if (error)
1542 5de5890b 2018-10-18 stsp goto done;
1543 5de5890b 2018-10-18 stsp
1544 9bf7a39b 2019-02-05 stsp if (path == NULL) {
1545 9bf7a39b 2019-02-05 stsp if (worktree) {
1546 9bf7a39b 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1547 9bf7a39b 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1548 9bf7a39b 2019-02-05 stsp if (asprintf(&p, "%s/%s",
1549 9bf7a39b 2019-02-05 stsp got_worktree_get_path_prefix(worktree),
1550 9bf7a39b 2019-02-05 stsp worktree_subdir) == -1) {
1551 9bf7a39b 2019-02-05 stsp error = got_error_from_errno();
1552 9bf7a39b 2019-02-05 stsp goto done;
1553 9bf7a39b 2019-02-05 stsp }
1554 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 1);
1555 9bf7a39b 2019-02-05 stsp free(p);
1556 9bf7a39b 2019-02-05 stsp if (error)
1557 9bf7a39b 2019-02-05 stsp goto done;
1558 9bf7a39b 2019-02-05 stsp } else
1559 9bf7a39b 2019-02-05 stsp path = "/";
1560 9bf7a39b 2019-02-05 stsp }
1561 9bf7a39b 2019-02-05 stsp if (in_repo_path == NULL) {
1562 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1563 9bf7a39b 2019-02-05 stsp if (error != NULL)
1564 9bf7a39b 2019-02-05 stsp goto done;
1565 9bf7a39b 2019-02-05 stsp }
1566 5de5890b 2018-10-18 stsp
1567 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
1568 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
1569 5de5890b 2018-10-18 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
1570 5de5890b 2018-10-18 stsp if (error != NULL)
1571 5de5890b 2018-10-18 stsp goto done;
1572 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1573 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
1574 5de5890b 2018-10-18 stsp if (error != NULL)
1575 5de5890b 2018-10-18 stsp goto done;
1576 5de5890b 2018-10-18 stsp } else {
1577 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1578 15a94983 2018-12-23 stsp commit_id_str);
1579 5de5890b 2018-10-18 stsp if (error != NULL)
1580 5de5890b 2018-10-18 stsp goto done;
1581 5de5890b 2018-10-18 stsp }
1582 5de5890b 2018-10-18 stsp
1583 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
1584 c1669e2e 2019-01-09 stsp in_repo_path, repo);
1585 5de5890b 2018-10-18 stsp done:
1586 5de5890b 2018-10-18 stsp free(in_repo_path);
1587 5de5890b 2018-10-18 stsp free(repo_path);
1588 5de5890b 2018-10-18 stsp free(cwd);
1589 5de5890b 2018-10-18 stsp free(commit_id);
1590 7a2c19d6 2019-02-05 stsp if (worktree)
1591 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
1592 5de5890b 2018-10-18 stsp if (repo) {
1593 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
1594 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
1595 5de5890b 2018-10-18 stsp if (error == NULL)
1596 5de5890b 2018-10-18 stsp error = repo_error;
1597 5de5890b 2018-10-18 stsp }
1598 5de5890b 2018-10-18 stsp return error;
1599 5de5890b 2018-10-18 stsp }
1600 5de5890b 2018-10-18 stsp
1601 6bad629b 2019-02-04 stsp __dead static void
1602 6bad629b 2019-02-04 stsp usage_status(void)
1603 6bad629b 2019-02-04 stsp {
1604 927df6b7 2019-02-10 stsp fprintf(stderr, "usage: %s status [path]\n", getprogname());
1605 6bad629b 2019-02-04 stsp exit(1);
1606 6bad629b 2019-02-04 stsp }
1607 5c860e29 2018-03-12 stsp
1608 b72f483a 2019-02-05 stsp static const struct got_error *
1609 b72f483a 2019-02-05 stsp print_status(void *arg, unsigned char status, const char *path,
1610 b72f483a 2019-02-05 stsp struct got_object_id *id)
1611 6bad629b 2019-02-04 stsp {
1612 6bad629b 2019-02-04 stsp printf("%c %s\n", status, path);
1613 b72f483a 2019-02-05 stsp return NULL;
1614 6bad629b 2019-02-04 stsp }
1615 5c860e29 2018-03-12 stsp
1616 6bad629b 2019-02-04 stsp static const struct got_error *
1617 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
1618 6bad629b 2019-02-04 stsp {
1619 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
1620 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
1621 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
1622 927df6b7 2019-02-10 stsp char *cwd = NULL, *path = NULL;
1623 6bad629b 2019-02-04 stsp int ch;
1624 5c860e29 2018-03-12 stsp
1625 6bad629b 2019-02-04 stsp while ((ch = getopt(argc, argv, "")) != -1) {
1626 6bad629b 2019-02-04 stsp switch (ch) {
1627 5c860e29 2018-03-12 stsp default:
1628 2deda0b9 2019-03-07 stsp usage_status();
1629 6bad629b 2019-02-04 stsp /* NOTREACHED */
1630 5c860e29 2018-03-12 stsp }
1631 5c860e29 2018-03-12 stsp }
1632 5c860e29 2018-03-12 stsp
1633 6bad629b 2019-02-04 stsp argc -= optind;
1634 6bad629b 2019-02-04 stsp argv += optind;
1635 5c860e29 2018-03-12 stsp
1636 6bad629b 2019-02-04 stsp #ifndef PROFILE
1637 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1638 6bad629b 2019-02-04 stsp NULL) == -1)
1639 6bad629b 2019-02-04 stsp err(1, "pledge");
1640 f42b1b34 2018-03-12 stsp #endif
1641 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
1642 927df6b7 2019-02-10 stsp if (cwd == NULL) {
1643 927df6b7 2019-02-10 stsp error = got_error_from_errno();
1644 927df6b7 2019-02-10 stsp goto done;
1645 927df6b7 2019-02-10 stsp }
1646 927df6b7 2019-02-10 stsp
1647 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1648 927df6b7 2019-02-10 stsp if (error != NULL)
1649 927df6b7 2019-02-10 stsp goto done;
1650 927df6b7 2019-02-10 stsp
1651 6bad629b 2019-02-04 stsp if (argc == 0) {
1652 927df6b7 2019-02-10 stsp path = strdup("");
1653 927df6b7 2019-02-10 stsp if (path == NULL) {
1654 6bad629b 2019-02-04 stsp error = got_error_from_errno();
1655 6bad629b 2019-02-04 stsp goto done;
1656 6bad629b 2019-02-04 stsp }
1657 6bad629b 2019-02-04 stsp } else if (argc == 1) {
1658 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
1659 927df6b7 2019-02-10 stsp if (error)
1660 6bad629b 2019-02-04 stsp goto done;
1661 6bad629b 2019-02-04 stsp } else
1662 6bad629b 2019-02-04 stsp usage_status();
1663 6bad629b 2019-02-04 stsp
1664 6bad629b 2019-02-04 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
1665 6bad629b 2019-02-04 stsp if (error != NULL)
1666 6bad629b 2019-02-04 stsp goto done;
1667 6bad629b 2019-02-04 stsp
1668 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1669 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(worktree));
1670 6bad629b 2019-02-04 stsp if (error)
1671 6bad629b 2019-02-04 stsp goto done;
1672 6bad629b 2019-02-04 stsp
1673 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_status, NULL,
1674 6bad629b 2019-02-04 stsp check_cancelled, NULL);
1675 6bad629b 2019-02-04 stsp done:
1676 927df6b7 2019-02-10 stsp free(cwd);
1677 927df6b7 2019-02-10 stsp free(path);
1678 d0eebce4 2019-03-11 stsp return error;
1679 d0eebce4 2019-03-11 stsp }
1680 d0eebce4 2019-03-11 stsp
1681 d0eebce4 2019-03-11 stsp __dead static void
1682 d0eebce4 2019-03-11 stsp usage_ref(void)
1683 d0eebce4 2019-03-11 stsp {
1684 d0eebce4 2019-03-11 stsp fprintf(stderr,
1685 d0eebce4 2019-03-11 stsp "usage: %s ref [-r repository] -l | -d name | name object\n",
1686 d0eebce4 2019-03-11 stsp getprogname());
1687 d0eebce4 2019-03-11 stsp exit(1);
1688 d0eebce4 2019-03-11 stsp }
1689 d0eebce4 2019-03-11 stsp
1690 d0eebce4 2019-03-11 stsp static const struct got_error *
1691 d0eebce4 2019-03-11 stsp list_refs(struct got_repository *repo)
1692 d0eebce4 2019-03-11 stsp {
1693 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
1694 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
1695 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
1696 d0eebce4 2019-03-11 stsp
1697 d0eebce4 2019-03-11 stsp SIMPLEQ_INIT(&refs);
1698 d0eebce4 2019-03-11 stsp err = got_ref_list(&refs, repo);
1699 d0eebce4 2019-03-11 stsp if (err)
1700 d0eebce4 2019-03-11 stsp return err;
1701 d0eebce4 2019-03-11 stsp
1702 d0eebce4 2019-03-11 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
1703 d0eebce4 2019-03-11 stsp char *refstr;
1704 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
1705 d0eebce4 2019-03-11 stsp if (refstr == NULL)
1706 d0eebce4 2019-03-11 stsp return got_error_from_errno();
1707 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
1708 d0eebce4 2019-03-11 stsp free(refstr);
1709 d0eebce4 2019-03-11 stsp }
1710 d0eebce4 2019-03-11 stsp
1711 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
1712 d0eebce4 2019-03-11 stsp return NULL;
1713 d0eebce4 2019-03-11 stsp }
1714 d0eebce4 2019-03-11 stsp
1715 d0eebce4 2019-03-11 stsp static const struct got_error *
1716 d0eebce4 2019-03-11 stsp delete_ref(struct got_repository *repo, const char *refname)
1717 d0eebce4 2019-03-11 stsp {
1718 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1719 d0eebce4 2019-03-11 stsp struct got_reference *ref;
1720 d0eebce4 2019-03-11 stsp
1721 d0eebce4 2019-03-11 stsp err = got_ref_open(&ref, repo, refname);
1722 d0eebce4 2019-03-11 stsp if (err)
1723 d0eebce4 2019-03-11 stsp return err;
1724 d0eebce4 2019-03-11 stsp
1725 d0eebce4 2019-03-11 stsp err = got_ref_delete(ref, repo);
1726 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1727 d0eebce4 2019-03-11 stsp return err;
1728 d0eebce4 2019-03-11 stsp }
1729 d0eebce4 2019-03-11 stsp
1730 d0eebce4 2019-03-11 stsp static const struct got_error *
1731 d0eebce4 2019-03-11 stsp add_ref(struct got_repository *repo, const char *refname, const char *id_str)
1732 d0eebce4 2019-03-11 stsp {
1733 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1734 d0eebce4 2019-03-11 stsp struct got_object_id *id;
1735 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
1736 d0eebce4 2019-03-11 stsp
1737 d0eebce4 2019-03-11 stsp err = got_object_resolve_id_str(&id, repo, id_str);
1738 d0eebce4 2019-03-11 stsp if (err)
1739 d0eebce4 2019-03-11 stsp return err;
1740 d0eebce4 2019-03-11 stsp
1741 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
1742 d0eebce4 2019-03-11 stsp if (err)
1743 d0eebce4 2019-03-11 stsp goto done;
1744 d0eebce4 2019-03-11 stsp
1745 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
1746 d0eebce4 2019-03-11 stsp done:
1747 d0eebce4 2019-03-11 stsp if (ref)
1748 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1749 d0eebce4 2019-03-11 stsp free(id);
1750 d0eebce4 2019-03-11 stsp return err;
1751 d0eebce4 2019-03-11 stsp }
1752 d0eebce4 2019-03-11 stsp
1753 d0eebce4 2019-03-11 stsp static const struct got_error *
1754 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
1755 d0eebce4 2019-03-11 stsp {
1756 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
1757 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
1758 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
1759 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
1760 d0eebce4 2019-03-11 stsp int ch, do_list = 0;
1761 d0eebce4 2019-03-11 stsp const char *delref = NULL;
1762 d0eebce4 2019-03-11 stsp
1763 d0eebce4 2019-03-11 stsp /* TODO: Add -s option for adding symbolic references. */
1764 d0eebce4 2019-03-11 stsp while ((ch = getopt(argc, argv, "d:r:l")) != -1) {
1765 d0eebce4 2019-03-11 stsp switch (ch) {
1766 d0eebce4 2019-03-11 stsp case 'd':
1767 d0eebce4 2019-03-11 stsp delref = optarg;
1768 d0eebce4 2019-03-11 stsp break;
1769 d0eebce4 2019-03-11 stsp case 'r':
1770 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
1771 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
1772 d0eebce4 2019-03-11 stsp err(1, "-r option");
1773 d0eebce4 2019-03-11 stsp break;
1774 d0eebce4 2019-03-11 stsp case 'l':
1775 d0eebce4 2019-03-11 stsp do_list = 1;
1776 d0eebce4 2019-03-11 stsp break;
1777 d0eebce4 2019-03-11 stsp default:
1778 d0eebce4 2019-03-11 stsp usage_ref();
1779 d0eebce4 2019-03-11 stsp /* NOTREACHED */
1780 d0eebce4 2019-03-11 stsp }
1781 d0eebce4 2019-03-11 stsp }
1782 d0eebce4 2019-03-11 stsp
1783 d0eebce4 2019-03-11 stsp if (do_list && delref)
1784 d0eebce4 2019-03-11 stsp errx(1, "-l and -d options are mutually exclusive\n");
1785 d0eebce4 2019-03-11 stsp
1786 d0eebce4 2019-03-11 stsp argc -= optind;
1787 d0eebce4 2019-03-11 stsp argv += optind;
1788 d0eebce4 2019-03-11 stsp
1789 d0eebce4 2019-03-11 stsp if (do_list || delref) {
1790 d0eebce4 2019-03-11 stsp if (argc > 0)
1791 d0eebce4 2019-03-11 stsp usage_ref();
1792 d0eebce4 2019-03-11 stsp } else if (argc != 2)
1793 d0eebce4 2019-03-11 stsp usage_ref();
1794 d0eebce4 2019-03-11 stsp
1795 d0eebce4 2019-03-11 stsp #ifndef PROFILE
1796 e0b57350 2019-03-12 stsp if (do_list) {
1797 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
1798 e0b57350 2019-03-12 stsp NULL) == -1)
1799 e0b57350 2019-03-12 stsp err(1, "pledge");
1800 e0b57350 2019-03-12 stsp } else {
1801 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1802 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
1803 e0b57350 2019-03-12 stsp err(1, "pledge");
1804 e0b57350 2019-03-12 stsp }
1805 d0eebce4 2019-03-11 stsp #endif
1806 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
1807 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
1808 d0eebce4 2019-03-11 stsp error = got_error_from_errno();
1809 d0eebce4 2019-03-11 stsp goto done;
1810 d0eebce4 2019-03-11 stsp }
1811 d0eebce4 2019-03-11 stsp
1812 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
1813 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
1814 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1815 d0eebce4 2019-03-11 stsp goto done;
1816 d0eebce4 2019-03-11 stsp else
1817 d0eebce4 2019-03-11 stsp error = NULL;
1818 d0eebce4 2019-03-11 stsp if (worktree) {
1819 d0eebce4 2019-03-11 stsp repo_path =
1820 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
1821 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
1822 d0eebce4 2019-03-11 stsp error = got_error_from_errno();
1823 d0eebce4 2019-03-11 stsp if (error)
1824 d0eebce4 2019-03-11 stsp goto done;
1825 d0eebce4 2019-03-11 stsp } else {
1826 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
1827 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
1828 d0eebce4 2019-03-11 stsp error = got_error_from_errno();
1829 d0eebce4 2019-03-11 stsp goto done;
1830 d0eebce4 2019-03-11 stsp }
1831 d0eebce4 2019-03-11 stsp }
1832 d0eebce4 2019-03-11 stsp }
1833 d0eebce4 2019-03-11 stsp
1834 d0eebce4 2019-03-11 stsp error = got_repo_open(&repo, repo_path);
1835 d0eebce4 2019-03-11 stsp if (error != NULL)
1836 d0eebce4 2019-03-11 stsp goto done;
1837 d0eebce4 2019-03-11 stsp
1838 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
1839 c02c541e 2019-03-29 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
1840 c02c541e 2019-03-29 stsp if (error)
1841 c02c541e 2019-03-29 stsp goto done;
1842 c02c541e 2019-03-29 stsp
1843 d0eebce4 2019-03-11 stsp if (do_list)
1844 d0eebce4 2019-03-11 stsp error = list_refs(repo);
1845 d0eebce4 2019-03-11 stsp else if (delref)
1846 d0eebce4 2019-03-11 stsp error = delete_ref(repo, delref);
1847 d0eebce4 2019-03-11 stsp else
1848 d0eebce4 2019-03-11 stsp error = add_ref(repo, argv[0], argv[1]);
1849 d0eebce4 2019-03-11 stsp done:
1850 d0eebce4 2019-03-11 stsp if (repo)
1851 d0eebce4 2019-03-11 stsp got_repo_close(repo);
1852 d0eebce4 2019-03-11 stsp if (worktree)
1853 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
1854 d0eebce4 2019-03-11 stsp free(cwd);
1855 d0eebce4 2019-03-11 stsp free(repo_path);
1856 d00136be 2019-03-26 stsp return error;
1857 d00136be 2019-03-26 stsp }
1858 d00136be 2019-03-26 stsp
1859 d00136be 2019-03-26 stsp __dead static void
1860 d00136be 2019-03-26 stsp usage_add(void)
1861 d00136be 2019-03-26 stsp {
1862 d00136be 2019-03-26 stsp fprintf(stderr, "usage: %s add file-path\n", getprogname());
1863 d00136be 2019-03-26 stsp exit(1);
1864 d00136be 2019-03-26 stsp }
1865 d00136be 2019-03-26 stsp
1866 d00136be 2019-03-26 stsp static const struct got_error *
1867 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
1868 d00136be 2019-03-26 stsp {
1869 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
1870 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
1871 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
1872 d00136be 2019-03-26 stsp char *cwd = NULL, *path = NULL, *relpath = NULL;
1873 d00136be 2019-03-26 stsp int ch;
1874 d00136be 2019-03-26 stsp
1875 d00136be 2019-03-26 stsp while ((ch = getopt(argc, argv, "")) != -1) {
1876 d00136be 2019-03-26 stsp switch (ch) {
1877 d00136be 2019-03-26 stsp default:
1878 d00136be 2019-03-26 stsp usage_add();
1879 d00136be 2019-03-26 stsp /* NOTREACHED */
1880 d00136be 2019-03-26 stsp }
1881 d00136be 2019-03-26 stsp }
1882 d00136be 2019-03-26 stsp
1883 d00136be 2019-03-26 stsp argc -= optind;
1884 d00136be 2019-03-26 stsp argv += optind;
1885 d00136be 2019-03-26 stsp
1886 d00136be 2019-03-26 stsp if (argc != 1)
1887 d00136be 2019-03-26 stsp usage_add();
1888 d00136be 2019-03-26 stsp
1889 d00136be 2019-03-26 stsp path = realpath(argv[0], NULL);
1890 d00136be 2019-03-26 stsp if (path == NULL) {
1891 d00136be 2019-03-26 stsp error = got_error_from_errno();
1892 d00136be 2019-03-26 stsp goto done;
1893 d00136be 2019-03-26 stsp }
1894 d00136be 2019-03-26 stsp
1895 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
1896 d00136be 2019-03-26 stsp if (cwd == NULL) {
1897 d00136be 2019-03-26 stsp error = got_error_from_errno();
1898 d00136be 2019-03-26 stsp goto done;
1899 d00136be 2019-03-26 stsp }
1900 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
1901 d00136be 2019-03-26 stsp if (error)
1902 d00136be 2019-03-26 stsp goto done;
1903 d00136be 2019-03-26 stsp
1904 031a5338 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
1905 031a5338 2019-03-26 stsp if (error != NULL)
1906 031a5338 2019-03-26 stsp goto done;
1907 031a5338 2019-03-26 stsp
1908 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1909 031a5338 2019-03-26 stsp got_worktree_get_root_path(worktree));
1910 d00136be 2019-03-26 stsp if (error)
1911 d00136be 2019-03-26 stsp goto done;
1912 d00136be 2019-03-26 stsp
1913 031a5338 2019-03-26 stsp error = got_worktree_schedule_add(worktree, path, print_status, NULL,
1914 031a5338 2019-03-26 stsp repo);
1915 d00136be 2019-03-26 stsp if (error)
1916 d00136be 2019-03-26 stsp goto done;
1917 d00136be 2019-03-26 stsp done:
1918 031a5338 2019-03-26 stsp if (repo)
1919 031a5338 2019-03-26 stsp got_repo_close(repo);
1920 d00136be 2019-03-26 stsp if (worktree)
1921 d00136be 2019-03-26 stsp got_worktree_close(worktree);
1922 d00136be 2019-03-26 stsp free(path);
1923 d00136be 2019-03-26 stsp free(relpath);
1924 2ec1f75b 2019-03-26 stsp free(cwd);
1925 2ec1f75b 2019-03-26 stsp return error;
1926 2ec1f75b 2019-03-26 stsp }
1927 2ec1f75b 2019-03-26 stsp
1928 2ec1f75b 2019-03-26 stsp __dead static void
1929 2ec1f75b 2019-03-26 stsp usage_rm(void)
1930 2ec1f75b 2019-03-26 stsp {
1931 2ec1f75b 2019-03-26 stsp fprintf(stderr, "usage: %s rm [-f] file-path\n", getprogname());
1932 2ec1f75b 2019-03-26 stsp exit(1);
1933 2ec1f75b 2019-03-26 stsp }
1934 2ec1f75b 2019-03-26 stsp
1935 2ec1f75b 2019-03-26 stsp static const struct got_error *
1936 2ec1f75b 2019-03-26 stsp cmd_rm(int argc, char *argv[])
1937 2ec1f75b 2019-03-26 stsp {
1938 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
1939 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
1940 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
1941 2ec1f75b 2019-03-26 stsp char *cwd = NULL, *path = NULL;
1942 2ec1f75b 2019-03-26 stsp int ch, delete_local_mods = 0;
1943 2ec1f75b 2019-03-26 stsp
1944 2ec1f75b 2019-03-26 stsp while ((ch = getopt(argc, argv, "f")) != -1) {
1945 2ec1f75b 2019-03-26 stsp switch (ch) {
1946 2ec1f75b 2019-03-26 stsp case 'f':
1947 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
1948 2ec1f75b 2019-03-26 stsp break;
1949 2ec1f75b 2019-03-26 stsp default:
1950 2ec1f75b 2019-03-26 stsp usage_add();
1951 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
1952 2ec1f75b 2019-03-26 stsp }
1953 2ec1f75b 2019-03-26 stsp }
1954 2ec1f75b 2019-03-26 stsp
1955 2ec1f75b 2019-03-26 stsp argc -= optind;
1956 2ec1f75b 2019-03-26 stsp argv += optind;
1957 2ec1f75b 2019-03-26 stsp
1958 2ec1f75b 2019-03-26 stsp if (argc != 1)
1959 2ec1f75b 2019-03-26 stsp usage_rm();
1960 2ec1f75b 2019-03-26 stsp
1961 2ec1f75b 2019-03-26 stsp path = realpath(argv[0], NULL);
1962 2ec1f75b 2019-03-26 stsp if (path == NULL) {
1963 2ec1f75b 2019-03-26 stsp error = got_error_from_errno();
1964 2ec1f75b 2019-03-26 stsp goto done;
1965 2ec1f75b 2019-03-26 stsp }
1966 2ec1f75b 2019-03-26 stsp
1967 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
1968 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
1969 2ec1f75b 2019-03-26 stsp error = got_error_from_errno();
1970 2ec1f75b 2019-03-26 stsp goto done;
1971 2ec1f75b 2019-03-26 stsp }
1972 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
1973 2ec1f75b 2019-03-26 stsp if (error)
1974 2ec1f75b 2019-03-26 stsp goto done;
1975 2ec1f75b 2019-03-26 stsp
1976 2ec1f75b 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
1977 2ec1f75b 2019-03-26 stsp if (error != NULL)
1978 2ec1f75b 2019-03-26 stsp goto done;
1979 2ec1f75b 2019-03-26 stsp
1980 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1981 c2253644 2019-03-26 stsp got_worktree_get_root_path(worktree));
1982 2ec1f75b 2019-03-26 stsp if (error)
1983 2ec1f75b 2019-03-26 stsp goto done;
1984 2ec1f75b 2019-03-26 stsp
1985 2ec1f75b 2019-03-26 stsp error = got_worktree_schedule_delete(worktree, path, delete_local_mods,
1986 2ec1f75b 2019-03-26 stsp print_status, NULL, repo);
1987 a129376b 2019-03-28 stsp if (error)
1988 a129376b 2019-03-28 stsp goto done;
1989 a129376b 2019-03-28 stsp done:
1990 a129376b 2019-03-28 stsp if (repo)
1991 a129376b 2019-03-28 stsp got_repo_close(repo);
1992 a129376b 2019-03-28 stsp if (worktree)
1993 a129376b 2019-03-28 stsp got_worktree_close(worktree);
1994 a129376b 2019-03-28 stsp free(path);
1995 a129376b 2019-03-28 stsp free(cwd);
1996 a129376b 2019-03-28 stsp return error;
1997 a129376b 2019-03-28 stsp }
1998 a129376b 2019-03-28 stsp
1999 a129376b 2019-03-28 stsp __dead static void
2000 a129376b 2019-03-28 stsp usage_revert(void)
2001 a129376b 2019-03-28 stsp {
2002 a129376b 2019-03-28 stsp fprintf(stderr, "usage: %s revert file-path\n", getprogname());
2003 a129376b 2019-03-28 stsp exit(1);
2004 a129376b 2019-03-28 stsp }
2005 a129376b 2019-03-28 stsp
2006 a129376b 2019-03-28 stsp static void
2007 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
2008 a129376b 2019-03-28 stsp {
2009 a129376b 2019-03-28 stsp while (path[0] == '/')
2010 a129376b 2019-03-28 stsp path++;
2011 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
2012 a129376b 2019-03-28 stsp }
2013 a129376b 2019-03-28 stsp
2014 a129376b 2019-03-28 stsp static const struct got_error *
2015 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
2016 a129376b 2019-03-28 stsp {
2017 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
2018 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
2019 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
2020 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
2021 a129376b 2019-03-28 stsp int ch;
2022 a129376b 2019-03-28 stsp
2023 a129376b 2019-03-28 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2024 a129376b 2019-03-28 stsp switch (ch) {
2025 a129376b 2019-03-28 stsp default:
2026 a129376b 2019-03-28 stsp usage_revert();
2027 a129376b 2019-03-28 stsp /* NOTREACHED */
2028 a129376b 2019-03-28 stsp }
2029 a129376b 2019-03-28 stsp }
2030 a129376b 2019-03-28 stsp
2031 a129376b 2019-03-28 stsp argc -= optind;
2032 a129376b 2019-03-28 stsp argv += optind;
2033 a129376b 2019-03-28 stsp
2034 a129376b 2019-03-28 stsp if (argc != 1)
2035 a129376b 2019-03-28 stsp usage_revert();
2036 a129376b 2019-03-28 stsp
2037 a129376b 2019-03-28 stsp path = realpath(argv[0], NULL);
2038 a129376b 2019-03-28 stsp if (path == NULL) {
2039 a129376b 2019-03-28 stsp error = got_error_from_errno();
2040 a129376b 2019-03-28 stsp goto done;
2041 a129376b 2019-03-28 stsp }
2042 a129376b 2019-03-28 stsp
2043 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
2044 a129376b 2019-03-28 stsp if (cwd == NULL) {
2045 a129376b 2019-03-28 stsp error = got_error_from_errno();
2046 a129376b 2019-03-28 stsp goto done;
2047 a129376b 2019-03-28 stsp }
2048 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
2049 2ec1f75b 2019-03-26 stsp if (error)
2050 2ec1f75b 2019-03-26 stsp goto done;
2051 a129376b 2019-03-28 stsp
2052 a129376b 2019-03-28 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2053 a129376b 2019-03-28 stsp if (error != NULL)
2054 a129376b 2019-03-28 stsp goto done;
2055 a129376b 2019-03-28 stsp
2056 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2057 a129376b 2019-03-28 stsp got_worktree_get_root_path(worktree));
2058 a129376b 2019-03-28 stsp if (error)
2059 a129376b 2019-03-28 stsp goto done;
2060 a129376b 2019-03-28 stsp
2061 a129376b 2019-03-28 stsp error = got_worktree_revert(worktree, path,
2062 a129376b 2019-03-28 stsp revert_progress, NULL, repo);
2063 a129376b 2019-03-28 stsp if (error)
2064 a129376b 2019-03-28 stsp goto done;
2065 2ec1f75b 2019-03-26 stsp done:
2066 2ec1f75b 2019-03-26 stsp if (repo)
2067 2ec1f75b 2019-03-26 stsp got_repo_close(repo);
2068 2ec1f75b 2019-03-26 stsp if (worktree)
2069 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
2070 2ec1f75b 2019-03-26 stsp free(path);
2071 d00136be 2019-03-26 stsp free(cwd);
2072 6bad629b 2019-02-04 stsp return error;
2073 c4296144 2019-05-09 stsp }
2074 c4296144 2019-05-09 stsp
2075 c4296144 2019-05-09 stsp __dead static void
2076 c4296144 2019-05-09 stsp usage_commit(void)
2077 c4296144 2019-05-09 stsp {
2078 c4296144 2019-05-09 stsp fprintf(stderr, "usage: %s commit file-path\n", getprogname());
2079 c4296144 2019-05-09 stsp exit(1);
2080 6bad629b 2019-02-04 stsp }
2081 c4296144 2019-05-09 stsp
2082 c4296144 2019-05-09 stsp static const struct got_error *
2083 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
2084 c4296144 2019-05-09 stsp {
2085 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
2086 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
2087 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
2088 c4296144 2019-05-09 stsp char *cwd = NULL, *path = NULL, *id_str = NULL;
2089 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
2090 c4296144 2019-05-09 stsp const char *logmsg = "<no log message was specified>";
2091 c4296144 2019-05-09 stsp int ch;
2092 c4296144 2019-05-09 stsp
2093 c4296144 2019-05-09 stsp while ((ch = getopt(argc, argv, "m:")) != -1) {
2094 c4296144 2019-05-09 stsp switch (ch) {
2095 c4296144 2019-05-09 stsp case 'm':
2096 c4296144 2019-05-09 stsp logmsg = optarg;
2097 c4296144 2019-05-09 stsp break;
2098 c4296144 2019-05-09 stsp default:
2099 c4296144 2019-05-09 stsp usage_commit();
2100 c4296144 2019-05-09 stsp /* NOTREACHED */
2101 c4296144 2019-05-09 stsp }
2102 c4296144 2019-05-09 stsp }
2103 c4296144 2019-05-09 stsp
2104 c4296144 2019-05-09 stsp argc -= optind;
2105 c4296144 2019-05-09 stsp argv += optind;
2106 c4296144 2019-05-09 stsp
2107 c4296144 2019-05-09 stsp if (argc == 1) {
2108 c4296144 2019-05-09 stsp path = realpath(argv[0], NULL);
2109 c4296144 2019-05-09 stsp if (path == NULL) {
2110 c4296144 2019-05-09 stsp error = got_error_from_errno();
2111 c4296144 2019-05-09 stsp goto done;
2112 c4296144 2019-05-09 stsp }
2113 c4296144 2019-05-09 stsp } else if (argc != 0)
2114 c4296144 2019-05-09 stsp usage_commit();
2115 c4296144 2019-05-09 stsp
2116 c4296144 2019-05-09 stsp
2117 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
2118 c4296144 2019-05-09 stsp if (cwd == NULL) {
2119 c4296144 2019-05-09 stsp error = got_error_from_errno();
2120 c4296144 2019-05-09 stsp goto done;
2121 c4296144 2019-05-09 stsp }
2122 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
2123 c4296144 2019-05-09 stsp if (error)
2124 c4296144 2019-05-09 stsp goto done;
2125 c4296144 2019-05-09 stsp
2126 c4296144 2019-05-09 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2127 c4296144 2019-05-09 stsp if (error != NULL)
2128 c4296144 2019-05-09 stsp goto done;
2129 c4296144 2019-05-09 stsp
2130 c4296144 2019-05-09 stsp error = apply_unveil(got_repo_get_path(repo), 0,
2131 c4296144 2019-05-09 stsp got_worktree_get_root_path(worktree));
2132 c4296144 2019-05-09 stsp if (error)
2133 c4296144 2019-05-09 stsp goto done;
2134 c4296144 2019-05-09 stsp
2135 c4296144 2019-05-09 stsp error = got_worktree_commit(&id, worktree, path, logmsg, repo);
2136 c4296144 2019-05-09 stsp if (error)
2137 c4296144 2019-05-09 stsp goto done;
2138 c4296144 2019-05-09 stsp
2139 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
2140 c4296144 2019-05-09 stsp if (error)
2141 c4296144 2019-05-09 stsp goto done;
2142 c4296144 2019-05-09 stsp printf("created commit %s\n", id_str);
2143 c4296144 2019-05-09 stsp done:
2144 c4296144 2019-05-09 stsp if (repo)
2145 c4296144 2019-05-09 stsp got_repo_close(repo);
2146 c4296144 2019-05-09 stsp if (worktree)
2147 c4296144 2019-05-09 stsp got_worktree_close(worktree);
2148 c4296144 2019-05-09 stsp free(path);
2149 c4296144 2019-05-09 stsp free(cwd);
2150 c4296144 2019-05-09 stsp free(id_str);
2151 c4296144 2019-05-09 stsp return error;
2152 c4296144 2019-05-09 stsp }