##// END OF EJS Templates
revlog: handle errors from index_node() in nt_insert() and index_slice_del()...
Martin von Zweigbergk -
r38020:51460577 default
parent child Browse files
Show More
@@ -1,2181 +1,2184
1 1 /*
2 2 parsers.c - efficient content parsing
3 3
4 4 Copyright 2008 Matt Mackall <mpm@selenic.com> and others
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
10 10 #include <Python.h>
11 11 #include <assert.h>
12 12 #include <ctype.h>
13 13 #include <stddef.h>
14 14 #include <string.h>
15 15
16 16 #include "bitmanipulation.h"
17 17 #include "charencode.h"
18 18 #include "util.h"
19 19
20 20 #ifdef IS_PY3K
21 21 /* The mapping of Python types is meant to be temporary to get Python
22 22 * 3 to compile. We should remove this once Python 3 support is fully
23 23 * supported and proper types are used in the extensions themselves. */
24 24 #define PyInt_Check PyLong_Check
25 25 #define PyInt_FromLong PyLong_FromLong
26 26 #define PyInt_FromSsize_t PyLong_FromSsize_t
27 27 #define PyInt_AS_LONG PyLong_AS_LONG
28 28 #define PyInt_AsLong PyLong_AsLong
29 29 #endif
30 30
31 31 /*
32 32 * A base-16 trie for fast node->rev mapping.
33 33 *
34 34 * Positive value is index of the next node in the trie
35 35 * Negative value is a leaf: -(rev + 1)
36 36 * Zero is empty
37 37 */
38 38 typedef struct {
39 39 int children[16];
40 40 } nodetree;
41 41
42 42 /*
43 43 * This class has two behaviors.
44 44 *
45 45 * When used in a list-like way (with integer keys), we decode an
46 46 * entry in a RevlogNG index file on demand. Our last entry is a
47 47 * sentinel, always a nullid. We have limited support for
48 48 * integer-keyed insert and delete, only at elements right before the
49 49 * sentinel.
50 50 *
51 51 * With string keys, we lazily perform a reverse mapping from node to
52 52 * rev, using a base-16 trie.
53 53 */
54 54 typedef struct {
55 55 PyObject_HEAD
56 56 /* Type-specific fields go here. */
57 57 PyObject *data; /* raw bytes of index */
58 58 Py_buffer buf; /* buffer of data */
59 59 PyObject **cache; /* cached tuples */
60 60 const char **offsets; /* populated on demand */
61 61 Py_ssize_t raw_length; /* original number of elements */
62 62 Py_ssize_t length; /* current number of elements */
63 63 PyObject *added; /* populated on demand */
64 64 PyObject *headrevs; /* cache, invalidated on changes */
65 65 PyObject *filteredrevs;/* filtered revs set */
66 66 nodetree *nt; /* base-16 trie */
67 67 unsigned ntlength; /* # nodes in use */
68 68 unsigned ntcapacity; /* # nodes allocated */
69 69 int ntdepth; /* maximum depth of tree */
70 70 int ntsplits; /* # splits performed */
71 71 int ntrev; /* last rev scanned */
72 72 int ntlookups; /* # lookups */
73 73 int ntmisses; /* # lookups that miss the cache */
74 74 int inlined;
75 75 } indexObject;
76 76
77 77 static Py_ssize_t index_length(const indexObject *self)
78 78 {
79 79 if (self->added == NULL)
80 80 return self->length;
81 81 return self->length + PyList_GET_SIZE(self->added);
82 82 }
83 83
84 84 static PyObject *nullentry;
85 85 static const char nullid[20];
86 86
87 87 static Py_ssize_t inline_scan(indexObject *self, const char **offsets);
88 88
89 89 #if LONG_MAX == 0x7fffffffL
90 90 static const char *const tuple_format = PY23("Kiiiiiis#", "Kiiiiiiy#");
91 91 #else
92 92 static const char *const tuple_format = PY23("kiiiiiis#", "kiiiiiiy#");
93 93 #endif
94 94
95 95 /* A RevlogNG v1 index entry is 64 bytes long. */
96 96 static const long v1_hdrsize = 64;
97 97
98 98 /*
99 99 * Return a pointer to the beginning of a RevlogNG record.
100 100 */
101 101 static const char *index_deref(indexObject *self, Py_ssize_t pos)
102 102 {
103 103 if (self->inlined && pos > 0) {
104 104 if (self->offsets == NULL) {
105 105 self->offsets = PyMem_Malloc(self->raw_length *
106 106 sizeof(*self->offsets));
107 107 if (self->offsets == NULL)
108 108 return (const char *)PyErr_NoMemory();
109 109 inline_scan(self, self->offsets);
110 110 }
111 111 return self->offsets[pos];
112 112 }
113 113
114 114 return (const char *)(self->buf.buf) + pos * v1_hdrsize;
115 115 }
116 116
117 117 static inline int index_get_parents(indexObject *self, Py_ssize_t rev,
118 118 int *ps, int maxrev)
119 119 {
120 120 if (rev >= self->length - 1) {
121 121 PyObject *tuple = PyList_GET_ITEM(self->added,
122 122 rev - self->length + 1);
123 123 ps[0] = (int)PyInt_AS_LONG(PyTuple_GET_ITEM(tuple, 5));
124 124 ps[1] = (int)PyInt_AS_LONG(PyTuple_GET_ITEM(tuple, 6));
125 125 } else {
126 126 const char *data = index_deref(self, rev);
127 127 ps[0] = getbe32(data + 24);
128 128 ps[1] = getbe32(data + 28);
129 129 }
130 130 /* If index file is corrupted, ps[] may point to invalid revisions. So
131 131 * there is a risk of buffer overflow to trust them unconditionally. */
132 132 if (ps[0] > maxrev || ps[1] > maxrev) {
133 133 PyErr_SetString(PyExc_ValueError, "parent out of range");
134 134 return -1;
135 135 }
136 136 return 0;
137 137 }
138 138
139 139
140 140 /*
141 141 * RevlogNG format (all in big endian, data may be inlined):
142 142 * 6 bytes: offset
143 143 * 2 bytes: flags
144 144 * 4 bytes: compressed length
145 145 * 4 bytes: uncompressed length
146 146 * 4 bytes: base revision
147 147 * 4 bytes: link revision
148 148 * 4 bytes: parent 1 revision
149 149 * 4 bytes: parent 2 revision
150 150 * 32 bytes: nodeid (only 20 bytes used)
151 151 */
152 152 static PyObject *index_get(indexObject *self, Py_ssize_t pos)
153 153 {
154 154 uint64_t offset_flags;
155 155 int comp_len, uncomp_len, base_rev, link_rev, parent_1, parent_2;
156 156 const char *c_node_id;
157 157 const char *data;
158 158 Py_ssize_t length = index_length(self);
159 159 PyObject *entry;
160 160
161 161 if (pos < 0)
162 162 pos += length;
163 163
164 164 if (pos < 0 || pos >= length) {
165 165 PyErr_SetString(PyExc_IndexError, "revlog index out of range");
166 166 return NULL;
167 167 }
168 168
169 169 if (pos == length - 1) {
170 170 Py_INCREF(nullentry);
171 171 return nullentry;
172 172 }
173 173
174 174 if (pos >= self->length - 1) {
175 175 PyObject *obj;
176 176 obj = PyList_GET_ITEM(self->added, pos - self->length + 1);
177 177 Py_INCREF(obj);
178 178 return obj;
179 179 }
180 180
181 181 if (self->cache) {
182 182 if (self->cache[pos]) {
183 183 Py_INCREF(self->cache[pos]);
184 184 return self->cache[pos];
185 185 }
186 186 } else {
187 187 self->cache = calloc(self->raw_length, sizeof(PyObject *));
188 188 if (self->cache == NULL)
189 189 return PyErr_NoMemory();
190 190 }
191 191
192 192 data = index_deref(self, pos);
193 193 if (data == NULL)
194 194 return NULL;
195 195
196 196 offset_flags = getbe32(data + 4);
197 197 if (pos == 0) /* mask out version number for the first entry */
198 198 offset_flags &= 0xFFFF;
199 199 else {
200 200 uint32_t offset_high = getbe32(data);
201 201 offset_flags |= ((uint64_t)offset_high) << 32;
202 202 }
203 203
204 204 comp_len = getbe32(data + 8);
205 205 uncomp_len = getbe32(data + 12);
206 206 base_rev = getbe32(data + 16);
207 207 link_rev = getbe32(data + 20);
208 208 parent_1 = getbe32(data + 24);
209 209 parent_2 = getbe32(data + 28);
210 210 c_node_id = data + 32;
211 211
212 212 entry = Py_BuildValue(tuple_format, offset_flags, comp_len,
213 213 uncomp_len, base_rev, link_rev,
214 214 parent_1, parent_2, c_node_id, 20);
215 215
216 216 if (entry) {
217 217 PyObject_GC_UnTrack(entry);
218 218 Py_INCREF(entry);
219 219 }
220 220
221 221 self->cache[pos] = entry;
222 222
223 223 return entry;
224 224 }
225 225
226 226 /*
227 227 * Return the 20-byte SHA of the node corresponding to the given rev.
228 228 */
229 229 static const char *index_node(indexObject *self, Py_ssize_t pos)
230 230 {
231 231 Py_ssize_t length = index_length(self);
232 232 const char *data;
233 233
234 234 if (pos == length - 1 || pos == INT_MAX)
235 235 return nullid;
236 236
237 237 if (pos >= length)
238 238 return NULL;
239 239
240 240 if (pos >= self->length - 1) {
241 241 PyObject *tuple, *str;
242 242 tuple = PyList_GET_ITEM(self->added, pos - self->length + 1);
243 243 str = PyTuple_GetItem(tuple, 7);
244 244 return str ? PyBytes_AS_STRING(str) : NULL;
245 245 }
246 246
247 247 data = index_deref(self, pos);
248 248 return data ? data + 32 : NULL;
249 249 }
250 250
251 251 /*
252 252 * Return the 20-byte SHA of the node corresponding to the given rev. The
253 253 * rev is assumed to be existing. If not, an exception is set.
254 254 */
255 255 static const char *index_node_existing(indexObject *self, Py_ssize_t pos)
256 256 {
257 257 const char *node = index_node(self, pos);
258 258 if (node == NULL) {
259 259 PyErr_Format(PyExc_IndexError, "could not access rev %d",
260 260 (int)pos);
261 261 }
262 262 return node;
263 263 }
264 264
265 265 static int nt_insert(indexObject *self, const char *node, int rev);
266 266
267 267 static int node_check(PyObject *obj, char **node, Py_ssize_t *nodelen)
268 268 {
269 269 if (PyBytes_AsStringAndSize(obj, node, nodelen) == -1)
270 270 return -1;
271 271 if (*nodelen == 20)
272 272 return 0;
273 273 PyErr_SetString(PyExc_ValueError, "20-byte hash required");
274 274 return -1;
275 275 }
276 276
277 277 static PyObject *index_insert(indexObject *self, PyObject *args)
278 278 {
279 279 PyObject *obj;
280 280 char *node;
281 281 int index;
282 282 Py_ssize_t len, nodelen;
283 283
284 284 if (!PyArg_ParseTuple(args, "iO", &index, &obj))
285 285 return NULL;
286 286
287 287 if (!PyTuple_Check(obj) || PyTuple_GET_SIZE(obj) != 8) {
288 288 PyErr_SetString(PyExc_TypeError, "8-tuple required");
289 289 return NULL;
290 290 }
291 291
292 292 if (node_check(PyTuple_GET_ITEM(obj, 7), &node, &nodelen) == -1)
293 293 return NULL;
294 294
295 295 len = index_length(self);
296 296
297 297 if (index < 0)
298 298 index += len;
299 299
300 300 if (index != len - 1) {
301 301 PyErr_SetString(PyExc_IndexError,
302 302 "insert only supported at index -1");
303 303 return NULL;
304 304 }
305 305
306 306 if (self->added == NULL) {
307 307 self->added = PyList_New(0);
308 308 if (self->added == NULL)
309 309 return NULL;
310 310 }
311 311
312 312 if (PyList_Append(self->added, obj) == -1)
313 313 return NULL;
314 314
315 315 if (self->nt)
316 316 nt_insert(self, node, index);
317 317
318 318 Py_CLEAR(self->headrevs);
319 319 Py_RETURN_NONE;
320 320 }
321 321
322 322 static void _index_clearcaches(indexObject *self)
323 323 {
324 324 if (self->cache) {
325 325 Py_ssize_t i;
326 326
327 327 for (i = 0; i < self->raw_length; i++)
328 328 Py_CLEAR(self->cache[i]);
329 329 free(self->cache);
330 330 self->cache = NULL;
331 331 }
332 332 if (self->offsets) {
333 333 PyMem_Free(self->offsets);
334 334 self->offsets = NULL;
335 335 }
336 336 if (self->nt) {
337 337 free(self->nt);
338 338 self->nt = NULL;
339 339 }
340 340 Py_CLEAR(self->headrevs);
341 341 }
342 342
343 343 static PyObject *index_clearcaches(indexObject *self)
344 344 {
345 345 _index_clearcaches(self);
346 346 self->ntlength = self->ntcapacity = 0;
347 347 self->ntdepth = self->ntsplits = 0;
348 348 self->ntrev = -1;
349 349 self->ntlookups = self->ntmisses = 0;
350 350 Py_RETURN_NONE;
351 351 }
352 352
353 353 static PyObject *index_stats(indexObject *self)
354 354 {
355 355 PyObject *obj = PyDict_New();
356 356 PyObject *t = NULL;
357 357
358 358 if (obj == NULL)
359 359 return NULL;
360 360
361 361 #define istat(__n, __d) \
362 362 do { \
363 363 t = PyInt_FromSsize_t(self->__n); \
364 364 if (!t) \
365 365 goto bail; \
366 366 if (PyDict_SetItemString(obj, __d, t) == -1) \
367 367 goto bail; \
368 368 Py_DECREF(t); \
369 369 } while (0)
370 370
371 371 if (self->added) {
372 372 Py_ssize_t len = PyList_GET_SIZE(self->added);
373 373 t = PyInt_FromSsize_t(len);
374 374 if (!t)
375 375 goto bail;
376 376 if (PyDict_SetItemString(obj, "index entries added", t) == -1)
377 377 goto bail;
378 378 Py_DECREF(t);
379 379 }
380 380
381 381 if (self->raw_length != self->length - 1)
382 382 istat(raw_length, "revs on disk");
383 383 istat(length, "revs in memory");
384 384 istat(ntcapacity, "node trie capacity");
385 385 istat(ntdepth, "node trie depth");
386 386 istat(ntlength, "node trie count");
387 387 istat(ntlookups, "node trie lookups");
388 388 istat(ntmisses, "node trie misses");
389 389 istat(ntrev, "node trie last rev scanned");
390 390 istat(ntsplits, "node trie splits");
391 391
392 392 #undef istat
393 393
394 394 return obj;
395 395
396 396 bail:
397 397 Py_XDECREF(obj);
398 398 Py_XDECREF(t);
399 399 return NULL;
400 400 }
401 401
402 402 /*
403 403 * When we cache a list, we want to be sure the caller can't mutate
404 404 * the cached copy.
405 405 */
406 406 static PyObject *list_copy(PyObject *list)
407 407 {
408 408 Py_ssize_t len = PyList_GET_SIZE(list);
409 409 PyObject *newlist = PyList_New(len);
410 410 Py_ssize_t i;
411 411
412 412 if (newlist == NULL)
413 413 return NULL;
414 414
415 415 for (i = 0; i < len; i++) {
416 416 PyObject *obj = PyList_GET_ITEM(list, i);
417 417 Py_INCREF(obj);
418 418 PyList_SET_ITEM(newlist, i, obj);
419 419 }
420 420
421 421 return newlist;
422 422 }
423 423
424 424 static int check_filter(PyObject *filter, Py_ssize_t arg)
425 425 {
426 426 if (filter) {
427 427 PyObject *arglist, *result;
428 428 int isfiltered;
429 429
430 430 arglist = Py_BuildValue("(n)", arg);
431 431 if (!arglist) {
432 432 return -1;
433 433 }
434 434
435 435 result = PyEval_CallObject(filter, arglist);
436 436 Py_DECREF(arglist);
437 437 if (!result) {
438 438 return -1;
439 439 }
440 440
441 441 /* PyObject_IsTrue returns 1 if true, 0 if false, -1 if error,
442 442 * same as this function, so we can just return it directly.*/
443 443 isfiltered = PyObject_IsTrue(result);
444 444 Py_DECREF(result);
445 445 return isfiltered;
446 446 } else {
447 447 return 0;
448 448 }
449 449 }
450 450
451 451 static Py_ssize_t add_roots_get_min(indexObject *self, PyObject *list,
452 452 Py_ssize_t marker, char *phases)
453 453 {
454 454 PyObject *iter = NULL;
455 455 PyObject *iter_item = NULL;
456 456 Py_ssize_t min_idx = index_length(self) + 1;
457 457 long iter_item_long;
458 458
459 459 if (PyList_GET_SIZE(list) != 0) {
460 460 iter = PyObject_GetIter(list);
461 461 if (iter == NULL)
462 462 return -2;
463 463 while ((iter_item = PyIter_Next(iter))) {
464 464 iter_item_long = PyInt_AS_LONG(iter_item);
465 465 Py_DECREF(iter_item);
466 466 if (iter_item_long < min_idx)
467 467 min_idx = iter_item_long;
468 468 phases[iter_item_long] = marker;
469 469 }
470 470 Py_DECREF(iter);
471 471 }
472 472
473 473 return min_idx;
474 474 }
475 475
476 476 static inline void set_phase_from_parents(char *phases, int parent_1,
477 477 int parent_2, Py_ssize_t i)
478 478 {
479 479 if (parent_1 >= 0 && phases[parent_1] > phases[i])
480 480 phases[i] = phases[parent_1];
481 481 if (parent_2 >= 0 && phases[parent_2] > phases[i])
482 482 phases[i] = phases[parent_2];
483 483 }
484 484
485 485 static PyObject *reachableroots2(indexObject *self, PyObject *args)
486 486 {
487 487
488 488 /* Input */
489 489 long minroot;
490 490 PyObject *includepatharg = NULL;
491 491 int includepath = 0;
492 492 /* heads and roots are lists */
493 493 PyObject *heads = NULL;
494 494 PyObject *roots = NULL;
495 495 PyObject *reachable = NULL;
496 496
497 497 PyObject *val;
498 498 Py_ssize_t len = index_length(self) - 1;
499 499 long revnum;
500 500 Py_ssize_t k;
501 501 Py_ssize_t i;
502 502 Py_ssize_t l;
503 503 int r;
504 504 int parents[2];
505 505
506 506 /* Internal data structure:
507 507 * tovisit: array of length len+1 (all revs + nullrev), filled upto lentovisit
508 508 * revstates: array of length len+1 (all revs + nullrev) */
509 509 int *tovisit = NULL;
510 510 long lentovisit = 0;
511 511 enum { RS_SEEN = 1, RS_ROOT = 2, RS_REACHABLE = 4 };
512 512 char *revstates = NULL;
513 513
514 514 /* Get arguments */
515 515 if (!PyArg_ParseTuple(args, "lO!O!O!", &minroot, &PyList_Type, &heads,
516 516 &PyList_Type, &roots,
517 517 &PyBool_Type, &includepatharg))
518 518 goto bail;
519 519
520 520 if (includepatharg == Py_True)
521 521 includepath = 1;
522 522
523 523 /* Initialize return set */
524 524 reachable = PyList_New(0);
525 525 if (reachable == NULL)
526 526 goto bail;
527 527
528 528 /* Initialize internal datastructures */
529 529 tovisit = (int *)malloc((len + 1) * sizeof(int));
530 530 if (tovisit == NULL) {
531 531 PyErr_NoMemory();
532 532 goto bail;
533 533 }
534 534
535 535 revstates = (char *)calloc(len + 1, 1);
536 536 if (revstates == NULL) {
537 537 PyErr_NoMemory();
538 538 goto bail;
539 539 }
540 540
541 541 l = PyList_GET_SIZE(roots);
542 542 for (i = 0; i < l; i++) {
543 543 revnum = PyInt_AsLong(PyList_GET_ITEM(roots, i));
544 544 if (revnum == -1 && PyErr_Occurred())
545 545 goto bail;
546 546 /* If root is out of range, e.g. wdir(), it must be unreachable
547 547 * from heads. So we can just ignore it. */
548 548 if (revnum + 1 < 0 || revnum + 1 >= len + 1)
549 549 continue;
550 550 revstates[revnum + 1] |= RS_ROOT;
551 551 }
552 552
553 553 /* Populate tovisit with all the heads */
554 554 l = PyList_GET_SIZE(heads);
555 555 for (i = 0; i < l; i++) {
556 556 revnum = PyInt_AsLong(PyList_GET_ITEM(heads, i));
557 557 if (revnum == -1 && PyErr_Occurred())
558 558 goto bail;
559 559 if (revnum + 1 < 0 || revnum + 1 >= len + 1) {
560 560 PyErr_SetString(PyExc_IndexError, "head out of range");
561 561 goto bail;
562 562 }
563 563 if (!(revstates[revnum + 1] & RS_SEEN)) {
564 564 tovisit[lentovisit++] = (int)revnum;
565 565 revstates[revnum + 1] |= RS_SEEN;
566 566 }
567 567 }
568 568
569 569 /* Visit the tovisit list and find the reachable roots */
570 570 k = 0;
571 571 while (k < lentovisit) {
572 572 /* Add the node to reachable if it is a root*/
573 573 revnum = tovisit[k++];
574 574 if (revstates[revnum + 1] & RS_ROOT) {
575 575 revstates[revnum + 1] |= RS_REACHABLE;
576 576 val = PyInt_FromLong(revnum);
577 577 if (val == NULL)
578 578 goto bail;
579 579 r = PyList_Append(reachable, val);
580 580 Py_DECREF(val);
581 581 if (r < 0)
582 582 goto bail;
583 583 if (includepath == 0)
584 584 continue;
585 585 }
586 586
587 587 /* Add its parents to the list of nodes to visit */
588 588 if (revnum == -1)
589 589 continue;
590 590 r = index_get_parents(self, revnum, parents, (int)len - 1);
591 591 if (r < 0)
592 592 goto bail;
593 593 for (i = 0; i < 2; i++) {
594 594 if (!(revstates[parents[i] + 1] & RS_SEEN)
595 595 && parents[i] >= minroot) {
596 596 tovisit[lentovisit++] = parents[i];
597 597 revstates[parents[i] + 1] |= RS_SEEN;
598 598 }
599 599 }
600 600 }
601 601
602 602 /* Find all the nodes in between the roots we found and the heads
603 603 * and add them to the reachable set */
604 604 if (includepath == 1) {
605 605 long minidx = minroot;
606 606 if (minidx < 0)
607 607 minidx = 0;
608 608 for (i = minidx; i < len; i++) {
609 609 if (!(revstates[i + 1] & RS_SEEN))
610 610 continue;
611 611 r = index_get_parents(self, i, parents, (int)len - 1);
612 612 /* Corrupted index file, error is set from
613 613 * index_get_parents */
614 614 if (r < 0)
615 615 goto bail;
616 616 if (((revstates[parents[0] + 1] |
617 617 revstates[parents[1] + 1]) & RS_REACHABLE)
618 618 && !(revstates[i + 1] & RS_REACHABLE)) {
619 619 revstates[i + 1] |= RS_REACHABLE;
620 620 val = PyInt_FromLong(i);
621 621 if (val == NULL)
622 622 goto bail;
623 623 r = PyList_Append(reachable, val);
624 624 Py_DECREF(val);
625 625 if (r < 0)
626 626 goto bail;
627 627 }
628 628 }
629 629 }
630 630
631 631 free(revstates);
632 632 free(tovisit);
633 633 return reachable;
634 634 bail:
635 635 Py_XDECREF(reachable);
636 636 free(revstates);
637 637 free(tovisit);
638 638 return NULL;
639 639 }
640 640
641 641 static PyObject *compute_phases_map_sets(indexObject *self, PyObject *args)
642 642 {
643 643 PyObject *roots = Py_None;
644 644 PyObject *ret = NULL;
645 645 PyObject *phasessize = NULL;
646 646 PyObject *phaseroots = NULL;
647 647 PyObject *phaseset = NULL;
648 648 PyObject *phasessetlist = NULL;
649 649 PyObject *rev = NULL;
650 650 Py_ssize_t len = index_length(self) - 1;
651 651 Py_ssize_t numphase = 0;
652 652 Py_ssize_t minrevallphases = 0;
653 653 Py_ssize_t minrevphase = 0;
654 654 Py_ssize_t i = 0;
655 655 char *phases = NULL;
656 656 long phase;
657 657
658 658 if (!PyArg_ParseTuple(args, "O", &roots))
659 659 goto done;
660 660 if (roots == NULL || !PyList_Check(roots)) {
661 661 PyErr_SetString(PyExc_TypeError, "roots must be a list");
662 662 goto done;
663 663 }
664 664
665 665 phases = calloc(len, 1); /* phase per rev: {0: public, 1: draft, 2: secret} */
666 666 if (phases == NULL) {
667 667 PyErr_NoMemory();
668 668 goto done;
669 669 }
670 670 /* Put the phase information of all the roots in phases */
671 671 numphase = PyList_GET_SIZE(roots)+1;
672 672 minrevallphases = len + 1;
673 673 phasessetlist = PyList_New(numphase);
674 674 if (phasessetlist == NULL)
675 675 goto done;
676 676
677 677 PyList_SET_ITEM(phasessetlist, 0, Py_None);
678 678 Py_INCREF(Py_None);
679 679
680 680 for (i = 0; i < numphase-1; i++) {
681 681 phaseroots = PyList_GET_ITEM(roots, i);
682 682 phaseset = PySet_New(NULL);
683 683 if (phaseset == NULL)
684 684 goto release;
685 685 PyList_SET_ITEM(phasessetlist, i+1, phaseset);
686 686 if (!PyList_Check(phaseroots)) {
687 687 PyErr_SetString(PyExc_TypeError,
688 688 "roots item must be a list");
689 689 goto release;
690 690 }
691 691 minrevphase = add_roots_get_min(self, phaseroots, i+1, phases);
692 692 if (minrevphase == -2) /* Error from add_roots_get_min */
693 693 goto release;
694 694 minrevallphases = MIN(minrevallphases, minrevphase);
695 695 }
696 696 /* Propagate the phase information from the roots to the revs */
697 697 if (minrevallphases != -1) {
698 698 int parents[2];
699 699 for (i = minrevallphases; i < len; i++) {
700 700 if (index_get_parents(self, i, parents,
701 701 (int)len - 1) < 0)
702 702 goto release;
703 703 set_phase_from_parents(phases, parents[0], parents[1], i);
704 704 }
705 705 }
706 706 /* Transform phase list to a python list */
707 707 phasessize = PyInt_FromLong(len);
708 708 if (phasessize == NULL)
709 709 goto release;
710 710 for (i = 0; i < len; i++) {
711 711 phase = phases[i];
712 712 /* We only store the sets of phase for non public phase, the public phase
713 713 * is computed as a difference */
714 714 if (phase != 0) {
715 715 phaseset = PyList_GET_ITEM(phasessetlist, phase);
716 716 rev = PyInt_FromLong(i);
717 717 if (rev == NULL)
718 718 goto release;
719 719 PySet_Add(phaseset, rev);
720 720 Py_XDECREF(rev);
721 721 }
722 722 }
723 723 ret = PyTuple_Pack(2, phasessize, phasessetlist);
724 724
725 725 release:
726 726 Py_XDECREF(phasessize);
727 727 Py_XDECREF(phasessetlist);
728 728 done:
729 729 free(phases);
730 730 return ret;
731 731 }
732 732
733 733 static PyObject *index_headrevs(indexObject *self, PyObject *args)
734 734 {
735 735 Py_ssize_t i, j, len;
736 736 char *nothead = NULL;
737 737 PyObject *heads = NULL;
738 738 PyObject *filter = NULL;
739 739 PyObject *filteredrevs = Py_None;
740 740
741 741 if (!PyArg_ParseTuple(args, "|O", &filteredrevs)) {
742 742 return NULL;
743 743 }
744 744
745 745 if (self->headrevs && filteredrevs == self->filteredrevs)
746 746 return list_copy(self->headrevs);
747 747
748 748 Py_DECREF(self->filteredrevs);
749 749 self->filteredrevs = filteredrevs;
750 750 Py_INCREF(filteredrevs);
751 751
752 752 if (filteredrevs != Py_None) {
753 753 filter = PyObject_GetAttrString(filteredrevs, "__contains__");
754 754 if (!filter) {
755 755 PyErr_SetString(PyExc_TypeError,
756 756 "filteredrevs has no attribute __contains__");
757 757 goto bail;
758 758 }
759 759 }
760 760
761 761 len = index_length(self) - 1;
762 762 heads = PyList_New(0);
763 763 if (heads == NULL)
764 764 goto bail;
765 765 if (len == 0) {
766 766 PyObject *nullid = PyInt_FromLong(-1);
767 767 if (nullid == NULL || PyList_Append(heads, nullid) == -1) {
768 768 Py_XDECREF(nullid);
769 769 goto bail;
770 770 }
771 771 goto done;
772 772 }
773 773
774 774 nothead = calloc(len, 1);
775 775 if (nothead == NULL) {
776 776 PyErr_NoMemory();
777 777 goto bail;
778 778 }
779 779
780 780 for (i = len - 1; i >= 0; i--) {
781 781 int isfiltered;
782 782 int parents[2];
783 783
784 784 /* If nothead[i] == 1, it means we've seen an unfiltered child of this
785 785 * node already, and therefore this node is not filtered. So we can skip
786 786 * the expensive check_filter step.
787 787 */
788 788 if (nothead[i] != 1) {
789 789 isfiltered = check_filter(filter, i);
790 790 if (isfiltered == -1) {
791 791 PyErr_SetString(PyExc_TypeError,
792 792 "unable to check filter");
793 793 goto bail;
794 794 }
795 795
796 796 if (isfiltered) {
797 797 nothead[i] = 1;
798 798 continue;
799 799 }
800 800 }
801 801
802 802 if (index_get_parents(self, i, parents, (int)len - 1) < 0)
803 803 goto bail;
804 804 for (j = 0; j < 2; j++) {
805 805 if (parents[j] >= 0)
806 806 nothead[parents[j]] = 1;
807 807 }
808 808 }
809 809
810 810 for (i = 0; i < len; i++) {
811 811 PyObject *head;
812 812
813 813 if (nothead[i])
814 814 continue;
815 815 head = PyInt_FromSsize_t(i);
816 816 if (head == NULL || PyList_Append(heads, head) == -1) {
817 817 Py_XDECREF(head);
818 818 goto bail;
819 819 }
820 820 }
821 821
822 822 done:
823 823 self->headrevs = heads;
824 824 Py_XDECREF(filter);
825 825 free(nothead);
826 826 return list_copy(self->headrevs);
827 827 bail:
828 828 Py_XDECREF(filter);
829 829 Py_XDECREF(heads);
830 830 free(nothead);
831 831 return NULL;
832 832 }
833 833
834 834 /**
835 835 * Obtain the base revision index entry.
836 836 *
837 837 * Callers must ensure that rev >= 0 or illegal memory access may occur.
838 838 */
839 839 static inline int index_baserev(indexObject *self, int rev)
840 840 {
841 841 const char *data;
842 842
843 843 if (rev >= self->length - 1) {
844 844 PyObject *tuple = PyList_GET_ITEM(self->added,
845 845 rev - self->length + 1);
846 846 return (int)PyInt_AS_LONG(PyTuple_GET_ITEM(tuple, 3));
847 847 }
848 848 else {
849 849 data = index_deref(self, rev);
850 850 if (data == NULL) {
851 851 return -2;
852 852 }
853 853
854 854 return getbe32(data + 16);
855 855 }
856 856 }
857 857
858 858 static PyObject *index_deltachain(indexObject *self, PyObject *args)
859 859 {
860 860 int rev, generaldelta;
861 861 PyObject *stoparg;
862 862 int stoprev, iterrev, baserev = -1;
863 863 int stopped;
864 864 PyObject *chain = NULL, *result = NULL;
865 865 const Py_ssize_t length = index_length(self);
866 866
867 867 if (!PyArg_ParseTuple(args, "iOi", &rev, &stoparg, &generaldelta)) {
868 868 return NULL;
869 869 }
870 870
871 871 if (PyInt_Check(stoparg)) {
872 872 stoprev = (int)PyInt_AsLong(stoparg);
873 873 if (stoprev == -1 && PyErr_Occurred()) {
874 874 return NULL;
875 875 }
876 876 }
877 877 else if (stoparg == Py_None) {
878 878 stoprev = -2;
879 879 }
880 880 else {
881 881 PyErr_SetString(PyExc_ValueError,
882 882 "stoprev must be integer or None");
883 883 return NULL;
884 884 }
885 885
886 886 if (rev < 0 || rev >= length - 1) {
887 887 PyErr_SetString(PyExc_ValueError, "revlog index out of range");
888 888 return NULL;
889 889 }
890 890
891 891 chain = PyList_New(0);
892 892 if (chain == NULL) {
893 893 return NULL;
894 894 }
895 895
896 896 baserev = index_baserev(self, rev);
897 897
898 898 /* This should never happen. */
899 899 if (baserev <= -2) {
900 900 /* Error should be set by index_deref() */
901 901 assert(PyErr_Occurred());
902 902 goto bail;
903 903 }
904 904
905 905 iterrev = rev;
906 906
907 907 while (iterrev != baserev && iterrev != stoprev) {
908 908 PyObject *value = PyInt_FromLong(iterrev);
909 909 if (value == NULL) {
910 910 goto bail;
911 911 }
912 912 if (PyList_Append(chain, value)) {
913 913 Py_DECREF(value);
914 914 goto bail;
915 915 }
916 916 Py_DECREF(value);
917 917
918 918 if (generaldelta) {
919 919 iterrev = baserev;
920 920 }
921 921 else {
922 922 iterrev--;
923 923 }
924 924
925 925 if (iterrev < 0) {
926 926 break;
927 927 }
928 928
929 929 if (iterrev >= length - 1) {
930 930 PyErr_SetString(PyExc_IndexError, "revision outside index");
931 931 return NULL;
932 932 }
933 933
934 934 baserev = index_baserev(self, iterrev);
935 935
936 936 /* This should never happen. */
937 937 if (baserev <= -2) {
938 938 /* Error should be set by index_deref() */
939 939 assert(PyErr_Occurred());
940 940 goto bail;
941 941 }
942 942 }
943 943
944 944 if (iterrev == stoprev) {
945 945 stopped = 1;
946 946 }
947 947 else {
948 948 PyObject *value = PyInt_FromLong(iterrev);
949 949 if (value == NULL) {
950 950 goto bail;
951 951 }
952 952 if (PyList_Append(chain, value)) {
953 953 Py_DECREF(value);
954 954 goto bail;
955 955 }
956 956 Py_DECREF(value);
957 957
958 958 stopped = 0;
959 959 }
960 960
961 961 if (PyList_Reverse(chain)) {
962 962 goto bail;
963 963 }
964 964
965 965 result = Py_BuildValue("OO", chain, stopped ? Py_True : Py_False);
966 966 Py_DECREF(chain);
967 967 return result;
968 968
969 969 bail:
970 970 Py_DECREF(chain);
971 971 return NULL;
972 972 }
973 973
974 974 static inline int nt_level(const char *node, Py_ssize_t level)
975 975 {
976 976 int v = node[level>>1];
977 977 if (!(level & 1))
978 978 v >>= 4;
979 979 return v & 0xf;
980 980 }
981 981
982 982 /*
983 983 * Return values:
984 984 *
985 985 * -4: match is ambiguous (multiple candidates)
986 986 * -2: not found
987 987 * rest: valid rev
988 988 */
989 989 static int nt_find(indexObject *self, const char *node, Py_ssize_t nodelen,
990 990 int hex)
991 991 {
992 992 int (*getnybble)(const char *, Py_ssize_t) = hex ? hexdigit : nt_level;
993 993 int level, maxlevel, off;
994 994
995 995 if (nodelen == 20 && node[0] == '\0' && memcmp(node, nullid, 20) == 0)
996 996 return -1;
997 997
998 998 if (self->nt == NULL)
999 999 return -2;
1000 1000
1001 1001 if (hex)
1002 1002 maxlevel = nodelen > 40 ? 40 : (int)nodelen;
1003 1003 else
1004 1004 maxlevel = nodelen > 20 ? 40 : ((int)nodelen * 2);
1005 1005
1006 1006 for (level = off = 0; level < maxlevel; level++) {
1007 1007 int k = getnybble(node, level);
1008 1008 nodetree *n = &self->nt[off];
1009 1009 int v = n->children[k];
1010 1010
1011 1011 if (v < 0) {
1012 1012 const char *n;
1013 1013 Py_ssize_t i;
1014 1014
1015 1015 v = -(v + 1);
1016 1016 n = index_node(self, v);
1017 1017 if (n == NULL)
1018 1018 return -2;
1019 1019 for (i = level; i < maxlevel; i++)
1020 1020 if (getnybble(node, i) != nt_level(n, i))
1021 1021 return -2;
1022 1022 return v;
1023 1023 }
1024 1024 if (v == 0)
1025 1025 return -2;
1026 1026 off = v;
1027 1027 }
1028 1028 /* multiple matches against an ambiguous prefix */
1029 1029 return -4;
1030 1030 }
1031 1031
1032 1032 static int nt_new(indexObject *self)
1033 1033 {
1034 1034 if (self->ntlength == self->ntcapacity) {
1035 1035 if (self->ntcapacity >= INT_MAX / (sizeof(nodetree) * 2)) {
1036 1036 PyErr_SetString(PyExc_MemoryError,
1037 1037 "overflow in nt_new");
1038 1038 return -1;
1039 1039 }
1040 1040 self->ntcapacity *= 2;
1041 1041 self->nt = realloc(self->nt,
1042 1042 self->ntcapacity * sizeof(nodetree));
1043 1043 if (self->nt == NULL) {
1044 1044 PyErr_SetString(PyExc_MemoryError, "out of memory");
1045 1045 return -1;
1046 1046 }
1047 1047 memset(&self->nt[self->ntlength], 0,
1048 1048 sizeof(nodetree) * (self->ntcapacity - self->ntlength));
1049 1049 }
1050 1050 return self->ntlength++;
1051 1051 }
1052 1052
1053 1053 static int nt_insert(indexObject *self, const char *node, int rev)
1054 1054 {
1055 1055 int level = 0;
1056 1056 int off = 0;
1057 1057
1058 1058 while (level < 40) {
1059 1059 int k = nt_level(node, level);
1060 1060 nodetree *n;
1061 1061 int v;
1062 1062
1063 1063 n = &self->nt[off];
1064 1064 v = n->children[k];
1065 1065
1066 1066 if (v == 0) {
1067 1067 n->children[k] = -rev - 1;
1068 1068 return 0;
1069 1069 }
1070 1070 if (v < 0) {
1071 const char *oldnode = index_node(self, -(v + 1));
1071 const char *oldnode = index_node_existing(self, -(v + 1));
1072 1072 int noff;
1073 1073
1074 if (!oldnode || !memcmp(oldnode, node, 20)) {
1074 if (oldnode == NULL)
1075 return -1;
1076 if (!memcmp(oldnode, node, 20)) {
1075 1077 n->children[k] = -rev - 1;
1076 1078 return 0;
1077 1079 }
1078 1080 noff = nt_new(self);
1079 1081 if (noff == -1)
1080 1082 return -1;
1081 1083 /* self->nt may have been changed by realloc */
1082 1084 self->nt[off].children[k] = noff;
1083 1085 off = noff;
1084 1086 n = &self->nt[off];
1085 1087 n->children[nt_level(oldnode, ++level)] = v;
1086 1088 if (level > self->ntdepth)
1087 1089 self->ntdepth = level;
1088 1090 self->ntsplits += 1;
1089 1091 } else {
1090 1092 level += 1;
1091 1093 off = v;
1092 1094 }
1093 1095 }
1094 1096
1095 1097 return -1;
1096 1098 }
1097 1099
1098 1100 static int nt_init(indexObject *self)
1099 1101 {
1100 1102 if (self->nt == NULL) {
1101 1103 if ((size_t)self->raw_length > INT_MAX / sizeof(nodetree)) {
1102 1104 PyErr_SetString(PyExc_ValueError, "overflow in nt_init");
1103 1105 return -1;
1104 1106 }
1105 1107 self->ntcapacity = self->raw_length < 4
1106 1108 ? 4 : (int)self->raw_length / 2;
1107 1109
1108 1110 self->nt = calloc(self->ntcapacity, sizeof(nodetree));
1109 1111 if (self->nt == NULL) {
1110 1112 PyErr_NoMemory();
1111 1113 return -1;
1112 1114 }
1113 1115 self->ntlength = 1;
1114 1116 self->ntrev = (int)index_length(self) - 1;
1115 1117 self->ntlookups = 1;
1116 1118 self->ntmisses = 0;
1117 1119 if (nt_insert(self, nullid, INT_MAX) == -1)
1118 1120 return -1;
1119 1121 }
1120 1122 return 0;
1121 1123 }
1122 1124
1123 1125 /*
1124 1126 * Return values:
1125 1127 *
1126 1128 * -3: error (exception set)
1127 1129 * -2: not found (no exception set)
1128 1130 * rest: valid rev
1129 1131 */
1130 1132 static int index_find_node(indexObject *self,
1131 1133 const char *node, Py_ssize_t nodelen)
1132 1134 {
1133 1135 int rev;
1134 1136
1135 1137 self->ntlookups++;
1136 1138 rev = nt_find(self, node, nodelen, 0);
1137 1139 if (rev >= -1)
1138 1140 return rev;
1139 1141
1140 1142 if (nt_init(self) == -1)
1141 1143 return -3;
1142 1144
1143 1145 /*
1144 1146 * For the first handful of lookups, we scan the entire index,
1145 1147 * and cache only the matching nodes. This optimizes for cases
1146 1148 * like "hg tip", where only a few nodes are accessed.
1147 1149 *
1148 1150 * After that, we cache every node we visit, using a single
1149 1151 * scan amortized over multiple lookups. This gives the best
1150 1152 * bulk performance, e.g. for "hg log".
1151 1153 */
1152 1154 if (self->ntmisses++ < 4) {
1153 1155 for (rev = self->ntrev - 1; rev >= 0; rev--) {
1154 1156 const char *n = index_node_existing(self, rev);
1155 1157 if (n == NULL)
1156 1158 return -3;
1157 1159 if (memcmp(node, n, nodelen > 20 ? 20 : nodelen) == 0) {
1158 1160 if (nt_insert(self, n, rev) == -1)
1159 1161 return -3;
1160 1162 break;
1161 1163 }
1162 1164 }
1163 1165 } else {
1164 1166 for (rev = self->ntrev - 1; rev >= 0; rev--) {
1165 1167 const char *n = index_node_existing(self, rev);
1166 1168 if (n == NULL)
1167 1169 return -3;
1168 1170 if (nt_insert(self, n, rev) == -1) {
1169 1171 self->ntrev = rev + 1;
1170 1172 return -3;
1171 1173 }
1172 1174 if (memcmp(node, n, nodelen > 20 ? 20 : nodelen) == 0) {
1173 1175 break;
1174 1176 }
1175 1177 }
1176 1178 self->ntrev = rev;
1177 1179 }
1178 1180
1179 1181 if (rev >= 0)
1180 1182 return rev;
1181 1183 return -2;
1182 1184 }
1183 1185
1184 1186 static void raise_revlog_error(void)
1185 1187 {
1186 1188 PyObject *mod = NULL, *dict = NULL, *errclass = NULL;
1187 1189
1188 1190 mod = PyImport_ImportModule("mercurial.error");
1189 1191 if (mod == NULL) {
1190 1192 goto cleanup;
1191 1193 }
1192 1194
1193 1195 dict = PyModule_GetDict(mod);
1194 1196 if (dict == NULL) {
1195 1197 goto cleanup;
1196 1198 }
1197 1199 Py_INCREF(dict);
1198 1200
1199 1201 errclass = PyDict_GetItemString(dict, "RevlogError");
1200 1202 if (errclass == NULL) {
1201 1203 PyErr_SetString(PyExc_SystemError,
1202 1204 "could not find RevlogError");
1203 1205 goto cleanup;
1204 1206 }
1205 1207
1206 1208 /* value of exception is ignored by callers */
1207 1209 PyErr_SetString(errclass, "RevlogError");
1208 1210
1209 1211 cleanup:
1210 1212 Py_XDECREF(dict);
1211 1213 Py_XDECREF(mod);
1212 1214 }
1213 1215
1214 1216 static PyObject *index_getitem(indexObject *self, PyObject *value)
1215 1217 {
1216 1218 char *node;
1217 1219 Py_ssize_t nodelen;
1218 1220 int rev;
1219 1221
1220 1222 if (PyInt_Check(value))
1221 1223 return index_get(self, PyInt_AS_LONG(value));
1222 1224
1223 1225 if (node_check(value, &node, &nodelen) == -1)
1224 1226 return NULL;
1225 1227 rev = index_find_node(self, node, nodelen);
1226 1228 if (rev >= -1)
1227 1229 return PyInt_FromLong(rev);
1228 1230 if (rev == -2)
1229 1231 raise_revlog_error();
1230 1232 return NULL;
1231 1233 }
1232 1234
1233 1235 /*
1234 1236 * Fully populate the radix tree.
1235 1237 */
1236 1238 static int nt_populate(indexObject *self) {
1237 1239 int rev;
1238 1240 if (self->ntrev > 0) {
1239 1241 for (rev = self->ntrev - 1; rev >= 0; rev--) {
1240 1242 const char *n = index_node_existing(self, rev);
1241 1243 if (n == NULL)
1242 1244 return -1;
1243 1245 if (nt_insert(self, n, rev) == -1)
1244 1246 return -1;
1245 1247 }
1246 1248 self->ntrev = -1;
1247 1249 }
1248 1250 return 0;
1249 1251 }
1250 1252
1251 1253 static int nt_partialmatch(indexObject *self, const char *node,
1252 1254 Py_ssize_t nodelen)
1253 1255 {
1254 1256 if (nt_init(self) == -1)
1255 1257 return -3;
1256 1258 if (nt_populate(self) == -1)
1257 1259 return -3;
1258 1260
1259 1261 return nt_find(self, node, nodelen, 1);
1260 1262 }
1261 1263
1262 1264 /*
1263 1265 * Find the length of the shortest unique prefix of node.
1264 1266 *
1265 1267 * Return values:
1266 1268 *
1267 1269 * -3: error (exception set)
1268 1270 * -2: not found (no exception set)
1269 1271 * rest: length of shortest prefix
1270 1272 */
1271 1273 static int nt_shortest(indexObject *self, const char *node)
1272 1274 {
1273 1275 int level, off;
1274 1276
1275 1277 if (nt_init(self) == -1)
1276 1278 return -3;
1277 1279 if (nt_populate(self) == -1)
1278 1280 return -3;
1279 1281
1280 1282 for (level = off = 0; level < 40; level++) {
1281 1283 int k, v;
1282 1284 nodetree *n = &self->nt[off];
1283 1285 k = nt_level(node, level);
1284 1286 v = n->children[k];
1285 1287 if (v < 0) {
1286 1288 const char *n;
1287 1289 v = -(v + 1);
1288 1290 n = index_node_existing(self, v);
1289 1291 if (n == NULL)
1290 1292 return -3;
1291 1293 if (memcmp(node, n, 20) != 0)
1292 1294 /*
1293 1295 * Found a unique prefix, but it wasn't for the
1294 1296 * requested node (i.e the requested node does
1295 1297 * not exist).
1296 1298 */
1297 1299 return -2;
1298 1300 return level + 1;
1299 1301 }
1300 1302 if (v == 0)
1301 1303 return -2;
1302 1304 off = v;
1303 1305 }
1304 1306 /*
1305 1307 * The node was still not unique after 40 hex digits, so this won't
1306 1308 * happen. Also, if we get here, then there's a programming error in
1307 1309 * this file that made us insert a node longer than 40 hex digits.
1308 1310 */
1309 1311 PyErr_SetString(PyExc_Exception, "broken node tree");
1310 1312 return -3;
1311 1313 }
1312 1314
1313 1315 static PyObject *index_partialmatch(indexObject *self, PyObject *args)
1314 1316 {
1315 1317 const char *fullnode;
1316 1318 int nodelen;
1317 1319 char *node;
1318 1320 int rev, i;
1319 1321
1320 1322 if (!PyArg_ParseTuple(args, PY23("s#", "y#"), &node, &nodelen))
1321 1323 return NULL;
1322 1324
1323 1325 if (nodelen < 1) {
1324 1326 PyErr_SetString(PyExc_ValueError, "key too short");
1325 1327 return NULL;
1326 1328 }
1327 1329
1328 1330 if (nodelen > 40) {
1329 1331 PyErr_SetString(PyExc_ValueError, "key too long");
1330 1332 return NULL;
1331 1333 }
1332 1334
1333 1335 for (i = 0; i < nodelen; i++)
1334 1336 hexdigit(node, i);
1335 1337 if (PyErr_Occurred()) {
1336 1338 /* input contains non-hex characters */
1337 1339 PyErr_Clear();
1338 1340 Py_RETURN_NONE;
1339 1341 }
1340 1342
1341 1343 rev = nt_partialmatch(self, node, nodelen);
1342 1344
1343 1345 switch (rev) {
1344 1346 case -4:
1345 1347 raise_revlog_error();
1346 1348 case -3:
1347 1349 return NULL;
1348 1350 case -2:
1349 1351 Py_RETURN_NONE;
1350 1352 case -1:
1351 1353 return PyBytes_FromStringAndSize(nullid, 20);
1352 1354 }
1353 1355
1354 1356 fullnode = index_node_existing(self, rev);
1355 1357 if (fullnode == NULL) {
1356 1358 return NULL;
1357 1359 }
1358 1360 return PyBytes_FromStringAndSize(fullnode, 20);
1359 1361 }
1360 1362
1361 1363 static PyObject *index_shortest(indexObject *self, PyObject *args)
1362 1364 {
1363 1365 Py_ssize_t nodelen;
1364 1366 PyObject *val;
1365 1367 char *node;
1366 1368 int length;
1367 1369
1368 1370 if (!PyArg_ParseTuple(args, "O", &val))
1369 1371 return NULL;
1370 1372 if (node_check(val, &node, &nodelen) == -1)
1371 1373 return NULL;
1372 1374
1373 1375 self->ntlookups++;
1374 1376 length = nt_shortest(self, node);
1375 1377 if (length == -3)
1376 1378 return NULL;
1377 1379 if (length == -2) {
1378 1380 raise_revlog_error();
1379 1381 return NULL;
1380 1382 }
1381 1383 return PyInt_FromLong(length);
1382 1384 }
1383 1385
1384 1386 static PyObject *index_m_get(indexObject *self, PyObject *args)
1385 1387 {
1386 1388 Py_ssize_t nodelen;
1387 1389 PyObject *val;
1388 1390 char *node;
1389 1391 int rev;
1390 1392
1391 1393 if (!PyArg_ParseTuple(args, "O", &val))
1392 1394 return NULL;
1393 1395 if (node_check(val, &node, &nodelen) == -1)
1394 1396 return NULL;
1395 1397 rev = index_find_node(self, node, nodelen);
1396 1398 if (rev == -3)
1397 1399 return NULL;
1398 1400 if (rev == -2)
1399 1401 Py_RETURN_NONE;
1400 1402 return PyInt_FromLong(rev);
1401 1403 }
1402 1404
1403 1405 static int index_contains(indexObject *self, PyObject *value)
1404 1406 {
1405 1407 char *node;
1406 1408 Py_ssize_t nodelen;
1407 1409
1408 1410 if (PyInt_Check(value)) {
1409 1411 long rev = PyInt_AS_LONG(value);
1410 1412 return rev >= -1 && rev < index_length(self);
1411 1413 }
1412 1414
1413 1415 if (node_check(value, &node, &nodelen) == -1)
1414 1416 return -1;
1415 1417
1416 1418 switch (index_find_node(self, node, nodelen)) {
1417 1419 case -3:
1418 1420 return -1;
1419 1421 case -2:
1420 1422 return 0;
1421 1423 default:
1422 1424 return 1;
1423 1425 }
1424 1426 }
1425 1427
1426 1428 typedef uint64_t bitmask;
1427 1429
1428 1430 /*
1429 1431 * Given a disjoint set of revs, return all candidates for the
1430 1432 * greatest common ancestor. In revset notation, this is the set
1431 1433 * "heads(::a and ::b and ...)"
1432 1434 */
1433 1435 static PyObject *find_gca_candidates(indexObject *self, const int *revs,
1434 1436 int revcount)
1435 1437 {
1436 1438 const bitmask allseen = (1ull << revcount) - 1;
1437 1439 const bitmask poison = 1ull << revcount;
1438 1440 PyObject *gca = PyList_New(0);
1439 1441 int i, v, interesting;
1440 1442 int maxrev = -1;
1441 1443 bitmask sp;
1442 1444 bitmask *seen;
1443 1445
1444 1446 if (gca == NULL)
1445 1447 return PyErr_NoMemory();
1446 1448
1447 1449 for (i = 0; i < revcount; i++) {
1448 1450 if (revs[i] > maxrev)
1449 1451 maxrev = revs[i];
1450 1452 }
1451 1453
1452 1454 seen = calloc(sizeof(*seen), maxrev + 1);
1453 1455 if (seen == NULL) {
1454 1456 Py_DECREF(gca);
1455 1457 return PyErr_NoMemory();
1456 1458 }
1457 1459
1458 1460 for (i = 0; i < revcount; i++)
1459 1461 seen[revs[i]] = 1ull << i;
1460 1462
1461 1463 interesting = revcount;
1462 1464
1463 1465 for (v = maxrev; v >= 0 && interesting; v--) {
1464 1466 bitmask sv = seen[v];
1465 1467 int parents[2];
1466 1468
1467 1469 if (!sv)
1468 1470 continue;
1469 1471
1470 1472 if (sv < poison) {
1471 1473 interesting -= 1;
1472 1474 if (sv == allseen) {
1473 1475 PyObject *obj = PyInt_FromLong(v);
1474 1476 if (obj == NULL)
1475 1477 goto bail;
1476 1478 if (PyList_Append(gca, obj) == -1) {
1477 1479 Py_DECREF(obj);
1478 1480 goto bail;
1479 1481 }
1480 1482 sv |= poison;
1481 1483 for (i = 0; i < revcount; i++) {
1482 1484 if (revs[i] == v)
1483 1485 goto done;
1484 1486 }
1485 1487 }
1486 1488 }
1487 1489 if (index_get_parents(self, v, parents, maxrev) < 0)
1488 1490 goto bail;
1489 1491
1490 1492 for (i = 0; i < 2; i++) {
1491 1493 int p = parents[i];
1492 1494 if (p == -1)
1493 1495 continue;
1494 1496 sp = seen[p];
1495 1497 if (sv < poison) {
1496 1498 if (sp == 0) {
1497 1499 seen[p] = sv;
1498 1500 interesting++;
1499 1501 }
1500 1502 else if (sp != sv)
1501 1503 seen[p] |= sv;
1502 1504 } else {
1503 1505 if (sp && sp < poison)
1504 1506 interesting--;
1505 1507 seen[p] = sv;
1506 1508 }
1507 1509 }
1508 1510 }
1509 1511
1510 1512 done:
1511 1513 free(seen);
1512 1514 return gca;
1513 1515 bail:
1514 1516 free(seen);
1515 1517 Py_XDECREF(gca);
1516 1518 return NULL;
1517 1519 }
1518 1520
1519 1521 /*
1520 1522 * Given a disjoint set of revs, return the subset with the longest
1521 1523 * path to the root.
1522 1524 */
1523 1525 static PyObject *find_deepest(indexObject *self, PyObject *revs)
1524 1526 {
1525 1527 const Py_ssize_t revcount = PyList_GET_SIZE(revs);
1526 1528 static const Py_ssize_t capacity = 24;
1527 1529 int *depth, *interesting = NULL;
1528 1530 int i, j, v, ninteresting;
1529 1531 PyObject *dict = NULL, *keys = NULL;
1530 1532 long *seen = NULL;
1531 1533 int maxrev = -1;
1532 1534 long final;
1533 1535
1534 1536 if (revcount > capacity) {
1535 1537 PyErr_Format(PyExc_OverflowError,
1536 1538 "bitset size (%ld) > capacity (%ld)",
1537 1539 (long)revcount, (long)capacity);
1538 1540 return NULL;
1539 1541 }
1540 1542
1541 1543 for (i = 0; i < revcount; i++) {
1542 1544 int n = (int)PyInt_AsLong(PyList_GET_ITEM(revs, i));
1543 1545 if (n > maxrev)
1544 1546 maxrev = n;
1545 1547 }
1546 1548
1547 1549 depth = calloc(sizeof(*depth), maxrev + 1);
1548 1550 if (depth == NULL)
1549 1551 return PyErr_NoMemory();
1550 1552
1551 1553 seen = calloc(sizeof(*seen), maxrev + 1);
1552 1554 if (seen == NULL) {
1553 1555 PyErr_NoMemory();
1554 1556 goto bail;
1555 1557 }
1556 1558
1557 1559 interesting = calloc(sizeof(*interesting), 1 << revcount);
1558 1560 if (interesting == NULL) {
1559 1561 PyErr_NoMemory();
1560 1562 goto bail;
1561 1563 }
1562 1564
1563 1565 if (PyList_Sort(revs) == -1)
1564 1566 goto bail;
1565 1567
1566 1568 for (i = 0; i < revcount; i++) {
1567 1569 int n = (int)PyInt_AsLong(PyList_GET_ITEM(revs, i));
1568 1570 long b = 1l << i;
1569 1571 depth[n] = 1;
1570 1572 seen[n] = b;
1571 1573 interesting[b] = 1;
1572 1574 }
1573 1575
1574 1576 /* invariant: ninteresting is the number of non-zero entries in
1575 1577 * interesting. */
1576 1578 ninteresting = (int)revcount;
1577 1579
1578 1580 for (v = maxrev; v >= 0 && ninteresting > 1; v--) {
1579 1581 int dv = depth[v];
1580 1582 int parents[2];
1581 1583 long sv;
1582 1584
1583 1585 if (dv == 0)
1584 1586 continue;
1585 1587
1586 1588 sv = seen[v];
1587 1589 if (index_get_parents(self, v, parents, maxrev) < 0)
1588 1590 goto bail;
1589 1591
1590 1592 for (i = 0; i < 2; i++) {
1591 1593 int p = parents[i];
1592 1594 long sp;
1593 1595 int dp;
1594 1596
1595 1597 if (p == -1)
1596 1598 continue;
1597 1599
1598 1600 dp = depth[p];
1599 1601 sp = seen[p];
1600 1602 if (dp <= dv) {
1601 1603 depth[p] = dv + 1;
1602 1604 if (sp != sv) {
1603 1605 interesting[sv] += 1;
1604 1606 seen[p] = sv;
1605 1607 if (sp) {
1606 1608 interesting[sp] -= 1;
1607 1609 if (interesting[sp] == 0)
1608 1610 ninteresting -= 1;
1609 1611 }
1610 1612 }
1611 1613 }
1612 1614 else if (dv == dp - 1) {
1613 1615 long nsp = sp | sv;
1614 1616 if (nsp == sp)
1615 1617 continue;
1616 1618 seen[p] = nsp;
1617 1619 interesting[sp] -= 1;
1618 1620 if (interesting[sp] == 0)
1619 1621 ninteresting -= 1;
1620 1622 if (interesting[nsp] == 0)
1621 1623 ninteresting += 1;
1622 1624 interesting[nsp] += 1;
1623 1625 }
1624 1626 }
1625 1627 interesting[sv] -= 1;
1626 1628 if (interesting[sv] == 0)
1627 1629 ninteresting -= 1;
1628 1630 }
1629 1631
1630 1632 final = 0;
1631 1633 j = ninteresting;
1632 1634 for (i = 0; i < (int)(2 << revcount) && j > 0; i++) {
1633 1635 if (interesting[i] == 0)
1634 1636 continue;
1635 1637 final |= i;
1636 1638 j -= 1;
1637 1639 }
1638 1640 if (final == 0) {
1639 1641 keys = PyList_New(0);
1640 1642 goto bail;
1641 1643 }
1642 1644
1643 1645 dict = PyDict_New();
1644 1646 if (dict == NULL)
1645 1647 goto bail;
1646 1648
1647 1649 for (i = 0; i < revcount; i++) {
1648 1650 PyObject *key;
1649 1651
1650 1652 if ((final & (1 << i)) == 0)
1651 1653 continue;
1652 1654
1653 1655 key = PyList_GET_ITEM(revs, i);
1654 1656 Py_INCREF(key);
1655 1657 Py_INCREF(Py_None);
1656 1658 if (PyDict_SetItem(dict, key, Py_None) == -1) {
1657 1659 Py_DECREF(key);
1658 1660 Py_DECREF(Py_None);
1659 1661 goto bail;
1660 1662 }
1661 1663 }
1662 1664
1663 1665 keys = PyDict_Keys(dict);
1664 1666
1665 1667 bail:
1666 1668 free(depth);
1667 1669 free(seen);
1668 1670 free(interesting);
1669 1671 Py_XDECREF(dict);
1670 1672
1671 1673 return keys;
1672 1674 }
1673 1675
1674 1676 /*
1675 1677 * Given a (possibly overlapping) set of revs, return all the
1676 1678 * common ancestors heads: heads(::args[0] and ::a[1] and ...)
1677 1679 */
1678 1680 static PyObject *index_commonancestorsheads(indexObject *self, PyObject *args)
1679 1681 {
1680 1682 PyObject *ret = NULL;
1681 1683 Py_ssize_t argcount, i, len;
1682 1684 bitmask repeat = 0;
1683 1685 int revcount = 0;
1684 1686 int *revs;
1685 1687
1686 1688 argcount = PySequence_Length(args);
1687 1689 revs = PyMem_Malloc(argcount * sizeof(*revs));
1688 1690 if (argcount > 0 && revs == NULL)
1689 1691 return PyErr_NoMemory();
1690 1692 len = index_length(self) - 1;
1691 1693
1692 1694 for (i = 0; i < argcount; i++) {
1693 1695 static const int capacity = 24;
1694 1696 PyObject *obj = PySequence_GetItem(args, i);
1695 1697 bitmask x;
1696 1698 long val;
1697 1699
1698 1700 if (!PyInt_Check(obj)) {
1699 1701 PyErr_SetString(PyExc_TypeError,
1700 1702 "arguments must all be ints");
1701 1703 Py_DECREF(obj);
1702 1704 goto bail;
1703 1705 }
1704 1706 val = PyInt_AsLong(obj);
1705 1707 Py_DECREF(obj);
1706 1708 if (val == -1) {
1707 1709 ret = PyList_New(0);
1708 1710 goto done;
1709 1711 }
1710 1712 if (val < 0 || val >= len) {
1711 1713 PyErr_SetString(PyExc_IndexError,
1712 1714 "index out of range");
1713 1715 goto bail;
1714 1716 }
1715 1717 /* this cheesy bloom filter lets us avoid some more
1716 1718 * expensive duplicate checks in the common set-is-disjoint
1717 1719 * case */
1718 1720 x = 1ull << (val & 0x3f);
1719 1721 if (repeat & x) {
1720 1722 int k;
1721 1723 for (k = 0; k < revcount; k++) {
1722 1724 if (val == revs[k])
1723 1725 goto duplicate;
1724 1726 }
1725 1727 }
1726 1728 else repeat |= x;
1727 1729 if (revcount >= capacity) {
1728 1730 PyErr_Format(PyExc_OverflowError,
1729 1731 "bitset size (%d) > capacity (%d)",
1730 1732 revcount, capacity);
1731 1733 goto bail;
1732 1734 }
1733 1735 revs[revcount++] = (int)val;
1734 1736 duplicate:;
1735 1737 }
1736 1738
1737 1739 if (revcount == 0) {
1738 1740 ret = PyList_New(0);
1739 1741 goto done;
1740 1742 }
1741 1743 if (revcount == 1) {
1742 1744 PyObject *obj;
1743 1745 ret = PyList_New(1);
1744 1746 if (ret == NULL)
1745 1747 goto bail;
1746 1748 obj = PyInt_FromLong(revs[0]);
1747 1749 if (obj == NULL)
1748 1750 goto bail;
1749 1751 PyList_SET_ITEM(ret, 0, obj);
1750 1752 goto done;
1751 1753 }
1752 1754
1753 1755 ret = find_gca_candidates(self, revs, revcount);
1754 1756 if (ret == NULL)
1755 1757 goto bail;
1756 1758
1757 1759 done:
1758 1760 PyMem_Free(revs);
1759 1761 return ret;
1760 1762
1761 1763 bail:
1762 1764 PyMem_Free(revs);
1763 1765 Py_XDECREF(ret);
1764 1766 return NULL;
1765 1767 }
1766 1768
1767 1769 /*
1768 1770 * Given a (possibly overlapping) set of revs, return the greatest
1769 1771 * common ancestors: those with the longest path to the root.
1770 1772 */
1771 1773 static PyObject *index_ancestors(indexObject *self, PyObject *args)
1772 1774 {
1773 1775 PyObject *ret;
1774 1776 PyObject *gca = index_commonancestorsheads(self, args);
1775 1777 if (gca == NULL)
1776 1778 return NULL;
1777 1779
1778 1780 if (PyList_GET_SIZE(gca) <= 1) {
1779 1781 return gca;
1780 1782 }
1781 1783
1782 1784 ret = find_deepest(self, gca);
1783 1785 Py_DECREF(gca);
1784 1786 return ret;
1785 1787 }
1786 1788
1787 1789 /*
1788 1790 * Invalidate any trie entries introduced by added revs.
1789 1791 */
1790 1792 static void nt_invalidate_added(indexObject *self, Py_ssize_t start)
1791 1793 {
1792 1794 Py_ssize_t i, len = PyList_GET_SIZE(self->added);
1793 1795
1794 1796 for (i = start; i < len; i++) {
1795 1797 PyObject *tuple = PyList_GET_ITEM(self->added, i);
1796 1798 PyObject *node = PyTuple_GET_ITEM(tuple, 7);
1797 1799
1798 1800 nt_insert(self, PyBytes_AS_STRING(node), -1);
1799 1801 }
1800 1802
1801 1803 if (start == 0)
1802 1804 Py_CLEAR(self->added);
1803 1805 }
1804 1806
1805 1807 /*
1806 1808 * Delete a numeric range of revs, which must be at the end of the
1807 1809 * range, but exclude the sentinel nullid entry.
1808 1810 */
1809 1811 static int index_slice_del(indexObject *self, PyObject *item)
1810 1812 {
1811 1813 Py_ssize_t start, stop, step, slicelength;
1812 1814 Py_ssize_t length = index_length(self);
1813 1815 int ret = 0;
1814 1816
1815 1817 /* Argument changed from PySliceObject* to PyObject* in Python 3. */
1816 1818 #ifdef IS_PY3K
1817 1819 if (PySlice_GetIndicesEx(item, length,
1818 1820 #else
1819 1821 if (PySlice_GetIndicesEx((PySliceObject*)item, length,
1820 1822 #endif
1821 1823 &start, &stop, &step, &slicelength) < 0)
1822 1824 return -1;
1823 1825
1824 1826 if (slicelength <= 0)
1825 1827 return 0;
1826 1828
1827 1829 if ((step < 0 && start < stop) || (step > 0 && start > stop))
1828 1830 stop = start;
1829 1831
1830 1832 if (step < 0) {
1831 1833 stop = start + 1;
1832 1834 start = stop + step*(slicelength - 1) - 1;
1833 1835 step = -step;
1834 1836 }
1835 1837
1836 1838 if (step != 1) {
1837 1839 PyErr_SetString(PyExc_ValueError,
1838 1840 "revlog index delete requires step size of 1");
1839 1841 return -1;
1840 1842 }
1841 1843
1842 1844 if (stop != length - 1) {
1843 1845 PyErr_SetString(PyExc_IndexError,
1844 1846 "revlog index deletion indices are invalid");
1845 1847 return -1;
1846 1848 }
1847 1849
1848 1850 if (start < self->length - 1) {
1849 1851 if (self->nt) {
1850 1852 Py_ssize_t i;
1851 1853
1852 1854 for (i = start + 1; i < self->length - 1; i++) {
1853 const char *node = index_node(self, i);
1855 const char *node = index_node_existing(self, i);
1856 if (node == NULL)
1857 return -1;
1854 1858
1855 if (node)
1856 nt_insert(self, node, -1);
1859 nt_insert(self, node, -1);
1857 1860 }
1858 1861 if (self->added)
1859 1862 nt_invalidate_added(self, 0);
1860 1863 if (self->ntrev > start)
1861 1864 self->ntrev = (int)start;
1862 1865 }
1863 1866 self->length = start + 1;
1864 1867 if (start < self->raw_length) {
1865 1868 if (self->cache) {
1866 1869 Py_ssize_t i;
1867 1870 for (i = start; i < self->raw_length; i++)
1868 1871 Py_CLEAR(self->cache[i]);
1869 1872 }
1870 1873 self->raw_length = start;
1871 1874 }
1872 1875 goto done;
1873 1876 }
1874 1877
1875 1878 if (self->nt) {
1876 1879 nt_invalidate_added(self, start - self->length + 1);
1877 1880 if (self->ntrev > start)
1878 1881 self->ntrev = (int)start;
1879 1882 }
1880 1883 if (self->added)
1881 1884 ret = PyList_SetSlice(self->added, start - self->length + 1,
1882 1885 PyList_GET_SIZE(self->added), NULL);
1883 1886 done:
1884 1887 Py_CLEAR(self->headrevs);
1885 1888 return ret;
1886 1889 }
1887 1890
1888 1891 /*
1889 1892 * Supported ops:
1890 1893 *
1891 1894 * slice deletion
1892 1895 * string assignment (extend node->rev mapping)
1893 1896 * string deletion (shrink node->rev mapping)
1894 1897 */
1895 1898 static int index_assign_subscript(indexObject *self, PyObject *item,
1896 1899 PyObject *value)
1897 1900 {
1898 1901 char *node;
1899 1902 Py_ssize_t nodelen;
1900 1903 long rev;
1901 1904
1902 1905 if (PySlice_Check(item) && value == NULL)
1903 1906 return index_slice_del(self, item);
1904 1907
1905 1908 if (node_check(item, &node, &nodelen) == -1)
1906 1909 return -1;
1907 1910
1908 1911 if (value == NULL)
1909 1912 return self->nt ? nt_insert(self, node, -1) : 0;
1910 1913 rev = PyInt_AsLong(value);
1911 1914 if (rev > INT_MAX || rev < 0) {
1912 1915 if (!PyErr_Occurred())
1913 1916 PyErr_SetString(PyExc_ValueError, "rev out of range");
1914 1917 return -1;
1915 1918 }
1916 1919
1917 1920 if (nt_init(self) == -1)
1918 1921 return -1;
1919 1922 return nt_insert(self, node, (int)rev);
1920 1923 }
1921 1924
1922 1925 /*
1923 1926 * Find all RevlogNG entries in an index that has inline data. Update
1924 1927 * the optional "offsets" table with those entries.
1925 1928 */
1926 1929 static Py_ssize_t inline_scan(indexObject *self, const char **offsets)
1927 1930 {
1928 1931 const char *data = (const char *)self->buf.buf;
1929 1932 Py_ssize_t pos = 0;
1930 1933 Py_ssize_t end = self->buf.len;
1931 1934 long incr = v1_hdrsize;
1932 1935 Py_ssize_t len = 0;
1933 1936
1934 1937 while (pos + v1_hdrsize <= end && pos >= 0) {
1935 1938 uint32_t comp_len;
1936 1939 /* 3rd element of header is length of compressed inline data */
1937 1940 comp_len = getbe32(data + pos + 8);
1938 1941 incr = v1_hdrsize + comp_len;
1939 1942 if (offsets)
1940 1943 offsets[len] = data + pos;
1941 1944 len++;
1942 1945 pos += incr;
1943 1946 }
1944 1947
1945 1948 if (pos != end) {
1946 1949 if (!PyErr_Occurred())
1947 1950 PyErr_SetString(PyExc_ValueError, "corrupt index file");
1948 1951 return -1;
1949 1952 }
1950 1953
1951 1954 return len;
1952 1955 }
1953 1956
1954 1957 static int index_init(indexObject *self, PyObject *args)
1955 1958 {
1956 1959 PyObject *data_obj, *inlined_obj;
1957 1960 Py_ssize_t size;
1958 1961
1959 1962 /* Initialize before argument-checking to avoid index_dealloc() crash. */
1960 1963 self->raw_length = 0;
1961 1964 self->added = NULL;
1962 1965 self->cache = NULL;
1963 1966 self->data = NULL;
1964 1967 memset(&self->buf, 0, sizeof(self->buf));
1965 1968 self->headrevs = NULL;
1966 1969 self->filteredrevs = Py_None;
1967 1970 Py_INCREF(Py_None);
1968 1971 self->nt = NULL;
1969 1972 self->offsets = NULL;
1970 1973
1971 1974 if (!PyArg_ParseTuple(args, "OO", &data_obj, &inlined_obj))
1972 1975 return -1;
1973 1976 if (!PyObject_CheckBuffer(data_obj)) {
1974 1977 PyErr_SetString(PyExc_TypeError,
1975 1978 "data does not support buffer interface");
1976 1979 return -1;
1977 1980 }
1978 1981
1979 1982 if (PyObject_GetBuffer(data_obj, &self->buf, PyBUF_SIMPLE) == -1)
1980 1983 return -1;
1981 1984 size = self->buf.len;
1982 1985
1983 1986 self->inlined = inlined_obj && PyObject_IsTrue(inlined_obj);
1984 1987 self->data = data_obj;
1985 1988
1986 1989 self->ntlength = self->ntcapacity = 0;
1987 1990 self->ntdepth = self->ntsplits = 0;
1988 1991 self->ntlookups = self->ntmisses = 0;
1989 1992 self->ntrev = -1;
1990 1993 Py_INCREF(self->data);
1991 1994
1992 1995 if (self->inlined) {
1993 1996 Py_ssize_t len = inline_scan(self, NULL);
1994 1997 if (len == -1)
1995 1998 goto bail;
1996 1999 self->raw_length = len;
1997 2000 self->length = len + 1;
1998 2001 } else {
1999 2002 if (size % v1_hdrsize) {
2000 2003 PyErr_SetString(PyExc_ValueError, "corrupt index file");
2001 2004 goto bail;
2002 2005 }
2003 2006 self->raw_length = size / v1_hdrsize;
2004 2007 self->length = self->raw_length + 1;
2005 2008 }
2006 2009
2007 2010 return 0;
2008 2011 bail:
2009 2012 return -1;
2010 2013 }
2011 2014
2012 2015 static PyObject *index_nodemap(indexObject *self)
2013 2016 {
2014 2017 Py_INCREF(self);
2015 2018 return (PyObject *)self;
2016 2019 }
2017 2020
2018 2021 static void index_dealloc(indexObject *self)
2019 2022 {
2020 2023 _index_clearcaches(self);
2021 2024 Py_XDECREF(self->filteredrevs);
2022 2025 if (self->buf.buf) {
2023 2026 PyBuffer_Release(&self->buf);
2024 2027 memset(&self->buf, 0, sizeof(self->buf));
2025 2028 }
2026 2029 Py_XDECREF(self->data);
2027 2030 Py_XDECREF(self->added);
2028 2031 PyObject_Del(self);
2029 2032 }
2030 2033
2031 2034 static PySequenceMethods index_sequence_methods = {
2032 2035 (lenfunc)index_length, /* sq_length */
2033 2036 0, /* sq_concat */
2034 2037 0, /* sq_repeat */
2035 2038 (ssizeargfunc)index_get, /* sq_item */
2036 2039 0, /* sq_slice */
2037 2040 0, /* sq_ass_item */
2038 2041 0, /* sq_ass_slice */
2039 2042 (objobjproc)index_contains, /* sq_contains */
2040 2043 };
2041 2044
2042 2045 static PyMappingMethods index_mapping_methods = {
2043 2046 (lenfunc)index_length, /* mp_length */
2044 2047 (binaryfunc)index_getitem, /* mp_subscript */
2045 2048 (objobjargproc)index_assign_subscript, /* mp_ass_subscript */
2046 2049 };
2047 2050
2048 2051 static PyMethodDef index_methods[] = {
2049 2052 {"ancestors", (PyCFunction)index_ancestors, METH_VARARGS,
2050 2053 "return the gca set of the given revs"},
2051 2054 {"commonancestorsheads", (PyCFunction)index_commonancestorsheads,
2052 2055 METH_VARARGS,
2053 2056 "return the heads of the common ancestors of the given revs"},
2054 2057 {"clearcaches", (PyCFunction)index_clearcaches, METH_NOARGS,
2055 2058 "clear the index caches"},
2056 2059 {"get", (PyCFunction)index_m_get, METH_VARARGS,
2057 2060 "get an index entry"},
2058 2061 {"computephasesmapsets", (PyCFunction)compute_phases_map_sets,
2059 2062 METH_VARARGS, "compute phases"},
2060 2063 {"reachableroots2", (PyCFunction)reachableroots2, METH_VARARGS,
2061 2064 "reachableroots"},
2062 2065 {"headrevs", (PyCFunction)index_headrevs, METH_VARARGS,
2063 2066 "get head revisions"}, /* Can do filtering since 3.2 */
2064 2067 {"headrevsfiltered", (PyCFunction)index_headrevs, METH_VARARGS,
2065 2068 "get filtered head revisions"}, /* Can always do filtering */
2066 2069 {"deltachain", (PyCFunction)index_deltachain, METH_VARARGS,
2067 2070 "determine revisions with deltas to reconstruct fulltext"},
2068 2071 {"insert", (PyCFunction)index_insert, METH_VARARGS,
2069 2072 "insert an index entry"},
2070 2073 {"partialmatch", (PyCFunction)index_partialmatch, METH_VARARGS,
2071 2074 "match a potentially ambiguous node ID"},
2072 2075 {"shortest", (PyCFunction)index_shortest, METH_VARARGS,
2073 2076 "find length of shortest hex nodeid of a binary ID"},
2074 2077 {"stats", (PyCFunction)index_stats, METH_NOARGS,
2075 2078 "stats for the index"},
2076 2079 {NULL} /* Sentinel */
2077 2080 };
2078 2081
2079 2082 static PyGetSetDef index_getset[] = {
2080 2083 {"nodemap", (getter)index_nodemap, NULL, "nodemap", NULL},
2081 2084 {NULL} /* Sentinel */
2082 2085 };
2083 2086
2084 2087 static PyTypeObject indexType = {
2085 2088 PyVarObject_HEAD_INIT(NULL, 0) /* header */
2086 2089 "parsers.index", /* tp_name */
2087 2090 sizeof(indexObject), /* tp_basicsize */
2088 2091 0, /* tp_itemsize */
2089 2092 (destructor)index_dealloc, /* tp_dealloc */
2090 2093 0, /* tp_print */
2091 2094 0, /* tp_getattr */
2092 2095 0, /* tp_setattr */
2093 2096 0, /* tp_compare */
2094 2097 0, /* tp_repr */
2095 2098 0, /* tp_as_number */
2096 2099 &index_sequence_methods, /* tp_as_sequence */
2097 2100 &index_mapping_methods, /* tp_as_mapping */
2098 2101 0, /* tp_hash */
2099 2102 0, /* tp_call */
2100 2103 0, /* tp_str */
2101 2104 0, /* tp_getattro */
2102 2105 0, /* tp_setattro */
2103 2106 0, /* tp_as_buffer */
2104 2107 Py_TPFLAGS_DEFAULT, /* tp_flags */
2105 2108 "revlog index", /* tp_doc */
2106 2109 0, /* tp_traverse */
2107 2110 0, /* tp_clear */
2108 2111 0, /* tp_richcompare */
2109 2112 0, /* tp_weaklistoffset */
2110 2113 0, /* tp_iter */
2111 2114 0, /* tp_iternext */
2112 2115 index_methods, /* tp_methods */
2113 2116 0, /* tp_members */
2114 2117 index_getset, /* tp_getset */
2115 2118 0, /* tp_base */
2116 2119 0, /* tp_dict */
2117 2120 0, /* tp_descr_get */
2118 2121 0, /* tp_descr_set */
2119 2122 0, /* tp_dictoffset */
2120 2123 (initproc)index_init, /* tp_init */
2121 2124 0, /* tp_alloc */
2122 2125 };
2123 2126
2124 2127 /*
2125 2128 * returns a tuple of the form (index, index, cache) with elements as
2126 2129 * follows:
2127 2130 *
2128 2131 * index: an index object that lazily parses RevlogNG records
2129 2132 * cache: if data is inlined, a tuple (0, index_file_content), else None
2130 2133 * index_file_content could be a string, or a buffer
2131 2134 *
2132 2135 * added complications are for backwards compatibility
2133 2136 */
2134 2137 PyObject *parse_index2(PyObject *self, PyObject *args)
2135 2138 {
2136 2139 PyObject *tuple = NULL, *cache = NULL;
2137 2140 indexObject *idx;
2138 2141 int ret;
2139 2142
2140 2143 idx = PyObject_New(indexObject, &indexType);
2141 2144 if (idx == NULL)
2142 2145 goto bail;
2143 2146
2144 2147 ret = index_init(idx, args);
2145 2148 if (ret == -1)
2146 2149 goto bail;
2147 2150
2148 2151 if (idx->inlined) {
2149 2152 cache = Py_BuildValue("iO", 0, idx->data);
2150 2153 if (cache == NULL)
2151 2154 goto bail;
2152 2155 } else {
2153 2156 cache = Py_None;
2154 2157 Py_INCREF(cache);
2155 2158 }
2156 2159
2157 2160 tuple = Py_BuildValue("NN", idx, cache);
2158 2161 if (!tuple)
2159 2162 goto bail;
2160 2163 return tuple;
2161 2164
2162 2165 bail:
2163 2166 Py_XDECREF(idx);
2164 2167 Py_XDECREF(cache);
2165 2168 Py_XDECREF(tuple);
2166 2169 return NULL;
2167 2170 }
2168 2171
2169 2172 void revlog_module_init(PyObject *mod)
2170 2173 {
2171 2174 indexType.tp_new = PyType_GenericNew;
2172 2175 if (PyType_Ready(&indexType) < 0)
2173 2176 return;
2174 2177 Py_INCREF(&indexType);
2175 2178 PyModule_AddObject(mod, "index", (PyObject *)&indexType);
2176 2179
2177 2180 nullentry = Py_BuildValue(PY23("iiiiiiis#", "iiiiiiiy#"), 0, 0, 0,
2178 2181 -1, -1, -1, -1, nullid, 20);
2179 2182 if (nullentry)
2180 2183 PyObject_GC_UnTrack(nullentry);
2181 2184 }
General Comments 0
You need to be logged in to leave comments. Login now