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)
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;
274 if (result->left->atoms.len > 0 && cc->left.start > 0) {
275 data = result->left;
276 start_atom = &data->atoms.head[cc->left.start - 1];
277 } else
278 return DIFF_RC_OK;
280 diff_data_foreach_atom_backwards_from(start_atom, atom, data) {
281 int atom_idx = diff_atom_root_idx(data, atom);
282 if (atom_idx < *last_prototype_idx)
283 break;
284 rc = get_atom_byte(&ch, atom, 0);
285 if (rc)
286 return rc;
287 buf[0] = (unsigned char)ch;
288 if (!is_function_prototype(buf[0]))
289 continue;
290 for (i = 1; i < atom->len && i < sizeof(buf) - 1; i++) {
291 rc = get_atom_byte(&ch, atom, i);
292 if (rc)
293 return rc;
294 if (ch == '\n')
295 break;
296 buf[i] = (unsigned char)ch;
298 buf[i] = '\0';
299 if (begins_with(buf, "private:")) {
300 if (!state)
301 state = " (private)";
302 } else if (begins_with(buf, "protected:")) {
303 if (!state)
304 state = " (protected)";
305 } else if (begins_with(buf, "public:")) {
306 if (!state)
307 state = " (public)";
308 } else {
309 if (state) /* don't care about truncation */
310 strlcat(buf, state, sizeof(buf));
311 strlcpy(prototype, buf, prototype_size);
312 break;
316 *last_prototype_idx = diff_atom_root_idx(data, start_atom);
317 return DIFF_RC_OK;
320 struct diff_output_info *
321 diff_output_info_alloc(void)
323 struct diff_output_info *output_info;
324 off_t *offp;
325 uint8_t *typep;
327 output_info = malloc(sizeof(*output_info));
328 if (output_info != NULL) {
329 ARRAYLIST_INIT(output_info->line_offsets, 128);
330 ARRAYLIST_ADD(offp, output_info->line_offsets);
331 if (offp == NULL) {
332 diff_output_info_free(output_info);
333 return NULL;
335 *offp = 0;
336 ARRAYLIST_INIT(output_info->line_types, 128);
337 ARRAYLIST_ADD(typep, output_info->line_types);
338 if (typep == NULL) {
339 diff_output_info_free(output_info);
340 return NULL;
342 *typep = DIFF_LINE_NONE;
344 return output_info;
347 void
348 diff_output_info_free(struct diff_output_info *output_info)
350 ARRAYLIST_FREE(output_info->line_offsets);
351 ARRAYLIST_FREE(output_info->line_types);
352 free(output_info);
355 const char *
356 diff_output_get_label_left(const struct diff_input_info *info)
358 if (info->flags & DIFF_INPUT_LEFT_NONEXISTENT)
359 return "/dev/null";
361 return info->left_path ? info->left_path : "a";
364 const char *
365 diff_output_get_label_right(const struct diff_input_info *info)
367 if (info->flags & DIFF_INPUT_RIGHT_NONEXISTENT)
368 return "/dev/null";
370 return info->right_path ? info->right_path : "b";