Blame


1 85ab4559 2020-09-22 stsp /* Generic infrastructure to implement various diff algorithms. */
2 85ab4559 2020-09-22 stsp /*
3 85ab4559 2020-09-22 stsp * Copyright (c) 2020 Neels Hofmeyr <neels@hofmeyr.de>
4 85ab4559 2020-09-22 stsp *
5 85ab4559 2020-09-22 stsp * Permission to use, copy, modify, and distribute this software for any
6 85ab4559 2020-09-22 stsp * purpose with or without fee is hereby granted, provided that the above
7 85ab4559 2020-09-22 stsp * copyright notice and this permission notice appear in all copies.
8 85ab4559 2020-09-22 stsp *
9 85ab4559 2020-09-22 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 85ab4559 2020-09-22 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 85ab4559 2020-09-22 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 85ab4559 2020-09-22 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 85ab4559 2020-09-22 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 85ab4559 2020-09-22 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 85ab4559 2020-09-22 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 85ab4559 2020-09-22 stsp */
17 85ab4559 2020-09-22 stsp
18 85ab4559 2020-09-22 stsp #ifndef MAX
19 85ab4559 2020-09-22 stsp #define MAX(A,B) ((A)>(B)?(A):(B))
20 85ab4559 2020-09-22 stsp #endif
21 85ab4559 2020-09-22 stsp #ifndef MIN
22 85ab4559 2020-09-22 stsp #define MIN(A,B) ((A)<(B)?(A):(B))
23 85ab4559 2020-09-22 stsp #endif
24 85ab4559 2020-09-22 stsp
25 85ab4559 2020-09-22 stsp static inline bool
26 85ab4559 2020-09-22 stsp diff_range_empty(const struct diff_range *r)
27 85ab4559 2020-09-22 stsp {
28 85ab4559 2020-09-22 stsp return r->start == r->end;
29 85ab4559 2020-09-22 stsp }
30 85ab4559 2020-09-22 stsp
31 85ab4559 2020-09-22 stsp static inline bool
32 85ab4559 2020-09-22 stsp diff_ranges_touch(const struct diff_range *a, const struct diff_range *b)
33 85ab4559 2020-09-22 stsp {
34 85ab4559 2020-09-22 stsp return (a->end >= b->start) && (a->start <= b->end);
35 85ab4559 2020-09-22 stsp }
36 85ab4559 2020-09-22 stsp
37 85ab4559 2020-09-22 stsp static inline void
38 85ab4559 2020-09-22 stsp diff_ranges_merge(struct diff_range *a, const struct diff_range *b)
39 85ab4559 2020-09-22 stsp {
40 85ab4559 2020-09-22 stsp *a = (struct diff_range){
41 85ab4559 2020-09-22 stsp .start = MIN(a->start, b->start),
42 85ab4559 2020-09-22 stsp .end = MAX(a->end, b->end),
43 85ab4559 2020-09-22 stsp };
44 85ab4559 2020-09-22 stsp }
45 85ab4559 2020-09-22 stsp
46 85ab4559 2020-09-22 stsp static inline int
47 85ab4559 2020-09-22 stsp diff_range_len(const struct diff_range *r)
48 85ab4559 2020-09-22 stsp {
49 85ab4559 2020-09-22 stsp if (!r)
50 85ab4559 2020-09-22 stsp return 0;
51 85ab4559 2020-09-22 stsp return r->end - r->start;
52 85ab4559 2020-09-22 stsp }
53 85ab4559 2020-09-22 stsp
54 85ab4559 2020-09-22 stsp /* List of all possible return codes of a diff invocation. */
55 85ab4559 2020-09-22 stsp #define DIFF_RC_USE_DIFF_ALGO_FALLBACK -1
56 85ab4559 2020-09-22 stsp #define DIFF_RC_OK 0
57 85ab4559 2020-09-22 stsp /* Any positive return values are errno values from sys/errno.h */
58 85ab4559 2020-09-22 stsp
59 85ab4559 2020-09-22 stsp struct diff_data;
60 85ab4559 2020-09-22 stsp
61 85ab4559 2020-09-22 stsp struct diff_atom {
62 ad5b3f85 2020-10-12 neels struct diff_data *root; /* back pointer to root diff data */
63 85ab4559 2020-09-22 stsp
64 85ab4559 2020-09-22 stsp off_t pos; /* if not memory-mapped */
65 85ab4559 2020-09-22 stsp const uint8_t *at; /* if memory-mapped */
66 85ab4559 2020-09-22 stsp off_t len;
67 85ab4559 2020-09-22 stsp
68 85ab4559 2020-09-22 stsp /* This hash is just a very cheap speed up for finding *mismatching*
69 85ab4559 2020-09-22 stsp * atoms. When hashes match, we still need to compare entire atoms to
70 85ab4559 2020-09-22 stsp * find out whether they are indeed identical or not. */
71 85ab4559 2020-09-22 stsp unsigned int hash;
72 85ab4559 2020-09-22 stsp };
73 85ab4559 2020-09-22 stsp
74 85ab4559 2020-09-22 stsp int
75 85ab4559 2020-09-22 stsp diff_atom_cmp(int *cmp,
76 85ab4559 2020-09-22 stsp const struct diff_atom *left,
77 85ab4559 2020-09-22 stsp const struct diff_atom *right);
78 85ab4559 2020-09-22 stsp
79 85ab4559 2020-09-22 stsp /* Indicate whether two given diff atoms match. */
80 85ab4559 2020-09-22 stsp int
81 85ab4559 2020-09-22 stsp diff_atom_same(bool *same,
82 85ab4559 2020-09-22 stsp const struct diff_atom *left,
83 85ab4559 2020-09-22 stsp const struct diff_atom *right);
84 85ab4559 2020-09-22 stsp
85 85ab4559 2020-09-22 stsp /* The atom's index in the entire file. For atoms divided by lines of text, this
86 85ab4559 2020-09-22 stsp * yields the line number (starting with 0). Also works for diff_data that
87 85ab4559 2020-09-22 stsp * reference only a subsection of a file, always reflecting the global position
88 85ab4559 2020-09-22 stsp * in the file (and not the relative position within the subsection). */
89 85ab4559 2020-09-22 stsp #define diff_atom_root_idx(DIFF_DATA, ATOM) \
90 85ab4559 2020-09-22 stsp ((ATOM) && ((ATOM) >= (DIFF_DATA)->root->atoms.head) \
91 85ab4559 2020-09-22 stsp ? (unsigned int)((ATOM) - ((DIFF_DATA)->root->atoms.head)) \
92 85ab4559 2020-09-22 stsp : (DIFF_DATA)->root->atoms.len)
93 85ab4559 2020-09-22 stsp
94 85ab4559 2020-09-22 stsp /* The atom's index within DIFF_DATA. For atoms divided by lines of text, this
95 85ab4559 2020-09-22 stsp * yields the line number (starting with 0). */
96 85ab4559 2020-09-22 stsp #define diff_atom_idx(DIFF_DATA, ATOM) \
97 85ab4559 2020-09-22 stsp ((ATOM) && ((ATOM) >= (DIFF_DATA)->atoms.head) \
98 85ab4559 2020-09-22 stsp ? (unsigned int)((ATOM) - ((DIFF_DATA)->atoms.head)) \
99 85ab4559 2020-09-22 stsp : (DIFF_DATA)->atoms.len)
100 85ab4559 2020-09-22 stsp
101 85ab4559 2020-09-22 stsp #define foreach_diff_atom(ATOM, FIRST_ATOM, COUNT) \
102 85ab4559 2020-09-22 stsp for ((ATOM) = (FIRST_ATOM); \
103 85ab4559 2020-09-22 stsp (ATOM) \
104 85ab4559 2020-09-22 stsp && ((ATOM) >= (FIRST_ATOM)) \
105 85ab4559 2020-09-22 stsp && ((ATOM) - (FIRST_ATOM) < (COUNT)); \
106 85ab4559 2020-09-22 stsp (ATOM)++)
107 85ab4559 2020-09-22 stsp
108 85ab4559 2020-09-22 stsp #define diff_data_foreach_atom(ATOM, DIFF_DATA) \
109 85ab4559 2020-09-22 stsp foreach_diff_atom(ATOM, (DIFF_DATA)->atoms.head, (DIFF_DATA)->atoms.len)
110 85ab4559 2020-09-22 stsp
111 85ab4559 2020-09-22 stsp #define diff_data_foreach_atom_from(FROM, ATOM, DIFF_DATA) \
112 85ab4559 2020-09-22 stsp for ((ATOM) = (FROM); \
113 85ab4559 2020-09-22 stsp (ATOM) \
114 85ab4559 2020-09-22 stsp && ((ATOM) >= (DIFF_DATA)->atoms.head) \
115 85ab4559 2020-09-22 stsp && ((ATOM) - (DIFF_DATA)->atoms.head < (DIFF_DATA)->atoms.len); \
116 85ab4559 2020-09-22 stsp (ATOM)++)
117 85ab4559 2020-09-22 stsp
118 13e2caa3 2020-10-17 stsp #define diff_data_foreach_atom_backwards_from(FROM, ATOM, DIFF_DATA) \
119 13e2caa3 2020-10-17 stsp for ((ATOM) = (FROM); \
120 13e2caa3 2020-10-17 stsp (ATOM) \
121 13e2caa3 2020-10-17 stsp && ((ATOM) >= (DIFF_DATA)->atoms.head) \
122 13e2caa3 2020-10-17 stsp && ((ATOM) - (DIFF_DATA)->atoms.head >= 0); \
123 13e2caa3 2020-10-17 stsp (ATOM)--)
124 13e2caa3 2020-10-17 stsp
125 85ab4559 2020-09-22 stsp /* A diff chunk represents a set of atoms on the left and/or a set of atoms on
126 85ab4559 2020-09-22 stsp * the right.
127 85ab4559 2020-09-22 stsp *
128 85ab4559 2020-09-22 stsp * If solved == false:
129 85ab4559 2020-09-22 stsp * The diff algorithm has divided the source file, and this is a chunk that the
130 85ab4559 2020-09-22 stsp * inner_algo should run on next.
131 85ab4559 2020-09-22 stsp * The lines on the left should be diffed against the lines on the right.
132 85ab4559 2020-09-22 stsp * (If there are no left lines or no right lines, it implies solved == true,
133 85ab4559 2020-09-22 stsp * because there is nothing to diff.)
134 85ab4559 2020-09-22 stsp *
135 85ab4559 2020-09-22 stsp * If solved == true:
136 85ab4559 2020-09-22 stsp * If there are only left atoms, it is a chunk removing atoms from the left ("a
137 85ab4559 2020-09-22 stsp * minus chunk").
138 85ab4559 2020-09-22 stsp * If there are only right atoms, it is a chunk adding atoms from the right ("a
139 85ab4559 2020-09-22 stsp * plus chunk").
140 85ab4559 2020-09-22 stsp * If there are both left and right lines, it is a chunk of equal content on
141 85ab4559 2020-09-22 stsp * both sides, and left_count == right_count:
142 85ab4559 2020-09-22 stsp *
143 85ab4559 2020-09-22 stsp * - foo }
144 85ab4559 2020-09-22 stsp * - bar }-- diff_chunk{ left_start = &left.atoms.head[0], left_count = 3,
145 85ab4559 2020-09-22 stsp * - baz } right_start = NULL, right_count = 0 }
146 85ab4559 2020-09-22 stsp * moo }
147 85ab4559 2020-09-22 stsp * goo }-- diff_chunk{ left_start = &left.atoms.head[3], left_count = 3,
148 85ab4559 2020-09-22 stsp * zoo } right_start = &right.atoms.head[0], right_count = 3 }
149 85ab4559 2020-09-22 stsp * +loo }
150 85ab4559 2020-09-22 stsp * +roo }-- diff_chunk{ left_start = NULL, left_count = 0,
151 85ab4559 2020-09-22 stsp * +too } right_start = &right.atoms.head[3], right_count = 3 }
152 85ab4559 2020-09-22 stsp *
153 85ab4559 2020-09-22 stsp */
154 85ab4559 2020-09-22 stsp struct diff_chunk {
155 85ab4559 2020-09-22 stsp bool solved;
156 85ab4559 2020-09-22 stsp struct diff_atom *left_start;
157 85ab4559 2020-09-22 stsp unsigned int left_count;
158 85ab4559 2020-09-22 stsp struct diff_atom *right_start;
159 85ab4559 2020-09-22 stsp unsigned int right_count;
160 85ab4559 2020-09-22 stsp };
161 85ab4559 2020-09-22 stsp
162 85ab4559 2020-09-22 stsp #define DIFF_RESULT_ALLOC_BLOCKSIZE 128
163 85ab4559 2020-09-22 stsp
164 85ab4559 2020-09-22 stsp enum diff_chunk_type {
165 85ab4559 2020-09-22 stsp CHUNK_EMPTY,
166 85ab4559 2020-09-22 stsp CHUNK_PLUS,
167 85ab4559 2020-09-22 stsp CHUNK_MINUS,
168 85ab4559 2020-09-22 stsp CHUNK_SAME,
169 85ab4559 2020-09-22 stsp CHUNK_ERROR,
170 85ab4559 2020-09-22 stsp };
171 85ab4559 2020-09-22 stsp
172 85ab4559 2020-09-22 stsp static inline enum diff_chunk_type
173 85ab4559 2020-09-22 stsp diff_chunk_type(const struct diff_chunk *chunk)
174 85ab4559 2020-09-22 stsp {
175 85ab4559 2020-09-22 stsp if (!chunk->left_count && !chunk->right_count)
176 85ab4559 2020-09-22 stsp return CHUNK_EMPTY;
177 85ab4559 2020-09-22 stsp if (!chunk->solved)
178 85ab4559 2020-09-22 stsp return CHUNK_ERROR;
179 85ab4559 2020-09-22 stsp if (!chunk->right_count)
180 85ab4559 2020-09-22 stsp return CHUNK_MINUS;
181 85ab4559 2020-09-22 stsp if (!chunk->left_count)
182 85ab4559 2020-09-22 stsp return CHUNK_PLUS;
183 85ab4559 2020-09-22 stsp if (chunk->left_count != chunk->right_count)
184 85ab4559 2020-09-22 stsp return CHUNK_ERROR;
185 85ab4559 2020-09-22 stsp return CHUNK_SAME;
186 85ab4559 2020-09-22 stsp }
187 85ab4559 2020-09-22 stsp
188 2f26640c 2020-10-17 stsp struct diff_chunk_context;
189 2f26640c 2020-10-17 stsp
190 2f26640c 2020-10-17 stsp bool
191 2f26640c 2020-10-17 stsp diff_chunk_context_empty(const struct diff_chunk_context *cc);
192 2f26640c 2020-10-17 stsp
193 2f26640c 2020-10-17 stsp bool
194 2f26640c 2020-10-17 stsp diff_chunk_contexts_touch(const struct diff_chunk_context *cc,
195 2f26640c 2020-10-17 stsp const struct diff_chunk_context *other);
196 2f26640c 2020-10-17 stsp
197 2f26640c 2020-10-17 stsp void
198 2f26640c 2020-10-17 stsp diff_chunk_contexts_merge(struct diff_chunk_context *cc,
199 2f26640c 2020-10-17 stsp const struct diff_chunk_context *other);
200 2f26640c 2020-10-17 stsp
201 85ab4559 2020-09-22 stsp struct diff_state {
202 85ab4559 2020-09-22 stsp /* The final result passed to the original diff caller. */
203 85ab4559 2020-09-22 stsp struct diff_result *result;
204 85ab4559 2020-09-22 stsp
205 85ab4559 2020-09-22 stsp /* The root diff_data is in result->left,right, these are (possibly)
206 85ab4559 2020-09-22 stsp * subsections of the root data. */
207 85ab4559 2020-09-22 stsp struct diff_data left;
208 85ab4559 2020-09-22 stsp struct diff_data right;
209 85ab4559 2020-09-22 stsp
210 85ab4559 2020-09-22 stsp unsigned int recursion_depth_left;
211 85ab4559 2020-09-22 stsp
212 85ab4559 2020-09-22 stsp /* Remaining chunks from one diff algorithm pass, if any solved == false
213 85ab4559 2020-09-22 stsp * chunks came up. */
214 85ab4559 2020-09-22 stsp diff_chunk_arraylist_t temp_result;
215 8be88dfa 2020-10-21 stsp
216 8be88dfa 2020-10-21 stsp /* State buffer used by Myers algorithm. */
217 8be88dfa 2020-10-21 stsp int *kd_buf;
218 8be88dfa 2020-10-21 stsp size_t kd_buf_size; /* in units of sizeof(int), not bytes */
219 85ab4559 2020-09-22 stsp };
220 85ab4559 2020-09-22 stsp
221 85ab4559 2020-09-22 stsp struct diff_chunk *diff_state_add_chunk(struct diff_state *state, bool solved,
222 85ab4559 2020-09-22 stsp struct diff_atom *left_start,
223 85ab4559 2020-09-22 stsp unsigned int left_count,
224 85ab4559 2020-09-22 stsp struct diff_atom *right_start,
225 85ab4559 2020-09-22 stsp unsigned int right_count);
226 2c20a3ed 2020-09-22 stsp
227 2c20a3ed 2020-09-22 stsp struct diff_output_info;
228 2c20a3ed 2020-09-22 stsp
229 2c20a3ed 2020-09-22 stsp int diff_output_lines(struct diff_output_info *output_info, FILE *dest,
230 2c20a3ed 2020-09-22 stsp const char *prefix, struct diff_atom *start_atom,
231 2c20a3ed 2020-09-22 stsp unsigned int count);
232 2c20a3ed 2020-09-22 stsp
233 7021523c 2020-10-16 stsp int diff_output_trailing_newline_msg(struct diff_output_info *outinfo,
234 7021523c 2020-10-16 stsp FILE *dest,
235 7021523c 2020-10-16 stsp const struct diff_chunk *c);
236 13e2caa3 2020-10-17 stsp int diff_output_match_function_prototype(char **prototype,
237 13e2caa3 2020-10-17 stsp const struct diff_result *result,
238 13e2caa3 2020-10-17 stsp const struct diff_chunk_context *cc);
239 7021523c 2020-10-16 stsp
240 2c20a3ed 2020-09-22 stsp struct diff_output_info *diff_output_info_alloc(void);
241 87c31341 2020-10-11 neels
242 87c31341 2020-10-11 neels void
243 87c31341 2020-10-11 neels diff_data_init_subsection(struct diff_data *d, struct diff_data *parent,
244 87c31341 2020-10-11 neels struct diff_atom *from_atom, unsigned int atoms_count);