Blob


1 /* Produce a unidiff output from a diff_result. */
2 /*
3 * Copyright (c) 2020 Neels Hofmeyr <neels@hofmeyr.de>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 #include <errno.h>
19 #include <inttypes.h>
20 #include <stdbool.h>
21 #include <stdio.h>
22 #include <stdlib.h>
24 #include <arraylist.h>
25 #include <diff_main.h>
26 #include <diff_output.h>
28 #include "diff_internal.h"
29 #include "diff_debug.h"
31 static bool
32 chunk_context_empty(const struct diff_chunk_context *cc)
33 {
34 return diff_range_empty(&cc->chunk);
35 }
37 int
38 diff_chunk_get_left_start(const struct diff_chunk *c,
39 const struct diff_result *r, int context_lines)
40 {
41 int left_start = diff_atom_root_idx(&r->left, c->left_start);
42 return MAX(0, left_start - context_lines);
43 }
45 int
46 diff_chunk_get_left_end(const struct diff_chunk *c,
47 const struct diff_result *r, int context_lines)
48 {
49 int left_start = diff_chunk_get_left_start(c, r, 0);
50 return MIN(r->left.atoms.len,
51 left_start + c->left_count + context_lines);
52 }
54 int
55 diff_chunk_get_right_start(const struct diff_chunk *c,
56 const struct diff_result *r, int context_lines)
57 {
58 int right_start = diff_atom_root_idx(&r->right, c->right_start);
59 return MAX(0, right_start - context_lines);
60 }
62 int
63 diff_chunk_get_right_end(const struct diff_chunk *c,
64 const struct diff_result *r, int context_lines)
65 {
66 int right_start = diff_chunk_get_right_start(c, r, 0);
67 return MIN(r->right.atoms.len,
68 right_start + c->right_count + context_lines);
69 }
71 void
72 diff_chunk_context_get(struct diff_chunk_context *cc, const struct diff_result *r,
73 int chunk_idx, int context_lines)
74 {
75 const struct diff_chunk *c = &r->chunks.head[chunk_idx];
76 int left_start = diff_chunk_get_left_start(c, r, context_lines);
77 int left_end = diff_chunk_get_left_end(c, r, context_lines);
78 int right_start = diff_chunk_get_right_start(c, r, context_lines);
79 int right_end = diff_chunk_get_right_end(c, r, context_lines);
81 *cc = (struct diff_chunk_context){
82 .chunk = {
83 .start = chunk_idx,
84 .end = chunk_idx + 1,
85 },
86 .left = {
87 .start = left_start,
88 .end = left_end,
89 },
90 .right = {
91 .start = right_start,
92 .end = right_end,
93 },
94 };
95 }
97 static bool
98 chunk_contexts_touch(const struct diff_chunk_context *cc,
99 const struct diff_chunk_context *other)
101 return diff_ranges_touch(&cc->chunk, &other->chunk)
102 || diff_ranges_touch(&cc->left, &other->left)
103 || diff_ranges_touch(&cc->right, &other->right);
106 static void
107 chunk_contexts_merge(struct diff_chunk_context *cc,
108 const struct diff_chunk_context *other)
110 diff_ranges_merge(&cc->chunk, &other->chunk);
111 diff_ranges_merge(&cc->left, &other->left);
112 diff_ranges_merge(&cc->right, &other->right);
115 struct diff_output_unidiff_state {
116 bool header_printed;
117 };
119 struct diff_output_unidiff_state *
120 diff_output_unidiff_state_alloc(void)
122 struct diff_output_unidiff_state *state;
124 state = calloc(1, sizeof(struct diff_output_unidiff_state));
125 if (state != NULL)
126 diff_output_unidiff_state_reset(state);
127 return state;
130 void
131 diff_output_unidiff_state_reset(struct diff_output_unidiff_state *state)
133 state->header_printed = false;
136 void
137 diff_output_unidiff_state_free(struct diff_output_unidiff_state *state)
139 free(state);
142 static int
143 output_unidiff_chunk(struct diff_output_info *outinfo, FILE *dest,
144 struct diff_output_unidiff_state *state,
145 const struct diff_input_info *info,
146 const struct diff_result *result,
147 const struct diff_chunk_context *cc)
149 int rc, left_start, left_len, right_start, right_len;
150 off_t outoff = 0, *offp;
152 if (diff_range_empty(&cc->left) && diff_range_empty(&cc->right))
153 return DIFF_RC_OK;
155 if (outinfo && outinfo->line_offsets.len > 0) {
156 unsigned int idx = outinfo->line_offsets.len - 1;
157 outoff = outinfo->line_offsets.head[idx];
160 if (!(state->header_printed)) {
161 rc = fprintf(dest, "--- %s\n", info->left_path ? : "a");
162 if (rc < 0)
163 return errno;
164 if (outinfo) {
165 ARRAYLIST_ADD(offp, outinfo->line_offsets);
166 if (offp == NULL)
167 return ENOMEM;
168 outoff += rc;
169 *offp = outoff;
172 rc = fprintf(dest, "+++ %s\n", info->right_path ? : "b");
173 if (rc < 0)
174 return errno;
175 if (outinfo) {
176 ARRAYLIST_ADD(offp, outinfo->line_offsets);
177 if (offp == NULL)
178 return ENOMEM;
179 outoff += rc;
180 *offp = outoff;
183 state->header_printed = true;
186 left_len = cc->left.end - cc->left.start;
187 if (left_len == 0 && cc->left.start > 0)
188 left_start = cc->left.start;
189 else
190 left_start = cc->left.start + 1;
192 right_len = cc->right.end - cc->right.start;
193 if (right_len == 0 && cc->right.start > 0)
194 right_start = cc->right.start;
195 else
196 right_start = cc->right.start + 1;
198 if (left_len == 1 && right_len != 1) {
199 rc = fprintf(dest, "@@ -%d +%d,%d @@\n",
200 left_start, right_start, right_len);
201 } else if (left_len != 1 && right_len == 1) {
202 rc = fprintf(dest, "@@ -%d,%d +%d @@\n",
203 left_start, left_len, right_start);
204 } else {
205 rc = fprintf(dest, "@@ -%d,%d +%d,%d @@\n",
206 left_start, left_len, right_start, right_len);
208 if (rc < 0)
209 return errno;
210 if (outinfo) {
211 ARRAYLIST_ADD(offp, outinfo->line_offsets);
212 if (offp == NULL)
213 return ENOMEM;
214 outoff += rc;
215 *offp = outoff;
219 /* Got the absolute line numbers where to start printing, and the index
220 * of the interesting (non-context) chunk.
221 * To print context lines above the interesting chunk, nipping on the
222 * previous chunk index may be necessary.
223 * It is guaranteed to be only context lines where left == right, so it
224 * suffices to look on the left. */
225 const struct diff_chunk *first_chunk;
226 int chunk_start_line;
227 first_chunk = &result->chunks.head[cc->chunk.start];
228 chunk_start_line = diff_atom_root_idx(&result->left,
229 first_chunk->left_start);
230 if (cc->left.start < chunk_start_line) {
231 rc = diff_output_lines(outinfo, dest, " ",
232 &result->left.atoms.head[cc->left.start],
233 chunk_start_line - cc->left.start);
234 if (rc)
235 return rc;
238 /* Now write out all the joined chunks and contexts between them */
239 int c_idx;
240 for (c_idx = cc->chunk.start; c_idx < cc->chunk.end; c_idx++) {
241 const struct diff_chunk *c = &result->chunks.head[c_idx];
243 if (c->left_count && c->right_count)
244 rc = diff_output_lines(outinfo, dest,
245 c->solved ? " " : "?",
246 c->left_start, c->left_count);
247 else if (c->left_count && !c->right_count)
248 rc = diff_output_lines(outinfo, dest,
249 c->solved ? "-" : "?",
250 c->left_start, c->left_count);
251 else if (c->right_count && !c->left_count)
252 rc = diff_output_lines(outinfo, dest,
253 c->solved ? "+" : "?",
254 c->right_start, c->right_count);
255 if (rc)
256 return rc;
259 /* Trailing context? */
260 const struct diff_chunk *last_chunk;
261 int chunk_end_line;
262 last_chunk = &result->chunks.head[cc->chunk.end - 1];
263 chunk_end_line = diff_atom_root_idx(&result->left,
264 last_chunk->left_start
265 + last_chunk->left_count);
266 if (cc->left.end > chunk_end_line) {
267 rc = diff_output_lines(outinfo, dest, " ",
268 &result->left.atoms.head[chunk_end_line],
269 cc->left.end - chunk_end_line);
270 if (rc)
271 return rc;
274 return DIFF_RC_OK;
277 int
278 diff_output_unidiff_chunk(struct diff_output_info **output_info, FILE *dest,
279 struct diff_output_unidiff_state *state,
280 const struct diff_input_info *info,
281 const struct diff_result *result,
282 const struct diff_chunk_context *cc)
284 struct diff_output_info *outinfo = NULL;
286 if (output_info) {
287 *output_info = diff_output_info_alloc();
288 if (*output_info == NULL)
289 return ENOMEM;
290 outinfo = *output_info;
293 return output_unidiff_chunk(outinfo, dest, state, info,
294 result, cc);
297 int
298 diff_output_unidiff(struct diff_output_info **output_info,
299 FILE *dest, const struct diff_input_info *info,
300 const struct diff_result *result,
301 unsigned int context_lines)
303 struct diff_output_unidiff_state *state;
304 struct diff_chunk_context cc = {};
305 struct diff_output_info *outinfo = NULL;
306 int i;
308 if (!result)
309 return EINVAL;
310 if (result->rc != DIFF_RC_OK)
311 return result->rc;
313 if (output_info) {
314 *output_info = diff_output_info_alloc();
315 if (*output_info == NULL)
316 return ENOMEM;
317 outinfo = *output_info;
320 state = diff_output_unidiff_state_alloc();
321 if (state == NULL) {
322 if (output_info) {
323 diff_output_info_free(*output_info);
324 *output_info = NULL;
326 return ENOMEM;
330 for (i = 0; i < result->chunks.len; i++) {
331 struct diff_chunk *c = &result->chunks.head[i];
332 enum diff_chunk_type t = diff_chunk_type(c);
333 struct diff_chunk_context next;
335 if (t != CHUNK_MINUS && t != CHUNK_PLUS)
336 continue;
338 if (chunk_context_empty(&cc)) {
339 /* These are the first lines being printed.
340 * Note down the start point, any number of subsequent
341 * chunks may be joined up to this unidiff chunk by
342 * context lines or by being directly adjacent. */
343 diff_chunk_context_get(&cc, result, i, context_lines);
344 debug("new chunk to be printed:"
345 " chunk %d-%d left %d-%d right %d-%d\n",
346 cc.chunk.start, cc.chunk.end,
347 cc.left.start, cc.left.end,
348 cc.right.start, cc.right.end);
349 continue;
352 /* There already is a previous chunk noted down for being
353 * printed. Does it join up with this one? */
354 diff_chunk_context_get(&next, result, i, context_lines);
355 debug("new chunk to be printed:"
356 " chunk %d-%d left %d-%d right %d-%d\n",
357 next.chunk.start, next.chunk.end,
358 next.left.start, next.left.end,
359 next.right.start, next.right.end);
361 if (chunk_contexts_touch(&cc, &next)) {
362 /* This next context touches or overlaps the previous
363 * one, join. */
364 chunk_contexts_merge(&cc, &next);
365 debug("new chunk to be printed touches previous chunk,"
366 " now: left %d-%d right %d-%d\n",
367 cc.left.start, cc.left.end,
368 cc.right.start, cc.right.end);
369 continue;
372 /* No touching, so the previous context is complete with a gap
373 * between it and this next one. Print the previous one and
374 * start fresh here. */
375 debug("new chunk to be printed does not touch previous chunk;"
376 " print left %d-%d right %d-%d\n",
377 cc.left.start, cc.left.end, cc.right.start, cc.right.end);
378 output_unidiff_chunk(outinfo, dest, state, info, result, &cc);
379 cc = next;
380 debug("new unprinted chunk is left %d-%d right %d-%d\n",
381 cc.left.start, cc.left.end, cc.right.start, cc.right.end);
384 if (!chunk_context_empty(&cc))
385 output_unidiff_chunk(outinfo, dest, state, info, result, &cc);
386 diff_output_unidiff_state_free(state);
387 return DIFF_RC_OK;