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 5822e79e 2023-02-23 op #include <sha2.h>
26 7d283eee 2017-11-29 stsp #include <zlib.h>
27 7d283eee 2017-11-29 stsp
28 7d283eee 2017-11-29 stsp #include "got_object.h"
29 e09a504c 2019-06-28 stsp #include "got_repository.h"
30 7d283eee 2017-11-29 stsp #include "got_error.h"
31 789689b5 2017-11-30 stsp #include "got_diff.h"
32 324d37e7 2019-05-11 stsp #include "got_path.h"
33 0208f208 2020-05-05 stsp #include "got_cancel.h"
34 0208f208 2020-05-05 stsp #include "got_worktree.h"
35 a558dd1b 2022-06-08 stsp #include "got_opentemp.h"
36 7d283eee 2017-11-29 stsp
37 718b3ab0 2018-03-17 stsp #include "got_lib_diff.h"
38 15a94983 2018-12-23 stsp #include "got_lib_delta.h"
39 15a94983 2018-12-23 stsp #include "got_lib_inflate.h"
40 15a94983 2018-12-23 stsp #include "got_lib_object.h"
41 5191b70b 2023-01-07 mark
42 5191b70b 2023-01-07 mark #ifndef MAX
43 5191b70b 2023-01-07 mark #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
44 5191b70b 2023-01-07 mark #endif
45 a7852263 2017-11-30 stsp
46 404c43c4 2018-06-21 stsp static const struct got_error *
47 c7d5c43c 2022-08-04 mark add_line_metadata(struct got_diff_line **lines, size_t *nlines,
48 c7d5c43c 2022-08-04 mark off_t off, uint8_t type)
49 fe621944 2020-11-10 stsp {
50 c7d5c43c 2022-08-04 mark struct got_diff_line *p;
51 fe621944 2020-11-10 stsp
52 c7d5c43c 2022-08-04 mark p = reallocarray(*lines, *nlines + 1, sizeof(**lines));
53 fe621944 2020-11-10 stsp if (p == NULL)
54 fe621944 2020-11-10 stsp return got_error_from_errno("reallocarray");
55 c7d5c43c 2022-08-04 mark *lines = p;
56 c7d5c43c 2022-08-04 mark (*lines)[*nlines].offset = off;
57 c7d5c43c 2022-08-04 mark (*lines)[*nlines].type = type;
58 fe621944 2020-11-10 stsp (*nlines)++;
59 c7d5c43c 2022-08-04 mark
60 fe621944 2020-11-10 stsp return NULL;
61 fe621944 2020-11-10 stsp }
62 fe621944 2020-11-10 stsp
63 a76e88e5 2023-01-10 mark static void
64 a76e88e5 2023-01-10 mark diffstat_field_width(size_t *maxlen, int *add_cols, int *rm_cols, size_t len,
65 a76e88e5 2023-01-10 mark uint32_t add, uint32_t rm)
66 a76e88e5 2023-01-10 mark {
67 a76e88e5 2023-01-10 mark int d1 = 1, d2 = 1;
68 a76e88e5 2023-01-10 mark
69 a76e88e5 2023-01-10 mark if (maxlen)
70 a76e88e5 2023-01-10 mark *maxlen = MAX(*maxlen, len);
71 a76e88e5 2023-01-10 mark
72 a76e88e5 2023-01-10 mark while (add /= 10)
73 a76e88e5 2023-01-10 mark ++d1;
74 a76e88e5 2023-01-10 mark *add_cols = MAX(*add_cols, d1);
75 a76e88e5 2023-01-10 mark
76 a76e88e5 2023-01-10 mark while (rm /= 10)
77 a76e88e5 2023-01-10 mark ++d2;
78 a76e88e5 2023-01-10 mark *rm_cols = MAX(*rm_cols, d2);
79 a76e88e5 2023-01-10 mark }
80 a76e88e5 2023-01-10 mark
81 fe621944 2020-11-10 stsp static const struct got_error *
82 a76e88e5 2023-01-10 mark get_diffstat(struct got_diffstat_cb_arg *ds, const char *path,
83 a76e88e5 2023-01-10 mark struct diff_result *r, int force_text, int status)
84 a76e88e5 2023-01-10 mark {
85 a76e88e5 2023-01-10 mark const struct got_error *err;
86 a76e88e5 2023-01-10 mark struct got_pathlist_entry *pe;
87 a76e88e5 2023-01-10 mark struct got_diff_changed_path *change = NULL;
88 a76e88e5 2023-01-10 mark int flags = (r->left->atomizer_flags | r->right->atomizer_flags);
89 a76e88e5 2023-01-10 mark int isbin = (flags & DIFF_ATOMIZER_FOUND_BINARY_DATA);
90 a76e88e5 2023-01-10 mark int i;
91 a76e88e5 2023-01-10 mark
92 a76e88e5 2023-01-10 mark change = calloc(1, sizeof(*change));
93 a76e88e5 2023-01-10 mark if (change == NULL)
94 6b37f13a 2023-01-10 mark return got_error_from_errno("calloc");
95 a76e88e5 2023-01-10 mark
96 a76e88e5 2023-01-10 mark if (!isbin || force_text) {
97 a76e88e5 2023-01-10 mark for (i = 0; i < r->chunks.len; ++i) {
98 a76e88e5 2023-01-10 mark struct diff_chunk *c;
99 a76e88e5 2023-01-10 mark int clc, crc;
100 a76e88e5 2023-01-10 mark
101 a76e88e5 2023-01-10 mark c = diff_chunk_get(r, i);
102 a76e88e5 2023-01-10 mark clc = diff_chunk_get_left_count(c);
103 a76e88e5 2023-01-10 mark crc = diff_chunk_get_right_count(c);
104 a76e88e5 2023-01-10 mark
105 a76e88e5 2023-01-10 mark if (crc && !clc)
106 a76e88e5 2023-01-10 mark change->add += crc;
107 a76e88e5 2023-01-10 mark if (clc && !crc)
108 a76e88e5 2023-01-10 mark change->rm += clc;
109 a76e88e5 2023-01-10 mark }
110 a76e88e5 2023-01-10 mark }
111 a76e88e5 2023-01-10 mark
112 a76e88e5 2023-01-10 mark change->status = status;
113 a76e88e5 2023-01-10 mark ds->ins += change->add;
114 a76e88e5 2023-01-10 mark ds->del += change->rm;
115 a76e88e5 2023-01-10 mark ++ds->nfiles;
116 a76e88e5 2023-01-10 mark
117 a76e88e5 2023-01-10 mark err = got_pathlist_append(ds->paths, path, change);
118 5fa52d6c 2023-01-11 mark if (err) {
119 5fa52d6c 2023-01-11 mark free(change);
120 a76e88e5 2023-01-10 mark return err;
121 5fa52d6c 2023-01-11 mark }
122 a76e88e5 2023-01-10 mark
123 a76e88e5 2023-01-10 mark pe = TAILQ_LAST(ds->paths, got_pathlist_head);
124 a76e88e5 2023-01-10 mark diffstat_field_width(&ds->max_path_len, &ds->add_cols, &ds->rm_cols,
125 a76e88e5 2023-01-10 mark pe->path_len, change->add, change->rm);
126 a76e88e5 2023-01-10 mark
127 a76e88e5 2023-01-10 mark return NULL;
128 a76e88e5 2023-01-10 mark }
129 a76e88e5 2023-01-10 mark
130 a76e88e5 2023-01-10 mark static const struct got_error *
131 c7d5c43c 2022-08-04 mark diff_blobs(struct got_diff_line **lines, size_t *nlines,
132 fe621944 2020-11-10 stsp struct got_diffreg_result **resultp, struct got_blob_object *blob1,
133 b72706c3 2022-06-01 stsp struct got_blob_object *blob2, FILE *f1, FILE *f2,
134 46f68b20 2019-10-19 stsp const char *label1, const char *label2, mode_t mode1, mode_t mode2,
135 a76e88e5 2023-01-10 mark int diff_context, int ignore_whitespace, int force_text_diff,
136 1f3405c9 2023-01-17 mark struct got_diffstat_cb_arg *diffstat, FILE *outfile,
137 4b752015 2022-06-30 stsp enum got_diff_algorithm diff_algo)
138 7d283eee 2017-11-29 stsp {
139 fe621944 2020-11-10 stsp const struct got_error *err = NULL, *free_err;
140 bbc740ac 2023-02-04 op char hex1[GOT_OBJECT_ID_HEX_MAXLEN];
141 bbc740ac 2023-02-04 op char hex2[GOT_OBJECT_ID_HEX_MAXLEN];
142 58e31a80 2022-06-27 op const char *idstr1 = NULL, *idstr2 = NULL;
143 5fa52d6c 2023-01-11 mark char *modestr1 = NULL, *modestr2 = NULL;
144 be659d10 2020-11-18 stsp off_t size1, size2;
145 3846622f 2023-01-07 mark struct got_diffreg_result *result = NULL;
146 fe621944 2020-11-10 stsp off_t outoff = 0;
147 fe621944 2020-11-10 stsp int n;
148 7d283eee 2017-11-29 stsp
149 2d61e381 2022-08-30 mark if (lines && *lines && *nlines > 0)
150 c7d5c43c 2022-08-04 mark outoff = (*lines)[*nlines - 1].offset;
151 c7d5c43c 2022-08-04 mark else if (lines) {
152 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, 0, GOT_DIFF_LINE_NONE);
153 9c659ea0 2020-11-22 stsp if (err)
154 9c659ea0 2020-11-22 stsp goto done;
155 9c659ea0 2020-11-22 stsp }
156 fe621944 2020-11-10 stsp
157 fe621944 2020-11-10 stsp if (resultp)
158 fe621944 2020-11-10 stsp *resultp = NULL;
159 fe621944 2020-11-10 stsp
160 b72706c3 2022-06-01 stsp if (f1) {
161 a558dd1b 2022-06-08 stsp err = got_opentemp_truncate(f1);
162 b72706c3 2022-06-01 stsp if (err)
163 b72706c3 2022-06-01 stsp goto done;
164 fe621944 2020-11-10 stsp }
165 b72706c3 2022-06-01 stsp if (f2) {
166 a558dd1b 2022-06-08 stsp err = got_opentemp_truncate(f2);
167 b72706c3 2022-06-01 stsp if (err)
168 b72706c3 2022-06-01 stsp goto done;
169 fe621944 2020-11-10 stsp }
170 7d283eee 2017-11-29 stsp
171 f934cf2c 2018-02-12 stsp size1 = 0;
172 98abbc84 2017-11-30 stsp if (blob1) {
173 f934cf2c 2018-02-12 stsp idstr1 = got_object_blob_id_str(blob1, hex1, sizeof(hex1));
174 6c4c42e0 2019-06-24 stsp err = got_object_blob_dump_to_file(&size1, NULL, NULL, f1,
175 6c4c42e0 2019-06-24 stsp blob1);
176 35e9ba5d 2018-06-21 stsp if (err)
177 35e9ba5d 2018-06-21 stsp goto done;
178 98abbc84 2017-11-30 stsp } else
179 98abbc84 2017-11-30 stsp idstr1 = "/dev/null";
180 7d283eee 2017-11-29 stsp
181 f934cf2c 2018-02-12 stsp size2 = 0;
182 98abbc84 2017-11-30 stsp if (blob2) {
183 f934cf2c 2018-02-12 stsp idstr2 = got_object_blob_id_str(blob2, hex2, sizeof(hex2));
184 6c4c42e0 2019-06-24 stsp err = got_object_blob_dump_to_file(&size2, NULL, NULL, f2,
185 6c4c42e0 2019-06-24 stsp blob2);
186 35e9ba5d 2018-06-21 stsp if (err)
187 35e9ba5d 2018-06-21 stsp goto done;
188 98abbc84 2017-11-30 stsp } else
189 98abbc84 2017-11-30 stsp idstr2 = "/dev/null";
190 7d283eee 2017-11-29 stsp
191 09de383e 2018-12-24 stsp if (outfile) {
192 40dde666 2020-07-23 stsp int modebits;
193 5fa52d6c 2023-01-11 mark
194 46f68b20 2019-10-19 stsp if (mode1 && mode1 != mode2) {
195 40dde666 2020-07-23 stsp if (S_ISLNK(mode1))
196 40dde666 2020-07-23 stsp modebits = S_IFLNK;
197 40dde666 2020-07-23 stsp else
198 40dde666 2020-07-23 stsp modebits = (S_IRWXU | S_IRWXG | S_IRWXO);
199 46f68b20 2019-10-19 stsp if (asprintf(&modestr1, " (mode %o)",
200 40dde666 2020-07-23 stsp mode1 & modebits) == -1) {
201 46f68b20 2019-10-19 stsp err = got_error_from_errno("asprintf");
202 46f68b20 2019-10-19 stsp goto done;
203 46f68b20 2019-10-19 stsp }
204 46f68b20 2019-10-19 stsp }
205 46f68b20 2019-10-19 stsp if (mode2 && mode1 != mode2) {
206 40dde666 2020-07-23 stsp if (S_ISLNK(mode2))
207 40dde666 2020-07-23 stsp modebits = S_IFLNK;
208 40dde666 2020-07-23 stsp else
209 40dde666 2020-07-23 stsp modebits = (S_IRWXU | S_IRWXG | S_IRWXO);
210 46f68b20 2019-10-19 stsp if (asprintf(&modestr2, " (mode %o)",
211 40dde666 2020-07-23 stsp mode2 & modebits) == -1) {
212 46f68b20 2019-10-19 stsp err = got_error_from_errno("asprintf");
213 46f68b20 2019-10-19 stsp goto done;
214 46f68b20 2019-10-19 stsp }
215 46f68b20 2019-10-19 stsp }
216 fe621944 2020-11-10 stsp n = fprintf(outfile, "blob - %s%s\n", idstr1,
217 46f68b20 2019-10-19 stsp modestr1 ? modestr1 : "");
218 fe621944 2020-11-10 stsp if (n < 0)
219 fe621944 2020-11-10 stsp goto done;
220 fe621944 2020-11-10 stsp outoff += n;
221 c7d5c43c 2022-08-04 mark if (lines) {
222 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
223 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_BLOB_MIN);
224 fe621944 2020-11-10 stsp if (err)
225 fe621944 2020-11-10 stsp goto done;
226 fe621944 2020-11-10 stsp }
227 fe621944 2020-11-10 stsp
228 fe621944 2020-11-10 stsp n = fprintf(outfile, "blob + %s%s\n", idstr2,
229 46f68b20 2019-10-19 stsp modestr2 ? modestr2 : "");
230 fe621944 2020-11-10 stsp if (n < 0)
231 fe621944 2020-11-10 stsp goto done;
232 fe621944 2020-11-10 stsp outoff += n;
233 c7d5c43c 2022-08-04 mark if (lines) {
234 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
235 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_BLOB_PLUS);
236 fe621944 2020-11-10 stsp if (err)
237 fe621944 2020-11-10 stsp goto done;
238 fe621944 2020-11-10 stsp }
239 09de383e 2018-12-24 stsp }
240 a76e88e5 2023-01-10 mark
241 4b752015 2022-06-30 stsp err = got_diffreg(&result, f1, f2, diff_algo, ignore_whitespace,
242 4b752015 2022-06-30 stsp force_text_diff);
243 fe621944 2020-11-10 stsp if (err)
244 fe621944 2020-11-10 stsp goto done;
245 fe621944 2020-11-10 stsp
246 1f3405c9 2023-01-17 mark if (diffstat) {
247 a76e88e5 2023-01-10 mark char *path = NULL;
248 a76e88e5 2023-01-10 mark int status = GOT_STATUS_NO_CHANGE;
249 6b37f13a 2023-01-10 mark
250 6b37f13a 2023-01-10 mark if (blob1 == NULL)
251 6b37f13a 2023-01-10 mark status = GOT_STATUS_ADD;
252 6b37f13a 2023-01-10 mark else if (blob2 == NULL)
253 6b37f13a 2023-01-10 mark status = GOT_STATUS_DELETE;
254 1f3405c9 2023-01-17 mark else {
255 1f3405c9 2023-01-17 mark if (strcmp(idstr1, idstr2) != 0)
256 1f3405c9 2023-01-17 mark status = GOT_STATUS_MODIFY;
257 1f3405c9 2023-01-17 mark else if (mode1 != mode2)
258 1f3405c9 2023-01-17 mark status = GOT_STATUS_MODE_CHANGE;
259 1f3405c9 2023-01-17 mark }
260 a76e88e5 2023-01-10 mark
261 a76e88e5 2023-01-10 mark if (label1 == NULL && label2 == NULL) {
262 a76e88e5 2023-01-10 mark /* diffstat of blobs, show hash instead of path */
263 a76e88e5 2023-01-10 mark if (asprintf(&path, "%.10s -> %.10s",
264 a76e88e5 2023-01-10 mark idstr1, idstr2) == -1) {
265 a76e88e5 2023-01-10 mark err = got_error_from_errno("asprintf");
266 a76e88e5 2023-01-10 mark goto done;
267 a76e88e5 2023-01-10 mark }
268 a76e88e5 2023-01-10 mark } else {
269 6b37f13a 2023-01-10 mark if (label2 != NULL &&
270 6b37f13a 2023-01-10 mark (status != GOT_STATUS_DELETE || label1 == NULL))
271 6b37f13a 2023-01-10 mark path = strdup(label2);
272 6b37f13a 2023-01-10 mark else
273 6b37f13a 2023-01-10 mark path = strdup(label1);
274 a76e88e5 2023-01-10 mark if (path == NULL) {
275 6b37f13a 2023-01-10 mark err = got_error_from_errno("strdup");
276 a76e88e5 2023-01-10 mark goto done;
277 a76e88e5 2023-01-10 mark }
278 a76e88e5 2023-01-10 mark }
279 a76e88e5 2023-01-10 mark
280 1f3405c9 2023-01-17 mark err = get_diffstat(diffstat, path, result->result,
281 1f3405c9 2023-01-17 mark force_text_diff, status);
282 a76e88e5 2023-01-10 mark if (err) {
283 a76e88e5 2023-01-10 mark free(path);
284 a76e88e5 2023-01-10 mark goto done;
285 a76e88e5 2023-01-10 mark }
286 a76e88e5 2023-01-10 mark }
287 a76e88e5 2023-01-10 mark
288 fe621944 2020-11-10 stsp if (outfile) {
289 c7d5c43c 2022-08-04 mark err = got_diffreg_output(lines, nlines, result,
290 1cb46f00 2020-11-21 stsp blob1 != NULL, blob2 != NULL,
291 fe621944 2020-11-10 stsp label1 ? label1 : idstr1,
292 fe621944 2020-11-10 stsp label2 ? label2 : idstr2,
293 fe621944 2020-11-10 stsp GOT_DIFF_OUTPUT_UNIDIFF, diff_context, outfile);
294 fe621944 2020-11-10 stsp if (err)
295 fe621944 2020-11-10 stsp goto done;
296 fe621944 2020-11-10 stsp }
297 fe621944 2020-11-10 stsp
298 3846622f 2023-01-07 mark done:
299 5fa52d6c 2023-01-11 mark free(modestr1);
300 5fa52d6c 2023-01-11 mark free(modestr2);
301 fe621944 2020-11-10 stsp if (resultp && err == NULL)
302 fe621944 2020-11-10 stsp *resultp = result;
303 3846622f 2023-01-07 mark else if (result) {
304 fe621944 2020-11-10 stsp free_err = got_diffreg_result_free(result);
305 fe621944 2020-11-10 stsp if (free_err && err == NULL)
306 fe621944 2020-11-10 stsp err = free_err;
307 fe621944 2020-11-10 stsp }
308 3846622f 2023-01-07 mark
309 7d283eee 2017-11-29 stsp return err;
310 aaa13589 2019-06-01 stsp }
311 aaa13589 2019-06-01 stsp
312 aaa13589 2019-06-01 stsp const struct got_error *
313 aaa13589 2019-06-01 stsp got_diff_blob_output_unidiff(void *arg, struct got_blob_object *blob1,
314 b72706c3 2022-06-01 stsp struct got_blob_object *blob2, FILE *f1, FILE *f2,
315 b72706c3 2022-06-01 stsp struct got_object_id *id1, struct got_object_id *id2,
316 b72706c3 2022-06-01 stsp const char *label1, const char *label2, mode_t mode1, mode_t mode2,
317 b72706c3 2022-06-01 stsp struct got_repository *repo)
318 aaa13589 2019-06-01 stsp {
319 aaa13589 2019-06-01 stsp struct got_diff_blob_output_unidiff_arg *a = arg;
320 aaa13589 2019-06-01 stsp
321 c7d5c43c 2022-08-04 mark return diff_blobs(&a->lines, &a->nlines, NULL,
322 b72706c3 2022-06-01 stsp blob1, blob2, f1, f2, label1, label2, mode1, mode2, a->diff_context,
323 1f3405c9 2023-01-17 mark a->ignore_whitespace, a->force_text_diff, a->diffstat, a->outfile,
324 1f3405c9 2023-01-17 mark a->diff_algo);
325 7d283eee 2017-11-29 stsp }
326 474b4f94 2017-11-30 stsp
327 404c43c4 2018-06-21 stsp const struct got_error *
328 c7d5c43c 2022-08-04 mark got_diff_blob(struct got_diff_line **lines, size_t*nlines,
329 fe621944 2020-11-10 stsp struct got_blob_object *blob1, struct got_blob_object *blob2,
330 b72706c3 2022-06-01 stsp FILE *f1, FILE *f2, const char *label1, const char *label2,
331 4b752015 2022-06-30 stsp enum got_diff_algorithm diff_algo, int diff_context,
332 1f3405c9 2023-01-17 mark int ignore_whitespace, int force_text_diff,
333 a76e88e5 2023-01-10 mark struct got_diffstat_cb_arg *ds, FILE *outfile)
334 404c43c4 2018-06-21 stsp {
335 c7d5c43c 2022-08-04 mark return diff_blobs(lines, nlines, NULL, blob1, blob2, f1, f2,
336 64453f7e 2020-11-21 stsp label1, label2, 0, 0, diff_context, ignore_whitespace,
337 1f3405c9 2023-01-17 mark force_text_diff, ds, outfile, diff_algo);
338 404c43c4 2018-06-21 stsp }
339 404c43c4 2018-06-21 stsp
340 7f1f93af 2019-08-06 stsp static const struct got_error *
341 fe621944 2020-11-10 stsp diff_blob_file(struct got_diffreg_result **resultp,
342 b72706c3 2022-06-01 stsp struct got_blob_object *blob1, FILE *f1, off_t size1, const char *label1,
343 c87842d5 2022-09-23 mark FILE *f2, int f2_exists, struct stat *sb2, const char *label2,
344 4b752015 2022-06-30 stsp enum got_diff_algorithm diff_algo, int diff_context, int ignore_whitespace,
345 1f3405c9 2023-01-17 mark int force_text_diff, struct got_diffstat_cb_arg *diffstat, FILE *outfile)
346 b72f483a 2019-02-05 stsp {
347 fe621944 2020-11-10 stsp const struct got_error *err = NULL, *free_err;
348 bbc740ac 2023-02-04 op char hex1[GOT_OBJECT_ID_HEX_MAXLEN];
349 58e31a80 2022-06-27 op const char *idstr1 = NULL;
350 fe621944 2020-11-10 stsp struct got_diffreg_result *result = NULL;
351 b72f483a 2019-02-05 stsp
352 fe621944 2020-11-10 stsp if (resultp)
353 fe621944 2020-11-10 stsp *resultp = NULL;
354 7f1f93af 2019-08-06 stsp
355 b72706c3 2022-06-01 stsp if (blob1)
356 b72f483a 2019-02-05 stsp idstr1 = got_object_blob_id_str(blob1, hex1, sizeof(hex1));
357 b72706c3 2022-06-01 stsp else
358 b72f483a 2019-02-05 stsp idstr1 = "/dev/null";
359 b72f483a 2019-02-05 stsp
360 7f1f93af 2019-08-06 stsp if (outfile) {
361 c87842d5 2022-09-23 mark char *mode = NULL;
362 c87842d5 2022-09-23 mark
363 c87842d5 2022-09-23 mark /* display file mode for new added files only */
364 c87842d5 2022-09-23 mark if (f2_exists && blob1 == NULL) {
365 c87842d5 2022-09-23 mark int mmask = (S_IRWXU | S_IRWXG | S_IRWXO);
366 c87842d5 2022-09-23 mark
367 c87842d5 2022-09-23 mark if (S_ISLNK(sb2->st_mode))
368 c87842d5 2022-09-23 mark mmask = S_IFLNK;
369 c87842d5 2022-09-23 mark if (asprintf(&mode, " (mode %o)",
370 c87842d5 2022-09-23 mark sb2->st_mode & mmask) == -1)
371 c87842d5 2022-09-23 mark return got_error_from_errno("asprintf");
372 c87842d5 2022-09-23 mark }
373 4ce46740 2019-08-08 stsp fprintf(outfile, "blob - %s\n", label1 ? label1 : idstr1);
374 c87842d5 2022-09-23 mark fprintf(outfile, "file + %s%s\n",
375 c87842d5 2022-09-23 mark f2_exists ? label2 : "/dev/null", mode ? mode : "");
376 c87842d5 2022-09-23 mark free(mode);
377 7f1f93af 2019-08-06 stsp }
378 fe621944 2020-11-10 stsp
379 4b752015 2022-06-30 stsp err = got_diffreg(&result, f1, f2, diff_algo, ignore_whitespace,
380 4b752015 2022-06-30 stsp force_text_diff);
381 fe621944 2020-11-10 stsp if (err)
382 fe621944 2020-11-10 stsp goto done;
383 fe621944 2020-11-10 stsp
384 fe621944 2020-11-10 stsp if (outfile) {
385 1cb46f00 2020-11-21 stsp err = got_diffreg_output(NULL, NULL, result,
386 49d4a017 2022-06-30 stsp blob1 != NULL, f2_exists,
387 1cb46f00 2020-11-21 stsp label2, /* show local file's path, not a blob ID */
388 1cb46f00 2020-11-21 stsp label2, GOT_DIFF_OUTPUT_UNIDIFF,
389 1cb46f00 2020-11-21 stsp diff_context, outfile);
390 7f1f93af 2019-08-06 stsp if (err)
391 a76e88e5 2023-01-10 mark goto done;
392 a76e88e5 2023-01-10 mark }
393 a76e88e5 2023-01-10 mark
394 1f3405c9 2023-01-17 mark if (diffstat) {
395 a76e88e5 2023-01-10 mark char *path = NULL;
396 a76e88e5 2023-01-10 mark int status = GOT_STATUS_NO_CHANGE;
397 a76e88e5 2023-01-10 mark
398 a76e88e5 2023-01-10 mark /*
399 a76e88e5 2023-01-10 mark * Ignore 'm'ode status change: if there's no accompanying
400 a76e88e5 2023-01-10 mark * content change, there'll be no diffstat, and if there
401 a76e88e5 2023-01-10 mark * are actual changes, 'M'odified takes precedence.
402 a76e88e5 2023-01-10 mark */
403 a76e88e5 2023-01-10 mark if (blob1 == NULL)
404 a76e88e5 2023-01-10 mark status = GOT_STATUS_ADD;
405 a76e88e5 2023-01-10 mark else if (!f2_exists)
406 a76e88e5 2023-01-10 mark status = GOT_STATUS_DELETE;
407 a76e88e5 2023-01-10 mark else
408 a76e88e5 2023-01-10 mark status = GOT_STATUS_MODIFY;
409 6b37f13a 2023-01-10 mark
410 6b37f13a 2023-01-10 mark if (label2 != NULL &&
411 6b37f13a 2023-01-10 mark (status != GOT_STATUS_DELETE || label1 == NULL))
412 6b37f13a 2023-01-10 mark path = strdup(label2);
413 6b37f13a 2023-01-10 mark else
414 6b37f13a 2023-01-10 mark path = strdup(label1);
415 6b37f13a 2023-01-10 mark if (path == NULL) {
416 6b37f13a 2023-01-10 mark err = got_error_from_errno("strdup");
417 6b37f13a 2023-01-10 mark goto done;
418 6b37f13a 2023-01-10 mark }
419 a76e88e5 2023-01-10 mark
420 1f3405c9 2023-01-17 mark err = get_diffstat(diffstat, path, result->result,
421 1f3405c9 2023-01-17 mark force_text_diff, status);
422 a76e88e5 2023-01-10 mark if (err) {
423 a76e88e5 2023-01-10 mark free(path);
424 fe621944 2020-11-10 stsp goto done;
425 a76e88e5 2023-01-10 mark }
426 7f1f93af 2019-08-06 stsp }
427 fe621944 2020-11-10 stsp
428 3846622f 2023-01-07 mark done:
429 fe621944 2020-11-10 stsp if (resultp && err == NULL)
430 fe621944 2020-11-10 stsp *resultp = result;
431 fe621944 2020-11-10 stsp else if (result) {
432 fe621944 2020-11-10 stsp free_err = got_diffreg_result_free(result);
433 fe621944 2020-11-10 stsp if (free_err && err == NULL)
434 fe621944 2020-11-10 stsp err = free_err;
435 fe621944 2020-11-10 stsp }
436 b72f483a 2019-02-05 stsp return err;
437 7f1f93af 2019-08-06 stsp }
438 7f1f93af 2019-08-06 stsp
439 7f1f93af 2019-08-06 stsp const struct got_error *
440 b72706c3 2022-06-01 stsp got_diff_blob_file(struct got_blob_object *blob1, FILE *f1, off_t size1,
441 c87842d5 2022-09-23 mark const char *label1, FILE *f2, int f2_exists, struct stat *sb2,
442 4b752015 2022-06-30 stsp const char *label2, enum got_diff_algorithm diff_algo, int diff_context,
443 1f3405c9 2023-01-17 mark int ignore_whitespace, int force_text_diff,
444 a76e88e5 2023-01-10 mark struct got_diffstat_cb_arg *ds, FILE *outfile)
445 7f1f93af 2019-08-06 stsp {
446 49d4a017 2022-06-30 stsp return diff_blob_file(NULL, blob1, f1, size1, label1, f2, f2_exists,
447 c87842d5 2022-09-23 mark sb2, label2, diff_algo, diff_context, ignore_whitespace,
448 1f3405c9 2023-01-17 mark force_text_diff, ds, outfile);
449 474b4f94 2017-11-30 stsp }
450 474b4f94 2017-11-30 stsp
451 474b4f94 2017-11-30 stsp static const struct got_error *
452 49d4a017 2022-06-30 stsp diff_added_blob(struct got_object_id *id, FILE *f1, FILE *f2, int fd2,
453 f9d37699 2022-06-28 stsp const char *label, mode_t mode, struct got_repository *repo,
454 b72706c3 2022-06-01 stsp got_diff_blob_cb cb, void *cb_arg)
455 474b4f94 2017-11-30 stsp {
456 4e22badc 2017-11-30 stsp const struct got_error *err;
457 2acfca77 2018-04-01 stsp struct got_blob_object *blob = NULL;
458 2acfca77 2018-04-01 stsp struct got_object *obj = NULL;
459 4e22badc 2017-11-30 stsp
460 4e22badc 2017-11-30 stsp err = got_object_open(&obj, repo, id);
461 4e22badc 2017-11-30 stsp if (err)
462 4e22badc 2017-11-30 stsp return err;
463 4e22badc 2017-11-30 stsp
464 49d4a017 2022-06-30 stsp err = got_object_blob_open(&blob, repo, obj, 8192, fd2);
465 2acfca77 2018-04-01 stsp if (err)
466 2acfca77 2018-04-01 stsp goto done;
467 49d4a017 2022-06-30 stsp err = cb(cb_arg, NULL, blob, f1, f2, NULL, id,
468 b72706c3 2022-06-01 stsp NULL, label, 0, mode, repo);
469 2acfca77 2018-04-01 stsp done:
470 2acfca77 2018-04-01 stsp got_object_close(obj);
471 2acfca77 2018-04-01 stsp if (blob)
472 2acfca77 2018-04-01 stsp got_object_blob_close(blob);
473 2acfca77 2018-04-01 stsp return err;
474 474b4f94 2017-11-30 stsp }
475 474b4f94 2017-11-30 stsp
476 474b4f94 2017-11-30 stsp static const struct got_error *
477 6a213ccb 2017-11-30 stsp diff_modified_blob(struct got_object_id *id1, struct got_object_id *id2,
478 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
479 f9d37699 2022-06-28 stsp const char *label1, const char *label2,
480 b72706c3 2022-06-01 stsp mode_t mode1, mode_t mode2, struct got_repository *repo,
481 b72706c3 2022-06-01 stsp got_diff_blob_cb cb, void *cb_arg)
482 474b4f94 2017-11-30 stsp {
483 6a213ccb 2017-11-30 stsp const struct got_error *err;
484 6a213ccb 2017-11-30 stsp struct got_object *obj1 = NULL;
485 6a213ccb 2017-11-30 stsp struct got_object *obj2 = NULL;
486 6a213ccb 2017-11-30 stsp struct got_blob_object *blob1 = NULL;
487 6a213ccb 2017-11-30 stsp struct got_blob_object *blob2 = NULL;
488 6a213ccb 2017-11-30 stsp
489 6a213ccb 2017-11-30 stsp err = got_object_open(&obj1, repo, id1);
490 6a213ccb 2017-11-30 stsp if (err)
491 730a8aa0 2018-04-24 stsp return err;
492 eb81bc23 2022-06-28 tracey
493 15a94983 2018-12-23 stsp if (obj1->type != GOT_OBJ_TYPE_BLOB) {
494 6a213ccb 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
495 6a213ccb 2017-11-30 stsp goto done;
496 6a213ccb 2017-11-30 stsp }
497 6a213ccb 2017-11-30 stsp
498 6a213ccb 2017-11-30 stsp err = got_object_open(&obj2, repo, id2);
499 730a8aa0 2018-04-24 stsp if (err)
500 6a213ccb 2017-11-30 stsp goto done;
501 15a94983 2018-12-23 stsp if (obj2->type != GOT_OBJ_TYPE_BLOB) {
502 6a213ccb 2017-11-30 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
503 6a213ccb 2017-11-30 stsp goto done;
504 6a213ccb 2017-11-30 stsp }
505 6a213ccb 2017-11-30 stsp
506 eb81bc23 2022-06-28 tracey err = got_object_blob_open(&blob1, repo, obj1, 8192, fd1);
507 2acfca77 2018-04-01 stsp if (err)
508 6a213ccb 2017-11-30 stsp goto done;
509 6a213ccb 2017-11-30 stsp
510 eb81bc23 2022-06-28 tracey err = got_object_blob_open(&blob2, repo, obj2, 8192, fd2);
511 2acfca77 2018-04-01 stsp if (err)
512 6a213ccb 2017-11-30 stsp goto done;
513 6a213ccb 2017-11-30 stsp
514 b72706c3 2022-06-01 stsp err = cb(cb_arg, blob1, blob2, f1, f2, id1, id2, label1, label2,
515 b72706c3 2022-06-01 stsp mode1, mode2, repo);
516 6a213ccb 2017-11-30 stsp done:
517 a3e2cbea 2017-12-01 stsp if (obj1)
518 a3e2cbea 2017-12-01 stsp got_object_close(obj1);
519 a3e2cbea 2017-12-01 stsp if (obj2)
520 a3e2cbea 2017-12-01 stsp got_object_close(obj2);
521 a3e2cbea 2017-12-01 stsp if (blob1)
522 a3e2cbea 2017-12-01 stsp got_object_blob_close(blob1);
523 a3e2cbea 2017-12-01 stsp if (blob2)
524 a3e2cbea 2017-12-01 stsp got_object_blob_close(blob2);
525 6a213ccb 2017-11-30 stsp return err;
526 474b4f94 2017-11-30 stsp }
527 474b4f94 2017-11-30 stsp
528 474b4f94 2017-11-30 stsp static const struct got_error *
529 49d4a017 2022-06-30 stsp diff_deleted_blob(struct got_object_id *id, FILE *f1, int fd1,
530 49d4a017 2022-06-30 stsp FILE *f2, const char *label, mode_t mode, struct got_repository *repo,
531 f9d37699 2022-06-28 stsp got_diff_blob_cb cb, void *cb_arg)
532 474b4f94 2017-11-30 stsp {
533 365fb436 2017-11-30 stsp const struct got_error *err;
534 2acfca77 2018-04-01 stsp struct got_blob_object *blob = NULL;
535 2acfca77 2018-04-01 stsp struct got_object *obj = NULL;
536 365fb436 2017-11-30 stsp
537 365fb436 2017-11-30 stsp err = got_object_open(&obj, repo, id);
538 365fb436 2017-11-30 stsp if (err)
539 365fb436 2017-11-30 stsp return err;
540 365fb436 2017-11-30 stsp
541 49d4a017 2022-06-30 stsp err = got_object_blob_open(&blob, repo, obj, 8192, fd1);
542 2acfca77 2018-04-01 stsp if (err)
543 2acfca77 2018-04-01 stsp goto done;
544 49d4a017 2022-06-30 stsp err = cb(cb_arg, blob, NULL, f1, f2, id, NULL, label, NULL,
545 b72706c3 2022-06-01 stsp mode, 0, repo);
546 2acfca77 2018-04-01 stsp done:
547 2acfca77 2018-04-01 stsp got_object_close(obj);
548 2acfca77 2018-04-01 stsp if (blob)
549 2acfca77 2018-04-01 stsp got_object_blob_close(blob);
550 2acfca77 2018-04-01 stsp return err;
551 474b4f94 2017-11-30 stsp }
552 474b4f94 2017-11-30 stsp
553 474b4f94 2017-11-30 stsp static const struct got_error *
554 49d4a017 2022-06-30 stsp diff_added_tree(struct got_object_id *id, FILE *f1, FILE *f2, int fd2,
555 49d4a017 2022-06-30 stsp const char *label, struct got_repository *repo, got_diff_blob_cb cb,
556 49d4a017 2022-06-30 stsp void *cb_arg, int diff_content)
557 474b4f94 2017-11-30 stsp {
558 9c70d4c3 2017-11-30 stsp const struct got_error *err = NULL;
559 9c70d4c3 2017-11-30 stsp struct got_object *treeobj = NULL;
560 9c70d4c3 2017-11-30 stsp struct got_tree_object *tree = NULL;
561 9c70d4c3 2017-11-30 stsp
562 9c70d4c3 2017-11-30 stsp err = got_object_open(&treeobj, repo, id);
563 9c70d4c3 2017-11-30 stsp if (err)
564 9c70d4c3 2017-11-30 stsp goto done;
565 9c70d4c3 2017-11-30 stsp
566 15a94983 2018-12-23 stsp if (treeobj->type != GOT_OBJ_TYPE_TREE) {
567 9c70d4c3 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
568 9c70d4c3 2017-11-30 stsp goto done;
569 9c70d4c3 2017-11-30 stsp }
570 9c70d4c3 2017-11-30 stsp
571 9c70d4c3 2017-11-30 stsp err = got_object_tree_open(&tree, repo, treeobj);
572 9c70d4c3 2017-11-30 stsp if (err)
573 9c70d4c3 2017-11-30 stsp goto done;
574 9c70d4c3 2017-11-30 stsp
575 49d4a017 2022-06-30 stsp err = got_diff_tree(NULL, tree, f1, f2, -1, fd2, NULL, label,
576 b72706c3 2022-06-01 stsp repo, cb, cb_arg, diff_content);
577 9c70d4c3 2017-11-30 stsp done:
578 9c70d4c3 2017-11-30 stsp if (tree)
579 9c70d4c3 2017-11-30 stsp got_object_tree_close(tree);
580 9c70d4c3 2017-11-30 stsp if (treeobj)
581 9c70d4c3 2017-11-30 stsp got_object_close(treeobj);
582 9c70d4c3 2017-11-30 stsp return err;
583 474b4f94 2017-11-30 stsp }
584 474b4f94 2017-11-30 stsp
585 474b4f94 2017-11-30 stsp static const struct got_error *
586 789689b5 2017-11-30 stsp diff_modified_tree(struct got_object_id *id1, struct got_object_id *id2,
587 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
588 f9d37699 2022-06-28 stsp const char *label1, const char *label2,
589 b72706c3 2022-06-01 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
590 b72706c3 2022-06-01 stsp int diff_content)
591 474b4f94 2017-11-30 stsp {
592 f6861a81 2018-09-13 stsp const struct got_error *err;
593 789689b5 2017-11-30 stsp struct got_object *treeobj1 = NULL;
594 789689b5 2017-11-30 stsp struct got_object *treeobj2 = NULL;
595 789689b5 2017-11-30 stsp struct got_tree_object *tree1 = NULL;
596 789689b5 2017-11-30 stsp struct got_tree_object *tree2 = NULL;
597 789689b5 2017-11-30 stsp
598 789689b5 2017-11-30 stsp err = got_object_open(&treeobj1, repo, id1);
599 789689b5 2017-11-30 stsp if (err)
600 789689b5 2017-11-30 stsp goto done;
601 789689b5 2017-11-30 stsp
602 15a94983 2018-12-23 stsp if (treeobj1->type != GOT_OBJ_TYPE_TREE) {
603 789689b5 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
604 789689b5 2017-11-30 stsp goto done;
605 789689b5 2017-11-30 stsp }
606 789689b5 2017-11-30 stsp
607 789689b5 2017-11-30 stsp err = got_object_open(&treeobj2, repo, id2);
608 789689b5 2017-11-30 stsp if (err)
609 789689b5 2017-11-30 stsp goto done;
610 789689b5 2017-11-30 stsp
611 15a94983 2018-12-23 stsp if (treeobj2->type != GOT_OBJ_TYPE_TREE) {
612 789689b5 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
613 789689b5 2017-11-30 stsp goto done;
614 789689b5 2017-11-30 stsp }
615 789689b5 2017-11-30 stsp
616 789689b5 2017-11-30 stsp err = got_object_tree_open(&tree1, repo, treeobj1);
617 789689b5 2017-11-30 stsp if (err)
618 789689b5 2017-11-30 stsp goto done;
619 789689b5 2017-11-30 stsp
620 789689b5 2017-11-30 stsp err = got_object_tree_open(&tree2, repo, treeobj2);
621 789689b5 2017-11-30 stsp if (err)
622 789689b5 2017-11-30 stsp goto done;
623 789689b5 2017-11-30 stsp
624 f9d37699 2022-06-28 stsp err = got_diff_tree(tree1, tree2, f1, f2, fd1, fd2,
625 f9d37699 2022-06-28 stsp label1, label2, repo, cb, cb_arg, diff_content);
626 789689b5 2017-11-30 stsp
627 789689b5 2017-11-30 stsp done:
628 789689b5 2017-11-30 stsp if (tree1)
629 789689b5 2017-11-30 stsp got_object_tree_close(tree1);
630 789689b5 2017-11-30 stsp if (tree2)
631 789689b5 2017-11-30 stsp got_object_tree_close(tree2);
632 789689b5 2017-11-30 stsp if (treeobj1)
633 789689b5 2017-11-30 stsp got_object_close(treeobj1);
634 789689b5 2017-11-30 stsp if (treeobj2)
635 789689b5 2017-11-30 stsp got_object_close(treeobj2);
636 789689b5 2017-11-30 stsp return err;
637 474b4f94 2017-11-30 stsp }
638 474b4f94 2017-11-30 stsp
639 474b4f94 2017-11-30 stsp static const struct got_error *
640 49d4a017 2022-06-30 stsp diff_deleted_tree(struct got_object_id *id, FILE *f1, int fd1,
641 49d4a017 2022-06-30 stsp FILE *f2, const char *label, struct got_repository *repo,
642 f9d37699 2022-06-28 stsp got_diff_blob_cb cb, void *cb_arg, int diff_content)
643 474b4f94 2017-11-30 stsp {
644 f6861a81 2018-09-13 stsp const struct got_error *err;
645 2c56f2ce 2017-11-30 stsp struct got_object *treeobj = NULL;
646 2c56f2ce 2017-11-30 stsp struct got_tree_object *tree = NULL;
647 2c56f2ce 2017-11-30 stsp
648 2c56f2ce 2017-11-30 stsp err = got_object_open(&treeobj, repo, id);
649 2c56f2ce 2017-11-30 stsp if (err)
650 2c56f2ce 2017-11-30 stsp goto done;
651 2c56f2ce 2017-11-30 stsp
652 15a94983 2018-12-23 stsp if (treeobj->type != GOT_OBJ_TYPE_TREE) {
653 2c56f2ce 2017-11-30 stsp err = got_error(GOT_ERR_OBJ_TYPE);
654 2c56f2ce 2017-11-30 stsp goto done;
655 2c56f2ce 2017-11-30 stsp }
656 2c56f2ce 2017-11-30 stsp
657 2c56f2ce 2017-11-30 stsp err = got_object_tree_open(&tree, repo, treeobj);
658 2c56f2ce 2017-11-30 stsp if (err)
659 2c56f2ce 2017-11-30 stsp goto done;
660 2c56f2ce 2017-11-30 stsp
661 49d4a017 2022-06-30 stsp err = got_diff_tree(tree, NULL, f1, f2, fd1, -1, label, NULL,
662 b72706c3 2022-06-01 stsp repo, cb, cb_arg, diff_content);
663 2c56f2ce 2017-11-30 stsp done:
664 2c56f2ce 2017-11-30 stsp if (tree)
665 2c56f2ce 2017-11-30 stsp got_object_tree_close(tree);
666 2c56f2ce 2017-11-30 stsp if (treeobj)
667 2c56f2ce 2017-11-30 stsp got_object_close(treeobj);
668 2c56f2ce 2017-11-30 stsp return err;
669 474b4f94 2017-11-30 stsp }
670 474b4f94 2017-11-30 stsp
671 474b4f94 2017-11-30 stsp static const struct got_error *
672 760a1ec3 2023-03-10 stsp diff_kind_mismatch(struct got_tree_entry *te1, struct got_tree_entry *te2,
673 760a1ec3 2023-03-10 stsp FILE *f1, FILE *f2, int fd1, int fd2,
674 aaa13589 2019-06-01 stsp const char *label1, const char *label2, struct got_repository *repo,
675 760a1ec3 2023-03-10 stsp got_diff_blob_cb cb, void *cb_arg, int diff_content)
676 474b4f94 2017-11-30 stsp {
677 760a1ec3 2023-03-10 stsp const struct got_error *err = NULL;
678 760a1ec3 2023-03-10 stsp
679 760a1ec3 2023-03-10 stsp /*
680 760a1ec3 2023-03-10 stsp * Handle files changing into directories and vice-versa.
681 760a1ec3 2023-03-10 stsp * Disregard edge cases with FIFOs, device nodes, etc for now.
682 760a1ec3 2023-03-10 stsp */
683 760a1ec3 2023-03-10 stsp if (!S_ISDIR(te1->mode) && S_ISDIR(te2->mode)) {
684 760a1ec3 2023-03-10 stsp if (S_ISREG(te1->mode)) {
685 760a1ec3 2023-03-10 stsp if (diff_content) {
686 760a1ec3 2023-03-10 stsp err = diff_deleted_blob(&te1->id, f1, fd1,
687 760a1ec3 2023-03-10 stsp f2, label1, te1->mode, repo, cb, cb_arg);
688 760a1ec3 2023-03-10 stsp } else {
689 760a1ec3 2023-03-10 stsp err = cb(cb_arg, NULL, NULL, NULL, NULL,
690 760a1ec3 2023-03-10 stsp &te1->id, NULL, label1, NULL,
691 760a1ec3 2023-03-10 stsp te1->mode, 0, repo);
692 760a1ec3 2023-03-10 stsp }
693 760a1ec3 2023-03-10 stsp if (err)
694 760a1ec3 2023-03-10 stsp return err;
695 760a1ec3 2023-03-10 stsp }
696 760a1ec3 2023-03-10 stsp return diff_added_tree(&te2->id, f1, f2, fd2, label2,
697 760a1ec3 2023-03-10 stsp repo, cb, cb_arg, diff_content);
698 760a1ec3 2023-03-10 stsp } else if (S_ISDIR(te1->mode) && !S_ISDIR(te2->mode)) {
699 760a1ec3 2023-03-10 stsp err = diff_deleted_tree(&te1->id, f1, fd1, f2,
700 760a1ec3 2023-03-10 stsp label1, repo, cb, cb_arg, diff_content);
701 760a1ec3 2023-03-10 stsp if (err)
702 760a1ec3 2023-03-10 stsp return err;
703 760a1ec3 2023-03-10 stsp if (S_ISREG(te2->mode)) {
704 760a1ec3 2023-03-10 stsp if (diff_content) {
705 760a1ec3 2023-03-10 stsp err = diff_added_blob(&te2->id, f1, f2, fd2,
706 760a1ec3 2023-03-10 stsp label2, te2->mode, repo, cb, cb_arg);
707 760a1ec3 2023-03-10 stsp } else {
708 760a1ec3 2023-03-10 stsp err = cb(cb_arg, NULL, NULL, NULL, NULL, NULL,
709 760a1ec3 2023-03-10 stsp &te2->id, NULL, label2, 0, te2->mode, repo);
710 760a1ec3 2023-03-10 stsp }
711 760a1ec3 2023-03-10 stsp if (err)
712 760a1ec3 2023-03-10 stsp return err;
713 760a1ec3 2023-03-10 stsp }
714 760a1ec3 2023-03-10 stsp }
715 760a1ec3 2023-03-10 stsp
716 474b4f94 2017-11-30 stsp return NULL;
717 474b4f94 2017-11-30 stsp }
718 474b4f94 2017-11-30 stsp
719 474b4f94 2017-11-30 stsp static const struct got_error *
720 b72706c3 2022-06-01 stsp diff_entry_old_new(struct got_tree_entry *te1, struct got_tree_entry *te2,
721 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
722 f9d37699 2022-06-28 stsp const char *label1, const char *label2,
723 31b4484f 2019-07-27 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
724 31b4484f 2019-07-27 stsp int diff_content)
725 474b4f94 2017-11-30 stsp {
726 f6861a81 2018-09-13 stsp const struct got_error *err = NULL;
727 19ae6da1 2018-11-05 stsp int id_match;
728 63c5ca5d 2019-08-24 stsp
729 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te1))
730 63c5ca5d 2019-08-24 stsp return NULL;
731 474b4f94 2017-11-30 stsp
732 474b4f94 2017-11-30 stsp if (te2 == NULL) {
733 474b4f94 2017-11-30 stsp if (S_ISDIR(te1->mode))
734 49d4a017 2022-06-30 stsp err = diff_deleted_tree(&te1->id, f1, fd1, f2,
735 49d4a017 2022-06-30 stsp label1, repo, cb, cb_arg, diff_content);
736 31b4484f 2019-07-27 stsp else {
737 31b4484f 2019-07-27 stsp if (diff_content)
738 f9d37699 2022-06-28 stsp err = diff_deleted_blob(&te1->id, f1, fd1,
739 49d4a017 2022-06-30 stsp f2, label1, te1->mode, repo, cb, cb_arg);
740 31b4484f 2019-07-27 stsp else
741 b72706c3 2022-06-01 stsp err = cb(cb_arg, NULL, NULL, NULL, NULL,
742 b72706c3 2022-06-01 stsp &te1->id, NULL, label1, NULL,
743 b72706c3 2022-06-01 stsp te1->mode, 0, repo);
744 31b4484f 2019-07-27 stsp }
745 f6861a81 2018-09-13 stsp return err;
746 63c5ca5d 2019-08-24 stsp } else if (got_object_tree_entry_is_submodule(te2))
747 63c5ca5d 2019-08-24 stsp return NULL;
748 474b4f94 2017-11-30 stsp
749 56e0773d 2019-11-28 stsp id_match = (got_object_id_cmp(&te1->id, &te2->id) == 0);
750 4209f790 2017-11-30 stsp if (S_ISDIR(te1->mode) && S_ISDIR(te2->mode)) {
751 19ae6da1 2018-11-05 stsp if (!id_match)
752 b72706c3 2022-06-01 stsp return diff_modified_tree(&te1->id, &te2->id, f1, f2,
753 f9d37699 2022-06-28 stsp fd1, fd2, label1, label2, repo, cb, cb_arg,
754 f9d37699 2022-06-28 stsp diff_content);
755 40dde666 2020-07-23 stsp } else if ((S_ISREG(te1->mode) || S_ISLNK(te1->mode)) &&
756 40dde666 2020-07-23 stsp (S_ISREG(te2->mode) || S_ISLNK(te2->mode))) {
757 46f68b20 2019-10-19 stsp if (!id_match ||
758 40dde666 2020-07-23 stsp ((te1->mode & (S_IFLNK | S_IXUSR))) !=
759 40dde666 2020-07-23 stsp (te2->mode & (S_IFLNK | S_IXUSR))) {
760 31b4484f 2019-07-27 stsp if (diff_content)
761 56e0773d 2019-11-28 stsp return diff_modified_blob(&te1->id, &te2->id,
762 f9d37699 2022-06-28 stsp f1, f2, fd1, fd2, label1, label2,
763 f9d37699 2022-06-28 stsp te1->mode, te2->mode, repo, cb, cb_arg);
764 31b4484f 2019-07-27 stsp else
765 b72706c3 2022-06-01 stsp return cb(cb_arg, NULL, NULL, NULL, NULL,
766 b72706c3 2022-06-01 stsp &te1->id, &te2->id, label1, label2,
767 b72706c3 2022-06-01 stsp te1->mode, te2->mode, repo);
768 31b4484f 2019-07-27 stsp }
769 413ea19d 2017-11-30 stsp }
770 474b4f94 2017-11-30 stsp
771 19ae6da1 2018-11-05 stsp if (id_match)
772 f6861a81 2018-09-13 stsp return NULL;
773 f6861a81 2018-09-13 stsp
774 760a1ec3 2023-03-10 stsp return diff_kind_mismatch(te1, te2, f1, f2, fd1, fd2,
775 760a1ec3 2023-03-10 stsp label1, label2, repo, cb, cb_arg, diff_content);
776 474b4f94 2017-11-30 stsp }
777 474b4f94 2017-11-30 stsp
778 474b4f94 2017-11-30 stsp static const struct got_error *
779 56e0773d 2019-11-28 stsp diff_entry_new_old(struct got_tree_entry *te2,
780 49d4a017 2022-06-30 stsp struct got_tree_entry *te1, FILE *f1, FILE *f2, int fd2, const char *label2,
781 31b4484f 2019-07-27 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
782 31b4484f 2019-07-27 stsp int diff_content)
783 474b4f94 2017-11-30 stsp {
784 f6861a81 2018-09-13 stsp if (te1 != NULL) /* handled by diff_entry_old_new() */
785 63c5ca5d 2019-08-24 stsp return NULL;
786 63c5ca5d 2019-08-24 stsp
787 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te2))
788 f6861a81 2018-09-13 stsp return NULL;
789 474b4f94 2017-11-30 stsp
790 474b4f94 2017-11-30 stsp if (S_ISDIR(te2->mode))
791 49d4a017 2022-06-30 stsp return diff_added_tree(&te2->id, f1, f2, fd2, label2,
792 b72706c3 2022-06-01 stsp repo, cb, cb_arg, diff_content);
793 f6861a81 2018-09-13 stsp
794 31b4484f 2019-07-27 stsp if (diff_content)
795 49d4a017 2022-06-30 stsp return diff_added_blob(&te2->id, f1, f2, fd2,
796 f9d37699 2022-06-28 stsp label2, te2->mode, repo, cb, cb_arg);
797 31b4484f 2019-07-27 stsp
798 b72706c3 2022-06-01 stsp return cb(cb_arg, NULL, NULL, NULL, NULL, NULL, &te2->id,
799 b72706c3 2022-06-01 stsp NULL, label2, 0, te2->mode, repo);
800 0208f208 2020-05-05 stsp }
801 0208f208 2020-05-05 stsp
802 0208f208 2020-05-05 stsp const struct got_error *
803 5191b70b 2023-01-07 mark got_diff_tree_compute_diffstat(void *arg, struct got_blob_object *blob1,
804 5191b70b 2023-01-07 mark struct got_blob_object *blob2, FILE *f1, FILE *f2,
805 5191b70b 2023-01-07 mark struct got_object_id *id1, struct got_object_id *id2,
806 5191b70b 2023-01-07 mark const char *label1, const char *label2,
807 5191b70b 2023-01-07 mark mode_t mode1, mode_t mode2, struct got_repository *repo)
808 5191b70b 2023-01-07 mark {
809 5191b70b 2023-01-07 mark const struct got_error *err = NULL;
810 5191b70b 2023-01-07 mark struct got_diffreg_result *result = NULL;
811 5191b70b 2023-01-07 mark struct got_diffstat_cb_arg *a = arg;
812 5191b70b 2023-01-07 mark char *path = NULL;
813 a76e88e5 2023-01-10 mark int status = GOT_STATUS_NO_CHANGE;
814 5191b70b 2023-01-07 mark
815 5191b70b 2023-01-07 mark path = strdup(label2 ? label2 : label1);
816 5191b70b 2023-01-07 mark if (path == NULL)
817 6b37f13a 2023-01-10 mark return got_error_from_errno("strdup");
818 5191b70b 2023-01-07 mark
819 5191b70b 2023-01-07 mark if (id1 == NULL)
820 a76e88e5 2023-01-10 mark status = GOT_STATUS_ADD;
821 5191b70b 2023-01-07 mark else if (id2 == NULL)
822 a76e88e5 2023-01-10 mark status = GOT_STATUS_DELETE;
823 5191b70b 2023-01-07 mark else {
824 5191b70b 2023-01-07 mark if (got_object_id_cmp(id1, id2) != 0)
825 a76e88e5 2023-01-10 mark status = GOT_STATUS_MODIFY;
826 5191b70b 2023-01-07 mark else if (mode1 != mode2)
827 a76e88e5 2023-01-10 mark status = GOT_STATUS_MODE_CHANGE;
828 5191b70b 2023-01-07 mark }
829 5191b70b 2023-01-07 mark
830 5191b70b 2023-01-07 mark if (f1) {
831 5191b70b 2023-01-07 mark err = got_opentemp_truncate(f1);
832 5191b70b 2023-01-07 mark if (err)
833 5191b70b 2023-01-07 mark goto done;
834 5191b70b 2023-01-07 mark }
835 5191b70b 2023-01-07 mark if (f2) {
836 5191b70b 2023-01-07 mark err = got_opentemp_truncate(f2);
837 5191b70b 2023-01-07 mark if (err)
838 5191b70b 2023-01-07 mark goto done;
839 5191b70b 2023-01-07 mark }
840 5191b70b 2023-01-07 mark
841 5191b70b 2023-01-07 mark if (blob1) {
842 5191b70b 2023-01-07 mark err = got_object_blob_dump_to_file(NULL, NULL, NULL, f1,
843 5191b70b 2023-01-07 mark blob1);
844 5191b70b 2023-01-07 mark if (err)
845 5191b70b 2023-01-07 mark goto done;
846 5191b70b 2023-01-07 mark }
847 5191b70b 2023-01-07 mark if (blob2) {
848 5191b70b 2023-01-07 mark err = got_object_blob_dump_to_file(NULL, NULL, NULL, f2,
849 5191b70b 2023-01-07 mark blob2);
850 5191b70b 2023-01-07 mark if (err)
851 5191b70b 2023-01-07 mark goto done;
852 5191b70b 2023-01-07 mark }
853 5191b70b 2023-01-07 mark
854 5191b70b 2023-01-07 mark err = got_diffreg(&result, f1, f2, a->diff_algo, a->ignore_ws,
855 5191b70b 2023-01-07 mark a->force_text);
856 5191b70b 2023-01-07 mark if (err)
857 5191b70b 2023-01-07 mark goto done;
858 5191b70b 2023-01-07 mark
859 a76e88e5 2023-01-10 mark err = get_diffstat(a, path, result->result, a->force_text, status);
860 5191b70b 2023-01-07 mark
861 5191b70b 2023-01-07 mark done:
862 5191b70b 2023-01-07 mark if (result) {
863 5191b70b 2023-01-07 mark const struct got_error *free_err;
864 5191b70b 2023-01-07 mark
865 5191b70b 2023-01-07 mark free_err = got_diffreg_result_free(result);
866 5191b70b 2023-01-07 mark if (free_err && err == NULL)
867 5191b70b 2023-01-07 mark err = free_err;
868 5191b70b 2023-01-07 mark }
869 a76e88e5 2023-01-10 mark if (err)
870 5191b70b 2023-01-07 mark free(path);
871 5191b70b 2023-01-07 mark return err;
872 5191b70b 2023-01-07 mark }
873 5191b70b 2023-01-07 mark
874 5191b70b 2023-01-07 mark const struct got_error *
875 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths(void *arg, struct got_blob_object *blob1,
876 b72706c3 2022-06-01 stsp struct got_blob_object *blob2, FILE *f1, FILE *f2,
877 b72706c3 2022-06-01 stsp struct got_object_id *id1, struct got_object_id *id2,
878 b72706c3 2022-06-01 stsp const char *label1, const char *label2,
879 0208f208 2020-05-05 stsp mode_t mode1, mode_t mode2, struct got_repository *repo)
880 0208f208 2020-05-05 stsp {
881 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
882 0208f208 2020-05-05 stsp struct got_pathlist_head *paths = arg;
883 0208f208 2020-05-05 stsp struct got_diff_changed_path *change = NULL;
884 0208f208 2020-05-05 stsp char *path = NULL;
885 0208f208 2020-05-05 stsp
886 0208f208 2020-05-05 stsp path = strdup(label2 ? label2 : label1);
887 0208f208 2020-05-05 stsp if (path == NULL)
888 6b37f13a 2023-01-10 mark return got_error_from_errno("strdup");
889 0208f208 2020-05-05 stsp
890 0208f208 2020-05-05 stsp change = malloc(sizeof(*change));
891 0208f208 2020-05-05 stsp if (change == NULL) {
892 0208f208 2020-05-05 stsp err = got_error_from_errno("malloc");
893 0208f208 2020-05-05 stsp goto done;
894 0208f208 2020-05-05 stsp }
895 0208f208 2020-05-05 stsp
896 0208f208 2020-05-05 stsp change->status = GOT_STATUS_NO_CHANGE;
897 0208f208 2020-05-05 stsp if (id1 == NULL)
898 0208f208 2020-05-05 stsp change->status = GOT_STATUS_ADD;
899 0208f208 2020-05-05 stsp else if (id2 == NULL)
900 0208f208 2020-05-05 stsp change->status = GOT_STATUS_DELETE;
901 0208f208 2020-05-05 stsp else {
902 0208f208 2020-05-05 stsp if (got_object_id_cmp(id1, id2) != 0)
903 0208f208 2020-05-05 stsp change->status = GOT_STATUS_MODIFY;
904 0208f208 2020-05-05 stsp else if (mode1 != mode2)
905 0208f208 2020-05-05 stsp change->status = GOT_STATUS_MODE_CHANGE;
906 0208f208 2020-05-05 stsp }
907 0208f208 2020-05-05 stsp
908 46ea77db 2021-12-20 stsp err = got_pathlist_append(paths, path, change);
909 0208f208 2020-05-05 stsp done:
910 0208f208 2020-05-05 stsp if (err) {
911 0208f208 2020-05-05 stsp free(path);
912 0208f208 2020-05-05 stsp free(change);
913 0208f208 2020-05-05 stsp }
914 0208f208 2020-05-05 stsp return err;
915 474b4f94 2017-11-30 stsp }
916 474b4f94 2017-11-30 stsp
917 474b4f94 2017-11-30 stsp const struct got_error *
918 474b4f94 2017-11-30 stsp got_diff_tree(struct got_tree_object *tree1, struct got_tree_object *tree2,
919 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
920 f9d37699 2022-06-28 stsp const char *label1, const char *label2,
921 b72706c3 2022-06-01 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg,
922 b72706c3 2022-06-01 stsp int diff_content)
923 474b4f94 2017-11-30 stsp {
924 474b4f94 2017-11-30 stsp const struct got_error *err = NULL;
925 789689b5 2017-11-30 stsp struct got_tree_entry *te1 = NULL;
926 789689b5 2017-11-30 stsp struct got_tree_entry *te2 = NULL;
927 f6861a81 2018-09-13 stsp char *l1 = NULL, *l2 = NULL;
928 56e0773d 2019-11-28 stsp int tidx1 = 0, tidx2 = 0;
929 474b4f94 2017-11-30 stsp
930 883f0469 2018-06-23 stsp if (tree1) {
931 56e0773d 2019-11-28 stsp te1 = got_object_tree_get_entry(tree1, 0);
932 60f50a58 2018-09-15 stsp if (te1 && asprintf(&l1, "%s%s%s", label1, label1[0] ? "/" : "",
933 f6861a81 2018-09-13 stsp te1->name) == -1)
934 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
935 883f0469 2018-06-23 stsp }
936 883f0469 2018-06-23 stsp if (tree2) {
937 56e0773d 2019-11-28 stsp te2 = got_object_tree_get_entry(tree2, 0);
938 60f50a58 2018-09-15 stsp if (te2 && asprintf(&l2, "%s%s%s", label2, label2[0] ? "/" : "",
939 5fa52d6c 2023-01-11 mark te2->name) == -1) {
940 5fa52d6c 2023-01-11 mark err = got_error_from_errno("asprintf");
941 5fa52d6c 2023-01-11 mark goto done;
942 5fa52d6c 2023-01-11 mark }
943 883f0469 2018-06-23 stsp }
944 474b4f94 2017-11-30 stsp
945 474b4f94 2017-11-30 stsp do {
946 474b4f94 2017-11-30 stsp if (te1) {
947 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
948 5fa52d6c 2023-01-11 mark
949 f6861a81 2018-09-13 stsp if (tree2)
950 1de5e065 2019-06-01 stsp te = got_object_tree_find_entry(tree2,
951 1de5e065 2019-06-01 stsp te1->name);
952 f6861a81 2018-09-13 stsp if (te) {
953 f6861a81 2018-09-13 stsp free(l2);
954 f6861a81 2018-09-13 stsp l2 = NULL;
955 f6861a81 2018-09-13 stsp if (te && asprintf(&l2, "%s%s%s", label2,
956 5fa52d6c 2023-01-11 mark label2[0] ? "/" : "", te->name) == -1) {
957 5fa52d6c 2023-01-11 mark err = got_error_from_errno("asprintf");
958 5fa52d6c 2023-01-11 mark goto done;
959 5fa52d6c 2023-01-11 mark }
960 f6861a81 2018-09-13 stsp }
961 5fa52d6c 2023-01-11 mark
962 f9d37699 2022-06-28 stsp err = diff_entry_old_new(te1, te, f1, f2, fd1, fd2,
963 f9d37699 2022-06-28 stsp l1, l2, repo, cb, cb_arg, diff_content);
964 474b4f94 2017-11-30 stsp if (err)
965 474b4f94 2017-11-30 stsp break;
966 474b4f94 2017-11-30 stsp }
967 474b4f94 2017-11-30 stsp
968 474b4f94 2017-11-30 stsp if (te2) {
969 56e0773d 2019-11-28 stsp struct got_tree_entry *te = NULL;
970 5fa52d6c 2023-01-11 mark
971 f6861a81 2018-09-13 stsp if (tree1)
972 1de5e065 2019-06-01 stsp te = got_object_tree_find_entry(tree1,
973 1de5e065 2019-06-01 stsp te2->name);
974 5fa52d6c 2023-01-11 mark
975 d6ce02f1 2018-11-17 stsp free(l2);
976 5fa52d6c 2023-01-11 mark l2 = NULL;
977 d6ce02f1 2018-11-17 stsp if (te) {
978 d6ce02f1 2018-11-17 stsp if (asprintf(&l2, "%s%s%s", label2,
979 5fa52d6c 2023-01-11 mark label2[0] ? "/" : "", te->name) == -1) {
980 5fa52d6c 2023-01-11 mark err = got_error_from_errno("asprintf");
981 5fa52d6c 2023-01-11 mark goto done;
982 5fa52d6c 2023-01-11 mark }
983 d6ce02f1 2018-11-17 stsp } else {
984 d6ce02f1 2018-11-17 stsp if (asprintf(&l2, "%s%s%s", label2,
985 5fa52d6c 2023-01-11 mark label2[0] ? "/" : "", te2->name) == -1) {
986 5fa52d6c 2023-01-11 mark err = got_error_from_errno("asprintf");
987 5fa52d6c 2023-01-11 mark goto done;
988 5fa52d6c 2023-01-11 mark }
989 d6ce02f1 2018-11-17 stsp }
990 5fa52d6c 2023-01-11 mark
991 49d4a017 2022-06-30 stsp err = diff_entry_new_old(te2, te, f1, f2, fd2, l2,
992 49d4a017 2022-06-30 stsp repo, cb, cb_arg, diff_content);
993 474b4f94 2017-11-30 stsp if (err)
994 474b4f94 2017-11-30 stsp break;
995 474b4f94 2017-11-30 stsp }
996 474b4f94 2017-11-30 stsp
997 f6861a81 2018-09-13 stsp free(l1);
998 f6861a81 2018-09-13 stsp l1 = NULL;
999 f6861a81 2018-09-13 stsp if (te1) {
1000 56e0773d 2019-11-28 stsp tidx1++;
1001 56e0773d 2019-11-28 stsp te1 = got_object_tree_get_entry(tree1, tidx1);
1002 f6861a81 2018-09-13 stsp if (te1 &&
1003 f6861a81 2018-09-13 stsp asprintf(&l1, "%s%s%s", label1,
1004 5fa52d6c 2023-01-11 mark label1[0] ? "/" : "", te1->name) == -1) {
1005 5fa52d6c 2023-01-11 mark err = got_error_from_errno("asprintf");
1006 5fa52d6c 2023-01-11 mark goto done;
1007 5fa52d6c 2023-01-11 mark }
1008 f6861a81 2018-09-13 stsp }
1009 5fa52d6c 2023-01-11 mark
1010 f6861a81 2018-09-13 stsp free(l2);
1011 f6861a81 2018-09-13 stsp l2 = NULL;
1012 f6861a81 2018-09-13 stsp if (te2) {
1013 56e0773d 2019-11-28 stsp tidx2++;
1014 56e0773d 2019-11-28 stsp te2 = got_object_tree_get_entry(tree2, tidx2);
1015 f6861a81 2018-09-13 stsp if (te2 &&
1016 f6861a81 2018-09-13 stsp asprintf(&l2, "%s%s%s", label2,
1017 5fa52d6c 2023-01-11 mark label2[0] ? "/" : "", te2->name) == -1) {
1018 5fa52d6c 2023-01-11 mark err = got_error_from_errno("asprintf");
1019 5fa52d6c 2023-01-11 mark goto done;
1020 5fa52d6c 2023-01-11 mark }
1021 f6861a81 2018-09-13 stsp }
1022 474b4f94 2017-11-30 stsp } while (te1 || te2);
1023 11528a82 2018-05-19 stsp
1024 5fa52d6c 2023-01-11 mark done:
1025 5fa52d6c 2023-01-11 mark free(l1);
1026 5fa52d6c 2023-01-11 mark free(l2);
1027 11528a82 2018-05-19 stsp return err;
1028 11528a82 2018-05-19 stsp }
1029 11528a82 2018-05-19 stsp
1030 11528a82 2018-05-19 stsp const struct got_error *
1031 c7d5c43c 2022-08-04 mark got_diff_objects_as_blobs(struct got_diff_line **lines, size_t *nlines,
1032 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
1033 f9d37699 2022-06-28 stsp struct got_object_id *id1, struct got_object_id *id2,
1034 4b752015 2022-06-30 stsp const char *label1, const char *label2,
1035 4b752015 2022-06-30 stsp enum got_diff_algorithm diff_algo, int diff_context,
1036 1f3405c9 2023-01-17 mark int ignore_whitespace, int force_text_diff, struct got_diffstat_cb_arg *ds,
1037 1f3405c9 2023-01-17 mark struct got_repository *repo, FILE *outfile)
1038 11528a82 2018-05-19 stsp {
1039 11528a82 2018-05-19 stsp const struct got_error *err;
1040 11528a82 2018-05-19 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
1041 b74c7625 2018-05-20 stsp
1042 15a94983 2018-12-23 stsp if (id1 == NULL && id2 == NULL)
1043 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
1044 eb81bc23 2022-06-28 tracey
1045 15a94983 2018-12-23 stsp if (id1) {
1046 eb81bc23 2022-06-28 tracey err = got_object_open_as_blob(&blob1, repo, id1, 8192, fd1);
1047 cd0acaa7 2018-05-20 stsp if (err)
1048 cd0acaa7 2018-05-20 stsp goto done;
1049 cd0acaa7 2018-05-20 stsp }
1050 15a94983 2018-12-23 stsp if (id2) {
1051 eb81bc23 2022-06-28 tracey err = got_object_open_as_blob(&blob2, repo, id2, 8192, fd2);
1052 cd0acaa7 2018-05-20 stsp if (err)
1053 cd0acaa7 2018-05-20 stsp goto done;
1054 cd0acaa7 2018-05-20 stsp }
1055 c7d5c43c 2022-08-04 mark err = got_diff_blob(lines, nlines, blob1, blob2, f1, f2, label1, label2,
1056 c7d5c43c 2022-08-04 mark diff_algo, diff_context, ignore_whitespace, force_text_diff,
1057 1f3405c9 2023-01-17 mark ds, outfile);
1058 67b631c9 2021-10-10 stsp done:
1059 67b631c9 2021-10-10 stsp if (blob1)
1060 67b631c9 2021-10-10 stsp got_object_blob_close(blob1);
1061 67b631c9 2021-10-10 stsp if (blob2)
1062 67b631c9 2021-10-10 stsp got_object_blob_close(blob2);
1063 67b631c9 2021-10-10 stsp return err;
1064 67b631c9 2021-10-10 stsp }
1065 67b631c9 2021-10-10 stsp
1066 67b631c9 2021-10-10 stsp static const struct got_error *
1067 67b631c9 2021-10-10 stsp diff_paths(struct got_tree_object *tree1, struct got_tree_object *tree2,
1068 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2, struct got_pathlist_head *paths,
1069 b72706c3 2022-06-01 stsp struct got_repository *repo, got_diff_blob_cb cb, void *cb_arg)
1070 67b631c9 2021-10-10 stsp {
1071 67b631c9 2021-10-10 stsp const struct got_error *err = NULL;
1072 67b631c9 2021-10-10 stsp struct got_pathlist_entry *pe;
1073 67b631c9 2021-10-10 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
1074 67b631c9 2021-10-10 stsp struct got_tree_object *subtree1 = NULL, *subtree2 = NULL;
1075 67b631c9 2021-10-10 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
1076 67b631c9 2021-10-10 stsp
1077 67b631c9 2021-10-10 stsp TAILQ_FOREACH(pe, paths, entry) {
1078 67b631c9 2021-10-10 stsp int type1 = GOT_OBJ_TYPE_ANY, type2 = GOT_OBJ_TYPE_ANY;
1079 67b631c9 2021-10-10 stsp mode_t mode1 = 0, mode2 = 0;
1080 67b631c9 2021-10-10 stsp
1081 67b631c9 2021-10-10 stsp free(id1);
1082 67b631c9 2021-10-10 stsp id1 = NULL;
1083 67b631c9 2021-10-10 stsp free(id2);
1084 67b631c9 2021-10-10 stsp id2 = NULL;
1085 67b631c9 2021-10-10 stsp if (subtree1) {
1086 67b631c9 2021-10-10 stsp got_object_tree_close(subtree1);
1087 67b631c9 2021-10-10 stsp subtree1 = NULL;
1088 67b631c9 2021-10-10 stsp }
1089 67b631c9 2021-10-10 stsp if (subtree2) {
1090 67b631c9 2021-10-10 stsp got_object_tree_close(subtree2);
1091 67b631c9 2021-10-10 stsp subtree2 = NULL;
1092 67b631c9 2021-10-10 stsp }
1093 67b631c9 2021-10-10 stsp if (blob1) {
1094 67b631c9 2021-10-10 stsp got_object_blob_close(blob1);
1095 67b631c9 2021-10-10 stsp blob1 = NULL;
1096 67b631c9 2021-10-10 stsp }
1097 67b631c9 2021-10-10 stsp if (blob2) {
1098 67b631c9 2021-10-10 stsp got_object_blob_close(blob2);
1099 67b631c9 2021-10-10 stsp blob2 = NULL;
1100 67b631c9 2021-10-10 stsp }
1101 67b631c9 2021-10-10 stsp
1102 67b631c9 2021-10-10 stsp err = got_object_tree_find_path(&id1, &mode1, repo, tree1,
1103 67b631c9 2021-10-10 stsp pe->path);
1104 67b631c9 2021-10-10 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
1105 67b631c9 2021-10-10 stsp goto done;
1106 67b631c9 2021-10-10 stsp err = got_object_tree_find_path(&id2, &mode2, repo, tree2,
1107 67b631c9 2021-10-10 stsp pe->path);
1108 67b631c9 2021-10-10 stsp if (err && err->code != GOT_ERR_NO_TREE_ENTRY)
1109 67b631c9 2021-10-10 stsp goto done;
1110 67b631c9 2021-10-10 stsp if (id1 == NULL && id2 == NULL) {
1111 67b631c9 2021-10-10 stsp err = got_error_path(pe->path, GOT_ERR_NO_TREE_ENTRY);
1112 67b631c9 2021-10-10 stsp goto done;
1113 67b631c9 2021-10-10 stsp }
1114 67b631c9 2021-10-10 stsp if (id1) {
1115 67b631c9 2021-10-10 stsp err = got_object_get_type(&type1, repo, id1);
1116 67b631c9 2021-10-10 stsp if (err)
1117 67b631c9 2021-10-10 stsp goto done;
1118 67b631c9 2021-10-10 stsp }
1119 67b631c9 2021-10-10 stsp if (id2) {
1120 67b631c9 2021-10-10 stsp err = got_object_get_type(&type2, repo, id2);
1121 67b631c9 2021-10-10 stsp if (err)
1122 67b631c9 2021-10-10 stsp goto done;
1123 67b631c9 2021-10-10 stsp }
1124 67b631c9 2021-10-10 stsp if (type1 == GOT_OBJ_TYPE_ANY &&
1125 67b631c9 2021-10-10 stsp type2 == GOT_OBJ_TYPE_ANY) {
1126 67b631c9 2021-10-10 stsp err = got_error_path(pe->path, GOT_ERR_NO_OBJ);
1127 67b631c9 2021-10-10 stsp goto done;
1128 67b631c9 2021-10-10 stsp } else if (type1 != GOT_OBJ_TYPE_ANY &&
1129 67b631c9 2021-10-10 stsp type2 != GOT_OBJ_TYPE_ANY && type1 != type2) {
1130 67b631c9 2021-10-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
1131 67b631c9 2021-10-10 stsp goto done;
1132 67b631c9 2021-10-10 stsp }
1133 67b631c9 2021-10-10 stsp
1134 67b631c9 2021-10-10 stsp if (type1 == GOT_OBJ_TYPE_BLOB ||
1135 67b631c9 2021-10-10 stsp type2 == GOT_OBJ_TYPE_BLOB) {
1136 67b631c9 2021-10-10 stsp if (id1) {
1137 67b631c9 2021-10-10 stsp err = got_object_open_as_blob(&blob1, repo,
1138 eb81bc23 2022-06-28 tracey id1, 8192, fd1);
1139 67b631c9 2021-10-10 stsp if (err)
1140 67b631c9 2021-10-10 stsp goto done;
1141 67b631c9 2021-10-10 stsp }
1142 67b631c9 2021-10-10 stsp if (id2) {
1143 67b631c9 2021-10-10 stsp err = got_object_open_as_blob(&blob2, repo,
1144 eb81bc23 2022-06-28 tracey id2, 8192, fd2);
1145 67b631c9 2021-10-10 stsp if (err)
1146 67b631c9 2021-10-10 stsp goto done;
1147 67b631c9 2021-10-10 stsp }
1148 b72706c3 2022-06-01 stsp err = cb(cb_arg, blob1, blob2, f1, f2, id1, id2,
1149 67b631c9 2021-10-10 stsp id1 ? pe->path : "/dev/null",
1150 67b631c9 2021-10-10 stsp id2 ? pe->path : "/dev/null",
1151 67b631c9 2021-10-10 stsp mode1, mode2, repo);
1152 67b631c9 2021-10-10 stsp if (err)
1153 67b631c9 2021-10-10 stsp goto done;
1154 67b631c9 2021-10-10 stsp } else if (type1 == GOT_OBJ_TYPE_TREE ||
1155 67b631c9 2021-10-10 stsp type2 == GOT_OBJ_TYPE_TREE) {
1156 67b631c9 2021-10-10 stsp if (id1) {
1157 67b631c9 2021-10-10 stsp err = got_object_open_as_tree(&subtree1, repo,
1158 67b631c9 2021-10-10 stsp id1);
1159 67b631c9 2021-10-10 stsp if (err)
1160 67b631c9 2021-10-10 stsp goto done;
1161 67b631c9 2021-10-10 stsp }
1162 67b631c9 2021-10-10 stsp if (id2) {
1163 67b631c9 2021-10-10 stsp err = got_object_open_as_tree(&subtree2, repo,
1164 67b631c9 2021-10-10 stsp id2);
1165 67b631c9 2021-10-10 stsp if (err)
1166 67b631c9 2021-10-10 stsp goto done;
1167 67b631c9 2021-10-10 stsp }
1168 b72706c3 2022-06-01 stsp err = got_diff_tree(subtree1, subtree2, f1, f2,
1169 f9d37699 2022-06-28 stsp fd1, fd2,
1170 67b631c9 2021-10-10 stsp id1 ? pe->path : "/dev/null",
1171 67b631c9 2021-10-10 stsp id2 ? pe->path : "/dev/null",
1172 67b631c9 2021-10-10 stsp repo, cb, cb_arg, 1);
1173 67b631c9 2021-10-10 stsp if (err)
1174 67b631c9 2021-10-10 stsp goto done;
1175 67b631c9 2021-10-10 stsp } else {
1176 67b631c9 2021-10-10 stsp err = got_error(GOT_ERR_OBJ_TYPE);
1177 67b631c9 2021-10-10 stsp goto done;
1178 67b631c9 2021-10-10 stsp }
1179 67b631c9 2021-10-10 stsp }
1180 11528a82 2018-05-19 stsp done:
1181 67b631c9 2021-10-10 stsp free(id1);
1182 67b631c9 2021-10-10 stsp free(id2);
1183 67b631c9 2021-10-10 stsp if (subtree1)
1184 67b631c9 2021-10-10 stsp got_object_tree_close(subtree1);
1185 67b631c9 2021-10-10 stsp if (subtree2)
1186 67b631c9 2021-10-10 stsp got_object_tree_close(subtree2);
1187 11528a82 2018-05-19 stsp if (blob1)
1188 11528a82 2018-05-19 stsp got_object_blob_close(blob1);
1189 11528a82 2018-05-19 stsp if (blob2)
1190 11528a82 2018-05-19 stsp got_object_blob_close(blob2);
1191 474b4f94 2017-11-30 stsp return err;
1192 474b4f94 2017-11-30 stsp }
1193 11528a82 2018-05-19 stsp
1194 8469d821 2022-06-25 stsp static const struct got_error *
1195 c7d5c43c 2022-08-04 mark show_object_id(struct got_diff_line **lines, size_t *nlines,
1196 c7d5c43c 2022-08-04 mark const char *obj_typestr, int ch, const char *id_str, FILE *outfile)
1197 8469d821 2022-06-25 stsp {
1198 8469d821 2022-06-25 stsp const struct got_error *err;
1199 8469d821 2022-06-25 stsp int n;
1200 8469d821 2022-06-25 stsp off_t outoff = 0;
1201 8469d821 2022-06-25 stsp
1202 8469d821 2022-06-25 stsp n = fprintf(outfile, "%s %c %s\n", obj_typestr, ch, id_str);
1203 36e83e5e 2022-08-16 op if (n < 0)
1204 36e83e5e 2022-08-16 op return got_error_from_errno("fprintf");
1205 36e83e5e 2022-08-16 op
1206 c7d5c43c 2022-08-04 mark if (lines != NULL && *lines != NULL) {
1207 8469d821 2022-06-25 stsp if (*nlines == 0) {
1208 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, 0,
1209 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_META);
1210 8469d821 2022-06-25 stsp if (err)
1211 8469d821 2022-06-25 stsp return err;
1212 8469d821 2022-06-25 stsp } else
1213 c7d5c43c 2022-08-04 mark outoff = (*lines)[*nlines - 1].offset;
1214 8469d821 2022-06-25 stsp
1215 8469d821 2022-06-25 stsp outoff += n;
1216 c7d5c43c 2022-08-04 mark err = add_line_metadata(lines, nlines, outoff,
1217 c7d5c43c 2022-08-04 mark GOT_DIFF_LINE_META);
1218 8469d821 2022-06-25 stsp if (err)
1219 8469d821 2022-06-25 stsp return err;
1220 8469d821 2022-06-25 stsp }
1221 8469d821 2022-06-25 stsp
1222 8469d821 2022-06-25 stsp return NULL;
1223 8469d821 2022-06-25 stsp }
1224 8469d821 2022-06-25 stsp
1225 8469d821 2022-06-25 stsp static const struct got_error *
1226 c7d5c43c 2022-08-04 mark diff_objects_as_trees(struct got_diff_line **lines, size_t *nlines,
1227 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
1228 f9d37699 2022-06-28 stsp struct got_object_id *id1, struct got_object_id *id2,
1229 58e31a80 2022-06-27 op struct got_pathlist_head *paths, const char *label1, const char *label2,
1230 58e31a80 2022-06-27 op int diff_context, int ignore_whitespace, int force_text_diff,
1231 1f3405c9 2023-01-17 mark struct got_diffstat_cb_arg *dsa, struct got_repository *repo,
1232 1f3405c9 2023-01-17 mark FILE *outfile, enum got_diff_algorithm diff_algo)
1233 11528a82 2018-05-19 stsp {
1234 11528a82 2018-05-19 stsp const struct got_error *err;
1235 11528a82 2018-05-19 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1236 aaa13589 2019-06-01 stsp struct got_diff_blob_output_unidiff_arg arg;
1237 c7d5c43c 2022-08-04 mark int want_linemeta = (lines != NULL && *lines != NULL);
1238 11528a82 2018-05-19 stsp
1239 15a94983 2018-12-23 stsp if (id1 == NULL && id2 == NULL)
1240 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
1241 b74c7625 2018-05-20 stsp
1242 15a94983 2018-12-23 stsp if (id1) {
1243 15a94983 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo, id1);
1244 cd0acaa7 2018-05-20 stsp if (err)
1245 cd0acaa7 2018-05-20 stsp goto done;
1246 cd0acaa7 2018-05-20 stsp }
1247 15a94983 2018-12-23 stsp if (id2) {
1248 15a94983 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo, id2);
1249 cd0acaa7 2018-05-20 stsp if (err)
1250 cd0acaa7 2018-05-20 stsp goto done;
1251 cd0acaa7 2018-05-20 stsp }
1252 67b631c9 2021-10-10 stsp
1253 4b752015 2022-06-30 stsp arg.diff_algo = diff_algo;
1254 aaa13589 2019-06-01 stsp arg.diff_context = diff_context;
1255 63035f9f 2019-10-06 stsp arg.ignore_whitespace = ignore_whitespace;
1256 64453f7e 2020-11-21 stsp arg.force_text_diff = force_text_diff;
1257 a76e88e5 2023-01-10 mark arg.diffstat = dsa;
1258 aaa13589 2019-06-01 stsp arg.outfile = outfile;
1259 c7d5c43c 2022-08-04 mark if (want_linemeta) {
1260 c7d5c43c 2022-08-04 mark arg.lines = *lines;
1261 fe621944 2020-11-10 stsp arg.nlines = *nlines;
1262 fe621944 2020-11-10 stsp } else {
1263 c7d5c43c 2022-08-04 mark arg.lines = NULL;
1264 fe621944 2020-11-10 stsp arg.nlines = 0;
1265 fe621944 2020-11-10 stsp }
1266 a76e88e5 2023-01-10 mark if (paths == NULL || TAILQ_EMPTY(paths))
1267 a76e88e5 2023-01-10 mark err = got_diff_tree(tree1, tree2, f1, f2, fd1, fd2, label1,
1268 a76e88e5 2023-01-10 mark label2, repo, got_diff_blob_output_unidiff, &arg, 1);
1269 a76e88e5 2023-01-10 mark else
1270 f9d37699 2022-06-28 stsp err = diff_paths(tree1, tree2, f1, f2, fd1, fd2, paths, repo,
1271 67b631c9 2021-10-10 stsp got_diff_blob_output_unidiff, &arg);
1272 c7d5c43c 2022-08-04 mark if (want_linemeta) {
1273 c7d5c43c 2022-08-04 mark *lines = arg.lines; /* was likely re-allocated */
1274 fe621944 2020-11-10 stsp *nlines = arg.nlines;
1275 fe621944 2020-11-10 stsp }
1276 11528a82 2018-05-19 stsp done:
1277 11528a82 2018-05-19 stsp if (tree1)
1278 11528a82 2018-05-19 stsp got_object_tree_close(tree1);
1279 11528a82 2018-05-19 stsp if (tree2)
1280 11528a82 2018-05-19 stsp got_object_tree_close(tree2);
1281 11528a82 2018-05-19 stsp return err;
1282 11528a82 2018-05-19 stsp }
1283 11528a82 2018-05-19 stsp
1284 11528a82 2018-05-19 stsp const struct got_error *
1285 c7d5c43c 2022-08-04 mark got_diff_objects_as_trees(struct got_diff_line **lines, size_t *nlines,
1286 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
1287 f9d37699 2022-06-28 stsp struct got_object_id *id1, struct got_object_id *id2,
1288 58e31a80 2022-06-27 op struct got_pathlist_head *paths, const char *label1, const char *label2,
1289 4b752015 2022-06-30 stsp enum got_diff_algorithm diff_algo, int diff_context, int ignore_whitespace,
1290 1f3405c9 2023-01-17 mark int force_text_diff, struct got_diffstat_cb_arg *dsa,
1291 a76e88e5 2023-01-10 mark struct got_repository *repo, FILE *outfile)
1292 8469d821 2022-06-25 stsp {
1293 8469d821 2022-06-25 stsp const struct got_error *err;
1294 8469d821 2022-06-25 stsp char *idstr = NULL;
1295 8469d821 2022-06-25 stsp
1296 8469d821 2022-06-25 stsp if (id1 == NULL && id2 == NULL)
1297 8469d821 2022-06-25 stsp return got_error(GOT_ERR_NO_OBJ);
1298 8469d821 2022-06-25 stsp
1299 8469d821 2022-06-25 stsp if (id1) {
1300 8469d821 2022-06-25 stsp err = got_object_id_str(&idstr, id1);
1301 8469d821 2022-06-25 stsp if (err)
1302 8469d821 2022-06-25 stsp goto done;
1303 c7d5c43c 2022-08-04 mark err = show_object_id(lines, nlines, "tree", '-', idstr, outfile);
1304 8469d821 2022-06-25 stsp if (err)
1305 8469d821 2022-06-25 stsp goto done;
1306 8469d821 2022-06-25 stsp free(idstr);
1307 8469d821 2022-06-25 stsp idstr = NULL;
1308 8469d821 2022-06-25 stsp } else {
1309 c7d5c43c 2022-08-04 mark err = show_object_id(lines, nlines, "tree", '-', "/dev/null",
1310 c7d5c43c 2022-08-04 mark outfile);
1311 8469d821 2022-06-25 stsp if (err)
1312 8469d821 2022-06-25 stsp goto done;
1313 8469d821 2022-06-25 stsp }
1314 8469d821 2022-06-25 stsp
1315 8469d821 2022-06-25 stsp if (id2) {
1316 8469d821 2022-06-25 stsp err = got_object_id_str(&idstr, id2);
1317 8469d821 2022-06-25 stsp if (err)
1318 8469d821 2022-06-25 stsp goto done;
1319 c7d5c43c 2022-08-04 mark err = show_object_id(lines, nlines, "tree", '+', idstr, outfile);
1320 8469d821 2022-06-25 stsp if (err)
1321 8469d821 2022-06-25 stsp goto done;
1322 8469d821 2022-06-25 stsp free(idstr);
1323 8469d821 2022-06-25 stsp idstr = NULL;
1324 8469d821 2022-06-25 stsp } else {
1325 c7d5c43c 2022-08-04 mark err = show_object_id(lines, nlines, "tree", '+', "/dev/null",
1326 c7d5c43c 2022-08-04 mark outfile);
1327 8469d821 2022-06-25 stsp if (err)
1328 8469d821 2022-06-25 stsp goto done;
1329 8469d821 2022-06-25 stsp }
1330 8469d821 2022-06-25 stsp
1331 c7d5c43c 2022-08-04 mark err = diff_objects_as_trees(lines, nlines, f1, f2, fd1, fd2, id1, id2,
1332 c7d5c43c 2022-08-04 mark paths, label1, label2, diff_context, ignore_whitespace,
1333 1f3405c9 2023-01-17 mark force_text_diff, dsa, repo, outfile, diff_algo);
1334 8469d821 2022-06-25 stsp done:
1335 8469d821 2022-06-25 stsp free(idstr);
1336 8469d821 2022-06-25 stsp return err;
1337 8469d821 2022-06-25 stsp }
1338 8469d821 2022-06-25 stsp
1339 8469d821 2022-06-25 stsp const struct got_error *
1340 c7d5c43c 2022-08-04 mark got_diff_objects_as_commits(struct got_diff_line **lines, size_t *nlines,
1341 f9d37699 2022-06-28 stsp FILE *f1, FILE *f2, int fd1, int fd2,
1342 f9d37699 2022-06-28 stsp struct got_object_id *id1, struct got_object_id *id2,
1343 4b752015 2022-06-30 stsp struct got_pathlist_head *paths, enum got_diff_algorithm diff_algo,
1344 64453f7e 2020-11-21 stsp int diff_context, int ignore_whitespace, int force_text_diff,
1345 1f3405c9 2023-01-17 mark struct got_diffstat_cb_arg *dsa, struct got_repository *repo, FILE *outfile)
1346 11528a82 2018-05-19 stsp {
1347 11528a82 2018-05-19 stsp const struct got_error *err;
1348 11528a82 2018-05-19 stsp struct got_commit_object *commit1 = NULL, *commit2 = NULL;
1349 8469d821 2022-06-25 stsp char *idstr = NULL;
1350 11528a82 2018-05-19 stsp
1351 15a94983 2018-12-23 stsp if (id2 == NULL)
1352 b74c7625 2018-05-20 stsp return got_error(GOT_ERR_NO_OBJ);
1353 b74c7625 2018-05-20 stsp
1354 15a94983 2018-12-23 stsp if (id1) {
1355 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit1, repo, id1);
1356 cd0acaa7 2018-05-20 stsp if (err)
1357 cd0acaa7 2018-05-20 stsp goto done;
1358 8469d821 2022-06-25 stsp err = got_object_id_str(&idstr, id1);
1359 8469d821 2022-06-25 stsp if (err)
1360 8469d821 2022-06-25 stsp goto done;
1361 c7d5c43c 2022-08-04 mark err = show_object_id(lines, nlines, "commit", '-', idstr,
1362 c7d5c43c 2022-08-04 mark outfile);
1363 8469d821 2022-06-25 stsp if (err)
1364 8469d821 2022-06-25 stsp goto done;
1365 8469d821 2022-06-25 stsp free(idstr);
1366 8469d821 2022-06-25 stsp idstr = NULL;
1367 8469d821 2022-06-25 stsp } else {
1368 c7d5c43c 2022-08-04 mark err = show_object_id(lines, nlines, "commit", '-', "/dev/null",
1369 c7d5c43c 2022-08-04 mark outfile);
1370 8469d821 2022-06-25 stsp if (err)
1371 8469d821 2022-06-25 stsp goto done;
1372 cd0acaa7 2018-05-20 stsp }
1373 bacc9935 2018-05-20 stsp
1374 15a94983 2018-12-23 stsp err = got_object_open_as_commit(&commit2, repo, id2);
1375 9b697879 2018-05-20 stsp if (err)
1376 9b697879 2018-05-20 stsp goto done;
1377 9b697879 2018-05-20 stsp
1378 8469d821 2022-06-25 stsp err = got_object_id_str(&idstr, id2);
1379 8469d821 2022-06-25 stsp if (err)
1380 8469d821 2022-06-25 stsp goto done;
1381 c7d5c43c 2022-08-04 mark err = show_object_id(lines, nlines, "commit", '+', idstr, outfile);
1382 8469d821 2022-06-25 stsp if (err)
1383 8469d821 2022-06-25 stsp goto done;
1384 8469d821 2022-06-25 stsp
1385 c7d5c43c 2022-08-04 mark err = diff_objects_as_trees(lines, nlines, f1, f2, fd1, fd2,
1386 15a94983 2018-12-23 stsp commit1 ? got_object_commit_get_tree_id(commit1) : NULL,
1387 67b631c9 2021-10-10 stsp got_object_commit_get_tree_id(commit2), paths, "", "",
1388 1f3405c9 2023-01-17 mark diff_context, ignore_whitespace, force_text_diff, dsa, repo,
1389 1f3405c9 2023-01-17 mark outfile, diff_algo);
1390 11528a82 2018-05-19 stsp done:
1391 11528a82 2018-05-19 stsp if (commit1)
1392 11528a82 2018-05-19 stsp got_object_commit_close(commit1);
1393 11528a82 2018-05-19 stsp if (commit2)
1394 11528a82 2018-05-19 stsp got_object_commit_close(commit2);
1395 8469d821 2022-06-25 stsp free(idstr);
1396 11528a82 2018-05-19 stsp return err;
1397 11528a82 2018-05-19 stsp }
1398 dc424a06 2019-08-07 stsp
1399 dc424a06 2019-08-07 stsp const struct got_error *
1400 fe621944 2020-11-10 stsp got_diff_files(struct got_diffreg_result **resultp,
1401 49d4a017 2022-06-30 stsp FILE *f1, int f1_exists, const char *label1, FILE *f2, int f2_exists,
1402 49d4a017 2022-06-30 stsp const char *label2, int diff_context, int ignore_whitespace,
1403 4b752015 2022-06-30 stsp int force_text_diff, FILE *outfile, enum got_diff_algorithm diff_algo)
1404 dc424a06 2019-08-07 stsp {
1405 dc424a06 2019-08-07 stsp const struct got_error *err = NULL;
1406 fe621944 2020-11-10 stsp struct got_diffreg_result *diffreg_result = NULL;
1407 dc424a06 2019-08-07 stsp
1408 fe621944 2020-11-10 stsp if (resultp)
1409 fe621944 2020-11-10 stsp *resultp = NULL;
1410 dc424a06 2019-08-07 stsp
1411 dc424a06 2019-08-07 stsp if (outfile) {
1412 dc424a06 2019-08-07 stsp fprintf(outfile, "file - %s\n",
1413 49d4a017 2022-06-30 stsp f1_exists ? label1 : "/dev/null");
1414 dc424a06 2019-08-07 stsp fprintf(outfile, "file + %s\n",
1415 49d4a017 2022-06-30 stsp f2_exists ? label2 : "/dev/null");
1416 dc424a06 2019-08-07 stsp }
1417 fe621944 2020-11-10 stsp
1418 4b752015 2022-06-30 stsp err = got_diffreg(&diffreg_result, f1, f2, diff_algo,
1419 64453f7e 2020-11-21 stsp ignore_whitespace, force_text_diff);
1420 fe621944 2020-11-10 stsp if (err)
1421 fe621944 2020-11-10 stsp goto done;
1422 fe621944 2020-11-10 stsp
1423 fe621944 2020-11-10 stsp if (outfile) {
1424 fe621944 2020-11-10 stsp err = got_diffreg_output(NULL, NULL, diffreg_result,
1425 49d4a017 2022-06-30 stsp f1_exists, f2_exists, label1, label2,
1426 1cb46f00 2020-11-21 stsp GOT_DIFF_OUTPUT_UNIDIFF, diff_context, outfile);
1427 dc424a06 2019-08-07 stsp if (err)
1428 dc424a06 2019-08-07 stsp goto done;
1429 dc424a06 2019-08-07 stsp }
1430 fe621944 2020-11-10 stsp
1431 dc424a06 2019-08-07 stsp done:
1432 fe621944 2020-11-10 stsp if (resultp && err == NULL)
1433 fe621944 2020-11-10 stsp *resultp = diffreg_result;
1434 fe621944 2020-11-10 stsp else if (diffreg_result) {
1435 fe621944 2020-11-10 stsp const struct got_error *free_err;
1436 5fa52d6c 2023-01-11 mark
1437 fe621944 2020-11-10 stsp free_err = got_diffreg_result_free(diffreg_result);
1438 fe621944 2020-11-10 stsp if (free_err && err == NULL)
1439 fe621944 2020-11-10 stsp err = free_err;
1440 dc424a06 2019-08-07 stsp }
1441 fe621944 2020-11-10 stsp
1442 dc424a06 2019-08-07 stsp return err;
1443 dc424a06 2019-08-07 stsp }