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 f42b1b34 2018-03-12 stsp
20 5c860e29 2018-03-12 stsp #include <err.h>
21 5c860e29 2018-03-12 stsp #include <errno.h>
22 5c860e29 2018-03-12 stsp #include <locale.h>
23 5c860e29 2018-03-12 stsp #include <stdio.h>
24 5c860e29 2018-03-12 stsp #include <stdlib.h>
25 5c860e29 2018-03-12 stsp #include <string.h>
26 5c860e29 2018-03-12 stsp #include <unistd.h>
27 5c860e29 2018-03-12 stsp
28 f42b1b34 2018-03-12 stsp #include "got_error.h"
29 f42b1b34 2018-03-12 stsp #include "got_object.h"
30 f42b1b34 2018-03-12 stsp #include "got_refs.h"
31 f42b1b34 2018-03-12 stsp #include "got_repository.h"
32 5c860e29 2018-03-12 stsp
33 5c860e29 2018-03-12 stsp #ifndef nitems
34 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
35 5c860e29 2018-03-12 stsp #endif
36 5c860e29 2018-03-12 stsp
37 5c860e29 2018-03-12 stsp struct cmd {
38 5c860e29 2018-03-12 stsp const char *cmd_name;
39 5c860e29 2018-03-12 stsp int (*cmd_main)(int, char *[]);
40 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
41 46a0db7d 2018-03-12 stsp const char *cmd_descr;
42 5c860e29 2018-03-12 stsp };
43 5c860e29 2018-03-12 stsp
44 5c860e29 2018-03-12 stsp __dead void usage(void);
45 6f3d1eb0 2018-03-12 stsp __dead void usage_log(void);
46 5c860e29 2018-03-12 stsp
47 5c860e29 2018-03-12 stsp int cmd_log(int, char *[]);
48 5c860e29 2018-03-12 stsp int cmd_status(int, char *[]);
49 5c860e29 2018-03-12 stsp
50 5c860e29 2018-03-12 stsp struct cmd got_commands[] = {
51 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
52 1b6b95a8 2018-03-12 stsp "show repository history" },
53 f42b1b34 2018-03-12 stsp #ifdef notyet
54 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
55 1b6b95a8 2018-03-12 stsp "show modification status of files" },
56 f42b1b34 2018-03-12 stsp #endif
57 5c860e29 2018-03-12 stsp };
58 5c860e29 2018-03-12 stsp
59 5c860e29 2018-03-12 stsp int
60 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
61 5c860e29 2018-03-12 stsp {
62 5c860e29 2018-03-12 stsp struct cmd *cmd;
63 5c860e29 2018-03-12 stsp unsigned int i;
64 5c860e29 2018-03-12 stsp int ch;
65 1b6b95a8 2018-03-12 stsp int hflag = 0;
66 5c860e29 2018-03-12 stsp
67 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
68 5c860e29 2018-03-12 stsp
69 f42b1b34 2018-03-12 stsp if (pledge("stdio rpath wpath cpath", NULL) == -1)
70 5c860e29 2018-03-12 stsp err(1, "pledge");
71 5c860e29 2018-03-12 stsp
72 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
73 5c860e29 2018-03-12 stsp switch (ch) {
74 1b6b95a8 2018-03-12 stsp case 'h':
75 1b6b95a8 2018-03-12 stsp hflag = 1;
76 1b6b95a8 2018-03-12 stsp break;
77 5c860e29 2018-03-12 stsp default:
78 5c860e29 2018-03-12 stsp usage();
79 5c860e29 2018-03-12 stsp /* NOTREACHED */
80 5c860e29 2018-03-12 stsp }
81 5c860e29 2018-03-12 stsp }
82 5c860e29 2018-03-12 stsp
83 5c860e29 2018-03-12 stsp argc -= optind;
84 5c860e29 2018-03-12 stsp argv += optind;
85 5c860e29 2018-03-12 stsp
86 5c860e29 2018-03-12 stsp if (argc <= 0)
87 5c860e29 2018-03-12 stsp usage();
88 5c860e29 2018-03-12 stsp
89 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
90 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
91 5c860e29 2018-03-12 stsp
92 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
93 5c860e29 2018-03-12 stsp continue;
94 5c860e29 2018-03-12 stsp
95 1b6b95a8 2018-03-12 stsp if (hflag)
96 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
97 1b6b95a8 2018-03-12 stsp
98 5c860e29 2018-03-12 stsp return got_commands[i].cmd_main(argc, argv);
99 5c860e29 2018-03-12 stsp /* NOTREACHED */
100 5c860e29 2018-03-12 stsp }
101 5c860e29 2018-03-12 stsp
102 5c860e29 2018-03-12 stsp fprintf(stderr, "%s: unknown command -- %s\n", getprogname(), argv[0]);
103 5c860e29 2018-03-12 stsp return 1;
104 5c860e29 2018-03-12 stsp }
105 5c860e29 2018-03-12 stsp
106 5c860e29 2018-03-12 stsp __dead void
107 5c860e29 2018-03-12 stsp usage(void)
108 5c860e29 2018-03-12 stsp {
109 46a0db7d 2018-03-12 stsp int i;
110 46a0db7d 2018-03-12 stsp
111 1b6b95a8 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\nAvailable commands:\n",
112 46a0db7d 2018-03-12 stsp getprogname());
113 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
114 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
115 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
116 46a0db7d 2018-03-12 stsp }
117 5c860e29 2018-03-12 stsp exit(1);
118 5c860e29 2018-03-12 stsp }
119 5c860e29 2018-03-12 stsp
120 f42b1b34 2018-03-12 stsp static const struct got_error *
121 f42b1b34 2018-03-12 stsp print_commit_object(struct got_object *, struct got_object_id *,
122 f42b1b34 2018-03-12 stsp struct got_repository *);
123 f42b1b34 2018-03-12 stsp
124 f42b1b34 2018-03-12 stsp static const struct got_error *
125 f42b1b34 2018-03-12 stsp print_parent_commits(struct got_commit_object *commit,
126 f42b1b34 2018-03-12 stsp struct got_repository *repo)
127 5c860e29 2018-03-12 stsp {
128 f42b1b34 2018-03-12 stsp struct got_parent_id *pid;
129 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
130 f42b1b34 2018-03-12 stsp struct got_object *obj;
131 5c860e29 2018-03-12 stsp
132 f42b1b34 2018-03-12 stsp SIMPLEQ_FOREACH(pid, &commit->parent_ids, entry) {
133 f42b1b34 2018-03-12 stsp err = got_object_open(&obj, repo, pid->id);
134 f42b1b34 2018-03-12 stsp if (err != NULL)
135 f42b1b34 2018-03-12 stsp return err;
136 f42b1b34 2018-03-12 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT)
137 f42b1b34 2018-03-12 stsp return got_error(GOT_ERR_OBJ_TYPE);
138 f42b1b34 2018-03-12 stsp err = print_commit_object(obj, pid->id, repo);
139 f42b1b34 2018-03-12 stsp got_object_close(obj);
140 f42b1b34 2018-03-12 stsp }
141 5c860e29 2018-03-12 stsp
142 f42b1b34 2018-03-12 stsp return err;
143 f42b1b34 2018-03-12 stsp }
144 5c860e29 2018-03-12 stsp
145 f42b1b34 2018-03-12 stsp static const struct got_error *
146 f42b1b34 2018-03-12 stsp print_commit_object(struct got_object *obj, struct got_object_id *id,
147 f42b1b34 2018-03-12 stsp struct got_repository *repo)
148 f42b1b34 2018-03-12 stsp {
149 f42b1b34 2018-03-12 stsp struct got_commit_object *commit;
150 f42b1b34 2018-03-12 stsp char *buf;
151 f42b1b34 2018-03-12 stsp const struct got_error *err;
152 5c860e29 2018-03-12 stsp
153 f42b1b34 2018-03-12 stsp err = got_object_commit_open(&commit, repo, obj);
154 f42b1b34 2018-03-12 stsp if (err)
155 f42b1b34 2018-03-12 stsp return err;
156 5c860e29 2018-03-12 stsp
157 f42b1b34 2018-03-12 stsp err = got_object_id_str(&buf, id);
158 f42b1b34 2018-03-12 stsp if (err)
159 f42b1b34 2018-03-12 stsp return err;
160 5c860e29 2018-03-12 stsp
161 f42b1b34 2018-03-12 stsp printf("-----------------------------------------------\n");
162 f42b1b34 2018-03-12 stsp printf("commit: %s\n", buf);
163 f42b1b34 2018-03-12 stsp printf("Author: %s\n", commit->author);
164 f42b1b34 2018-03-12 stsp printf("\n%s\n", commit->logmsg);
165 5c860e29 2018-03-12 stsp
166 f42b1b34 2018-03-12 stsp free(buf);
167 5c860e29 2018-03-12 stsp
168 f42b1b34 2018-03-12 stsp err = print_parent_commits(commit, repo);
169 f42b1b34 2018-03-12 stsp got_object_commit_close(commit);
170 f42b1b34 2018-03-12 stsp return err;
171 f42b1b34 2018-03-12 stsp }
172 5c860e29 2018-03-12 stsp
173 6f3d1eb0 2018-03-12 stsp __dead void
174 6f3d1eb0 2018-03-12 stsp usage_log(void)
175 6f3d1eb0 2018-03-12 stsp {
176 6f3d1eb0 2018-03-12 stsp fprintf(stderr, "usage: %s log [REPO_PATH]\n", getprogname());
177 6f3d1eb0 2018-03-12 stsp exit(1);
178 6f3d1eb0 2018-03-12 stsp }
179 6f3d1eb0 2018-03-12 stsp
180 f42b1b34 2018-03-12 stsp int
181 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
182 f42b1b34 2018-03-12 stsp {
183 f42b1b34 2018-03-12 stsp const struct got_error *error;
184 f42b1b34 2018-03-12 stsp struct got_repository *repo;
185 f42b1b34 2018-03-12 stsp struct got_reference *head_ref;
186 f42b1b34 2018-03-12 stsp struct got_object_id *id;
187 f42b1b34 2018-03-12 stsp struct got_object *obj;
188 6f3d1eb0 2018-03-12 stsp char *repo_path = NULL;
189 5c860e29 2018-03-12 stsp
190 f42b1b34 2018-03-12 stsp if (pledge("stdio rpath wpath cpath", NULL) == -1)
191 f42b1b34 2018-03-12 stsp err(1, "pledge");
192 f42b1b34 2018-03-12 stsp
193 6f3d1eb0 2018-03-12 stsp if (argc == 1) {
194 6f3d1eb0 2018-03-12 stsp repo_path = getcwd(NULL, 0);
195 6f3d1eb0 2018-03-12 stsp if (repo_path == NULL)
196 6f3d1eb0 2018-03-12 stsp err(1, "getcwd");
197 6f3d1eb0 2018-03-12 stsp } else if (argc == 2)
198 6f3d1eb0 2018-03-12 stsp repo_path = argv[1];
199 6f3d1eb0 2018-03-12 stsp else
200 6f3d1eb0 2018-03-12 stsp usage_log();
201 f42b1b34 2018-03-12 stsp
202 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
203 f42b1b34 2018-03-12 stsp if (error != NULL || repo == NULL)
204 f42b1b34 2018-03-12 stsp return 1;
205 f42b1b34 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
206 f42b1b34 2018-03-12 stsp if (error != NULL || head_ref == NULL)
207 f42b1b34 2018-03-12 stsp return 1;
208 f42b1b34 2018-03-12 stsp error = got_ref_resolve(&id, repo, head_ref);
209 f42b1b34 2018-03-12 stsp if (error != NULL || head_ref == NULL)
210 f42b1b34 2018-03-12 stsp return 1;
211 f42b1b34 2018-03-12 stsp
212 f42b1b34 2018-03-12 stsp error = got_object_open(&obj, repo, id);
213 f42b1b34 2018-03-12 stsp if (error != NULL || obj == NULL)
214 f42b1b34 2018-03-12 stsp return 1;
215 f42b1b34 2018-03-12 stsp if (got_object_get_type(obj) == GOT_OBJ_TYPE_COMMIT) {
216 f42b1b34 2018-03-12 stsp error = print_commit_object(obj, id, repo);
217 f42b1b34 2018-03-12 stsp if (error)
218 f42b1b34 2018-03-12 stsp return 1;
219 f42b1b34 2018-03-12 stsp } else
220 f42b1b34 2018-03-12 stsp return 1;
221 f42b1b34 2018-03-12 stsp got_object_close(obj);
222 f42b1b34 2018-03-12 stsp free(id);
223 f42b1b34 2018-03-12 stsp got_ref_close(head_ref);
224 f42b1b34 2018-03-12 stsp got_repo_close(repo);
225 5c860e29 2018-03-12 stsp return 0;
226 5c860e29 2018-03-12 stsp }
227 5c860e29 2018-03-12 stsp
228 f42b1b34 2018-03-12 stsp #ifdef notyet
229 5c860e29 2018-03-12 stsp int
230 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
231 5c860e29 2018-03-12 stsp {
232 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
233 5c860e29 2018-03-12 stsp git_status_list *status;
234 5c860e29 2018-03-12 stsp git_status_options statusopts;
235 5c860e29 2018-03-12 stsp size_t i;
236 5c860e29 2018-03-12 stsp
237 5c860e29 2018-03-12 stsp git_libgit2_init();
238 5c860e29 2018-03-12 stsp
239 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
240 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
241 5c860e29 2018-03-12 stsp
242 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
243 5c860e29 2018-03-12 stsp errx(1, "bar repository");
244 5c860e29 2018-03-12 stsp
245 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
246 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
247 5c860e29 2018-03-12 stsp
248 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
249 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
250 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
251 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
252 5c860e29 2018-03-12 stsp
253 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
254 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
255 5c860e29 2018-03-12 stsp
256 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
257 5c860e29 2018-03-12 stsp const git_status_entry *se;
258 5c860e29 2018-03-12 stsp
259 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
260 5c860e29 2018-03-12 stsp switch (se->status) {
261 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
262 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
263 5c860e29 2018-03-12 stsp break;
264 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
265 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
266 5c860e29 2018-03-12 stsp break;
267 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
268 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
269 5c860e29 2018-03-12 stsp break;
270 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
271 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
272 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
273 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
274 5c860e29 2018-03-12 stsp break;
275 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
276 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
277 5c860e29 2018-03-12 stsp break;
278 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
279 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
280 5c860e29 2018-03-12 stsp break;
281 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
282 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
283 5c860e29 2018-03-12 stsp break;
284 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
285 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
286 5c860e29 2018-03-12 stsp break;
287 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
288 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
289 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
290 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
291 5c860e29 2018-03-12 stsp break;
292 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
293 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
294 5c860e29 2018-03-12 stsp break;
295 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
296 5c860e29 2018-03-12 stsp default:
297 5c860e29 2018-03-12 stsp break;
298 5c860e29 2018-03-12 stsp }
299 5c860e29 2018-03-12 stsp }
300 5c860e29 2018-03-12 stsp
301 5c860e29 2018-03-12 stsp git_status_list_free(status);
302 5c860e29 2018-03-12 stsp git_repository_free(repo);
303 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
304 5c860e29 2018-03-12 stsp
305 5c860e29 2018-03-12 stsp return 0;
306 5c860e29 2018-03-12 stsp }
307 f42b1b34 2018-03-12 stsp #endif