Blob


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