##// END OF EJS Templates
bdiff: add comment about normalization
Benoit Boissinot -
r7625:930a2be7 default
parent child Browse files
Show More
@@ -1,396 +1,397
1 1 /*
2 2 bdiff.c - efficient binary diff extension for Mercurial
3 3
4 4 Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
5 5
6 6 This software may be used and distributed according to the terms of
7 7 the GNU General Public License, incorporated herein by reference.
8 8
9 9 Based roughly on Python difflib
10 10 */
11 11
12 12 #include <Python.h>
13 13 #include <stdlib.h>
14 14 #include <string.h>
15 15 #include <limits.h>
16 16
17 17 #if defined __hpux || defined __SUNPRO_C || defined _AIX
18 18 # define inline
19 19 #endif
20 20
21 21 #ifdef _WIN32
22 22 #ifdef _MSC_VER
23 23 #define inline __inline
24 24 typedef unsigned long uint32_t;
25 25 #else
26 26 #include <stdint.h>
27 27 #endif
28 28 static uint32_t htonl(uint32_t x)
29 29 {
30 30 return ((x & 0x000000ffUL) << 24) |
31 31 ((x & 0x0000ff00UL) << 8) |
32 32 ((x & 0x00ff0000UL) >> 8) |
33 33 ((x & 0xff000000UL) >> 24);
34 34 }
35 35 #else
36 36 #include <sys/types.h>
37 37 #if defined __BEOS__ && !defined __HAIKU__
38 38 #include <ByteOrder.h>
39 39 #else
40 40 #include <arpa/inet.h>
41 41 #endif
42 42 #include <inttypes.h>
43 43 #endif
44 44
45 45 struct line {
46 46 int h, len, n, e;
47 47 const char *l;
48 48 };
49 49
50 50 struct pos {
51 51 int pos, len;
52 52 };
53 53
54 54 struct hunk {
55 55 int a1, a2, b1, b2;
56 56 };
57 57
58 58 struct hunklist {
59 59 struct hunk *base, *head;
60 60 };
61 61
62 62 int splitlines(const char *a, int len, struct line **lr)
63 63 {
64 64 int h, i;
65 65 const char *p, *b = a;
66 66 const char * const plast = a + len - 1;
67 67 struct line *l;
68 68
69 69 /* count the lines */
70 70 i = 1; /* extra line for sentinel */
71 71 for (p = a; p < a + len; p++)
72 72 if (*p == '\n' || p == plast)
73 73 i++;
74 74
75 75 *lr = l = (struct line *)malloc(sizeof(struct line) * i);
76 76 if (!l)
77 77 return -1;
78 78
79 79 /* build the line array and calculate hashes */
80 80 h = 0;
81 81 for (p = a; p < a + len; p++) {
82 82 /* Leonid Yuriev's hash */
83 83 h = (h * 1664525) + *p + 1013904223;
84 84
85 85 if (*p == '\n' || p == plast) {
86 86 l->h = h;
87 87 h = 0;
88 88 l->len = p - b + 1;
89 89 l->l = b;
90 90 l->n = INT_MAX;
91 91 l++;
92 92 b = p + 1;
93 93 }
94 94 }
95 95
96 96 /* set up a sentinel */
97 97 l->h = l->len = 0;
98 98 l->l = a + len;
99 99 return i - 1;
100 100 }
101 101
102 102 int inline cmp(struct line *a, struct line *b)
103 103 {
104 104 return a->h != b->h || a->len != b->len || memcmp(a->l, b->l, a->len);
105 105 }
106 106
107 107 static int equatelines(struct line *a, int an, struct line *b, int bn)
108 108 {
109 109 int i, j, buckets = 1, t, scale;
110 110 struct pos *h = NULL;
111 111
112 112 /* build a hash table of the next highest power of 2 */
113 113 while (buckets < bn + 1)
114 114 buckets *= 2;
115 115
116 116 /* try to allocate a large hash table to avoid collisions */
117 117 for (scale = 4; scale; scale /= 2) {
118 118 h = (struct pos *)malloc(scale * buckets * sizeof(struct pos));
119 119 if (h)
120 120 break;
121 121 }
122 122
123 123 if (!h)
124 124 return 0;
125 125
126 126 buckets = buckets * scale - 1;
127 127
128 128 /* clear the hash table */
129 129 for (i = 0; i <= buckets; i++) {
130 130 h[i].pos = INT_MAX;
131 131 h[i].len = 0;
132 132 }
133 133
134 134 /* add lines to the hash table chains */
135 135 for (i = bn - 1; i >= 0; i--) {
136 136 /* find the equivalence class */
137 137 for (j = b[i].h & buckets; h[j].pos != INT_MAX;
138 138 j = (j + 1) & buckets)
139 139 if (!cmp(b + i, b + h[j].pos))
140 140 break;
141 141
142 142 /* add to the head of the equivalence class */
143 143 b[i].n = h[j].pos;
144 144 b[i].e = j;
145 145 h[j].pos = i;
146 146 h[j].len++; /* keep track of popularity */
147 147 }
148 148
149 149 /* compute popularity threshold */
150 150 t = (bn >= 4000) ? bn / 1000 : bn + 1;
151 151
152 152 /* match items in a to their equivalence class in b */
153 153 for (i = 0; i < an; i++) {
154 154 /* find the equivalence class */
155 155 for (j = a[i].h & buckets; h[j].pos != INT_MAX;
156 156 j = (j + 1) & buckets)
157 157 if (!cmp(a + i, b + h[j].pos))
158 158 break;
159 159
160 160 a[i].e = j; /* use equivalence class for quick compare */
161 161 if (h[j].len <= t)
162 162 a[i].n = h[j].pos; /* point to head of match list */
163 163 else
164 164 a[i].n = INT_MAX; /* too popular */
165 165 }
166 166
167 167 /* discard hash tables */
168 168 free(h);
169 169 return 1;
170 170 }
171 171
172 172 static int longest_match(struct line *a, struct line *b, struct pos *pos,
173 173 int a1, int a2, int b1, int b2, int *omi, int *omj)
174 174 {
175 175 int mi = a1, mj = b1, mk = 0, mb = 0, i, j, k;
176 176
177 177 for (i = a1; i < a2; i++) {
178 178 /* skip things before the current block */
179 179 for (j = a[i].n; j < b1; j = b[j].n)
180 180 ;
181 181
182 182 /* loop through all lines match a[i] in b */
183 183 for (; j < b2; j = b[j].n) {
184 184 /* does this extend an earlier match? */
185 185 if (i > a1 && j > b1 && pos[j - 1].pos == i - 1)
186 186 k = pos[j - 1].len + 1;
187 187 else
188 188 k = 1;
189 189 pos[j].pos = i;
190 190 pos[j].len = k;
191 191
192 192 /* best match so far? */
193 193 if (k > mk) {
194 194 mi = i;
195 195 mj = j;
196 196 mk = k;
197 197 }
198 198 }
199 199 }
200 200
201 201 if (mk) {
202 202 mi = mi - mk + 1;
203 203 mj = mj - mk + 1;
204 204 }
205 205
206 206 /* expand match to include neighboring popular lines */
207 207 while (mi - mb > a1 && mj - mb > b1 &&
208 208 a[mi - mb - 1].e == b[mj - mb - 1].e)
209 209 mb++;
210 210 while (mi + mk < a2 && mj + mk < b2 &&
211 211 a[mi + mk].e == b[mj + mk].e)
212 212 mk++;
213 213
214 214 *omi = mi - mb;
215 215 *omj = mj - mb;
216 216
217 217 return mk + mb;
218 218 }
219 219
220 220 static void recurse(struct line *a, struct line *b, struct pos *pos,
221 221 int a1, int a2, int b1, int b2, struct hunklist *l)
222 222 {
223 223 int i, j, k;
224 224
225 225 /* find the longest match in this chunk */
226 226 k = longest_match(a, b, pos, a1, a2, b1, b2, &i, &j);
227 227 if (!k)
228 228 return;
229 229
230 230 /* and recurse on the remaining chunks on either side */
231 231 recurse(a, b, pos, a1, i, b1, j, l);
232 232 l->head->a1 = i;
233 233 l->head->a2 = i + k;
234 234 l->head->b1 = j;
235 235 l->head->b2 = j + k;
236 236 l->head++;
237 237 recurse(a, b, pos, i + k, a2, j + k, b2, l);
238 238 }
239 239
240 240 static struct hunklist diff(struct line *a, int an, struct line *b, int bn)
241 241 {
242 242 struct hunklist l;
243 243 struct hunk *curr;
244 244 struct pos *pos;
245 245 int t;
246 246
247 247 /* allocate and fill arrays */
248 248 t = equatelines(a, an, b, bn);
249 249 pos = (struct pos *)calloc(bn ? bn : 1, sizeof(struct pos));
250 250 /* we can't have more matches than lines in the shorter file */
251 251 l.head = l.base = (struct hunk *)malloc(sizeof(struct hunk) *
252 252 ((an<bn ? an:bn) + 1));
253 253
254 254 if (pos && l.base && t) {
255 255 /* generate the matching block list */
256 256 recurse(a, b, pos, 0, an, 0, bn, &l);
257 257 l.head->a1 = l.head->a2 = an;
258 258 l.head->b1 = l.head->b2 = bn;
259 259 l.head++;
260 260 }
261 261
262 262 free(pos);
263 263
264 /* normalize the hunk list, try to push each hunk towards the end */
264 265 for (curr = l.base; curr != l.head; curr++) {
265 266 struct hunk *next = curr+1;
266 267 int shift = 0;
267 268
268 269 if (next == l.head)
269 270 break;
270 271
271 272 if (curr->a2 == next->a1)
272 273 while (curr->a2+shift < an && curr->b2+shift < bn
273 274 && !cmp(a+curr->a2+shift, b+curr->b2+shift))
274 275 shift++;
275 276 else if (curr->b2 == next->b1)
276 277 while (curr->b2+shift < bn && curr->a2+shift < an
277 278 && !cmp(b+curr->b2+shift, a+curr->a2+shift))
278 279 shift++;
279 280 if (!shift)
280 281 continue;
281 282 curr->b2 += shift;
282 283 next->b1 += shift;
283 284 curr->a2 += shift;
284 285 next->a1 += shift;
285 286 }
286 287
287 288 return l;
288 289 }
289 290
290 291 static PyObject *blocks(PyObject *self, PyObject *args)
291 292 {
292 293 PyObject *sa, *sb, *rl = NULL, *m;
293 294 struct line *a, *b;
294 295 struct hunklist l = {NULL, NULL};
295 296 struct hunk *h;
296 297 int an, bn, pos = 0;
297 298
298 299 if (!PyArg_ParseTuple(args, "SS:bdiff", &sa, &sb))
299 300 return NULL;
300 301
301 302 an = splitlines(PyString_AsString(sa), PyString_Size(sa), &a);
302 303 bn = splitlines(PyString_AsString(sb), PyString_Size(sb), &b);
303 304 if (!a || !b)
304 305 goto nomem;
305 306
306 307 l = diff(a, an, b, bn);
307 308 rl = PyList_New(l.head - l.base);
308 309 if (!l.head || !rl)
309 310 goto nomem;
310 311
311 312 for (h = l.base; h != l.head; h++) {
312 313 m = Py_BuildValue("iiii", h->a1, h->a2, h->b1, h->b2);
313 314 PyList_SetItem(rl, pos, m);
314 315 pos++;
315 316 }
316 317
317 318 nomem:
318 319 free(a);
319 320 free(b);
320 321 free(l.base);
321 322 return rl ? rl : PyErr_NoMemory();
322 323 }
323 324
324 325 static PyObject *bdiff(PyObject *self, PyObject *args)
325 326 {
326 327 char *sa, *sb;
327 328 PyObject *result = NULL;
328 329 struct line *al, *bl;
329 330 struct hunklist l = {NULL, NULL};
330 331 struct hunk *h;
331 332 char encode[12], *rb;
332 333 int an, bn, len = 0, la, lb;
333 334
334 335 if (!PyArg_ParseTuple(args, "s#s#:bdiff", &sa, &la, &sb, &lb))
335 336 return NULL;
336 337
337 338 an = splitlines(sa, la, &al);
338 339 bn = splitlines(sb, lb, &bl);
339 340 if (!al || !bl)
340 341 goto nomem;
341 342
342 343 l = diff(al, an, bl, bn);
343 344 if (!l.head)
344 345 goto nomem;
345 346
346 347 /* calculate length of output */
347 348 la = lb = 0;
348 349 for (h = l.base; h != l.head; h++) {
349 350 if (h->a1 != la || h->b1 != lb)
350 351 len += 12 + bl[h->b1].l - bl[lb].l;
351 352 la = h->a2;
352 353 lb = h->b2;
353 354 }
354 355
355 356 result = PyString_FromStringAndSize(NULL, len);
356 357 if (!result)
357 358 goto nomem;
358 359
359 360 /* build binary patch */
360 361 rb = PyString_AsString(result);
361 362 la = lb = 0;
362 363
363 364 for (h = l.base; h != l.head; h++) {
364 365 if (h->a1 != la || h->b1 != lb) {
365 366 len = bl[h->b1].l - bl[lb].l;
366 367 *(uint32_t *)(encode) = htonl(al[la].l - al->l);
367 368 *(uint32_t *)(encode + 4) = htonl(al[h->a1].l - al->l);
368 369 *(uint32_t *)(encode + 8) = htonl(len);
369 370 memcpy(rb, encode, 12);
370 371 memcpy(rb + 12, bl[lb].l, len);
371 372 rb += 12 + len;
372 373 }
373 374 la = h->a2;
374 375 lb = h->b2;
375 376 }
376 377
377 378 nomem:
378 379 free(al);
379 380 free(bl);
380 381 free(l.base);
381 382 return result ? result : PyErr_NoMemory();
382 383 }
383 384
384 385 static char mdiff_doc[] = "Efficient binary diff.";
385 386
386 387 static PyMethodDef methods[] = {
387 388 {"bdiff", bdiff, METH_VARARGS, "calculate a binary diff\n"},
388 389 {"blocks", blocks, METH_VARARGS, "find a list of matching lines\n"},
389 390 {NULL, NULL}
390 391 };
391 392
392 393 PyMODINIT_FUNC initbdiff(void)
393 394 {
394 395 Py_InitModule3("bdiff", methods, mdiff_doc);
395 396 }
396 397
General Comments 0
You need to be logged in to leave comments. Login now