Blame


1 5c860e29 2018-03-12 stsp /*
2 f42b1b34 2018-03-12 stsp * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 f42b1b34 2018-03-12 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
4 5c860e29 2018-03-12 stsp *
5 5c860e29 2018-03-12 stsp * Permission to use, copy, modify, and distribute this software for any
6 5c860e29 2018-03-12 stsp * purpose with or without fee is hereby granted, provided that the above
7 5c860e29 2018-03-12 stsp * copyright notice and this permission notice appear in all copies.
8 5c860e29 2018-03-12 stsp *
9 5c860e29 2018-03-12 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 5c860e29 2018-03-12 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 5c860e29 2018-03-12 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 5c860e29 2018-03-12 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 5c860e29 2018-03-12 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 5c860e29 2018-03-12 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 5c860e29 2018-03-12 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 5c860e29 2018-03-12 stsp */
17 5c860e29 2018-03-12 stsp
18 f42b1b34 2018-03-12 stsp #include <sys/queue.h>
19 64a96a6d 2018-04-01 stsp #include <sys/limits.h>
20 c0768b0f 2018-06-10 stsp #include <sys/types.h>
21 f42b1b34 2018-03-12 stsp
22 5c860e29 2018-03-12 stsp #include <err.h>
23 5c860e29 2018-03-12 stsp #include <errno.h>
24 5c860e29 2018-03-12 stsp #include <locale.h>
25 5c860e29 2018-03-12 stsp #include <stdio.h>
26 5c860e29 2018-03-12 stsp #include <stdlib.h>
27 5c860e29 2018-03-12 stsp #include <string.h>
28 5c860e29 2018-03-12 stsp #include <unistd.h>
29 c09a553d 2018-03-12 stsp #include <libgen.h>
30 c0768b0f 2018-06-10 stsp #include <time.h>
31 5c860e29 2018-03-12 stsp
32 f42b1b34 2018-03-12 stsp #include "got_error.h"
33 f42b1b34 2018-03-12 stsp #include "got_object.h"
34 5261c201 2018-04-01 stsp #include "got_reference.h"
35 f42b1b34 2018-03-12 stsp #include "got_repository.h"
36 c09a553d 2018-03-12 stsp #include "got_worktree.h"
37 79109fed 2018-03-27 stsp #include "got_diff.h"
38 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
39 5c860e29 2018-03-12 stsp
40 5c860e29 2018-03-12 stsp #ifndef nitems
41 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
42 5c860e29 2018-03-12 stsp #endif
43 5c860e29 2018-03-12 stsp
44 5c860e29 2018-03-12 stsp struct cmd {
45 5c860e29 2018-03-12 stsp const char *cmd_name;
46 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
47 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
48 46a0db7d 2018-03-12 stsp const char *cmd_descr;
49 5c860e29 2018-03-12 stsp };
50 5c860e29 2018-03-12 stsp
51 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
52 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
53 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
54 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
55 5c860e29 2018-03-12 stsp
56 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
57 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
58 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
59 4ed7e80c 2018-05-20 stsp #ifdef notyet
60 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
61 4ed7e80c 2018-05-20 stsp #endif
62 5c860e29 2018-03-12 stsp
63 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
64 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
65 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
66 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
67 1b6b95a8 2018-03-12 stsp "show repository history" },
68 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
69 b00d56cd 2018-04-01 stsp "compare files and directories" },
70 f42b1b34 2018-03-12 stsp #ifdef notyet
71 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
72 1b6b95a8 2018-03-12 stsp "show modification status of files" },
73 f42b1b34 2018-03-12 stsp #endif
74 5c860e29 2018-03-12 stsp };
75 5c860e29 2018-03-12 stsp
76 5c860e29 2018-03-12 stsp int
77 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
78 5c860e29 2018-03-12 stsp {
79 5c860e29 2018-03-12 stsp struct cmd *cmd;
80 5c860e29 2018-03-12 stsp unsigned int i;
81 5c860e29 2018-03-12 stsp int ch;
82 1b6b95a8 2018-03-12 stsp int hflag = 0;
83 5c860e29 2018-03-12 stsp
84 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
85 5c860e29 2018-03-12 stsp
86 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
87 5c860e29 2018-03-12 stsp switch (ch) {
88 1b6b95a8 2018-03-12 stsp case 'h':
89 1b6b95a8 2018-03-12 stsp hflag = 1;
90 1b6b95a8 2018-03-12 stsp break;
91 5c860e29 2018-03-12 stsp default:
92 5c860e29 2018-03-12 stsp usage();
93 5c860e29 2018-03-12 stsp /* NOTREACHED */
94 5c860e29 2018-03-12 stsp }
95 5c860e29 2018-03-12 stsp }
96 5c860e29 2018-03-12 stsp
97 5c860e29 2018-03-12 stsp argc -= optind;
98 5c860e29 2018-03-12 stsp argv += optind;
99 1e70621d 2018-03-27 stsp optind = 0;
100 5c860e29 2018-03-12 stsp
101 5c860e29 2018-03-12 stsp if (argc <= 0)
102 5c860e29 2018-03-12 stsp usage();
103 5c860e29 2018-03-12 stsp
104 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
105 d7d4f210 2018-03-12 stsp const struct got_error *error;
106 d7d4f210 2018-03-12 stsp
107 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
108 5c860e29 2018-03-12 stsp
109 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
110 5c860e29 2018-03-12 stsp continue;
111 5c860e29 2018-03-12 stsp
112 1b6b95a8 2018-03-12 stsp if (hflag)
113 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
114 1b6b95a8 2018-03-12 stsp
115 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
116 d7d4f210 2018-03-12 stsp if (error) {
117 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
118 d7d4f210 2018-03-12 stsp return 1;
119 d7d4f210 2018-03-12 stsp }
120 d7d4f210 2018-03-12 stsp
121 d7d4f210 2018-03-12 stsp return 0;
122 5c860e29 2018-03-12 stsp }
123 5c860e29 2018-03-12 stsp
124 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
125 5c860e29 2018-03-12 stsp return 1;
126 5c860e29 2018-03-12 stsp }
127 5c860e29 2018-03-12 stsp
128 4ed7e80c 2018-05-20 stsp __dead static void
129 5c860e29 2018-03-12 stsp usage(void)
130 5c860e29 2018-03-12 stsp {
131 46a0db7d 2018-03-12 stsp int i;
132 46a0db7d 2018-03-12 stsp
133 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
134 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
135 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
136 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
137 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
138 46a0db7d 2018-03-12 stsp }
139 5c860e29 2018-03-12 stsp exit(1);
140 5c860e29 2018-03-12 stsp }
141 5c860e29 2018-03-12 stsp
142 4ed7e80c 2018-05-20 stsp __dead static void
143 c09a553d 2018-03-12 stsp usage_checkout(void)
144 c09a553d 2018-03-12 stsp {
145 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
146 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
147 c09a553d 2018-03-12 stsp exit(1);
148 92a684f4 2018-03-12 stsp }
149 92a684f4 2018-03-12 stsp
150 92a684f4 2018-03-12 stsp static void
151 92a684f4 2018-03-12 stsp checkout_progress(void *arg, const char *path)
152 92a684f4 2018-03-12 stsp {
153 92a684f4 2018-03-12 stsp char *worktree_path = arg;
154 92a684f4 2018-03-12 stsp
155 92a684f4 2018-03-12 stsp while (path[0] == '/')
156 92a684f4 2018-03-12 stsp path++;
157 92a684f4 2018-03-12 stsp
158 92a684f4 2018-03-12 stsp printf("A %s/%s\n", worktree_path, path);
159 c09a553d 2018-03-12 stsp }
160 c09a553d 2018-03-12 stsp
161 4ed7e80c 2018-05-20 stsp static const struct got_error *
162 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
163 c09a553d 2018-03-12 stsp {
164 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
165 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
166 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
167 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
168 c09a553d 2018-03-12 stsp char *repo_path = NULL;
169 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
170 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
171 0bb8a95e 2018-03-12 stsp int ch;
172 c09a553d 2018-03-12 stsp
173 0bb8a95e 2018-03-12 stsp while ((ch = getopt(argc, argv, "p:")) != -1) {
174 0bb8a95e 2018-03-12 stsp switch (ch) {
175 0bb8a95e 2018-03-12 stsp case 'p':
176 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
177 0bb8a95e 2018-03-12 stsp break;
178 0bb8a95e 2018-03-12 stsp default:
179 0bb8a95e 2018-03-12 stsp usage();
180 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
181 0bb8a95e 2018-03-12 stsp }
182 0bb8a95e 2018-03-12 stsp }
183 0bb8a95e 2018-03-12 stsp
184 0bb8a95e 2018-03-12 stsp argc -= optind;
185 0bb8a95e 2018-03-12 stsp argv += optind;
186 0bb8a95e 2018-03-12 stsp
187 6715a751 2018-03-16 stsp #ifndef PROFILE
188 2178c42e 2018-04-22 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
189 c09a553d 2018-03-12 stsp err(1, "pledge");
190 6715a751 2018-03-16 stsp #endif
191 0bb8a95e 2018-03-12 stsp if (argc == 1) {
192 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
193 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
194 76089277 2018-04-01 stsp if (repo_path == NULL)
195 76089277 2018-04-01 stsp return got_error_from_errno();
196 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
197 76089277 2018-04-01 stsp if (cwd == NULL) {
198 76089277 2018-04-01 stsp error = got_error_from_errno();
199 76089277 2018-04-01 stsp goto done;
200 76089277 2018-04-01 stsp }
201 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
202 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
203 5d7c1dab 2018-04-01 stsp else
204 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
205 76089277 2018-04-01 stsp if (base == NULL) {
206 76089277 2018-04-01 stsp error = got_error_from_errno();
207 76089277 2018-04-01 stsp goto done;
208 76089277 2018-04-01 stsp }
209 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
210 c09a553d 2018-03-12 stsp if (dotgit)
211 c09a553d 2018-03-12 stsp *dotgit = '\0';
212 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
213 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
214 c09a553d 2018-03-12 stsp free(cwd);
215 76089277 2018-04-01 stsp goto done;
216 c09a553d 2018-03-12 stsp }
217 c09a553d 2018-03-12 stsp free(cwd);
218 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
219 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
220 76089277 2018-04-01 stsp if (repo_path == NULL) {
221 76089277 2018-04-01 stsp error = got_error_from_errno();
222 76089277 2018-04-01 stsp goto done;
223 76089277 2018-04-01 stsp }
224 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
225 76089277 2018-04-01 stsp if (worktree_path == NULL) {
226 76089277 2018-04-01 stsp error = got_error_from_errno();
227 76089277 2018-04-01 stsp goto done;
228 76089277 2018-04-01 stsp }
229 c09a553d 2018-03-12 stsp } else
230 c09a553d 2018-03-12 stsp usage_checkout();
231 c09a553d 2018-03-12 stsp
232 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
233 c09a553d 2018-03-12 stsp if (error != NULL)
234 c09a553d 2018-03-12 stsp goto done;
235 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
236 c09a553d 2018-03-12 stsp if (error != NULL)
237 c09a553d 2018-03-12 stsp goto done;
238 c09a553d 2018-03-12 stsp
239 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
240 c09a553d 2018-03-12 stsp if (error != NULL)
241 c09a553d 2018-03-12 stsp goto done;
242 c09a553d 2018-03-12 stsp
243 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
244 c09a553d 2018-03-12 stsp if (error != NULL)
245 c09a553d 2018-03-12 stsp goto done;
246 c09a553d 2018-03-12 stsp
247 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
248 92a684f4 2018-03-12 stsp checkout_progress, worktree_path);
249 c09a553d 2018-03-12 stsp if (error != NULL)
250 c09a553d 2018-03-12 stsp goto done;
251 c09a553d 2018-03-12 stsp
252 b65ae19a 2018-04-24 stsp printf("Checked out %s\n", worktree_path);
253 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
254 c09a553d 2018-03-12 stsp
255 c09a553d 2018-03-12 stsp done:
256 76089277 2018-04-01 stsp free(repo_path);
257 c09a553d 2018-03-12 stsp free(worktree_path);
258 c09a553d 2018-03-12 stsp return error;
259 c09a553d 2018-03-12 stsp }
260 c09a553d 2018-03-12 stsp
261 f42b1b34 2018-03-12 stsp static const struct got_error *
262 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
263 f42b1b34 2018-03-12 stsp struct got_repository *repo)
264 5c860e29 2018-03-12 stsp {
265 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
266 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
267 79109fed 2018-03-27 stsp struct got_object *obj;
268 79109fed 2018-03-27 stsp struct got_parent_id *pid;
269 79109fed 2018-03-27 stsp
270 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, commit->tree_id);
271 79109fed 2018-03-27 stsp if (err)
272 79109fed 2018-03-27 stsp return err;
273 79109fed 2018-03-27 stsp
274 79109fed 2018-03-27 stsp err = got_object_tree_open(&tree2, repo, obj);
275 79109fed 2018-03-27 stsp got_object_close(obj);
276 79109fed 2018-03-27 stsp if (err)
277 79109fed 2018-03-27 stsp return err;
278 79109fed 2018-03-27 stsp
279 79109fed 2018-03-27 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
280 79109fed 2018-03-27 stsp if (pid != NULL) {
281 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
282 79109fed 2018-03-27 stsp
283 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, pid->id);
284 79109fed 2018-03-27 stsp if (err)
285 79109fed 2018-03-27 stsp return err;
286 79109fed 2018-03-27 stsp
287 79109fed 2018-03-27 stsp err = got_object_commit_open(&pcommit, repo, obj);
288 79109fed 2018-03-27 stsp got_object_close(obj);
289 79109fed 2018-03-27 stsp if (err)
290 79109fed 2018-03-27 stsp return err;
291 79109fed 2018-03-27 stsp
292 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, pcommit->tree_id);
293 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
294 79109fed 2018-03-27 stsp if (err)
295 79109fed 2018-03-27 stsp return err;
296 79109fed 2018-03-27 stsp err = got_object_tree_open(&tree1, repo, obj);
297 79109fed 2018-03-27 stsp got_object_close(obj);
298 79109fed 2018-03-27 stsp if (err)
299 79109fed 2018-03-27 stsp return err;
300 79109fed 2018-03-27 stsp }
301 79109fed 2018-03-27 stsp
302 79109fed 2018-03-27 stsp err = got_diff_tree(tree1, tree2, repo, stdout);
303 79109fed 2018-03-27 stsp if (tree1)
304 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
305 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
306 79109fed 2018-03-27 stsp return err;
307 79109fed 2018-03-27 stsp }
308 79109fed 2018-03-27 stsp
309 79109fed 2018-03-27 stsp static const struct got_error *
310 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
311 a0603db2 2018-06-10 stsp struct got_repository *repo, int show_patch, int verbose)
312 79109fed 2018-03-27 stsp {
313 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
314 832c249c 2018-06-10 stsp char *id_str, *logmsg, *line;
315 5c860e29 2018-03-12 stsp
316 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
317 8bf5b3c9 2018-03-17 stsp if (err)
318 8bf5b3c9 2018-03-17 stsp return err;
319 5c860e29 2018-03-12 stsp
320 8bf5b3c9 2018-03-17 stsp printf("-----------------------------------------------\n");
321 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
322 832c249c 2018-06-10 stsp free(id_str);
323 c0768b0f 2018-06-10 stsp printf("author: %s %s", commit->author, ctime(&commit->author_time));
324 f3d135e1 2018-04-01 stsp if (strcmp(commit->author, commit->committer) != 0)
325 c0768b0f 2018-06-10 stsp printf("committer: %s %s\n", commit->committer,
326 c0768b0f 2018-06-10 stsp ctime(&commit->committer_time));
327 3fe1abad 2018-06-10 stsp if (commit->nparents > 1) {
328 a0603db2 2018-06-10 stsp struct got_parent_id *pid;
329 3fe1abad 2018-06-10 stsp int n = 1;
330 a0603db2 2018-06-10 stsp SIMPLEQ_FOREACH(pid, &commit->parent_ids, entry) {
331 a0603db2 2018-06-10 stsp err = got_object_id_str(&id_str, pid->id);
332 a0603db2 2018-06-10 stsp if (err)
333 a0603db2 2018-06-10 stsp return err;
334 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
335 a0603db2 2018-06-10 stsp free(id_str);
336 a0603db2 2018-06-10 stsp }
337 a0603db2 2018-06-10 stsp }
338 832c249c 2018-06-10 stsp
339 832c249c 2018-06-10 stsp logmsg = strdup(commit->logmsg);
340 832c249c 2018-06-10 stsp if (logmsg == NULL)
341 832c249c 2018-06-10 stsp return got_error_from_errno();
342 8bf5b3c9 2018-03-17 stsp
343 832c249c 2018-06-10 stsp do {
344 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
345 832c249c 2018-06-10 stsp if (line)
346 832c249c 2018-06-10 stsp printf(" %s\n", line);
347 832c249c 2018-06-10 stsp } while (line);
348 832c249c 2018-06-10 stsp free(logmsg);
349 832c249c 2018-06-10 stsp
350 971751ac 2018-03-27 stsp if (show_patch) {
351 79109fed 2018-03-27 stsp err = print_patch(commit, id, repo);
352 971751ac 2018-03-27 stsp if (err == 0)
353 971751ac 2018-03-27 stsp printf("\n");
354 971751ac 2018-03-27 stsp }
355 79109fed 2018-03-27 stsp
356 79109fed 2018-03-27 stsp return err;
357 f42b1b34 2018-03-12 stsp }
358 5c860e29 2018-03-12 stsp
359 f42b1b34 2018-03-12 stsp static const struct got_error *
360 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
361 a0603db2 2018-06-10 stsp struct got_repository *repo, int show_patch, int limit, int verbose)
362 f42b1b34 2018-03-12 stsp {
363 f42b1b34 2018-03-12 stsp const struct got_error *err;
364 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
365 372ccdbb 2018-06-10 stsp int ncommits;
366 372ccdbb 2018-06-10 stsp
367 372ccdbb 2018-06-10 stsp err = got_commit_graph_open(&graph, root_id, repo);
368 f42b1b34 2018-03-12 stsp if (err)
369 f42b1b34 2018-03-12 stsp return err;
370 372ccdbb 2018-06-10 stsp err = got_commit_graph_iter_start(graph, root_id);
371 372ccdbb 2018-06-10 stsp if (err)
372 0a585a0d 2018-03-17 stsp return err;
373 372ccdbb 2018-06-10 stsp do {
374 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
375 372ccdbb 2018-06-10 stsp struct got_object_id *id;
376 8bf5b3c9 2018-03-17 stsp
377 372ccdbb 2018-06-10 stsp err = got_commit_graph_iter_next(&commit, &id, graph);
378 372ccdbb 2018-06-10 stsp if (err) {
379 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
380 372ccdbb 2018-06-10 stsp break;
381 372ccdbb 2018-06-10 stsp err = got_commit_graph_fetch_commits(&ncommits,
382 372ccdbb 2018-06-10 stsp graph, 1, repo);
383 372ccdbb 2018-06-10 stsp if (err)
384 372ccdbb 2018-06-10 stsp break;
385 372ccdbb 2018-06-10 stsp else
386 372ccdbb 2018-06-10 stsp continue;
387 7e665116 2018-04-02 stsp }
388 372ccdbb 2018-06-10 stsp if (commit == NULL)
389 7e665116 2018-04-02 stsp break;
390 a0603db2 2018-06-10 stsp err = print_commit(commit, id, repo, show_patch, verbose);
391 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
392 7e665116 2018-04-02 stsp break;
393 372ccdbb 2018-06-10 stsp } while (ncommits > 0);
394 8bf5b3c9 2018-03-17 stsp
395 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
396 f42b1b34 2018-03-12 stsp return err;
397 f42b1b34 2018-03-12 stsp }
398 5c860e29 2018-03-12 stsp
399 4ed7e80c 2018-05-20 stsp __dead static void
400 6f3d1eb0 2018-03-12 stsp usage_log(void)
401 6f3d1eb0 2018-03-12 stsp {
402 64a96a6d 2018-04-01 stsp fprintf(stderr, "usage: %s log [-p] [-c commit] [ -l N ] "
403 64a96a6d 2018-04-01 stsp "[repository-path]\n", getprogname());
404 6f3d1eb0 2018-03-12 stsp exit(1);
405 6f3d1eb0 2018-03-12 stsp }
406 6f3d1eb0 2018-03-12 stsp
407 4ed7e80c 2018-05-20 stsp static const struct got_error *
408 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
409 f42b1b34 2018-03-12 stsp {
410 f42b1b34 2018-03-12 stsp const struct got_error *error;
411 f42b1b34 2018-03-12 stsp struct got_repository *repo;
412 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
413 f42b1b34 2018-03-12 stsp struct got_object *obj;
414 6f3d1eb0 2018-03-12 stsp char *repo_path = NULL;
415 d142fc45 2018-04-01 stsp char *start_commit = NULL;
416 79109fed 2018-03-27 stsp int ch;
417 a0603db2 2018-06-10 stsp int show_patch = 0, limit = 0, verbose = 0;
418 64a96a6d 2018-04-01 stsp const char *errstr;
419 5c860e29 2018-03-12 stsp
420 6715a751 2018-03-16 stsp #ifndef PROFILE
421 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
422 f42b1b34 2018-03-12 stsp err(1, "pledge");
423 6715a751 2018-03-16 stsp #endif
424 79109fed 2018-03-27 stsp
425 a0603db2 2018-06-10 stsp while ((ch = getopt(argc, argv, "pc:l:v")) != -1) {
426 79109fed 2018-03-27 stsp switch (ch) {
427 79109fed 2018-03-27 stsp case 'p':
428 79109fed 2018-03-27 stsp show_patch = 1;
429 d142fc45 2018-04-01 stsp break;
430 d142fc45 2018-04-01 stsp case 'c':
431 d142fc45 2018-04-01 stsp start_commit = optarg;
432 64a96a6d 2018-04-01 stsp break;
433 64a96a6d 2018-04-01 stsp case 'l':
434 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
435 64a96a6d 2018-04-01 stsp if (errstr != NULL)
436 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
437 79109fed 2018-03-27 stsp break;
438 a0603db2 2018-06-10 stsp case 'v':
439 a0603db2 2018-06-10 stsp verbose = 1;
440 a0603db2 2018-06-10 stsp break;
441 79109fed 2018-03-27 stsp default:
442 79109fed 2018-03-27 stsp usage();
443 79109fed 2018-03-27 stsp /* NOTREACHED */
444 79109fed 2018-03-27 stsp }
445 79109fed 2018-03-27 stsp }
446 79109fed 2018-03-27 stsp
447 79109fed 2018-03-27 stsp argc -= optind;
448 79109fed 2018-03-27 stsp argv += optind;
449 79109fed 2018-03-27 stsp
450 79109fed 2018-03-27 stsp if (argc == 0) {
451 6f3d1eb0 2018-03-12 stsp repo_path = getcwd(NULL, 0);
452 6f3d1eb0 2018-03-12 stsp if (repo_path == NULL)
453 e1e3f570 2018-04-01 stsp return got_error_from_errno();
454 3235492e 2018-04-01 stsp } else if (argc == 1) {
455 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
456 76089277 2018-04-01 stsp if (repo_path == NULL)
457 76089277 2018-04-01 stsp return got_error_from_errno();
458 3235492e 2018-04-01 stsp } else
459 6f3d1eb0 2018-03-12 stsp usage_log();
460 f42b1b34 2018-03-12 stsp
461 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
462 76089277 2018-04-01 stsp free(repo_path);
463 d7d4f210 2018-03-12 stsp if (error != NULL)
464 d7d4f210 2018-03-12 stsp return error;
465 f42b1b34 2018-03-12 stsp
466 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
467 3235492e 2018-04-01 stsp struct got_reference *head_ref;
468 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
469 3235492e 2018-04-01 stsp if (error != NULL)
470 3235492e 2018-04-01 stsp return error;
471 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
472 3235492e 2018-04-01 stsp got_ref_close(head_ref);
473 3235492e 2018-04-01 stsp if (error != NULL)
474 3235492e 2018-04-01 stsp return error;
475 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
476 3235492e 2018-04-01 stsp } else {
477 d142fc45 2018-04-01 stsp error = got_object_open_by_id_str(&obj, repo, start_commit);
478 3235492e 2018-04-01 stsp if (error == NULL) {
479 3235492e 2018-04-01 stsp id = got_object_get_id(obj);
480 3235492e 2018-04-01 stsp if (id == NULL)
481 3235492e 2018-04-01 stsp error = got_error_from_errno();
482 3235492e 2018-04-01 stsp }
483 3235492e 2018-04-01 stsp }
484 d7d4f210 2018-03-12 stsp if (error != NULL)
485 d7d4f210 2018-03-12 stsp return error;
486 8bf5b3c9 2018-03-17 stsp if (got_object_get_type(obj) == GOT_OBJ_TYPE_COMMIT)
487 a0603db2 2018-06-10 stsp error = print_commits(obj, id, repo, show_patch, limit,
488 a0603db2 2018-06-10 stsp verbose);
489 8bf5b3c9 2018-03-17 stsp else
490 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
491 f42b1b34 2018-03-12 stsp got_object_close(obj);
492 f42b1b34 2018-03-12 stsp free(id);
493 f42b1b34 2018-03-12 stsp got_repo_close(repo);
494 8bf5b3c9 2018-03-17 stsp return error;
495 5c860e29 2018-03-12 stsp }
496 5c860e29 2018-03-12 stsp
497 4ed7e80c 2018-05-20 stsp __dead static void
498 3f8b7d6a 2018-04-01 stsp usage_diff(void)
499 3f8b7d6a 2018-04-01 stsp {
500 3f8b7d6a 2018-04-01 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
501 3f8b7d6a 2018-04-01 stsp getprogname());
502 3f8b7d6a 2018-04-01 stsp exit(1);
503 b00d56cd 2018-04-01 stsp }
504 b00d56cd 2018-04-01 stsp
505 4ed7e80c 2018-05-20 stsp static const struct got_error *
506 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
507 b00d56cd 2018-04-01 stsp {
508 b00d56cd 2018-04-01 stsp const struct got_error *error;
509 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
510 b00d56cd 2018-04-01 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
511 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
512 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
513 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
514 b00d56cd 2018-04-01 stsp int ch;
515 b00d56cd 2018-04-01 stsp
516 b00d56cd 2018-04-01 stsp #ifndef PROFILE
517 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
518 b00d56cd 2018-04-01 stsp err(1, "pledge");
519 b00d56cd 2018-04-01 stsp #endif
520 b00d56cd 2018-04-01 stsp
521 b00d56cd 2018-04-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
522 b00d56cd 2018-04-01 stsp switch (ch) {
523 b00d56cd 2018-04-01 stsp default:
524 b00d56cd 2018-04-01 stsp usage();
525 b00d56cd 2018-04-01 stsp /* NOTREACHED */
526 b00d56cd 2018-04-01 stsp }
527 b00d56cd 2018-04-01 stsp }
528 b00d56cd 2018-04-01 stsp
529 b00d56cd 2018-04-01 stsp argc -= optind;
530 b00d56cd 2018-04-01 stsp argv += optind;
531 b00d56cd 2018-04-01 stsp
532 b00d56cd 2018-04-01 stsp if (argc == 0) {
533 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
534 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
535 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
536 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
537 e1e3f570 2018-04-01 stsp return got_error_from_errno();
538 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
539 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
540 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
541 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
542 76089277 2018-04-01 stsp if (repo_path == NULL)
543 76089277 2018-04-01 stsp return got_error_from_errno();
544 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
545 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
546 b00d56cd 2018-04-01 stsp } else
547 b00d56cd 2018-04-01 stsp usage_diff();
548 b00d56cd 2018-04-01 stsp
549 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
550 76089277 2018-04-01 stsp free(repo_path);
551 b00d56cd 2018-04-01 stsp if (error != NULL)
552 b00d56cd 2018-04-01 stsp goto done;
553 b00d56cd 2018-04-01 stsp
554 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
555 b00d56cd 2018-04-01 stsp if (error == NULL) {
556 b00d56cd 2018-04-01 stsp id1 = got_object_get_id(obj1);
557 b00d56cd 2018-04-01 stsp if (id1 == NULL)
558 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
559 b00d56cd 2018-04-01 stsp }
560 b00d56cd 2018-04-01 stsp if (error != NULL)
561 b00d56cd 2018-04-01 stsp goto done;
562 b00d56cd 2018-04-01 stsp
563 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
564 b00d56cd 2018-04-01 stsp if (error == NULL) {
565 b00d56cd 2018-04-01 stsp id2 = got_object_get_id(obj2);
566 b00d56cd 2018-04-01 stsp if (id2 == NULL)
567 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
568 b00d56cd 2018-04-01 stsp }
569 b00d56cd 2018-04-01 stsp if (error != NULL)
570 b00d56cd 2018-04-01 stsp goto done;
571 b00d56cd 2018-04-01 stsp
572 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
573 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
574 b00d56cd 2018-04-01 stsp goto done;
575 b00d56cd 2018-04-01 stsp }
576 b00d56cd 2018-04-01 stsp
577 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
578 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
579 11528a82 2018-05-19 stsp error = got_diff_objects_as_blobs(obj1, obj2, repo, stdout);
580 b00d56cd 2018-04-01 stsp break;
581 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
582 11528a82 2018-05-19 stsp error = got_diff_objects_as_trees(obj1, obj2, repo, stdout);
583 b00d56cd 2018-04-01 stsp break;
584 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
585 11528a82 2018-05-19 stsp error = got_diff_objects_as_commits(obj1, obj2, repo, stdout);
586 b00d56cd 2018-04-01 stsp break;
587 b00d56cd 2018-04-01 stsp default:
588 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
589 b00d56cd 2018-04-01 stsp }
590 b00d56cd 2018-04-01 stsp
591 b00d56cd 2018-04-01 stsp done:
592 b00d56cd 2018-04-01 stsp if (obj1)
593 b00d56cd 2018-04-01 stsp got_object_close(obj1);
594 b00d56cd 2018-04-01 stsp if (obj2)
595 b00d56cd 2018-04-01 stsp got_object_close(obj2);
596 b00d56cd 2018-04-01 stsp if (id1)
597 b00d56cd 2018-04-01 stsp free(id1);
598 b00d56cd 2018-04-01 stsp if (id2)
599 b00d56cd 2018-04-01 stsp free(id2);
600 b00d56cd 2018-04-01 stsp if (repo)
601 b00d56cd 2018-04-01 stsp got_repo_close(repo);
602 b00d56cd 2018-04-01 stsp return error;
603 b00d56cd 2018-04-01 stsp }
604 b00d56cd 2018-04-01 stsp
605 f42b1b34 2018-03-12 stsp #ifdef notyet
606 4ed7e80c 2018-05-20 stsp static const struct got_error *
607 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
608 5c860e29 2018-03-12 stsp {
609 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
610 5c860e29 2018-03-12 stsp git_status_list *status;
611 5c860e29 2018-03-12 stsp git_status_options statusopts;
612 5c860e29 2018-03-12 stsp size_t i;
613 5c860e29 2018-03-12 stsp
614 5c860e29 2018-03-12 stsp git_libgit2_init();
615 5c860e29 2018-03-12 stsp
616 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
617 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
618 5c860e29 2018-03-12 stsp
619 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
620 5c860e29 2018-03-12 stsp errx(1, "bar repository");
621 5c860e29 2018-03-12 stsp
622 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
623 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
624 5c860e29 2018-03-12 stsp
625 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
626 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
627 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
628 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
629 5c860e29 2018-03-12 stsp
630 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
631 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
632 5c860e29 2018-03-12 stsp
633 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
634 5c860e29 2018-03-12 stsp const git_status_entry *se;
635 5c860e29 2018-03-12 stsp
636 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
637 5c860e29 2018-03-12 stsp switch (se->status) {
638 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
639 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
640 5c860e29 2018-03-12 stsp break;
641 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
642 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
643 5c860e29 2018-03-12 stsp break;
644 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
645 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
646 5c860e29 2018-03-12 stsp break;
647 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
648 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
649 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
650 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
651 5c860e29 2018-03-12 stsp break;
652 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
653 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
654 5c860e29 2018-03-12 stsp break;
655 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
656 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
657 5c860e29 2018-03-12 stsp break;
658 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
659 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
660 5c860e29 2018-03-12 stsp break;
661 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
662 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
663 5c860e29 2018-03-12 stsp break;
664 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
665 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
666 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
667 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
668 5c860e29 2018-03-12 stsp break;
669 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
670 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
671 5c860e29 2018-03-12 stsp break;
672 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
673 5c860e29 2018-03-12 stsp default:
674 5c860e29 2018-03-12 stsp break;
675 5c860e29 2018-03-12 stsp }
676 5c860e29 2018-03-12 stsp }
677 5c860e29 2018-03-12 stsp
678 5c860e29 2018-03-12 stsp git_status_list_free(status);
679 5c860e29 2018-03-12 stsp git_repository_free(repo);
680 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
681 5c860e29 2018-03-12 stsp
682 5c860e29 2018-03-12 stsp return 0;
683 5c860e29 2018-03-12 stsp }
684 f42b1b34 2018-03-12 stsp #endif