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