Blob


1 /* Common parts for printing diff output */
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 <ctype.h>
19 #include <errno.h>
20 #include <stdbool.h>
21 #include <stdint.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
27 #include <arraylist.h>
28 #include <diff_main.h>
29 #include <diff_output.h>
31 #include "diff_internal.h"
33 static int
34 get_atom_byte(int *ch, struct diff_atom *atom, off_t off)
35 {
36 off_t cur;
38 if (atom->at != NULL) {
39 *ch = atom->at[off];
40 return 0;
41 }
43 cur = ftello(atom->root->f);
44 if (cur == -1)
45 return errno;
47 if (cur != atom->pos + off &&
48 fseeko(atom->root->f, atom->pos + off, SEEK_SET) == -1)
49 return errno;
51 *ch = fgetc(atom->root->f);
52 if (*ch == EOF && ferror(atom->root->f))
53 return errno;
55 return 0;
56 }
58 #define DIFF_OUTPUT_BUF_SIZE 512
60 int
61 diff_output_lines(struct diff_output_info *outinfo, FILE *dest,
62 const char *prefix, struct diff_atom *start_atom,
63 unsigned int count)
64 {
65 struct diff_atom *atom;
66 off_t outoff = 0, *offp;
67 uint8_t *typep;
68 int rc;
70 if (outinfo && outinfo->line_offsets.len > 0) {
71 unsigned int idx = outinfo->line_offsets.len - 1;
72 outoff = outinfo->line_offsets.head[idx];
73 }
75 foreach_diff_atom(atom, start_atom, count) {
76 off_t outlen = 0;
77 int i, ch, nbuf = 0;
78 unsigned int len = atom->len;
79 unsigned char buf[DIFF_OUTPUT_BUF_SIZE + 1 /* '\n' */];
80 size_t n;
82 n = strlcpy(buf, prefix, sizeof(buf));
83 if (n >= DIFF_OUTPUT_BUF_SIZE) /* leave room for '\n' */
84 return ENOBUFS;
85 nbuf += n;
87 if (len) {
88 rc = get_atom_byte(&ch, atom, len - 1);
89 if (rc)
90 return rc;
91 if (ch == '\n')
92 len--;
93 }
95 for (i = 0; i < len; i++) {
96 rc = get_atom_byte(&ch, atom, i);
97 if (rc)
98 return rc;
99 if (nbuf >= DIFF_OUTPUT_BUF_SIZE) {
100 rc = fwrite(buf, 1, nbuf, dest);
101 if (rc != nbuf)
102 return errno;
103 outlen += rc;
104 nbuf = 0;
106 buf[nbuf++] = ch;
108 buf[nbuf++] = '\n';
109 rc = fwrite(buf, 1, nbuf, dest);
110 if (rc != nbuf)
111 return errno;
112 outlen += rc;
113 if (outinfo) {
114 ARRAYLIST_ADD(offp, outinfo->line_offsets);
115 if (offp == NULL)
116 return ENOMEM;
117 outoff += outlen;
118 *offp = outoff;
119 ARRAYLIST_ADD(typep, outinfo->line_types);
120 if (typep == NULL)
121 return ENOMEM;
122 *typep = *prefix == ' ' ? DIFF_LINE_CONTEXT :
123 *prefix == '-' ? DIFF_LINE_MINUS :
124 *prefix == '+' ? DIFF_LINE_PLUS : DIFF_LINE_NONE;
128 return DIFF_RC_OK;
131 int
132 diff_output_chunk_left_version(struct diff_output_info **output_info,
133 FILE *dest,
134 const struct diff_input_info *info,
135 const struct diff_result *result,
136 const struct diff_chunk_context *cc)
138 int rc, c_idx;
139 struct diff_output_info *outinfo = NULL;
141 if (diff_range_empty(&cc->left))
142 return DIFF_RC_OK;
144 if (output_info) {
145 *output_info = diff_output_info_alloc();
146 if (*output_info == NULL)
147 return ENOMEM;
148 outinfo = *output_info;
151 /* Write out all chunks on the left side. */
152 for (c_idx = cc->chunk.start; c_idx < cc->chunk.end; c_idx++) {
153 const struct diff_chunk *c = &result->chunks.head[c_idx];
155 if (c->left_count) {
156 rc = diff_output_lines(outinfo, dest, "",
157 c->left_start, c->left_count);
158 if (rc)
159 return rc;
163 return DIFF_RC_OK;
166 int
167 diff_output_chunk_right_version(struct diff_output_info **output_info,
168 FILE *dest,
169 const struct diff_input_info *info,
170 const struct diff_result *result,
171 const struct diff_chunk_context *cc)
173 int rc, c_idx;
174 struct diff_output_info *outinfo = NULL;
176 if (diff_range_empty(&cc->right))
177 return DIFF_RC_OK;
179 if (output_info) {
180 *output_info = diff_output_info_alloc();
181 if (*output_info == NULL)
182 return ENOMEM;
183 outinfo = *output_info;
186 /* Write out all chunks on the right side. */
187 for (c_idx = cc->chunk.start; c_idx < cc->chunk.end; c_idx++) {
188 const struct diff_chunk *c = &result->chunks.head[c_idx];
190 if (c->right_count) {
191 rc = diff_output_lines(outinfo, dest, "", c->right_start,
192 c->right_count);
193 if (rc)
194 return rc;
198 return DIFF_RC_OK;
201 int
202 diff_output_trailing_newline_msg(struct diff_output_info *outinfo, FILE *dest,
203 const struct diff_chunk *c)
205 enum diff_chunk_type chunk_type = diff_chunk_type(c);
206 struct diff_atom *atom, *start_atom;
207 unsigned int atom_count;
208 int rc, ch;
209 off_t outoff = 0, *offp;
210 uint8_t *typep;
213 if (chunk_type == CHUNK_MINUS || chunk_type == CHUNK_SAME) {
214 start_atom = c->left_start;
215 atom_count = c->left_count;
216 } else if (chunk_type == CHUNK_PLUS) {
217 start_atom = c->right_start;
218 atom_count = c->right_count;
219 } else
220 return EINVAL;
222 /* Locate the last atom. */
223 if (atom_count == 0)
224 return EINVAL;
225 atom = &start_atom[atom_count - 1];
227 rc = get_atom_byte(&ch, atom, atom->len - 1);
228 if (rc != DIFF_RC_OK)
229 return rc;
231 if (ch != '\n') {
232 if (outinfo && outinfo->line_offsets.len > 0) {
233 unsigned int idx = outinfo->line_offsets.len - 1;
234 outoff = outinfo->line_offsets.head[idx];
236 rc = fprintf(dest, "\\ No newline at end of file\n");
237 if (rc < 0)
238 return errno;
239 if (outinfo) {
240 ARRAYLIST_ADD(offp, outinfo->line_offsets);
241 if (offp == NULL)
242 return ENOMEM;
243 outoff += rc;
244 *offp = outoff;
245 ARRAYLIST_ADD(typep, outinfo->line_types);
246 if (typep == NULL)
247 return ENOMEM;
248 *typep = DIFF_LINE_NONE;
252 return DIFF_RC_OK;
255 static bool
256 is_function_prototype(unsigned char ch)
258 return (isalpha((unsigned char)ch) || ch == '_' || ch == '$');
261 #define begins_with(s, pre) (strncmp(s, pre, sizeof(pre)-1) == 0)
263 int
264 diff_output_match_function_prototype(char *prototype, size_t prototype_size,
265 int *last_prototype_idx, const struct diff_result *result,
266 const struct diff_chunk_context *cc, unsigned int ncontext)
268 struct diff_atom *start_atom, *atom;
269 const struct diff_data *data;
270 unsigned char buf[DIFF_FUNCTION_CONTEXT_SIZE];
271 const char *state = NULL;
272 int rc, i, ch, idx;
274 idx = MIN(cc->left.start + (ncontext ? ncontext : 0), cc->left.end - 1);
276 if (result->left->atoms.len > 0 && cc->left.start > 0) {
277 data = result->left;
278 start_atom = &data->atoms.head[idx];
279 } else
280 return DIFF_RC_OK;
282 diff_data_foreach_atom_backwards_from(start_atom, atom, data) {
283 int atom_idx = diff_atom_root_idx(data, atom);
284 if (atom_idx < *last_prototype_idx)
285 break;
286 rc = get_atom_byte(&ch, atom, 0);
287 if (rc)
288 return rc;
289 buf[0] = (unsigned char)ch;
290 if (!is_function_prototype(buf[0]))
291 continue;
292 for (i = 1; i < atom->len && i < sizeof(buf) - 1; i++) {
293 rc = get_atom_byte(&ch, atom, i);
294 if (rc)
295 return rc;
296 if (ch == '\n')
297 break;
298 buf[i] = (unsigned char)ch;
300 buf[i] = '\0';
301 if (begins_with(buf, "private:")) {
302 if (!state)
303 state = " (private)";
304 } else if (begins_with(buf, "protected:")) {
305 if (!state)
306 state = " (protected)";
307 } else if (begins_with(buf, "public:")) {
308 if (!state)
309 state = " (public)";
310 } else {
311 if (state) /* don't care about truncation */
312 strlcat(buf, state, sizeof(buf));
313 strlcpy(prototype, buf, prototype_size);
314 break;
318 *last_prototype_idx = diff_atom_root_idx(data, start_atom);
319 return DIFF_RC_OK;
322 struct diff_output_info *
323 diff_output_info_alloc(void)
325 struct diff_output_info *output_info;
326 off_t *offp;
327 uint8_t *typep;
329 output_info = malloc(sizeof(*output_info));
330 if (output_info != NULL) {
331 ARRAYLIST_INIT(output_info->line_offsets, 128);
332 ARRAYLIST_ADD(offp, output_info->line_offsets);
333 if (offp == NULL) {
334 diff_output_info_free(output_info);
335 return NULL;
337 *offp = 0;
338 ARRAYLIST_INIT(output_info->line_types, 128);
339 ARRAYLIST_ADD(typep, output_info->line_types);
340 if (typep == NULL) {
341 diff_output_info_free(output_info);
342 return NULL;
344 *typep = DIFF_LINE_NONE;
346 return output_info;
349 void
350 diff_output_info_free(struct diff_output_info *output_info)
352 ARRAYLIST_FREE(output_info->line_offsets);
353 ARRAYLIST_FREE(output_info->line_types);
354 free(output_info);
357 const char *
358 diff_output_get_label_left(const struct diff_input_info *info)
360 if (info->flags & DIFF_INPUT_LEFT_NONEXISTENT)
361 return "/dev/null";
363 return info->left_path ? info->left_path : "a";
366 const char *
367 diff_output_get_label_right(const struct diff_input_info *info)
369 if (info->flags & DIFF_INPUT_RIGHT_NONEXISTENT)
370 return "/dev/null";
372 return info->right_path ? info->right_path : "b";