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 d7d4f210 2018-03-12 stsp const struct got_error *(*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 d7d4f210 2018-03-12 stsp const struct got_error* cmd_log(int, char *[]);
48 d7d4f210 2018-03-12 stsp const struct got_error* 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 d7d4f210 2018-03-12 stsp const struct got_error *error;
91 d7d4f210 2018-03-12 stsp
92 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
93 5c860e29 2018-03-12 stsp
94 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
95 5c860e29 2018-03-12 stsp continue;
96 5c860e29 2018-03-12 stsp
97 1b6b95a8 2018-03-12 stsp if (hflag)
98 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
99 1b6b95a8 2018-03-12 stsp
100 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
101 d7d4f210 2018-03-12 stsp if (error) {
102 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
103 d7d4f210 2018-03-12 stsp return 1;
104 d7d4f210 2018-03-12 stsp }
105 d7d4f210 2018-03-12 stsp
106 d7d4f210 2018-03-12 stsp return 0;
107 5c860e29 2018-03-12 stsp }
108 5c860e29 2018-03-12 stsp
109 5c860e29 2018-03-12 stsp fprintf(stderr, "%s: unknown command -- %s\n", getprogname(), argv[0]);
110 5c860e29 2018-03-12 stsp return 1;
111 5c860e29 2018-03-12 stsp }
112 5c860e29 2018-03-12 stsp
113 5c860e29 2018-03-12 stsp __dead void
114 5c860e29 2018-03-12 stsp usage(void)
115 5c860e29 2018-03-12 stsp {
116 46a0db7d 2018-03-12 stsp int i;
117 46a0db7d 2018-03-12 stsp
118 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
119 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
120 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
121 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
122 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
123 46a0db7d 2018-03-12 stsp }
124 5c860e29 2018-03-12 stsp exit(1);
125 5c860e29 2018-03-12 stsp }
126 5c860e29 2018-03-12 stsp
127 f42b1b34 2018-03-12 stsp static const struct got_error *
128 f42b1b34 2018-03-12 stsp print_commit_object(struct got_object *, struct got_object_id *,
129 f42b1b34 2018-03-12 stsp struct got_repository *);
130 f42b1b34 2018-03-12 stsp
131 f42b1b34 2018-03-12 stsp static const struct got_error *
132 f42b1b34 2018-03-12 stsp print_parent_commits(struct got_commit_object *commit,
133 f42b1b34 2018-03-12 stsp struct got_repository *repo)
134 5c860e29 2018-03-12 stsp {
135 f42b1b34 2018-03-12 stsp struct got_parent_id *pid;
136 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
137 f42b1b34 2018-03-12 stsp struct got_object *obj;
138 5c860e29 2018-03-12 stsp
139 f42b1b34 2018-03-12 stsp SIMPLEQ_FOREACH(pid, &commit->parent_ids, entry) {
140 f42b1b34 2018-03-12 stsp err = got_object_open(&obj, repo, pid->id);
141 f42b1b34 2018-03-12 stsp if (err != NULL)
142 f42b1b34 2018-03-12 stsp return err;
143 f42b1b34 2018-03-12 stsp if (got_object_get_type(obj) != GOT_OBJ_TYPE_COMMIT)
144 f42b1b34 2018-03-12 stsp return got_error(GOT_ERR_OBJ_TYPE);
145 f42b1b34 2018-03-12 stsp err = print_commit_object(obj, pid->id, repo);
146 f42b1b34 2018-03-12 stsp got_object_close(obj);
147 f42b1b34 2018-03-12 stsp }
148 5c860e29 2018-03-12 stsp
149 f42b1b34 2018-03-12 stsp return err;
150 f42b1b34 2018-03-12 stsp }
151 5c860e29 2018-03-12 stsp
152 f42b1b34 2018-03-12 stsp static const struct got_error *
153 f42b1b34 2018-03-12 stsp print_commit_object(struct got_object *obj, struct got_object_id *id,
154 f42b1b34 2018-03-12 stsp struct got_repository *repo)
155 f42b1b34 2018-03-12 stsp {
156 f42b1b34 2018-03-12 stsp struct got_commit_object *commit;
157 f42b1b34 2018-03-12 stsp char *buf;
158 f42b1b34 2018-03-12 stsp const struct got_error *err;
159 5c860e29 2018-03-12 stsp
160 f42b1b34 2018-03-12 stsp err = got_object_commit_open(&commit, repo, obj);
161 f42b1b34 2018-03-12 stsp if (err)
162 f42b1b34 2018-03-12 stsp return err;
163 5c860e29 2018-03-12 stsp
164 f42b1b34 2018-03-12 stsp err = got_object_id_str(&buf, id);
165 f42b1b34 2018-03-12 stsp if (err)
166 f42b1b34 2018-03-12 stsp return err;
167 5c860e29 2018-03-12 stsp
168 f42b1b34 2018-03-12 stsp printf("-----------------------------------------------\n");
169 f42b1b34 2018-03-12 stsp printf("commit: %s\n", buf);
170 f42b1b34 2018-03-12 stsp printf("Author: %s\n", commit->author);
171 f42b1b34 2018-03-12 stsp printf("\n%s\n", commit->logmsg);
172 5c860e29 2018-03-12 stsp
173 f42b1b34 2018-03-12 stsp free(buf);
174 5c860e29 2018-03-12 stsp
175 f42b1b34 2018-03-12 stsp err = print_parent_commits(commit, repo);
176 f42b1b34 2018-03-12 stsp got_object_commit_close(commit);
177 f42b1b34 2018-03-12 stsp return err;
178 f42b1b34 2018-03-12 stsp }
179 5c860e29 2018-03-12 stsp
180 6f3d1eb0 2018-03-12 stsp __dead void
181 6f3d1eb0 2018-03-12 stsp usage_log(void)
182 6f3d1eb0 2018-03-12 stsp {
183 6f3d1eb0 2018-03-12 stsp fprintf(stderr, "usage: %s log [REPO_PATH]\n", getprogname());
184 6f3d1eb0 2018-03-12 stsp exit(1);
185 6f3d1eb0 2018-03-12 stsp }
186 6f3d1eb0 2018-03-12 stsp
187 d7d4f210 2018-03-12 stsp const struct got_error *
188 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
189 f42b1b34 2018-03-12 stsp {
190 f42b1b34 2018-03-12 stsp const struct got_error *error;
191 f42b1b34 2018-03-12 stsp struct got_repository *repo;
192 f42b1b34 2018-03-12 stsp struct got_reference *head_ref;
193 f42b1b34 2018-03-12 stsp struct got_object_id *id;
194 f42b1b34 2018-03-12 stsp struct got_object *obj;
195 6f3d1eb0 2018-03-12 stsp char *repo_path = NULL;
196 5c860e29 2018-03-12 stsp
197 f42b1b34 2018-03-12 stsp if (pledge("stdio rpath wpath cpath", NULL) == -1)
198 f42b1b34 2018-03-12 stsp err(1, "pledge");
199 f42b1b34 2018-03-12 stsp
200 6f3d1eb0 2018-03-12 stsp if (argc == 1) {
201 6f3d1eb0 2018-03-12 stsp repo_path = getcwd(NULL, 0);
202 6f3d1eb0 2018-03-12 stsp if (repo_path == NULL)
203 6f3d1eb0 2018-03-12 stsp err(1, "getcwd");
204 6f3d1eb0 2018-03-12 stsp } else if (argc == 2)
205 6f3d1eb0 2018-03-12 stsp repo_path = argv[1];
206 6f3d1eb0 2018-03-12 stsp else
207 6f3d1eb0 2018-03-12 stsp usage_log();
208 f42b1b34 2018-03-12 stsp
209 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
210 d7d4f210 2018-03-12 stsp if (error != NULL)
211 d7d4f210 2018-03-12 stsp return error;
212 d7d4f210 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
213 d7d4f210 2018-03-12 stsp if (error != NULL)
214 d7d4f210 2018-03-12 stsp return error;
215 f42b1b34 2018-03-12 stsp error = got_ref_resolve(&id, repo, head_ref);
216 d7d4f210 2018-03-12 stsp if (error != NULL)
217 d7d4f210 2018-03-12 stsp return error;
218 f42b1b34 2018-03-12 stsp
219 f42b1b34 2018-03-12 stsp error = got_object_open(&obj, repo, id);
220 d7d4f210 2018-03-12 stsp if (error != NULL)
221 d7d4f210 2018-03-12 stsp return error;
222 f42b1b34 2018-03-12 stsp if (got_object_get_type(obj) == GOT_OBJ_TYPE_COMMIT) {
223 f42b1b34 2018-03-12 stsp error = print_commit_object(obj, id, repo);
224 f42b1b34 2018-03-12 stsp if (error)
225 d7d4f210 2018-03-12 stsp return error;
226 f42b1b34 2018-03-12 stsp } else
227 d7d4f210 2018-03-12 stsp return got_error(GOT_ERR_OBJ_TYPE);
228 f42b1b34 2018-03-12 stsp got_object_close(obj);
229 f42b1b34 2018-03-12 stsp free(id);
230 f42b1b34 2018-03-12 stsp got_ref_close(head_ref);
231 f42b1b34 2018-03-12 stsp got_repo_close(repo);
232 d7d4f210 2018-03-12 stsp return NULL;
233 5c860e29 2018-03-12 stsp }
234 5c860e29 2018-03-12 stsp
235 f42b1b34 2018-03-12 stsp #ifdef notyet
236 d7d4f210 2018-03-12 stsp const struct got_error *
237 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
238 5c860e29 2018-03-12 stsp {
239 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
240 5c860e29 2018-03-12 stsp git_status_list *status;
241 5c860e29 2018-03-12 stsp git_status_options statusopts;
242 5c860e29 2018-03-12 stsp size_t i;
243 5c860e29 2018-03-12 stsp
244 5c860e29 2018-03-12 stsp git_libgit2_init();
245 5c860e29 2018-03-12 stsp
246 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
247 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
248 5c860e29 2018-03-12 stsp
249 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
250 5c860e29 2018-03-12 stsp errx(1, "bar repository");
251 5c860e29 2018-03-12 stsp
252 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
253 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
254 5c860e29 2018-03-12 stsp
255 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
256 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
257 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
258 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
259 5c860e29 2018-03-12 stsp
260 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
261 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
262 5c860e29 2018-03-12 stsp
263 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
264 5c860e29 2018-03-12 stsp const git_status_entry *se;
265 5c860e29 2018-03-12 stsp
266 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
267 5c860e29 2018-03-12 stsp switch (se->status) {
268 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
269 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
270 5c860e29 2018-03-12 stsp break;
271 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
272 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
273 5c860e29 2018-03-12 stsp break;
274 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
275 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
276 5c860e29 2018-03-12 stsp break;
277 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
278 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
279 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
280 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
281 5c860e29 2018-03-12 stsp break;
282 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
283 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
284 5c860e29 2018-03-12 stsp break;
285 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
286 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
287 5c860e29 2018-03-12 stsp break;
288 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
289 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
290 5c860e29 2018-03-12 stsp break;
291 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
292 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
293 5c860e29 2018-03-12 stsp break;
294 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
295 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
296 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
297 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
298 5c860e29 2018-03-12 stsp break;
299 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
300 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
301 5c860e29 2018-03-12 stsp break;
302 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
303 5c860e29 2018-03-12 stsp default:
304 5c860e29 2018-03-12 stsp break;
305 5c860e29 2018-03-12 stsp }
306 5c860e29 2018-03-12 stsp }
307 5c860e29 2018-03-12 stsp
308 5c860e29 2018-03-12 stsp git_status_list_free(status);
309 5c860e29 2018-03-12 stsp git_repository_free(repo);
310 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
311 5c860e29 2018-03-12 stsp
312 5c860e29 2018-03-12 stsp return 0;
313 5c860e29 2018-03-12 stsp }
314 f42b1b34 2018-03-12 stsp #endif