Blame


1 7d283eee 2017-11-29 stsp /*
2 7d283eee 2017-11-29 stsp * Copyright (c) 2017 Stefan Sperling <stsp@openbsd.org>
3 7d283eee 2017-11-29 stsp *
4 7d283eee 2017-11-29 stsp * Permission to use, copy, modify, and distribute this software for any
5 7d283eee 2017-11-29 stsp * purpose with or without fee is hereby granted, provided that the above
6 7d283eee 2017-11-29 stsp * copyright notice and this permission notice appear in all copies.
7 7d283eee 2017-11-29 stsp *
8 7d283eee 2017-11-29 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 7d283eee 2017-11-29 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 7d283eee 2017-11-29 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 7d283eee 2017-11-29 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 7d283eee 2017-11-29 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 7d283eee 2017-11-29 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 7d283eee 2017-11-29 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 7d283eee 2017-11-29 stsp */
16 7d283eee 2017-11-29 stsp
17 7d283eee 2017-11-29 stsp #include <sys/queue.h>
18 1c7f0520 2017-11-29 stsp #include <sys/stat.h>
19 7d283eee 2017-11-29 stsp
20 7d283eee 2017-11-29 stsp #include <stdio.h>
21 7d283eee 2017-11-29 stsp #include <stdlib.h>
22 7d283eee 2017-11-29 stsp #include <string.h>
23 f9d67749 2017-11-30 stsp #include <limits.h>
24 7d283eee 2017-11-29 stsp #include <sha1.h>
25 7d283eee 2017-11-29 stsp #include <zlib.h>
26 7d283eee 2017-11-29 stsp
27 7d283eee 2017-11-29 stsp #include "got_repository.h"
28 7d283eee 2017-11-29 stsp #include "got_object.h"
29 7d283eee 2017-11-29 stsp #include "got_error.h"
30 789689b5 2017-11-30 stsp #include "got_diff.h"
31 511a516b 2018-05-19 stsp #include "got_opentemp.h"
32 7d283eee 2017-11-29 stsp
33 718b3ab0 2018-03-17 stsp #include "got_lib_diff.h"
34 718b3ab0 2018-03-17 stsp #include "got_lib_path.h"
35 a7852263 2017-11-30 stsp
36 404c43c4 2018-06-21 stsp static const struct got_error *
37 404c43c4 2018-06-21 stsp diff_blobs(struct got_blob_object *blob1, struct got_blob_object *blob2,
38 404c43c4 2018-06-21 stsp const char *label1, const char *label2, FILE *outfile,
39 404c43c4 2018-06-21 stsp struct got_diff_changes *changes)
40 7d283eee 2017-11-29 stsp {
41 ed9e98a8 2017-11-29 stsp struct got_diff_state ds;
42 8ba9a219 2017-11-29 stsp struct got_diff_args args;
43 7d283eee 2017-11-29 stsp const struct got_error *err = NULL;
44 4e22badc 2017-11-30 stsp FILE *f1 = NULL, *f2 = NULL;
45 f78b0693 2017-11-29 stsp char hex1[SHA1_DIGEST_STRING_LENGTH];
46 f78b0693 2017-11-29 stsp char hex2[SHA1_DIGEST_STRING_LENGTH];
47 98abbc84 2017-11-30 stsp char *idstr1 = NULL, *idstr2 = NULL;
48 f934cf2c 2018-02-12 stsp size_t size1, size2;
49 4e22badc 2017-11-30 stsp int res, flags = 0;
50 7d283eee 2017-11-29 stsp
51 4e22badc 2017-11-30 stsp if (blob1) {
52 a1fd68d8 2018-01-12 stsp f1 = got_opentemp();
53 4e22badc 2017-11-30 stsp if (f1 == NULL)
54 4e22badc 2017-11-30 stsp return got_error(GOT_ERR_FILE_OPEN);
55 4e22badc 2017-11-30 stsp } else
56 4e22badc 2017-11-30 stsp flags |= D_EMPTY1;
57 7d283eee 2017-11-29 stsp
58 4e22badc 2017-11-30 stsp if (blob2) {
59 a1fd68d8 2018-01-12 stsp f2 = got_opentemp();
60 4e22badc 2017-11-30 stsp if (f2 == NULL) {
61 4e22badc 2017-11-30 stsp fclose(f1);
62 4e22badc 2017-11-30 stsp return got_error(GOT_ERR_FILE_OPEN);
63 4e22badc 2017-11-30 stsp }
64 4e22badc 2017-11-30 stsp } else
65 4e22badc 2017-11-30 stsp flags |= D_EMPTY2;
66 7d283eee 2017-11-29 stsp
67 f934cf2c 2018-02-12 stsp size1 = 0;
68 98abbc84 2017-11-30 stsp if (blob1) {
69 f934cf2c 2018-02-12 stsp idstr1 = got_object_blob_id_str(blob1, hex1, sizeof(hex1));
70 84451b3e 2018-07-10 stsp err = got_object_blob_dump_to_file(&size1, NULL, f1, blob1);
71 35e9ba5d 2018-06-21 stsp if (err)
72 35e9ba5d 2018-06-21 stsp goto done;
73 98abbc84 2017-11-30 stsp } else
74 98abbc84 2017-11-30 stsp idstr1 = "/dev/null";
75 7d283eee 2017-11-29 stsp
76 f934cf2c 2018-02-12 stsp size2 = 0;
77 98abbc84 2017-11-30 stsp if (blob2) {
78 f934cf2c 2018-02-12 stsp idstr2 = got_object_blob_id_str(blob2, hex2, sizeof(hex2));
79 84451b3e 2018-07-10 stsp err = got_object_blob_dump_to_file(&size2, NULL, f2, blob2);
80 35e9ba5d 2018-06-21 stsp if (err)
81 35e9ba5d 2018-06-21 stsp goto done;
82 98abbc84 2017-11-30 stsp } else
83 98abbc84 2017-11-30 stsp idstr2 = "/dev/null";
84 7d283eee 2017-11-29 stsp
85 ed9e98a8 2017-11-29 stsp memset(&ds, 0, sizeof(ds));
86 f9d67749 2017-11-30 stsp /* XXX should stat buffers be passed in args instead of ds? */
87 f9d67749 2017-11-30 stsp ds.stb1.st_mode = S_IFREG;
88 98abbc84 2017-11-30 stsp if (blob1)
89 f934cf2c 2018-02-12 stsp ds.stb1.st_size = size1;
90 f9d67749 2017-11-30 stsp ds.stb1.st_mtime = 0; /* XXX */
91 8ba9a219 2017-11-29 stsp
92 f9d67749 2017-11-30 stsp ds.stb2.st_mode = S_IFREG;
93 98abbc84 2017-11-30 stsp if (blob2)
94 f934cf2c 2018-02-12 stsp ds.stb2.st_size = size2;
95 f9d67749 2017-11-30 stsp ds.stb2.st_mtime = 0; /* XXX */
96 f9d67749 2017-11-30 stsp
97 f9d67749 2017-11-30 stsp memset(&args, 0, sizeof(args));
98 8ba9a219 2017-11-29 stsp args.diff_format = D_UNIFIED;
99 98abbc84 2017-11-30 stsp args.label[0] = label1 ? label1 : idstr1;
100 98abbc84 2017-11-30 stsp args.label[1] = label2 ? label2 : idstr2;
101 c2c21d46 2018-03-27 stsp args.diff_context = 3;
102 84eb021e 2018-03-27 stsp flags |= D_PROTOTYPE;
103 62136d3a 2017-11-29 stsp
104 404c43c4 2018-06-21 stsp err = got_diffreg(&res, f1, f2, flags, &args, &ds, outfile, changes);
105 7d283eee 2017-11-29 stsp done:
106 98abbc84 2017-11-30 stsp if (f1)
107 98abbc84 2017-11-30 stsp fclose(f1);
108 98abbc84 2017-11-30 stsp if (f2)
109 98abbc84 2017-11-30 stsp fclose(f2);
110 7d283eee 2017-11-29 stsp return err;
111 7d283eee 2017-11-29 stsp }
112 474b4f94 2017-11-30 stsp
113 404c43c4 2018-06-21 stsp const struct got_error *
114 404c43c4 2018-06-21 stsp got_diff_blob(struct got_blob_object *blob1, struct got_blob_object *blob2,
115 404c43c4 2018-06-21 stsp const char *label1, const char *label2, FILE *outfile)
116 404c43c4 2018-06-21 stsp {
117 404c43c4 2018-06-21 stsp return diff_blobs(blob1, blob2, label1, label2, outfile, NULL);
118 404c43c4 2018-06-21 stsp }
119 404c43c4 2018-06-21 stsp
120 404c43c4 2018-06-21 stsp const struct got_error *
121 404c43c4 2018-06-21 stsp got_diff_blob_lines_changed(struct got_diff_changes **changes,
122 404c43c4 2018-06-21 stsp struct got_blob_object *blob1, struct got_blob_object *blob2)
123 404c43c4 2018-06-21 stsp {
124 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
125 404c43c4 2018-06-21 stsp
126 404c43c4 2018-06-21 stsp *changes = calloc(1, sizeof(**changes));
127 404c43c4 2018-06-21 stsp if (*changes == NULL)
128 404c43c4 2018-06-21 stsp return got_error_from_errno();
129 404c43c4 2018-06-21 stsp SIMPLEQ_INIT(&(*changes)->entries);
130 404c43c4 2018-06-21 stsp
131 404c43c4 2018-06-21 stsp err = diff_blobs(blob1, blob2, NULL, NULL, NULL, *changes);
132 404c43c4 2018-06-21 stsp if (err) {
133 404c43c4 2018-06-21 stsp got_diff_free_changes(*changes);
134 404c43c4 2018-06-21 stsp *changes = NULL;
135 404c43c4 2018-06-21 stsp }
136 404c43c4 2018-06-21 stsp return err;
137 404c43c4 2018-06-21 stsp }
138 404c43c4 2018-06-21 stsp
139 404c43c4 2018-06-21 stsp void
140 404c43c4 2018-06-21 stsp got_diff_free_changes(struct got_diff_changes *changes)
141 404c43c4 2018-06-21 stsp {
142 404c43c4 2018-06-21 stsp struct got_diff_change *change;
143 404c43c4 2018-06-21 stsp while (!SIMPLEQ_EMPTY(&changes->entries)) {
144 404c43c4 2018-06-21 stsp change = SIMPLEQ_FIRST(&changes->entries);
145 404c43c4 2018-06-21 stsp SIMPLEQ_REMOVE_HEAD(&changes->entries, entry);
146 404c43c4 2018-06-21 stsp free(change);
147 404c43c4 2018-06-21 stsp }
148 404c43c4 2018-06-21 stsp free(changes);
149 404c43c4 2018-06-21 stsp }
150 404c43c4 2018-06-21 stsp
151 a3e2cbea 2017-12-01 stsp struct got_tree_entry *
152 a3e2cbea 2017-12-01 stsp match_entry_by_name(struct got_tree_entry *te1, struct got_tree_object *tree2)
153 474b4f94 2017-11-30 stsp {
154 a3e2cbea 2017-12-01 stsp struct got_tree_entry *te2;
155 883f0469 2018-06-23 stsp const struct got_tree_entries *entries2;
156 a3e2cbea 2017-12-01 stsp
157 883f0469 2018-06-23 stsp entries2 = got_object_tree_get_entries(tree2);
158 883f0469 2018-06-23 stsp SIMPLEQ_FOREACH(te2, &entries2->head, entry) {
159 a3e2cbea 2017-12-01 stsp if (strcmp(te1->name, te2->name) == 0)
160 a3e2cbea 2017-12-01 stsp return te2;
161 a3e2cbea 2017-12-01 stsp }
162 474b4f94 2017-11-30 stsp return NULL;
163 474b4f94 2017-11-30 stsp }
164 474b4f94 2017-11-30 stsp
165 474b4f94 2017-11-30 stsp static const struct got_error *
166 74671950 2018-02-11 stsp diff_added_blob(struct got_object_id *id, struct got_repository *repo,
167 74671950 2018-02-11 stsp FILE *outfile)
168 474b4f94 2017-11-30 stsp {
169 4e22badc 2017-11-30 stsp const struct got_error *err;
170 2acfca77 2018-04-01 stsp struct got_blob_object *blob = NULL;
171 2acfca77 2018-04-01 stsp struct got_object *obj = NULL;
172 4e22badc 2017-11-30 stsp
173 4e22badc 2017-11-30 stsp err = got_object_open(&obj, repo, id);
174 4e22badc 2017-11-30 stsp if (err)
175 4e22badc 2017-11-30 stsp return err;
176 4e22badc 2017-11-30 stsp
177 2acfca77 2018-04-01 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
178 2acfca77 2018-04-01 stsp if (err)
179 2acfca77 2018-04-01 stsp goto done;
180 2acfca77 2018-04-01 stsp err = got_diff_blob(NULL, blob, NULL, NULL, outfile);
181 2acfca77 2018-04-01 stsp done:
182 2acfca77 2018-04-01 stsp got_object_close(obj);
183 2acfca77 2018-04-01 stsp if (blob)
184 2acfca77 2018-04-01 stsp got_object_blob_close(blob);
185 2acfca77 2018-04-01 stsp return err;
186 474b4f94 2017-11-30 stsp }
187 474b4f94 2017-11-30 stsp
188 474b4f94 2017-11-30 stsp static const struct got_error *
189 6a213ccb 2017-11-30 stsp diff_modified_blob(struct got_object_id *id1, struct got_object_id *id2,
190 74671950 2018-02-11 stsp struct got_repository *repo, FILE *outfile)
191 474b4f94 2017-11-30 stsp {
192 6a213ccb 2017-11-30 stsp const struct got_error *err;
193 6a213ccb 2017-11-30 stsp struct got_object *obj1 = NULL;
194 6a213ccb 2017-11-30 stsp struct got_object *obj2 = NULL;
195 6a213ccb 2017-11-30 stsp struct got_blob_object *blob1 = NULL;
196 6a213ccb 2017-11-30 stsp struct got_blob_object *blob2 = NULL;
197 6a213ccb 2017-11-30 stsp
198 6a213ccb 2017-11-30 stsp err = got_object_open(&obj1, repo, id1);
199 6a213ccb 2017-11-30 stsp if (err)
200 730a8aa0 2018-04-24 stsp return err;
201 eef6493a 2018-01-19 stsp if (got_object_get_type(obj1) != GOT_OBJ_TYPE_BLOB) {
202 6a213ccb 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
203 6a213ccb 2017-11-30 stsp goto done;
204 6a213ccb 2017-11-30 stsp }
205 6a213ccb 2017-11-30 stsp
206 6a213ccb 2017-11-30 stsp err = got_object_open(&obj2, repo, id2);
207 730a8aa0 2018-04-24 stsp if (err)
208 6a213ccb 2017-11-30 stsp goto done;
209 eef6493a 2018-01-19 stsp if (got_object_get_type(obj2) != GOT_OBJ_TYPE_BLOB) {
210 6a213ccb 2017-11-30 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
211 6a213ccb 2017-11-30 stsp goto done;
212 6a213ccb 2017-11-30 stsp }
213 6a213ccb 2017-11-30 stsp
214 c7020aea 2017-11-30 stsp err = got_object_blob_open(&blob1, repo, obj1, 8192);
215 2acfca77 2018-04-01 stsp if (err)
216 6a213ccb 2017-11-30 stsp goto done;
217 6a213ccb 2017-11-30 stsp
218 c7020aea 2017-11-30 stsp err = got_object_blob_open(&blob2, repo, obj2, 8192);
219 2acfca77 2018-04-01 stsp if (err)
220 6a213ccb 2017-11-30 stsp goto done;
221 6a213ccb 2017-11-30 stsp
222 74671950 2018-02-11 stsp err = got_diff_blob(blob1, blob2, NULL, NULL, outfile);
223 6a213ccb 2017-11-30 stsp
224 6a213ccb 2017-11-30 stsp done:
225 a3e2cbea 2017-12-01 stsp if (obj1)
226 a3e2cbea 2017-12-01 stsp got_object_close(obj1);
227 a3e2cbea 2017-12-01 stsp if (obj2)
228 a3e2cbea 2017-12-01 stsp got_object_close(obj2);
229 a3e2cbea 2017-12-01 stsp if (blob1)
230 a3e2cbea 2017-12-01 stsp got_object_blob_close(blob1);
231 a3e2cbea 2017-12-01 stsp if (blob2)
232 a3e2cbea 2017-12-01 stsp got_object_blob_close(blob2);
233 6a213ccb 2017-11-30 stsp return err;
234 474b4f94 2017-11-30 stsp }
235 474b4f94 2017-11-30 stsp
236 474b4f94 2017-11-30 stsp static const struct got_error *
237 74671950 2018-02-11 stsp diff_deleted_blob(struct got_object_id *id, struct got_repository *repo,
238 74671950 2018-02-11 stsp FILE *outfile)
239 474b4f94 2017-11-30 stsp {
240 365fb436 2017-11-30 stsp const struct got_error *err;
241 2acfca77 2018-04-01 stsp struct got_blob_object *blob = NULL;
242 2acfca77 2018-04-01 stsp struct got_object *obj = NULL;
243 365fb436 2017-11-30 stsp
244 365fb436 2017-11-30 stsp err = got_object_open(&obj, repo, id);
245 365fb436 2017-11-30 stsp if (err)
246 365fb436 2017-11-30 stsp return err;
247 365fb436 2017-11-30 stsp
248 2acfca77 2018-04-01 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
249 2acfca77 2018-04-01 stsp if (err)
250 2acfca77 2018-04-01 stsp goto done;
251 2acfca77 2018-04-01 stsp err = got_diff_blob(blob, NULL, NULL, NULL, outfile);
252 2acfca77 2018-04-01 stsp done:
253 2acfca77 2018-04-01 stsp got_object_close(obj);
254 2acfca77 2018-04-01 stsp if (blob)
255 2acfca77 2018-04-01 stsp got_object_blob_close(blob);
256 2acfca77 2018-04-01 stsp return err;
257 474b4f94 2017-11-30 stsp }
258 474b4f94 2017-11-30 stsp
259 474b4f94 2017-11-30 stsp static const struct got_error *
260 74671950 2018-02-11 stsp diff_added_tree(struct got_object_id *id, struct got_repository *repo,
261 74671950 2018-02-11 stsp FILE *outfile)
262 474b4f94 2017-11-30 stsp {
263 9c70d4c3 2017-11-30 stsp const struct got_error *err = NULL;
264 9c70d4c3 2017-11-30 stsp struct got_object *treeobj = NULL;
265 9c70d4c3 2017-11-30 stsp struct got_tree_object *tree = NULL;
266 9c70d4c3 2017-11-30 stsp
267 9c70d4c3 2017-11-30 stsp err = got_object_open(&treeobj, repo, id);
268 9c70d4c3 2017-11-30 stsp if (err)
269 9c70d4c3 2017-11-30 stsp goto done;
270 9c70d4c3 2017-11-30 stsp
271 b107e67f 2018-01-19 stsp if (got_object_get_type(treeobj) != GOT_OBJ_TYPE_TREE) {
272 9c70d4c3 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
273 9c70d4c3 2017-11-30 stsp goto done;
274 9c70d4c3 2017-11-30 stsp }
275 9c70d4c3 2017-11-30 stsp
276 9c70d4c3 2017-11-30 stsp err = got_object_tree_open(&tree, repo, treeobj);
277 9c70d4c3 2017-11-30 stsp if (err)
278 9c70d4c3 2017-11-30 stsp goto done;
279 9c70d4c3 2017-11-30 stsp
280 74671950 2018-02-11 stsp err = got_diff_tree(NULL, tree, repo, outfile);
281 9c70d4c3 2017-11-30 stsp
282 9c70d4c3 2017-11-30 stsp done:
283 9c70d4c3 2017-11-30 stsp if (tree)
284 9c70d4c3 2017-11-30 stsp got_object_tree_close(tree);
285 9c70d4c3 2017-11-30 stsp if (treeobj)
286 9c70d4c3 2017-11-30 stsp got_object_close(treeobj);
287 9c70d4c3 2017-11-30 stsp return err;
288 474b4f94 2017-11-30 stsp }
289 474b4f94 2017-11-30 stsp
290 474b4f94 2017-11-30 stsp static const struct got_error *
291 789689b5 2017-11-30 stsp diff_modified_tree(struct got_object_id *id1, struct got_object_id *id2,
292 74671950 2018-02-11 stsp struct got_repository *repo, FILE *outfile)
293 474b4f94 2017-11-30 stsp {
294 789689b5 2017-11-30 stsp const struct got_error *err = NULL;
295 789689b5 2017-11-30 stsp struct got_object *treeobj1 = NULL;
296 789689b5 2017-11-30 stsp struct got_object *treeobj2 = NULL;
297 789689b5 2017-11-30 stsp struct got_tree_object *tree1 = NULL;
298 789689b5 2017-11-30 stsp struct got_tree_object *tree2 = NULL;
299 789689b5 2017-11-30 stsp
300 789689b5 2017-11-30 stsp err = got_object_open(&treeobj1, repo, id1);
301 789689b5 2017-11-30 stsp if (err)
302 789689b5 2017-11-30 stsp goto done;
303 789689b5 2017-11-30 stsp
304 eef6493a 2018-01-19 stsp if (got_object_get_type(treeobj1) != GOT_OBJ_TYPE_TREE) {
305 789689b5 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
306 789689b5 2017-11-30 stsp goto done;
307 789689b5 2017-11-30 stsp }
308 789689b5 2017-11-30 stsp
309 789689b5 2017-11-30 stsp err = got_object_open(&treeobj2, repo, id2);
310 789689b5 2017-11-30 stsp if (err)
311 789689b5 2017-11-30 stsp goto done;
312 789689b5 2017-11-30 stsp
313 eef6493a 2018-01-19 stsp if (got_object_get_type(treeobj2) != GOT_OBJ_TYPE_TREE) {
314 789689b5 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
315 789689b5 2017-11-30 stsp goto done;
316 789689b5 2017-11-30 stsp }
317 789689b5 2017-11-30 stsp
318 789689b5 2017-11-30 stsp err = got_object_tree_open(&tree1, repo, treeobj1);
319 789689b5 2017-11-30 stsp if (err)
320 789689b5 2017-11-30 stsp goto done;
321 789689b5 2017-11-30 stsp
322 789689b5 2017-11-30 stsp err = got_object_tree_open(&tree2, repo, treeobj2);
323 789689b5 2017-11-30 stsp if (err)
324 789689b5 2017-11-30 stsp goto done;
325 789689b5 2017-11-30 stsp
326 74671950 2018-02-11 stsp err = got_diff_tree(tree1, tree2, repo, outfile);
327 789689b5 2017-11-30 stsp
328 789689b5 2017-11-30 stsp done:
329 789689b5 2017-11-30 stsp if (tree1)
330 789689b5 2017-11-30 stsp got_object_tree_close(tree1);
331 789689b5 2017-11-30 stsp if (tree2)
332 789689b5 2017-11-30 stsp got_object_tree_close(tree2);
333 789689b5 2017-11-30 stsp if (treeobj1)
334 789689b5 2017-11-30 stsp got_object_close(treeobj1);
335 789689b5 2017-11-30 stsp if (treeobj2)
336 789689b5 2017-11-30 stsp got_object_close(treeobj2);
337 789689b5 2017-11-30 stsp return err;
338 474b4f94 2017-11-30 stsp }
339 474b4f94 2017-11-30 stsp
340 474b4f94 2017-11-30 stsp static const struct got_error *
341 74671950 2018-02-11 stsp diff_deleted_tree(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
342 474b4f94 2017-11-30 stsp {
343 2c56f2ce 2017-11-30 stsp const struct got_error *err = NULL;
344 2c56f2ce 2017-11-30 stsp struct got_object *treeobj = NULL;
345 2c56f2ce 2017-11-30 stsp struct got_tree_object *tree = NULL;
346 2c56f2ce 2017-11-30 stsp
347 2c56f2ce 2017-11-30 stsp err = got_object_open(&treeobj, repo, id);
348 2c56f2ce 2017-11-30 stsp if (err)
349 2c56f2ce 2017-11-30 stsp goto done;
350 2c56f2ce 2017-11-30 stsp
351 b107e67f 2018-01-19 stsp if (got_object_get_type(treeobj) != GOT_OBJ_TYPE_TREE) {
352 2c56f2ce 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
353 2c56f2ce 2017-11-30 stsp goto done;
354 2c56f2ce 2017-11-30 stsp }
355 2c56f2ce 2017-11-30 stsp
356 2c56f2ce 2017-11-30 stsp err = got_object_tree_open(&tree, repo, treeobj);
357 2c56f2ce 2017-11-30 stsp if (err)
358 2c56f2ce 2017-11-30 stsp goto done;
359 2c56f2ce 2017-11-30 stsp
360 74671950 2018-02-11 stsp err = got_diff_tree(tree, NULL, repo, outfile);
361 2c56f2ce 2017-11-30 stsp
362 2c56f2ce 2017-11-30 stsp done:
363 2c56f2ce 2017-11-30 stsp if (tree)
364 2c56f2ce 2017-11-30 stsp got_object_tree_close(tree);
365 2c56f2ce 2017-11-30 stsp if (treeobj)
366 2c56f2ce 2017-11-30 stsp got_object_close(treeobj);
367 2c56f2ce 2017-11-30 stsp return err;
368 474b4f94 2017-11-30 stsp }
369 474b4f94 2017-11-30 stsp
370 474b4f94 2017-11-30 stsp static const struct got_error *
371 74671950 2018-02-11 stsp diff_kind_mismatch(struct got_object_id *id1, struct got_object_id *id2,
372 74671950 2018-02-11 stsp FILE *outfile)
373 474b4f94 2017-11-30 stsp {
374 013404a9 2017-11-30 stsp /* XXX TODO */
375 474b4f94 2017-11-30 stsp return NULL;
376 474b4f94 2017-11-30 stsp }
377 474b4f94 2017-11-30 stsp
378 474b4f94 2017-11-30 stsp static const struct got_error *
379 6a213ccb 2017-11-30 stsp diff_entry_old_new(struct got_tree_entry *te1, struct got_tree_object *tree2,
380 74671950 2018-02-11 stsp struct got_repository *repo, FILE *outfile)
381 474b4f94 2017-11-30 stsp {
382 07ccb00b 2018-03-27 stsp struct got_tree_entry *te2 = NULL;
383 474b4f94 2017-11-30 stsp
384 07ccb00b 2018-03-27 stsp if (tree2)
385 07ccb00b 2018-03-27 stsp te2 = match_entry_by_name(te1, tree2);
386 474b4f94 2017-11-30 stsp if (te2 == NULL) {
387 474b4f94 2017-11-30 stsp if (S_ISDIR(te1->mode))
388 59ece79d 2018-02-12 stsp return diff_deleted_tree(te1->id, repo, outfile);
389 59ece79d 2018-02-12 stsp return diff_deleted_blob(te1->id, repo, outfile);
390 474b4f94 2017-11-30 stsp }
391 474b4f94 2017-11-30 stsp
392 4209f790 2017-11-30 stsp if (S_ISDIR(te1->mode) && S_ISDIR(te2->mode)) {
393 59ece79d 2018-02-12 stsp if (got_object_id_cmp(te1->id, te2->id) != 0)
394 59ece79d 2018-02-12 stsp return diff_modified_tree(te1->id, te2->id, repo,
395 74671950 2018-02-11 stsp outfile);
396 4209f790 2017-11-30 stsp } else if (S_ISREG(te1->mode) && S_ISREG(te2->mode)) {
397 59ece79d 2018-02-12 stsp if (got_object_id_cmp(te1->id, te2->id) != 0)
398 59ece79d 2018-02-12 stsp return diff_modified_blob(te1->id, te2->id, repo,
399 74671950 2018-02-11 stsp outfile);
400 413ea19d 2017-11-30 stsp }
401 474b4f94 2017-11-30 stsp
402 59ece79d 2018-02-12 stsp return diff_kind_mismatch(te1->id, te2->id, outfile);
403 474b4f94 2017-11-30 stsp }
404 474b4f94 2017-11-30 stsp
405 474b4f94 2017-11-30 stsp static const struct got_error *
406 4e22badc 2017-11-30 stsp diff_entry_new_old(struct got_tree_entry *te2, struct got_tree_object *tree1,
407 74671950 2018-02-11 stsp struct got_repository *repo, FILE *outfile)
408 474b4f94 2017-11-30 stsp {
409 07ccb00b 2018-03-27 stsp if (tree1) {
410 07ccb00b 2018-03-27 stsp struct got_tree_entry *te1 = match_entry_by_name(te2, tree1);
411 07ccb00b 2018-03-27 stsp if (te1 != NULL) /* handled by diff_entry_old_new() */
412 07ccb00b 2018-03-27 stsp return NULL;
413 07ccb00b 2018-03-27 stsp }
414 474b4f94 2017-11-30 stsp
415 474b4f94 2017-11-30 stsp if (S_ISDIR(te2->mode))
416 59ece79d 2018-02-12 stsp return diff_added_tree(te2->id, repo, outfile);
417 59ece79d 2018-02-12 stsp return diff_added_blob(te2->id, repo, outfile);
418 474b4f94 2017-11-30 stsp }
419 474b4f94 2017-11-30 stsp
420 474b4f94 2017-11-30 stsp const struct got_error *
421 474b4f94 2017-11-30 stsp got_diff_tree(struct got_tree_object *tree1, struct got_tree_object *tree2,
422 74671950 2018-02-11 stsp struct got_repository *repo, FILE *outfile)
423 474b4f94 2017-11-30 stsp {
424 474b4f94 2017-11-30 stsp const struct got_error *err = NULL;
425 789689b5 2017-11-30 stsp struct got_tree_entry *te1 = NULL;
426 789689b5 2017-11-30 stsp struct got_tree_entry *te2 = NULL;
427 474b4f94 2017-11-30 stsp
428 883f0469 2018-06-23 stsp if (tree1) {
429 883f0469 2018-06-23 stsp const struct got_tree_entries *entries;
430 883f0469 2018-06-23 stsp entries = got_object_tree_get_entries(tree1);
431 883f0469 2018-06-23 stsp te1 = SIMPLEQ_FIRST(&entries->head);
432 883f0469 2018-06-23 stsp }
433 883f0469 2018-06-23 stsp if (tree2) {
434 883f0469 2018-06-23 stsp const struct got_tree_entries *entries;
435 883f0469 2018-06-23 stsp entries = got_object_tree_get_entries(tree2);
436 883f0469 2018-06-23 stsp te2 = SIMPLEQ_FIRST(&entries->head);
437 883f0469 2018-06-23 stsp }
438 474b4f94 2017-11-30 stsp
439 474b4f94 2017-11-30 stsp do {
440 474b4f94 2017-11-30 stsp if (te1) {
441 74671950 2018-02-11 stsp err = diff_entry_old_new(te1, tree2, repo, outfile);
442 474b4f94 2017-11-30 stsp if (err)
443 474b4f94 2017-11-30 stsp break;
444 474b4f94 2017-11-30 stsp }
445 474b4f94 2017-11-30 stsp
446 474b4f94 2017-11-30 stsp if (te2) {
447 74671950 2018-02-11 stsp err = diff_entry_new_old(te2, tree1, repo, outfile);
448 474b4f94 2017-11-30 stsp if (err)
449 474b4f94 2017-11-30 stsp break;
450 474b4f94 2017-11-30 stsp }
451 474b4f94 2017-11-30 stsp
452 474b4f94 2017-11-30 stsp if (te1)
453 474b4f94 2017-11-30 stsp te1 = SIMPLEQ_NEXT(te1, entry);
454 474b4f94 2017-11-30 stsp if (te2)
455 474b4f94 2017-11-30 stsp te2 = SIMPLEQ_NEXT(te2, entry);
456 474b4f94 2017-11-30 stsp } while (te1 || te2);
457 11528a82 2018-05-19 stsp
458 11528a82 2018-05-19 stsp return err;
459 11528a82 2018-05-19 stsp }
460 11528a82 2018-05-19 stsp
461 11528a82 2018-05-19 stsp const struct got_error *
462 11528a82 2018-05-19 stsp got_diff_objects_as_blobs(struct got_object *obj1, struct got_object *obj2,
463 11528a82 2018-05-19 stsp struct got_repository *repo, FILE *outfile)
464 11528a82 2018-05-19 stsp {
465 11528a82 2018-05-19 stsp const struct got_error *err;
466 11528a82 2018-05-19 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
467 b74c7625 2018-05-20 stsp
468 b74c7625 2018-05-20 stsp if (obj1 == NULL && obj2 == NULL)
469 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
470 11528a82 2018-05-19 stsp
471 cd0acaa7 2018-05-20 stsp if (obj1) {
472 cd0acaa7 2018-05-20 stsp err = got_object_blob_open(&blob1, repo, obj1, 8192);
473 cd0acaa7 2018-05-20 stsp if (err)
474 cd0acaa7 2018-05-20 stsp goto done;
475 cd0acaa7 2018-05-20 stsp }
476 cd0acaa7 2018-05-20 stsp if (obj2) {
477 cd0acaa7 2018-05-20 stsp err = got_object_blob_open(&blob2, repo, obj2, 8192);
478 cd0acaa7 2018-05-20 stsp if (err)
479 cd0acaa7 2018-05-20 stsp goto done;
480 cd0acaa7 2018-05-20 stsp }
481 11528a82 2018-05-19 stsp err = got_diff_blob(blob1, blob2, NULL, NULL, outfile);
482 11528a82 2018-05-19 stsp done:
483 11528a82 2018-05-19 stsp if (blob1)
484 11528a82 2018-05-19 stsp got_object_blob_close(blob1);
485 11528a82 2018-05-19 stsp if (blob2)
486 11528a82 2018-05-19 stsp got_object_blob_close(blob2);
487 474b4f94 2017-11-30 stsp return err;
488 474b4f94 2017-11-30 stsp }
489 11528a82 2018-05-19 stsp
490 11528a82 2018-05-19 stsp const struct got_error *
491 11528a82 2018-05-19 stsp got_diff_objects_as_trees(struct got_object *obj1, struct got_object *obj2,
492 11528a82 2018-05-19 stsp struct got_repository *repo, FILE *outfile)
493 11528a82 2018-05-19 stsp {
494 11528a82 2018-05-19 stsp const struct got_error *err;
495 11528a82 2018-05-19 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
496 11528a82 2018-05-19 stsp
497 b74c7625 2018-05-20 stsp if (obj1 == NULL && obj2 == NULL)
498 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
499 b74c7625 2018-05-20 stsp
500 cd0acaa7 2018-05-20 stsp if (obj1) {
501 cd0acaa7 2018-05-20 stsp err = got_object_tree_open(&tree1, repo, obj1);
502 cd0acaa7 2018-05-20 stsp if (err)
503 cd0acaa7 2018-05-20 stsp goto done;
504 cd0acaa7 2018-05-20 stsp }
505 cd0acaa7 2018-05-20 stsp if (obj2) {
506 cd0acaa7 2018-05-20 stsp err = got_object_tree_open(&tree2, repo, obj2);
507 cd0acaa7 2018-05-20 stsp if (err)
508 cd0acaa7 2018-05-20 stsp goto done;
509 cd0acaa7 2018-05-20 stsp }
510 11528a82 2018-05-19 stsp err = got_diff_tree(tree1, tree2, repo, outfile);
511 11528a82 2018-05-19 stsp done:
512 11528a82 2018-05-19 stsp if (tree1)
513 11528a82 2018-05-19 stsp got_object_tree_close(tree1);
514 11528a82 2018-05-19 stsp if (tree2)
515 11528a82 2018-05-19 stsp got_object_tree_close(tree2);
516 11528a82 2018-05-19 stsp return err;
517 4bb494d5 2018-06-16 stsp }
518 4bb494d5 2018-06-16 stsp
519 4bb494d5 2018-06-16 stsp static char *
520 4bb494d5 2018-06-16 stsp get_datestr(time_t *time, char *datebuf)
521 4bb494d5 2018-06-16 stsp {
522 4bb494d5 2018-06-16 stsp char *p, *s = ctime_r(time, datebuf);
523 4bb494d5 2018-06-16 stsp p = strchr(s, '\n');
524 4bb494d5 2018-06-16 stsp if (p)
525 4bb494d5 2018-06-16 stsp *p = '\0';
526 4bb494d5 2018-06-16 stsp return s;
527 11528a82 2018-05-19 stsp }
528 11528a82 2018-05-19 stsp
529 11528a82 2018-05-19 stsp const struct got_error *
530 11528a82 2018-05-19 stsp got_diff_objects_as_commits(struct got_object *obj1, struct got_object *obj2,
531 11528a82 2018-05-19 stsp struct got_repository *repo, FILE *outfile)
532 11528a82 2018-05-19 stsp {
533 11528a82 2018-05-19 stsp const struct got_error *err;
534 11528a82 2018-05-19 stsp struct got_commit_object *commit1 = NULL, *commit2 = NULL;
535 11528a82 2018-05-19 stsp struct got_object *tree_obj1 = NULL, *tree_obj2 = NULL;
536 9b697879 2018-05-20 stsp char *id_str;
537 4bb494d5 2018-06-16 stsp char datebuf[26];
538 4bb494d5 2018-06-16 stsp time_t time;
539 11528a82 2018-05-19 stsp
540 9b697879 2018-05-20 stsp if (obj2 == NULL)
541 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
542 b74c7625 2018-05-20 stsp
543 cd0acaa7 2018-05-20 stsp if (obj1) {
544 cd0acaa7 2018-05-20 stsp err = got_object_commit_open(&commit1, repo, obj1);
545 cd0acaa7 2018-05-20 stsp if (err)
546 cd0acaa7 2018-05-20 stsp goto done;
547 cd0acaa7 2018-05-20 stsp err = got_object_open(&tree_obj1, repo, commit1->tree_id);
548 cd0acaa7 2018-05-20 stsp if (err)
549 cd0acaa7 2018-05-20 stsp goto done;
550 cd0acaa7 2018-05-20 stsp }
551 bacc9935 2018-05-20 stsp
552 9b697879 2018-05-20 stsp err = got_object_commit_open(&commit2, repo, obj2);
553 9b697879 2018-05-20 stsp if (err)
554 9b697879 2018-05-20 stsp goto done;
555 9b697879 2018-05-20 stsp err = got_object_open(&tree_obj2, repo, commit2->tree_id);
556 9b697879 2018-05-20 stsp if (err)
557 9b697879 2018-05-20 stsp goto done;
558 9b697879 2018-05-20 stsp err = got_object_get_id_str(&id_str, obj2);
559 9b697879 2018-05-20 stsp if (err)
560 9b697879 2018-05-20 stsp goto done;
561 9fc8d6a2 2018-05-20 stsp if (fprintf(outfile, "commit: %s\n", id_str) < 0) {
562 9fc8d6a2 2018-05-20 stsp err = got_error_from_errno();
563 9fc8d6a2 2018-05-20 stsp free(id_str);
564 9fc8d6a2 2018-05-20 stsp goto done;
565 9fc8d6a2 2018-05-20 stsp }
566 9b697879 2018-05-20 stsp free(id_str);
567 4bb494d5 2018-06-16 stsp time = mktime(&commit2->tm_author);
568 4bb494d5 2018-06-16 stsp if (fprintf(outfile, "author: %s %s UTC\n", commit2->author,
569 4bb494d5 2018-06-16 stsp get_datestr(&time, datebuf)) < 0) {
570 9fc8d6a2 2018-05-20 stsp err = got_error_from_errno();
571 9fc8d6a2 2018-05-20 stsp goto done;
572 9fc8d6a2 2018-05-20 stsp }
573 4bb494d5 2018-06-16 stsp time = mktime(&commit2->tm_committer);
574 9fc8d6a2 2018-05-20 stsp if (strcmp(commit2->author, commit2->committer) != 0 &&
575 4bb494d5 2018-06-16 stsp fprintf(outfile, "committer: %s %s UTC\n", commit2->committer,
576 4bb494d5 2018-06-16 stsp get_datestr(&time, datebuf)) < 0) {
577 9fc8d6a2 2018-05-20 stsp err = got_error_from_errno();
578 9fc8d6a2 2018-05-20 stsp goto done;
579 9fc8d6a2 2018-05-20 stsp }
580 ede67fd9 2018-07-10 stsp if (fprintf(outfile, "%s\n", commit2->logmsg) < 0) {
581 9fc8d6a2 2018-05-20 stsp err = got_error_from_errno();
582 9fc8d6a2 2018-05-20 stsp goto done;
583 9fc8d6a2 2018-05-20 stsp }
584 9b697879 2018-05-20 stsp
585 11528a82 2018-05-19 stsp err = got_diff_objects_as_trees(tree_obj1, tree_obj2, repo, outfile);
586 11528a82 2018-05-19 stsp done:
587 11528a82 2018-05-19 stsp if (tree_obj1)
588 11528a82 2018-05-19 stsp got_object_close(tree_obj1);
589 11528a82 2018-05-19 stsp if (tree_obj2)
590 11528a82 2018-05-19 stsp got_object_close(tree_obj2);
591 11528a82 2018-05-19 stsp if (commit1)
592 11528a82 2018-05-19 stsp got_object_commit_close(commit1);
593 11528a82 2018-05-19 stsp if (commit2)
594 11528a82 2018-05-19 stsp got_object_commit_close(commit2);
595 11528a82 2018-05-19 stsp return err;
596 11528a82 2018-05-19 stsp }