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