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 dc424a06 2019-08-07 stsp got_diff_state_free(&ds);
116 7d283eee 2017-11-29 stsp done:
117 fb43ecf1 2019-02-11 stsp if (f1 && fclose(f1) != 0 && err == NULL)
118 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
119 fb43ecf1 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
120 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
121 7d283eee 2017-11-29 stsp return err;
122 aaa13589 2019-06-01 stsp }
123 aaa13589 2019-06-01 stsp
124 aaa13589 2019-06-01 stsp const struct got_error *
125 aaa13589 2019-06-01 stsp got_diff_blob_output_unidiff(void *arg, struct got_blob_object *blob1,
126 aaa13589 2019-06-01 stsp struct got_blob_object *blob2, struct got_object_id *id1,
127 aaa13589 2019-06-01 stsp struct got_object_id *id2, const char *label1, const char *label2,
128 aaa13589 2019-06-01 stsp struct got_repository *repo)
129 aaa13589 2019-06-01 stsp {
130 aaa13589 2019-06-01 stsp struct got_diff_blob_output_unidiff_arg *a = arg;
131 aaa13589 2019-06-01 stsp
132 aaa13589 2019-06-01 stsp return diff_blobs(blob1, blob2, label1, label2, a->diff_context,
133 aaa13589 2019-06-01 stsp a->outfile, NULL);
134 7d283eee 2017-11-29 stsp }
135 474b4f94 2017-11-30 stsp
136 404c43c4 2018-06-21 stsp const struct got_error *
137 404c43c4 2018-06-21 stsp got_diff_blob(struct got_blob_object *blob1, struct got_blob_object *blob2,
138 54156555 2018-12-24 stsp const char *label1, const char *label2, int diff_context, FILE *outfile)
139 404c43c4 2018-06-21 stsp {
140 54156555 2018-12-24 stsp return diff_blobs(blob1, blob2, label1, label2, diff_context, outfile,
141 54156555 2018-12-24 stsp NULL);
142 404c43c4 2018-06-21 stsp }
143 404c43c4 2018-06-21 stsp
144 7f1f93af 2019-08-06 stsp static const struct got_error *
145 7f1f93af 2019-08-06 stsp alloc_changes(struct got_diff_changes **changes)
146 7f1f93af 2019-08-06 stsp {
147 7f1f93af 2019-08-06 stsp *changes = calloc(1, sizeof(**changes));
148 7f1f93af 2019-08-06 stsp if (*changes == NULL)
149 7f1f93af 2019-08-06 stsp return got_error_from_errno("calloc");
150 7f1f93af 2019-08-06 stsp SIMPLEQ_INIT(&(*changes)->entries);
151 7f1f93af 2019-08-06 stsp return NULL;
152 7f1f93af 2019-08-06 stsp }
153 7f1f93af 2019-08-06 stsp
154 7f1f93af 2019-08-06 stsp static const struct got_error *
155 7f1f93af 2019-08-06 stsp diff_blob_file(struct got_diff_changes **changes,
156 4ce46740 2019-08-08 stsp struct got_blob_object *blob1, const char *label1, FILE *f2, size_t size2,
157 b72f483a 2019-02-05 stsp const char *label2, int diff_context, FILE *outfile)
158 b72f483a 2019-02-05 stsp {
159 b72f483a 2019-02-05 stsp struct got_diff_state ds;
160 b72f483a 2019-02-05 stsp struct got_diff_args args;
161 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
162 b72f483a 2019-02-05 stsp FILE *f1 = NULL;
163 b72f483a 2019-02-05 stsp char hex1[SHA1_DIGEST_STRING_LENGTH];
164 b72f483a 2019-02-05 stsp char *idstr1 = NULL;
165 b72f483a 2019-02-05 stsp size_t size1;
166 b72f483a 2019-02-05 stsp int res, flags = 0;
167 b72f483a 2019-02-05 stsp
168 7f1f93af 2019-08-06 stsp if (changes)
169 7f1f93af 2019-08-06 stsp *changes = NULL;
170 7f1f93af 2019-08-06 stsp
171 b72f483a 2019-02-05 stsp size1 = 0;
172 b72f483a 2019-02-05 stsp if (blob1) {
173 b72f483a 2019-02-05 stsp f1 = got_opentemp();
174 b72f483a 2019-02-05 stsp if (f1 == NULL)
175 638f9024 2019-05-13 stsp return got_error_from_errno("got_opentemp");
176 b72f483a 2019-02-05 stsp idstr1 = got_object_blob_id_str(blob1, hex1, sizeof(hex1));
177 6c4c42e0 2019-06-24 stsp err = got_object_blob_dump_to_file(&size1, NULL, NULL, f1,
178 6c4c42e0 2019-06-24 stsp blob1);
179 b72f483a 2019-02-05 stsp if (err)
180 b72f483a 2019-02-05 stsp goto done;
181 b72f483a 2019-02-05 stsp } else {
182 b72f483a 2019-02-05 stsp flags |= D_EMPTY1;
183 b72f483a 2019-02-05 stsp idstr1 = "/dev/null";
184 b72f483a 2019-02-05 stsp }
185 b72f483a 2019-02-05 stsp
186 b72f483a 2019-02-05 stsp if (f2 == NULL)
187 b72f483a 2019-02-05 stsp flags |= D_EMPTY2;
188 b72f483a 2019-02-05 stsp
189 b72f483a 2019-02-05 stsp memset(&ds, 0, sizeof(ds));
190 b72f483a 2019-02-05 stsp /* XXX should stat buffers be passed in args instead of ds? */
191 b72f483a 2019-02-05 stsp ds.stb1.st_mode = S_IFREG;
192 b72f483a 2019-02-05 stsp if (blob1)
193 b72f483a 2019-02-05 stsp ds.stb1.st_size = size1;
194 b72f483a 2019-02-05 stsp ds.stb1.st_mtime = 0; /* XXX */
195 b72f483a 2019-02-05 stsp
196 b72f483a 2019-02-05 stsp ds.stb2.st_mode = S_IFREG;
197 b72f483a 2019-02-05 stsp ds.stb2.st_size = size2;
198 b72f483a 2019-02-05 stsp ds.stb2.st_mtime = 0; /* XXX */
199 b72f483a 2019-02-05 stsp
200 b72f483a 2019-02-05 stsp memset(&args, 0, sizeof(args));
201 b72f483a 2019-02-05 stsp args.diff_format = D_UNIFIED;
202 b72f483a 2019-02-05 stsp args.label[0] = label2;
203 b72f483a 2019-02-05 stsp args.label[1] = label2;
204 b72f483a 2019-02-05 stsp args.diff_context = diff_context;
205 b72f483a 2019-02-05 stsp flags |= D_PROTOTYPE;
206 b72f483a 2019-02-05 stsp
207 7f1f93af 2019-08-06 stsp if (outfile) {
208 4ce46740 2019-08-08 stsp fprintf(outfile, "blob - %s\n", label1 ? label1 : idstr1);
209 7f1f93af 2019-08-06 stsp fprintf(outfile, "file + %s\n",
210 7f1f93af 2019-08-06 stsp f2 == NULL ? "/dev/null" : label2);
211 7f1f93af 2019-08-06 stsp }
212 7f1f93af 2019-08-06 stsp if (changes) {
213 7f1f93af 2019-08-06 stsp err = alloc_changes(changes);
214 7f1f93af 2019-08-06 stsp if (err)
215 7f1f93af 2019-08-06 stsp return err;
216 7f1f93af 2019-08-06 stsp }
217 7f1f93af 2019-08-06 stsp err = got_diffreg(&res, f1, f2, flags, &args, &ds, outfile,
218 7f1f93af 2019-08-06 stsp changes ? *changes : NULL);
219 dc424a06 2019-08-07 stsp got_diff_state_free(&ds);
220 b72f483a 2019-02-05 stsp done:
221 fb43ecf1 2019-02-11 stsp if (f1 && fclose(f1) != 0 && err == NULL)
222 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
223 b72f483a 2019-02-05 stsp return err;
224 7f1f93af 2019-08-06 stsp }
225 7f1f93af 2019-08-06 stsp
226 7f1f93af 2019-08-06 stsp const struct got_error *
227 4ce46740 2019-08-08 stsp got_diff_blob_file(struct got_blob_object *blob1, const char *label1,
228 4ce46740 2019-08-08 stsp FILE *f2, size_t size2, const char *label2, int diff_context,
229 4ce46740 2019-08-08 stsp FILE *outfile)
230 7f1f93af 2019-08-06 stsp {
231 4ce46740 2019-08-08 stsp return diff_blob_file(NULL, blob1, label1, f2, size2, label2,
232 4ce46740 2019-08-08 stsp diff_context, outfile);
233 4c9641fd 2019-08-21 stsp }
234 4c9641fd 2019-08-21 stsp
235 4c9641fd 2019-08-21 stsp const struct got_error *
236 4c9641fd 2019-08-21 stsp got_diff_blob_file_lines_changed(struct got_diff_changes **changes,
237 4c9641fd 2019-08-21 stsp struct got_blob_object *blob1, FILE *f2, size_t size2)
238 4c9641fd 2019-08-21 stsp {
239 4c9641fd 2019-08-21 stsp return diff_blob_file(changes, blob1, NULL, f2, size2, NULL,
240 4c9641fd 2019-08-21 stsp 0, NULL);
241 7f1f93af 2019-08-06 stsp }
242 7f1f93af 2019-08-06 stsp
243 7f1f93af 2019-08-06 stsp const struct got_error *
244 404c43c4 2018-06-21 stsp got_diff_blob_lines_changed(struct got_diff_changes **changes,
245 404c43c4 2018-06-21 stsp struct got_blob_object *blob1, struct got_blob_object *blob2)
246 404c43c4 2018-06-21 stsp {
247 404c43c4 2018-06-21 stsp const struct got_error *err = NULL;
248 404c43c4 2018-06-21 stsp
249 7f1f93af 2019-08-06 stsp err = alloc_changes(changes);
250 7f1f93af 2019-08-06 stsp if (err)
251 7f1f93af 2019-08-06 stsp return err;
252 404c43c4 2018-06-21 stsp
253 54156555 2018-12-24 stsp err = diff_blobs(blob1, blob2, NULL, NULL, 3, NULL, *changes);
254 404c43c4 2018-06-21 stsp if (err) {
255 404c43c4 2018-06-21 stsp got_diff_free_changes(*changes);
256 404c43c4 2018-06-21 stsp *changes = NULL;
257 404c43c4 2018-06-21 stsp }
258 404c43c4 2018-06-21 stsp return err;
259 404c43c4 2018-06-21 stsp }
260 404c43c4 2018-06-21 stsp
261 404c43c4 2018-06-21 stsp void
262 404c43c4 2018-06-21 stsp got_diff_free_changes(struct got_diff_changes *changes)
263 404c43c4 2018-06-21 stsp {
264 404c43c4 2018-06-21 stsp struct got_diff_change *change;
265 404c43c4 2018-06-21 stsp while (!SIMPLEQ_EMPTY(&changes->entries)) {
266 404c43c4 2018-06-21 stsp change = SIMPLEQ_FIRST(&changes->entries);
267 404c43c4 2018-06-21 stsp SIMPLEQ_REMOVE_HEAD(&changes->entries, entry);
268 404c43c4 2018-06-21 stsp free(change);
269 404c43c4 2018-06-21 stsp }
270 404c43c4 2018-06-21 stsp free(changes);
271 474b4f94 2017-11-30 stsp }
272 474b4f94 2017-11-30 stsp
273 474b4f94 2017-11-30 stsp static const struct got_error *
274 54156555 2018-12-24 stsp diff_added_blob(struct got_object_id *id, const char *label,
275 aaa13589 2019-06-01 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg)
276 474b4f94 2017-11-30 stsp {
277 4e22badc 2017-11-30 stsp const struct got_error *err;
278 2acfca77 2018-04-01 stsp struct got_blob_object *blob = NULL;
279 2acfca77 2018-04-01 stsp struct got_object *obj = NULL;
280 4e22badc 2017-11-30 stsp
281 4e22badc 2017-11-30 stsp err = got_object_open(&obj, repo, id);
282 4e22badc 2017-11-30 stsp if (err)
283 4e22badc 2017-11-30 stsp return err;
284 4e22badc 2017-11-30 stsp
285 2acfca77 2018-04-01 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
286 2acfca77 2018-04-01 stsp if (err)
287 2acfca77 2018-04-01 stsp goto done;
288 aaa13589 2019-06-01 stsp err = cb(cb_arg, NULL, blob, NULL, id, NULL, label, repo);
289 2acfca77 2018-04-01 stsp done:
290 2acfca77 2018-04-01 stsp got_object_close(obj);
291 2acfca77 2018-04-01 stsp if (blob)
292 2acfca77 2018-04-01 stsp got_object_blob_close(blob);
293 2acfca77 2018-04-01 stsp return err;
294 474b4f94 2017-11-30 stsp }
295 474b4f94 2017-11-30 stsp
296 474b4f94 2017-11-30 stsp static const struct got_error *
297 6a213ccb 2017-11-30 stsp diff_modified_blob(struct got_object_id *id1, struct got_object_id *id2,
298 aaa13589 2019-06-01 stsp const char *label1, const char *label2, struct got_repository *repo,
299 aaa13589 2019-06-01 stsp got_diff_blob_cb cb, void *cb_arg)
300 474b4f94 2017-11-30 stsp {
301 6a213ccb 2017-11-30 stsp const struct got_error *err;
302 6a213ccb 2017-11-30 stsp struct got_object *obj1 = NULL;
303 6a213ccb 2017-11-30 stsp struct got_object *obj2 = NULL;
304 6a213ccb 2017-11-30 stsp struct got_blob_object *blob1 = NULL;
305 6a213ccb 2017-11-30 stsp struct got_blob_object *blob2 = NULL;
306 6a213ccb 2017-11-30 stsp
307 6a213ccb 2017-11-30 stsp err = got_object_open(&obj1, repo, id1);
308 6a213ccb 2017-11-30 stsp if (err)
309 730a8aa0 2018-04-24 stsp return err;
310 15a94983 2018-12-23 stsp if (obj1->type != GOT_OBJ_TYPE_BLOB) {
311 6a213ccb 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
312 6a213ccb 2017-11-30 stsp goto done;
313 6a213ccb 2017-11-30 stsp }
314 6a213ccb 2017-11-30 stsp
315 6a213ccb 2017-11-30 stsp err = got_object_open(&obj2, repo, id2);
316 730a8aa0 2018-04-24 stsp if (err)
317 6a213ccb 2017-11-30 stsp goto done;
318 15a94983 2018-12-23 stsp if (obj2->type != GOT_OBJ_TYPE_BLOB) {
319 6a213ccb 2017-11-30 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
320 6a213ccb 2017-11-30 stsp goto done;
321 6a213ccb 2017-11-30 stsp }
322 6a213ccb 2017-11-30 stsp
323 c7020aea 2017-11-30 stsp err = got_object_blob_open(&blob1, repo, obj1, 8192);
324 2acfca77 2018-04-01 stsp if (err)
325 6a213ccb 2017-11-30 stsp goto done;
326 6a213ccb 2017-11-30 stsp
327 c7020aea 2017-11-30 stsp err = got_object_blob_open(&blob2, repo, obj2, 8192);
328 2acfca77 2018-04-01 stsp if (err)
329 6a213ccb 2017-11-30 stsp goto done;
330 6a213ccb 2017-11-30 stsp
331 aaa13589 2019-06-01 stsp err = cb(cb_arg, blob1, blob2, id1, id2, label1, label2, repo);
332 6a213ccb 2017-11-30 stsp done:
333 a3e2cbea 2017-12-01 stsp if (obj1)
334 a3e2cbea 2017-12-01 stsp got_object_close(obj1);
335 a3e2cbea 2017-12-01 stsp if (obj2)
336 a3e2cbea 2017-12-01 stsp got_object_close(obj2);
337 a3e2cbea 2017-12-01 stsp if (blob1)
338 a3e2cbea 2017-12-01 stsp got_object_blob_close(blob1);
339 a3e2cbea 2017-12-01 stsp if (blob2)
340 a3e2cbea 2017-12-01 stsp got_object_blob_close(blob2);
341 6a213ccb 2017-11-30 stsp return err;
342 474b4f94 2017-11-30 stsp }
343 474b4f94 2017-11-30 stsp
344 474b4f94 2017-11-30 stsp static const struct got_error *
345 f6861a81 2018-09-13 stsp diff_deleted_blob(struct got_object_id *id, const char *label,
346 aaa13589 2019-06-01 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg)
347 474b4f94 2017-11-30 stsp {
348 365fb436 2017-11-30 stsp const struct got_error *err;
349 2acfca77 2018-04-01 stsp struct got_blob_object *blob = NULL;
350 2acfca77 2018-04-01 stsp struct got_object *obj = NULL;
351 365fb436 2017-11-30 stsp
352 365fb436 2017-11-30 stsp err = got_object_open(&obj, repo, id);
353 365fb436 2017-11-30 stsp if (err)
354 365fb436 2017-11-30 stsp return err;
355 365fb436 2017-11-30 stsp
356 2acfca77 2018-04-01 stsp err = got_object_blob_open(&blob, repo, obj, 8192);
357 2acfca77 2018-04-01 stsp if (err)
358 2acfca77 2018-04-01 stsp goto done;
359 aaa13589 2019-06-01 stsp err = cb(cb_arg, blob, NULL, id, NULL, label, NULL, repo);
360 2acfca77 2018-04-01 stsp done:
361 2acfca77 2018-04-01 stsp got_object_close(obj);
362 2acfca77 2018-04-01 stsp if (blob)
363 2acfca77 2018-04-01 stsp got_object_blob_close(blob);
364 2acfca77 2018-04-01 stsp return err;
365 474b4f94 2017-11-30 stsp }
366 474b4f94 2017-11-30 stsp
367 474b4f94 2017-11-30 stsp static const struct got_error *
368 54156555 2018-12-24 stsp diff_added_tree(struct got_object_id *id, const char *label,
369 31b4484f 2019-07-27 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
370 31b4484f 2019-07-27 stsp int diff_content)
371 474b4f94 2017-11-30 stsp {
372 9c70d4c3 2017-11-30 stsp const struct got_error *err = NULL;
373 9c70d4c3 2017-11-30 stsp struct got_object *treeobj = NULL;
374 9c70d4c3 2017-11-30 stsp struct got_tree_object *tree = NULL;
375 9c70d4c3 2017-11-30 stsp
376 9c70d4c3 2017-11-30 stsp err = got_object_open(&treeobj, repo, id);
377 9c70d4c3 2017-11-30 stsp if (err)
378 9c70d4c3 2017-11-30 stsp goto done;
379 9c70d4c3 2017-11-30 stsp
380 15a94983 2018-12-23 stsp if (treeobj->type != GOT_OBJ_TYPE_TREE) {
381 9c70d4c3 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
382 9c70d4c3 2017-11-30 stsp goto done;
383 9c70d4c3 2017-11-30 stsp }
384 9c70d4c3 2017-11-30 stsp
385 9c70d4c3 2017-11-30 stsp err = got_object_tree_open(&tree, repo, treeobj);
386 9c70d4c3 2017-11-30 stsp if (err)
387 9c70d4c3 2017-11-30 stsp goto done;
388 9c70d4c3 2017-11-30 stsp
389 31b4484f 2019-07-27 stsp err = got_diff_tree(NULL, tree, NULL, label, repo, cb, cb_arg,
390 31b4484f 2019-07-27 stsp diff_content);
391 9c70d4c3 2017-11-30 stsp done:
392 9c70d4c3 2017-11-30 stsp if (tree)
393 9c70d4c3 2017-11-30 stsp got_object_tree_close(tree);
394 9c70d4c3 2017-11-30 stsp if (treeobj)
395 9c70d4c3 2017-11-30 stsp got_object_close(treeobj);
396 9c70d4c3 2017-11-30 stsp return err;
397 474b4f94 2017-11-30 stsp }
398 474b4f94 2017-11-30 stsp
399 474b4f94 2017-11-30 stsp static const struct got_error *
400 789689b5 2017-11-30 stsp diff_modified_tree(struct got_object_id *id1, struct got_object_id *id2,
401 aaa13589 2019-06-01 stsp const char *label1, const char *label2, struct got_repository *repo,
402 31b4484f 2019-07-27 stsp got_diff_blob_cb cb, void *cb_arg, int diff_content)
403 474b4f94 2017-11-30 stsp {
404 f6861a81 2018-09-13 stsp const struct got_error *err;
405 789689b5 2017-11-30 stsp struct got_object *treeobj1 = NULL;
406 789689b5 2017-11-30 stsp struct got_object *treeobj2 = NULL;
407 789689b5 2017-11-30 stsp struct got_tree_object *tree1 = NULL;
408 789689b5 2017-11-30 stsp struct got_tree_object *tree2 = NULL;
409 789689b5 2017-11-30 stsp
410 789689b5 2017-11-30 stsp err = got_object_open(&treeobj1, repo, id1);
411 789689b5 2017-11-30 stsp if (err)
412 789689b5 2017-11-30 stsp goto done;
413 789689b5 2017-11-30 stsp
414 15a94983 2018-12-23 stsp if (treeobj1->type != GOT_OBJ_TYPE_TREE) {
415 789689b5 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
416 789689b5 2017-11-30 stsp goto done;
417 789689b5 2017-11-30 stsp }
418 789689b5 2017-11-30 stsp
419 789689b5 2017-11-30 stsp err = got_object_open(&treeobj2, repo, id2);
420 789689b5 2017-11-30 stsp if (err)
421 789689b5 2017-11-30 stsp goto done;
422 789689b5 2017-11-30 stsp
423 15a94983 2018-12-23 stsp if (treeobj2->type != GOT_OBJ_TYPE_TREE) {
424 789689b5 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
425 789689b5 2017-11-30 stsp goto done;
426 789689b5 2017-11-30 stsp }
427 789689b5 2017-11-30 stsp
428 789689b5 2017-11-30 stsp err = got_object_tree_open(&tree1, repo, treeobj1);
429 789689b5 2017-11-30 stsp if (err)
430 789689b5 2017-11-30 stsp goto done;
431 789689b5 2017-11-30 stsp
432 789689b5 2017-11-30 stsp err = got_object_tree_open(&tree2, repo, treeobj2);
433 789689b5 2017-11-30 stsp if (err)
434 789689b5 2017-11-30 stsp goto done;
435 789689b5 2017-11-30 stsp
436 31b4484f 2019-07-27 stsp err = got_diff_tree(tree1, tree2, label1, label2, repo, cb, cb_arg,
437 31b4484f 2019-07-27 stsp diff_content);
438 789689b5 2017-11-30 stsp
439 789689b5 2017-11-30 stsp done:
440 789689b5 2017-11-30 stsp if (tree1)
441 789689b5 2017-11-30 stsp got_object_tree_close(tree1);
442 789689b5 2017-11-30 stsp if (tree2)
443 789689b5 2017-11-30 stsp got_object_tree_close(tree2);
444 789689b5 2017-11-30 stsp if (treeobj1)
445 789689b5 2017-11-30 stsp got_object_close(treeobj1);
446 789689b5 2017-11-30 stsp if (treeobj2)
447 789689b5 2017-11-30 stsp got_object_close(treeobj2);
448 789689b5 2017-11-30 stsp return err;
449 474b4f94 2017-11-30 stsp }
450 474b4f94 2017-11-30 stsp
451 474b4f94 2017-11-30 stsp static const struct got_error *
452 54156555 2018-12-24 stsp diff_deleted_tree(struct got_object_id *id, const char *label,
453 31b4484f 2019-07-27 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
454 31b4484f 2019-07-27 stsp int diff_content)
455 474b4f94 2017-11-30 stsp {
456 f6861a81 2018-09-13 stsp const struct got_error *err;
457 2c56f2ce 2017-11-30 stsp struct got_object *treeobj = NULL;
458 2c56f2ce 2017-11-30 stsp struct got_tree_object *tree = NULL;
459 2c56f2ce 2017-11-30 stsp
460 2c56f2ce 2017-11-30 stsp err = got_object_open(&treeobj, repo, id);
461 2c56f2ce 2017-11-30 stsp if (err)
462 2c56f2ce 2017-11-30 stsp goto done;
463 2c56f2ce 2017-11-30 stsp
464 15a94983 2018-12-23 stsp if (treeobj->type != GOT_OBJ_TYPE_TREE) {
465 2c56f2ce 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
466 2c56f2ce 2017-11-30 stsp goto done;
467 2c56f2ce 2017-11-30 stsp }
468 2c56f2ce 2017-11-30 stsp
469 2c56f2ce 2017-11-30 stsp err = got_object_tree_open(&tree, repo, treeobj);
470 2c56f2ce 2017-11-30 stsp if (err)
471 2c56f2ce 2017-11-30 stsp goto done;
472 2c56f2ce 2017-11-30 stsp
473 31b4484f 2019-07-27 stsp err = got_diff_tree(tree, NULL, label, NULL, repo, cb, cb_arg,
474 31b4484f 2019-07-27 stsp diff_content);
475 2c56f2ce 2017-11-30 stsp done:
476 2c56f2ce 2017-11-30 stsp if (tree)
477 2c56f2ce 2017-11-30 stsp got_object_tree_close(tree);
478 2c56f2ce 2017-11-30 stsp if (treeobj)
479 2c56f2ce 2017-11-30 stsp got_object_close(treeobj);
480 2c56f2ce 2017-11-30 stsp return err;
481 474b4f94 2017-11-30 stsp }
482 474b4f94 2017-11-30 stsp
483 474b4f94 2017-11-30 stsp static const struct got_error *
484 74671950 2018-02-11 stsp diff_kind_mismatch(struct got_object_id *id1, struct got_object_id *id2,
485 aaa13589 2019-06-01 stsp const char *label1, const char *label2, struct got_repository *repo,
486 aaa13589 2019-06-01 stsp got_diff_blob_cb cb, void *cb_arg)
487 474b4f94 2017-11-30 stsp {
488 013404a9 2017-11-30 stsp /* XXX TODO */
489 474b4f94 2017-11-30 stsp return NULL;
490 474b4f94 2017-11-30 stsp }
491 474b4f94 2017-11-30 stsp
492 474b4f94 2017-11-30 stsp static const struct got_error *
493 1de5e065 2019-06-01 stsp diff_entry_old_new(const struct got_tree_entry *te1,
494 1de5e065 2019-06-01 stsp const struct got_tree_entry *te2, const char *label1, const char *label2,
495 31b4484f 2019-07-27 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
496 31b4484f 2019-07-27 stsp int diff_content)
497 474b4f94 2017-11-30 stsp {
498 f6861a81 2018-09-13 stsp const struct got_error *err = NULL;
499 19ae6da1 2018-11-05 stsp int id_match;
500 63c5ca5d 2019-08-24 stsp
501 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te1))
502 63c5ca5d 2019-08-24 stsp return NULL;
503 474b4f94 2017-11-30 stsp
504 474b4f94 2017-11-30 stsp if (te2 == NULL) {
505 474b4f94 2017-11-30 stsp if (S_ISDIR(te1->mode))
506 aaa13589 2019-06-01 stsp err = diff_deleted_tree(te1->id, label1, repo,
507 31b4484f 2019-07-27 stsp cb, cb_arg, diff_content);
508 31b4484f 2019-07-27 stsp else {
509 31b4484f 2019-07-27 stsp if (diff_content)
510 31b4484f 2019-07-27 stsp err = diff_deleted_blob(te1->id, label1, repo,
511 31b4484f 2019-07-27 stsp cb, cb_arg);
512 31b4484f 2019-07-27 stsp else
513 31b4484f 2019-07-27 stsp err = cb(cb_arg, NULL, NULL, te1->id, NULL,
514 31b4484f 2019-07-27 stsp label1, NULL, repo);
515 31b4484f 2019-07-27 stsp }
516 f6861a81 2018-09-13 stsp return err;
517 63c5ca5d 2019-08-24 stsp } else if (got_object_tree_entry_is_submodule(te2))
518 63c5ca5d 2019-08-24 stsp return NULL;
519 474b4f94 2017-11-30 stsp
520 19ae6da1 2018-11-05 stsp id_match = (got_object_id_cmp(te1->id, te2->id) == 0);
521 4209f790 2017-11-30 stsp if (S_ISDIR(te1->mode) && S_ISDIR(te2->mode)) {
522 19ae6da1 2018-11-05 stsp if (!id_match)
523 f6861a81 2018-09-13 stsp return diff_modified_tree(te1->id, te2->id,
524 31b4484f 2019-07-27 stsp label1, label2, repo, cb, cb_arg, diff_content);
525 4209f790 2017-11-30 stsp } else if (S_ISREG(te1->mode) && S_ISREG(te2->mode)) {
526 31b4484f 2019-07-27 stsp if (!id_match) {
527 31b4484f 2019-07-27 stsp if (diff_content)
528 31b4484f 2019-07-27 stsp return diff_modified_blob(te1->id, te2->id,
529 31b4484f 2019-07-27 stsp label1, label2, repo, cb, cb_arg);
530 31b4484f 2019-07-27 stsp else
531 31b4484f 2019-07-27 stsp return cb(cb_arg, NULL, NULL, te1->id,
532 31b4484f 2019-07-27 stsp te2->id, label1, label2, repo);
533 31b4484f 2019-07-27 stsp }
534 413ea19d 2017-11-30 stsp }
535 474b4f94 2017-11-30 stsp
536 19ae6da1 2018-11-05 stsp if (id_match)
537 f6861a81 2018-09-13 stsp return NULL;
538 f6861a81 2018-09-13 stsp
539 aaa13589 2019-06-01 stsp return diff_kind_mismatch(te1->id, te2->id, label1, label2, repo,
540 aaa13589 2019-06-01 stsp cb, cb_arg);
541 474b4f94 2017-11-30 stsp }
542 474b4f94 2017-11-30 stsp
543 474b4f94 2017-11-30 stsp static const struct got_error *
544 1de5e065 2019-06-01 stsp diff_entry_new_old(const struct got_tree_entry *te2,
545 aaa13589 2019-06-01 stsp const struct got_tree_entry *te1, const char *label2,
546 31b4484f 2019-07-27 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
547 31b4484f 2019-07-27 stsp int diff_content)
548 474b4f94 2017-11-30 stsp {
549 f6861a81 2018-09-13 stsp if (te1 != NULL) /* handled by diff_entry_old_new() */
550 63c5ca5d 2019-08-24 stsp return NULL;
551 63c5ca5d 2019-08-24 stsp
552 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te2))
553 f6861a81 2018-09-13 stsp return NULL;
554 474b4f94 2017-11-30 stsp
555 474b4f94 2017-11-30 stsp if (S_ISDIR(te2->mode))
556 31b4484f 2019-07-27 stsp return diff_added_tree(te2->id, label2, repo, cb, cb_arg,
557 31b4484f 2019-07-27 stsp diff_content);
558 f6861a81 2018-09-13 stsp
559 31b4484f 2019-07-27 stsp if (diff_content)
560 31b4484f 2019-07-27 stsp return diff_added_blob(te2->id, label2, repo, cb, cb_arg);
561 31b4484f 2019-07-27 stsp
562 31b4484f 2019-07-27 stsp return cb(cb_arg, NULL, NULL, NULL, te2->id, NULL, label2, repo);
563 474b4f94 2017-11-30 stsp }
564 474b4f94 2017-11-30 stsp
565 474b4f94 2017-11-30 stsp const struct got_error *
566 474b4f94 2017-11-30 stsp got_diff_tree(struct got_tree_object *tree1, struct got_tree_object *tree2,
567 aaa13589 2019-06-01 stsp const char *label1, const char *label2, struct got_repository *repo,
568 31b4484f 2019-07-27 stsp got_diff_blob_cb cb, void *cb_arg, int diff_content)
569 474b4f94 2017-11-30 stsp {
570 474b4f94 2017-11-30 stsp const struct got_error *err = NULL;
571 789689b5 2017-11-30 stsp struct got_tree_entry *te1 = NULL;
572 789689b5 2017-11-30 stsp struct got_tree_entry *te2 = NULL;
573 f6861a81 2018-09-13 stsp char *l1 = NULL, *l2 = NULL;
574 474b4f94 2017-11-30 stsp
575 883f0469 2018-06-23 stsp if (tree1) {
576 883f0469 2018-06-23 stsp const struct got_tree_entries *entries;
577 883f0469 2018-06-23 stsp entries = got_object_tree_get_entries(tree1);
578 883f0469 2018-06-23 stsp te1 = SIMPLEQ_FIRST(&entries->head);
579 60f50a58 2018-09-15 stsp if (te1 && asprintf(&l1, "%s%s%s", label1, label1[0] ? "/" : "",
580 f6861a81 2018-09-13 stsp te1->name) == -1)
581 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
582 883f0469 2018-06-23 stsp }
583 883f0469 2018-06-23 stsp if (tree2) {
584 883f0469 2018-06-23 stsp const struct got_tree_entries *entries;
585 883f0469 2018-06-23 stsp entries = got_object_tree_get_entries(tree2);
586 883f0469 2018-06-23 stsp te2 = SIMPLEQ_FIRST(&entries->head);
587 60f50a58 2018-09-15 stsp if (te2 && asprintf(&l2, "%s%s%s", label2, label2[0] ? "/" : "",
588 f6861a81 2018-09-13 stsp te2->name) == -1)
589 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
590 883f0469 2018-06-23 stsp }
591 474b4f94 2017-11-30 stsp
592 474b4f94 2017-11-30 stsp do {
593 474b4f94 2017-11-30 stsp if (te1) {
594 1de5e065 2019-06-01 stsp const struct got_tree_entry *te = NULL;
595 f6861a81 2018-09-13 stsp if (tree2)
596 1de5e065 2019-06-01 stsp te = got_object_tree_find_entry(tree2,
597 1de5e065 2019-06-01 stsp te1->name);
598 f6861a81 2018-09-13 stsp if (te) {
599 f6861a81 2018-09-13 stsp free(l2);
600 f6861a81 2018-09-13 stsp l2 = NULL;
601 f6861a81 2018-09-13 stsp if (te && asprintf(&l2, "%s%s%s", label2,
602 f6861a81 2018-09-13 stsp label2[0] ? "/" : "", te->name) == -1)
603 230a42bd 2019-05-11 jcs return
604 638f9024 2019-05-13 stsp got_error_from_errno("asprintf");
605 f6861a81 2018-09-13 stsp }
606 aaa13589 2019-06-01 stsp err = diff_entry_old_new(te1, te, l1, l2, repo, cb,
607 31b4484f 2019-07-27 stsp cb_arg, diff_content);
608 474b4f94 2017-11-30 stsp if (err)
609 474b4f94 2017-11-30 stsp break;
610 474b4f94 2017-11-30 stsp }
611 474b4f94 2017-11-30 stsp
612 474b4f94 2017-11-30 stsp if (te2) {
613 1de5e065 2019-06-01 stsp const struct got_tree_entry *te = NULL;
614 f6861a81 2018-09-13 stsp if (tree1)
615 1de5e065 2019-06-01 stsp te = got_object_tree_find_entry(tree1,
616 1de5e065 2019-06-01 stsp te2->name);
617 d6ce02f1 2018-11-17 stsp free(l2);
618 d6ce02f1 2018-11-17 stsp if (te) {
619 d6ce02f1 2018-11-17 stsp if (asprintf(&l2, "%s%s%s", label2,
620 d6ce02f1 2018-11-17 stsp label2[0] ? "/" : "", te->name) == -1)
621 230a42bd 2019-05-11 jcs return
622 638f9024 2019-05-13 stsp got_error_from_errno("asprintf");
623 d6ce02f1 2018-11-17 stsp } else {
624 d6ce02f1 2018-11-17 stsp if (asprintf(&l2, "%s%s%s", label2,
625 d6ce02f1 2018-11-17 stsp label2[0] ? "/" : "", te2->name) == -1)
626 230a42bd 2019-05-11 jcs return
627 638f9024 2019-05-13 stsp got_error_from_errno("asprintf");
628 d6ce02f1 2018-11-17 stsp }
629 31b4484f 2019-07-27 stsp err = diff_entry_new_old(te2, te, l2, repo,
630 31b4484f 2019-07-27 stsp cb, cb_arg, diff_content);
631 474b4f94 2017-11-30 stsp if (err)
632 474b4f94 2017-11-30 stsp break;
633 474b4f94 2017-11-30 stsp }
634 474b4f94 2017-11-30 stsp
635 f6861a81 2018-09-13 stsp free(l1);
636 f6861a81 2018-09-13 stsp l1 = NULL;
637 f6861a81 2018-09-13 stsp if (te1) {
638 474b4f94 2017-11-30 stsp te1 = SIMPLEQ_NEXT(te1, entry);
639 f6861a81 2018-09-13 stsp if (te1 &&
640 f6861a81 2018-09-13 stsp asprintf(&l1, "%s%s%s", label1,
641 f6861a81 2018-09-13 stsp label1[0] ? "/" : "", te1->name) == -1)
642 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
643 f6861a81 2018-09-13 stsp }
644 f6861a81 2018-09-13 stsp free(l2);
645 f6861a81 2018-09-13 stsp l2 = NULL;
646 f6861a81 2018-09-13 stsp if (te2) {
647 474b4f94 2017-11-30 stsp te2 = SIMPLEQ_NEXT(te2, entry);
648 f6861a81 2018-09-13 stsp if (te2 &&
649 f6861a81 2018-09-13 stsp asprintf(&l2, "%s%s%s", label2,
650 f6861a81 2018-09-13 stsp label2[0] ? "/" : "", te2->name) == -1)
651 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
652 f6861a81 2018-09-13 stsp }
653 474b4f94 2017-11-30 stsp } while (te1 || te2);
654 11528a82 2018-05-19 stsp
655 11528a82 2018-05-19 stsp return err;
656 11528a82 2018-05-19 stsp }
657 11528a82 2018-05-19 stsp
658 11528a82 2018-05-19 stsp const struct got_error *
659 15a94983 2018-12-23 stsp got_diff_objects_as_blobs(struct got_object_id *id1, struct got_object_id *id2,
660 54156555 2018-12-24 stsp const char *label1, const char *label2, int diff_context,
661 54156555 2018-12-24 stsp struct got_repository *repo, FILE *outfile)
662 11528a82 2018-05-19 stsp {
663 11528a82 2018-05-19 stsp const struct got_error *err;
664 11528a82 2018-05-19 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
665 b74c7625 2018-05-20 stsp
666 15a94983 2018-12-23 stsp if (id1 == NULL && id2 == NULL)
667 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
668 11528a82 2018-05-19 stsp
669 15a94983 2018-12-23 stsp if (id1) {
670 15a94983 2018-12-23 stsp err = got_object_open_as_blob(&blob1, repo, id1, 8192);
671 cd0acaa7 2018-05-20 stsp if (err)
672 cd0acaa7 2018-05-20 stsp goto done;
673 cd0acaa7 2018-05-20 stsp }
674 15a94983 2018-12-23 stsp if (id2) {
675 15a94983 2018-12-23 stsp err = got_object_open_as_blob(&blob2, repo, id2, 8192);
676 cd0acaa7 2018-05-20 stsp if (err)
677 cd0acaa7 2018-05-20 stsp goto done;
678 cd0acaa7 2018-05-20 stsp }
679 54156555 2018-12-24 stsp err = got_diff_blob(blob1, blob2, label1, label2, diff_context,
680 54156555 2018-12-24 stsp outfile);
681 11528a82 2018-05-19 stsp done:
682 11528a82 2018-05-19 stsp if (blob1)
683 11528a82 2018-05-19 stsp got_object_blob_close(blob1);
684 11528a82 2018-05-19 stsp if (blob2)
685 11528a82 2018-05-19 stsp got_object_blob_close(blob2);
686 474b4f94 2017-11-30 stsp return err;
687 474b4f94 2017-11-30 stsp }
688 11528a82 2018-05-19 stsp
689 11528a82 2018-05-19 stsp const struct got_error *
690 15a94983 2018-12-23 stsp got_diff_objects_as_trees(struct got_object_id *id1, struct got_object_id *id2,
691 54156555 2018-12-24 stsp char *label1, char *label2, int diff_context, struct got_repository *repo,
692 54156555 2018-12-24 stsp FILE *outfile)
693 11528a82 2018-05-19 stsp {
694 11528a82 2018-05-19 stsp const struct got_error *err;
695 11528a82 2018-05-19 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
696 aaa13589 2019-06-01 stsp struct got_diff_blob_output_unidiff_arg arg;
697 11528a82 2018-05-19 stsp
698 15a94983 2018-12-23 stsp if (id1 == NULL && id2 == NULL)
699 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
700 b74c7625 2018-05-20 stsp
701 15a94983 2018-12-23 stsp if (id1) {
702 15a94983 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo, id1);
703 cd0acaa7 2018-05-20 stsp if (err)
704 cd0acaa7 2018-05-20 stsp goto done;
705 cd0acaa7 2018-05-20 stsp }
706 15a94983 2018-12-23 stsp if (id2) {
707 15a94983 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo, id2);
708 cd0acaa7 2018-05-20 stsp if (err)
709 cd0acaa7 2018-05-20 stsp goto done;
710 cd0acaa7 2018-05-20 stsp }
711 aaa13589 2019-06-01 stsp arg.diff_context = diff_context;
712 aaa13589 2019-06-01 stsp arg.outfile = outfile;
713 aaa13589 2019-06-01 stsp err = got_diff_tree(tree1, tree2, label1, label2, repo,
714 31b4484f 2019-07-27 stsp got_diff_blob_output_unidiff, &arg, 1);
715 11528a82 2018-05-19 stsp done:
716 11528a82 2018-05-19 stsp if (tree1)
717 11528a82 2018-05-19 stsp got_object_tree_close(tree1);
718 11528a82 2018-05-19 stsp if (tree2)
719 11528a82 2018-05-19 stsp got_object_tree_close(tree2);
720 11528a82 2018-05-19 stsp return err;
721 11528a82 2018-05-19 stsp }
722 11528a82 2018-05-19 stsp
723 11528a82 2018-05-19 stsp const struct got_error *
724 15a94983 2018-12-23 stsp got_diff_objects_as_commits(struct got_object_id *id1,
725 15a94983 2018-12-23 stsp struct got_object_id *id2, int diff_context,
726 15a94983 2018-12-23 stsp struct got_repository *repo, FILE *outfile)
727 11528a82 2018-05-19 stsp {
728 11528a82 2018-05-19 stsp const struct got_error *err;
729 11528a82 2018-05-19 stsp struct got_commit_object *commit1 = NULL, *commit2 = NULL;
730 11528a82 2018-05-19 stsp
731 15a94983 2018-12-23 stsp if (id2 == NULL)
732 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
733 b74c7625 2018-05-20 stsp
734 15a94983 2018-12-23 stsp if (id1) {
735 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit1, repo, id1);
736 cd0acaa7 2018-05-20 stsp if (err)
737 cd0acaa7 2018-05-20 stsp goto done;
738 cd0acaa7 2018-05-20 stsp }
739 bacc9935 2018-05-20 stsp
740 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, repo, id2);
741 9b697879 2018-05-20 stsp if (err)
742 9b697879 2018-05-20 stsp goto done;
743 9b697879 2018-05-20 stsp
744 15a94983 2018-12-23 stsp err = got_diff_objects_as_trees(
745 15a94983 2018-12-23 stsp commit1 ? got_object_commit_get_tree_id(commit1) : NULL,
746 54156555 2018-12-24 stsp got_object_commit_get_tree_id(commit2), "", "", diff_context, repo,
747 54156555 2018-12-24 stsp outfile);
748 11528a82 2018-05-19 stsp done:
749 11528a82 2018-05-19 stsp if (commit1)
750 11528a82 2018-05-19 stsp got_object_commit_close(commit1);
751 11528a82 2018-05-19 stsp if (commit2)
752 11528a82 2018-05-19 stsp got_object_commit_close(commit2);
753 11528a82 2018-05-19 stsp return err;
754 11528a82 2018-05-19 stsp }
755 dc424a06 2019-08-07 stsp
756 dc424a06 2019-08-07 stsp const struct got_error *
757 dc424a06 2019-08-07 stsp got_diff_files(struct got_diff_changes **changes,
758 dc424a06 2019-08-07 stsp struct got_diff_state **ds,
759 dc424a06 2019-08-07 stsp struct got_diff_args **args,
760 dc424a06 2019-08-07 stsp int *flags,
761 dc424a06 2019-08-07 stsp FILE *f1, size_t size1, const char *label1,
762 dc424a06 2019-08-07 stsp FILE *f2, size_t size2, const char *label2,
763 dc424a06 2019-08-07 stsp int diff_context, FILE *outfile)
764 dc424a06 2019-08-07 stsp {
765 dc424a06 2019-08-07 stsp const struct got_error *err = NULL;
766 dc424a06 2019-08-07 stsp int res;
767 dc424a06 2019-08-07 stsp
768 dc424a06 2019-08-07 stsp *flags = 0;
769 dc424a06 2019-08-07 stsp *ds = calloc(1, sizeof(**ds));
770 dc424a06 2019-08-07 stsp if (*ds == NULL)
771 dc424a06 2019-08-07 stsp return got_error_from_errno("calloc");
772 dc424a06 2019-08-07 stsp *args = calloc(1, sizeof(**args));
773 dc424a06 2019-08-07 stsp if (*args == NULL) {
774 dc424a06 2019-08-07 stsp err = got_error_from_errno("calloc");
775 dc424a06 2019-08-07 stsp goto done;
776 dc424a06 2019-08-07 stsp }
777 dc424a06 2019-08-07 stsp
778 dc424a06 2019-08-07 stsp if (changes)
779 dc424a06 2019-08-07 stsp *changes = NULL;
780 dc424a06 2019-08-07 stsp
781 dc424a06 2019-08-07 stsp if (f1 == NULL)
782 dc424a06 2019-08-07 stsp *flags |= D_EMPTY1;
783 dc424a06 2019-08-07 stsp
784 dc424a06 2019-08-07 stsp if (f2 == NULL)
785 dc424a06 2019-08-07 stsp *flags |= D_EMPTY2;
786 dc424a06 2019-08-07 stsp
787 dc424a06 2019-08-07 stsp /* XXX should stat buffers be passed in args instead of ds? */
788 dc424a06 2019-08-07 stsp (*ds)->stb1.st_mode = S_IFREG;
789 dc424a06 2019-08-07 stsp (*ds)->stb1.st_size = size1;
790 dc424a06 2019-08-07 stsp (*ds)->stb1.st_mtime = 0; /* XXX */
791 dc424a06 2019-08-07 stsp
792 dc424a06 2019-08-07 stsp (*ds)->stb2.st_mode = S_IFREG;
793 dc424a06 2019-08-07 stsp (*ds)->stb2.st_size = size2;
794 dc424a06 2019-08-07 stsp (*ds)->stb2.st_mtime = 0; /* XXX */
795 dc424a06 2019-08-07 stsp
796 dc424a06 2019-08-07 stsp (*args)->diff_format = D_UNIFIED;
797 dc424a06 2019-08-07 stsp (*args)->label[0] = label1;
798 dc424a06 2019-08-07 stsp (*args)->label[1] = label2;
799 dc424a06 2019-08-07 stsp (*args)->diff_context = diff_context;
800 dc424a06 2019-08-07 stsp *flags |= D_PROTOTYPE;
801 dc424a06 2019-08-07 stsp
802 dc424a06 2019-08-07 stsp if (outfile) {
803 dc424a06 2019-08-07 stsp fprintf(outfile, "file - %s\n",
804 dc424a06 2019-08-07 stsp f1 == NULL ? "/dev/null" : label1);
805 dc424a06 2019-08-07 stsp fprintf(outfile, "file + %s\n",
806 dc424a06 2019-08-07 stsp f2 == NULL ? "/dev/null" : label2);
807 dc424a06 2019-08-07 stsp }
808 dc424a06 2019-08-07 stsp if (changes) {
809 dc424a06 2019-08-07 stsp err = alloc_changes(changes);
810 dc424a06 2019-08-07 stsp if (err)
811 dc424a06 2019-08-07 stsp goto done;
812 dc424a06 2019-08-07 stsp }
813 dc424a06 2019-08-07 stsp err = got_diffreg(&res, f1, f2, *flags, *args, *ds, outfile,
814 dc424a06 2019-08-07 stsp changes ? *changes : NULL);
815 dc424a06 2019-08-07 stsp done:
816 dc424a06 2019-08-07 stsp if (err) {
817 dc424a06 2019-08-07 stsp if (*ds) {
818 dc424a06 2019-08-07 stsp got_diff_state_free(*ds);
819 dc424a06 2019-08-07 stsp free(*ds);
820 dc424a06 2019-08-07 stsp *ds = NULL;
821 dc424a06 2019-08-07 stsp }
822 dc424a06 2019-08-07 stsp if (*args) {
823 dc424a06 2019-08-07 stsp free(*args);
824 dc424a06 2019-08-07 stsp *args = NULL;
825 dc424a06 2019-08-07 stsp }
826 dc424a06 2019-08-07 stsp if (changes) {
827 dc424a06 2019-08-07 stsp if (*changes)
828 dc424a06 2019-08-07 stsp got_diff_free_changes(*changes);
829 dc424a06 2019-08-07 stsp *changes = NULL;
830 dc424a06 2019-08-07 stsp }
831 dc424a06 2019-08-07 stsp }
832 dc424a06 2019-08-07 stsp return err;
833 dc424a06 2019-08-07 stsp }