1
# Copyright (C) 2008 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
from bisect import bisect_right
23
from copy import deepcopy
39
from bzrlib.index import _OPTION_NODE_REFS, _OPTION_KEY_ELEMENTS, _OPTION_LEN
40
from bzrlib.transport import get_transport
43
_BTSIGNATURE = "B+Tree Graph Index 2\n"
44
_OPTION_ROW_LENGTHS = "row_lengths="
45
_LEAF_FLAG = "type=leaf\n"
46
_INTERNAL_FLAG = "type=internal\n"
47
_INTERNAL_OFFSET = "offset="
49
_RESERVED_HEADER_BYTES = 120
52
# 4K per page: 4MB - 1000 entries
53
_NODE_CACHE_SIZE = 1000
56
class _BuilderRow(object):
57
"""The stored state accumulated while writing out a row in the index.
59
:ivar spool: A temporary file used to accumulate nodes for this row
61
:ivar nodes: The count of nodes emitted so far.
65
"""Create a _BuilderRow."""
67
self.spool = tempfile.TemporaryFile()
70
def finish_node(self, pad=True):
71
byte_lines, _, padding = self.writer.finish()
74
self.spool.write("\x00" * _RESERVED_HEADER_BYTES)
76
if not pad and padding:
78
skipped_bytes = padding
79
self.spool.writelines(byte_lines)
80
remainder = (self.spool.tell() + skipped_bytes) % _PAGE_SIZE
82
raise AssertionError("incorrect node length: %d, %d"
83
% (self.spool.tell(), remainder))
88
class _InternalBuilderRow(_BuilderRow):
89
"""The stored state accumulated while writing out internal rows."""
91
def finish_node(self, pad=True):
93
raise AssertionError("Must pad internal nodes only.")
94
_BuilderRow.finish_node(self)
97
class _LeafBuilderRow(_BuilderRow):
98
"""The stored state accumulated while writing out a leaf rows."""
101
class BTreeBuilder(index.GraphIndexBuilder):
102
"""A Builder for B+Tree based Graph indices.
104
The resulting graph has the structure:
106
_SIGNATURE OPTIONS NODES
107
_SIGNATURE := 'B+Tree Graph Index 1' NEWLINE
108
OPTIONS := REF_LISTS KEY_ELEMENTS LENGTH
109
REF_LISTS := 'node_ref_lists=' DIGITS NEWLINE
110
KEY_ELEMENTS := 'key_elements=' DIGITS NEWLINE
111
LENGTH := 'len=' DIGITS NEWLINE
112
ROW_LENGTHS := 'row_lengths' DIGITS (COMMA DIGITS)*
113
NODES := NODE_COMPRESSED*
114
NODE_COMPRESSED:= COMPRESSED_BYTES{4096}
115
NODE_RAW := INTERNAL | LEAF
116
INTERNAL := INTERNAL_FLAG POINTERS
117
LEAF := LEAF_FLAG ROWS
118
KEY_ELEMENT := Not-whitespace-utf8
119
KEY := KEY_ELEMENT (NULL KEY_ELEMENT)*
121
ROW := KEY NULL ABSENT? NULL REFERENCES NULL VALUE NEWLINE
123
REFERENCES := REFERENCE_LIST (TAB REFERENCE_LIST){node_ref_lists - 1}
124
REFERENCE_LIST := (REFERENCE (CR REFERENCE)*)?
126
VALUE := no-newline-no-null-bytes
129
def __init__(self, reference_lists=0, key_elements=1, spill_at=100000):
130
"""See GraphIndexBuilder.__init__.
132
:param spill_at: Optional parameter controlling the maximum number
133
of nodes that BTreeBuilder will hold in memory.
135
index.GraphIndexBuilder.__init__(self, reference_lists=reference_lists,
136
key_elements=key_elements)
137
self._spill_at = spill_at
138
self._backing_indices = []
139
# A map of {key: (node_refs, value)}
141
# Indicate it hasn't been built yet
142
self._nodes_by_key = None
144
def add_node(self, key, value, references=()):
145
"""Add a node to the index.
147
If adding the node causes the builder to reach its spill_at threshold,
148
disk spilling will be triggered.
150
:param key: The key. keys are non-empty tuples containing
151
as many whitespace-free utf8 bytestrings as the key length
152
defined for this index.
153
:param references: An iterable of iterables of keys. Each is a
154
reference to another key.
155
:param value: The value to associate with the key. It may be any
156
bytes as long as it does not contain \0 or \n.
158
# we don't care about absent_references
159
node_refs, _ = self._check_key_ref_value(key, references, value)
160
if key in self._nodes:
161
raise errors.BadIndexDuplicateKey(key, self)
162
self._nodes[key] = (node_refs, value)
164
if self._nodes_by_key is not None and self._key_length > 1:
165
self._update_nodes_by_key(key, value, node_refs)
166
if len(self._keys) < self._spill_at:
168
self._spill_mem_keys_to_disk()
170
def _spill_mem_keys_to_disk(self):
171
"""Write the in memory keys down to disk to cap memory consumption.
173
If we already have some keys written to disk, we will combine them so
174
as to preserve the sorted order. The algorithm for combining uses
175
powers of two. So on the first spill, write all mem nodes into a
176
single index. On the second spill, combine the mem nodes with the nodes
177
on disk to create a 2x sized disk index and get rid of the first index.
178
On the third spill, create a single new disk index, which will contain
179
the mem nodes, and preserve the existing 2x sized index. On the fourth,
180
combine mem with the first and second indexes, creating a new one of
181
size 4x. On the fifth create a single new one, etc.
183
iterators_to_combine = [self._iter_mem_nodes()]
185
for pos, backing in enumerate(self._backing_indices):
189
iterators_to_combine.append(backing.iter_all_entries())
190
backing_pos = pos + 1
191
new_backing_file, size = \
192
self._write_nodes(self._iter_smallest(iterators_to_combine))
193
dir_path, base_name = osutils.split(new_backing_file.name)
194
# Note: The transport here isn't strictly needed, because we will use
195
# direct access to the new_backing._file object
196
new_backing = BTreeGraphIndex(get_transport(dir_path),
198
# GC will clean up the file
199
new_backing._file = new_backing_file
200
if len(self._backing_indices) == backing_pos:
201
self._backing_indices.append(None)
202
self._backing_indices[backing_pos] = new_backing
203
for pos in range(backing_pos):
204
self._backing_indices[pos] = None
207
self._nodes_by_key = None
209
def add_nodes(self, nodes):
210
"""Add nodes to the index.
212
:param nodes: An iterable of (key, node_refs, value) entries to add.
214
if self.reference_lists:
215
for (key, value, node_refs) in nodes:
216
self.add_node(key, value, node_refs)
218
for (key, value) in nodes:
219
self.add_node(key, value)
221
def _iter_mem_nodes(self):
222
"""Iterate over the nodes held in memory."""
224
if self.reference_lists:
225
for key in sorted(nodes):
226
references, value = nodes[key]
227
yield self, key, value, references
229
for key in sorted(nodes):
230
references, value = nodes[key]
231
yield self, key, value
233
def _iter_smallest(self, iterators_to_combine):
234
if len(iterators_to_combine) == 1:
235
for value in iterators_to_combine[0]:
239
for iterator in iterators_to_combine:
241
current_values.append(iterator.next())
242
except StopIteration:
243
current_values.append(None)
246
# Decorate candidates with the value to allow 2.4's min to be used.
247
candidates = [(item[1][1], item) for item
248
in enumerate(current_values) if item[1] is not None]
249
if not len(candidates):
251
selected = min(candidates)
252
# undecorate back to (pos, node)
253
selected = selected[1]
254
if last == selected[1][1]:
255
raise errors.BadIndexDuplicateKey(last, self)
256
last = selected[1][1]
257
# Yield, with self as the index
258
yield (self,) + selected[1][1:]
261
current_values[pos] = iterators_to_combine[pos].next()
262
except StopIteration:
263
current_values[pos] = None
265
def _add_key(self, string_key, line, rows):
266
"""Add a key to the current chunk.
268
:param string_key: The key to add.
269
:param line: The fully serialised key and value.
271
if rows[-1].writer is None:
272
# opening a new leaf chunk;
273
for pos, internal_row in enumerate(rows[:-1]):
274
# flesh out any internal nodes that are needed to
275
# preserve the height of the tree
276
if internal_row.writer is None:
278
if internal_row.nodes == 0:
279
length -= _RESERVED_HEADER_BYTES # padded
280
internal_row.writer = chunk_writer.ChunkWriter(length, 0)
281
internal_row.writer.write(_INTERNAL_FLAG)
282
internal_row.writer.write(_INTERNAL_OFFSET +
283
str(rows[pos + 1].nodes) + "\n")
286
if rows[-1].nodes == 0:
287
length -= _RESERVED_HEADER_BYTES # padded
288
rows[-1].writer = chunk_writer.ChunkWriter(length)
289
rows[-1].writer.write(_LEAF_FLAG)
290
if rows[-1].writer.write(line):
291
# this key did not fit in the node:
292
rows[-1].finish_node()
293
key_line = string_key + "\n"
295
for row in reversed(rows[:-1]):
296
# Mark the start of the next node in the node above. If it
297
# doesn't fit then propogate upwards until we find one that
299
if row.writer.write(key_line):
302
# We've found a node that can handle the pointer.
305
# If we reached the current root without being able to mark the
306
# division point, then we need a new root:
309
if 'index' in debug.debug_flags:
310
trace.mutter('Inserting new global row.')
311
new_row = _InternalBuilderRow()
313
rows.insert(0, new_row)
314
# This will be padded, hence the -100
315
new_row.writer = chunk_writer.ChunkWriter(
316
_PAGE_SIZE - _RESERVED_HEADER_BYTES,
318
new_row.writer.write(_INTERNAL_FLAG)
319
new_row.writer.write(_INTERNAL_OFFSET +
320
str(rows[1].nodes - 1) + "\n")
321
new_row.writer.write(key_line)
322
self._add_key(string_key, line, rows)
324
def _write_nodes(self, node_iterator):
325
"""Write node_iterator out as a B+Tree.
327
:param node_iterator: An iterator of sorted nodes. Each node should
328
match the output given by iter_all_entries.
329
:return: A file handle for a temporary file containing a B+Tree for
332
# The index rows - rows[0] is the root, rows[1] is the layer under it
335
# forward sorted by key. In future we may consider topological sorting,
336
# at the cost of table scans for direct lookup, or a second index for
339
# A stack with the number of nodes of each size. 0 is the root node
340
# and must always be 1 (if there are any nodes in the tree).
341
self.row_lengths = []
342
# Loop over all nodes adding them to the bottom row
343
# (rows[-1]). When we finish a chunk in a row,
344
# propogate the key that didn't fit (comes after the chunk) to the
345
# row above, transitively.
346
for node in node_iterator:
348
# First key triggers the first row
349
rows.append(_LeafBuilderRow())
351
# TODO: Flattening the node into a string key and a line should
352
# probably be put into a pyrex function. We can do a quick
353
# iter over all the entries to determine the final length,
354
# and then do a single malloc() rather than lots of
355
# intermediate mallocs as we build everything up.
356
# ATM 3 / 13s are spent flattening nodes (10s is compressing)
357
string_key, line = _btree_serializer._flatten_node(node,
358
self.reference_lists)
359
self._add_key(string_key, line, rows)
360
for row in reversed(rows):
361
pad = (type(row) != _LeafBuilderRow)
362
row.finish_node(pad=pad)
363
result = tempfile.NamedTemporaryFile()
364
lines = [_BTSIGNATURE]
365
lines.append(_OPTION_NODE_REFS + str(self.reference_lists) + '\n')
366
lines.append(_OPTION_KEY_ELEMENTS + str(self._key_length) + '\n')
367
lines.append(_OPTION_LEN + str(key_count) + '\n')
368
row_lengths = [row.nodes for row in rows]
369
lines.append(_OPTION_ROW_LENGTHS + ','.join(map(str, row_lengths)) + '\n')
370
result.writelines(lines)
371
position = sum(map(len, lines))
373
if position > _RESERVED_HEADER_BYTES:
374
raise AssertionError("Could not fit the header in the"
375
" reserved space: %d > %d"
376
% (position, _RESERVED_HEADER_BYTES))
377
# write the rows out:
379
reserved = _RESERVED_HEADER_BYTES # reserved space for first node
382
# copy nodes to the finalised file.
383
# Special case the first node as it may be prefixed
384
node = row.spool.read(_PAGE_SIZE)
385
result.write(node[reserved:])
386
result.write("\x00" * (reserved - position))
387
position = 0 # Only the root row actually has an offset
388
copied_len = osutils.pumpfile(row.spool, result)
389
if copied_len != (row.nodes - 1) * _PAGE_SIZE:
390
if type(row) != _LeafBuilderRow:
391
raise AssertionError("Incorrect amount of data copied"
392
" expected: %d, got: %d"
393
% ((row.nodes - 1) * _PAGE_SIZE,
401
"""Finalise the index.
403
:return: A file handle for a temporary file containing the nodes added
406
return self._write_nodes(self.iter_all_entries())[0]
408
def iter_all_entries(self):
409
"""Iterate over all keys within the index
411
:return: An iterable of (index, key, reference_lists, value). There is no
412
defined order for the result iteration - it will be in the most
413
efficient order for the index (in this case dictionary hash order).
415
if 'evil' in debug.debug_flags:
416
trace.mutter_callsite(3,
417
"iter_all_entries scales with size of history.")
418
# Doing serial rather than ordered would be faster; but this shouldn't
419
# be getting called routinely anyway.
420
iterators = [self._iter_mem_nodes()]
421
for backing in self._backing_indices:
422
if backing is not None:
423
iterators.append(backing.iter_all_entries())
424
if len(iterators) == 1:
426
return self._iter_smallest(iterators)
428
def iter_entries(self, keys):
429
"""Iterate over keys within the index.
431
:param keys: An iterable providing the keys to be retrieved.
432
:return: An iterable of (index, key, value, reference_lists). There is no
433
defined order for the result iteration - it will be in the most
434
efficient order for the index (keys iteration order in this case).
437
if self.reference_lists:
438
for key in keys.intersection(self._keys):
439
node = self._nodes[key]
440
yield self, key, node[1], node[0]
442
for key in keys.intersection(self._keys):
443
node = self._nodes[key]
444
yield self, key, node[1]
445
keys.difference_update(self._keys)
446
for backing in self._backing_indices:
451
for node in backing.iter_entries(keys):
453
yield (self,) + node[1:]
455
def iter_entries_prefix(self, keys):
456
"""Iterate over keys within the index using prefix matching.
458
Prefix matching is applied within the tuple of a key, not to within
459
the bytestring of each key element. e.g. if you have the keys ('foo',
460
'bar'), ('foobar', 'gam') and do a prefix search for ('foo', None) then
461
only the former key is returned.
463
:param keys: An iterable providing the key prefixes to be retrieved.
464
Each key prefix takes the form of a tuple the length of a key, but
465
with the last N elements 'None' rather than a regular bytestring.
466
The first element cannot be 'None'.
467
:return: An iterable as per iter_all_entries, but restricted to the
468
keys with a matching prefix to those supplied. No additional keys
469
will be returned, and every match that is in the index will be
472
# XXX: To much duplication with the GraphIndex class; consider finding
473
# a good place to pull out the actual common logic.
477
for backing in self._backing_indices:
480
for node in backing.iter_entries_prefix(keys):
481
yield (self,) + node[1:]
482
if self._key_length == 1:
486
raise errors.BadIndexKey(key)
487
if len(key) != self._key_length:
488
raise errors.BadIndexKey(key)
490
node = self._nodes[key]
493
if self.reference_lists:
494
yield self, key, node[1], node[0]
496
yield self, key, node[1]
501
raise errors.BadIndexKey(key)
502
if len(key) != self._key_length:
503
raise errors.BadIndexKey(key)
504
# find what it refers to:
505
key_dict = self._get_nodes_by_key()
507
# find the subdict to return
509
while len(elements) and elements[0] is not None:
510
key_dict = key_dict[elements[0]]
513
# a non-existant lookup.
518
key_dict = dicts.pop(-1)
519
# can't be empty or would not exist
520
item, value = key_dict.iteritems().next()
521
if type(value) == dict:
523
dicts.extend(key_dict.itervalues())
526
for value in key_dict.itervalues():
527
yield (self, ) + value
529
yield (self, ) + key_dict
531
def _get_nodes_by_key(self):
532
if self._nodes_by_key is None:
534
if self.reference_lists:
535
for key, (references, value) in self._nodes.iteritems():
536
key_dict = nodes_by_key
537
for subkey in key[:-1]:
538
key_dict = key_dict.setdefault(subkey, {})
539
key_dict[key[-1]] = key, value, references
541
for key, (references, value) in self._nodes.iteritems():
542
key_dict = nodes_by_key
543
for subkey in key[:-1]:
544
key_dict = key_dict.setdefault(subkey, {})
545
key_dict[key[-1]] = key, value
546
self._nodes_by_key = nodes_by_key
547
return self._nodes_by_key
550
"""Return an estimate of the number of keys in this index.
552
For InMemoryGraphIndex the estimate is exact.
554
return len(self._keys) + sum(backing.key_count() for backing in
555
self._backing_indices if backing is not None)
558
"""In memory index's have no known corruption at the moment."""
561
class _LeafNode(object):
562
"""A leaf node for a serialised B+Tree index."""
564
def __init__(self, bytes, key_length, ref_list_length):
565
"""Parse bytes to create a leaf node object."""
566
# splitlines mangles the \r delimiters.. don't use it.
567
self.keys = dict(_btree_serializer._parse_leaf_lines(bytes,
568
key_length, ref_list_length))
571
class _InternalNode(object):
572
"""An internal node for a serialised B+Tree index."""
574
def __init__(self, bytes):
575
"""Parse bytes to create an internal node object."""
576
# splitlines mangles the \r delimiters.. don't use it.
577
self.keys = self._parse_lines(bytes.split('\n'))
579
def _parse_lines(self, lines):
581
self.offset = int(lines[1][7:])
582
for line in lines[2:]:
585
nodes.append(tuple(line.split('\0')))
589
class BTreeGraphIndex(object):
590
"""Access to nodes via the standard GraphIndex interface for B+Tree's.
592
Individual nodes are held in a LRU cache. This holds the root node in
593
memory except when very large walks are done.
596
def __init__(self, transport, name, size):
597
"""Create a B+Tree index object on the index name.
599
:param transport: The transport to read data for the index from.
600
:param name: The file name of the index on transport.
601
:param size: Optional size of the index in bytes. This allows
602
compatibility with the GraphIndex API, as well as ensuring that
603
the initial read (to read the root node header) can be done
604
without over-reading even on empty indices, and on small indices
605
allows single-IO to read the entire index.
607
self._transport = transport
611
self._page_size = transport.recommended_page_size()
612
self._root_node = None
613
# Default max size is 100,000 leave values
614
self._leaf_value_cache = None # lru_cache.LRUCache(100*1000)
615
self._leaf_node_cache = lru_cache.LRUCache(_NODE_CACHE_SIZE)
616
self._internal_node_cache = lru_cache.LRUCache()
617
self._key_count = None
618
self._row_lengths = None
619
self._row_offsets = None # Start of each row, [-1] is the end
621
def __eq__(self, other):
622
"""Equal when self and other were created with the same parameters."""
624
type(self) == type(other) and
625
self._transport == other._transport and
626
self._name == other._name and
627
self._size == other._size)
629
def __ne__(self, other):
630
return not self.__eq__(other)
632
def _get_root_node(self):
633
if self._root_node is None:
634
# We may not have a root node yet
635
nodes = list(self._read_nodes([0]))
637
self._root_node = nodes[0][1]
638
return self._root_node
640
def _cache_nodes(self, nodes, cache):
641
"""Read nodes and cache them in the lru.
643
The nodes list supplied is sorted and then read from disk, each node
644
being inserted it into the _node_cache.
646
Note: Asking for more nodes than the _node_cache can contain will
647
result in some of the results being immediately discarded, to prevent
648
this an assertion is raised if more nodes are asked for than are
651
:return: A dict of {node_pos: node}
653
if len(nodes) > cache._max_cache:
654
trace.mutter('Requesting %s > %s nodes, not all will be cached',
655
len(nodes), cache._max_cache)
657
for node_pos, node in self._read_nodes(sorted(nodes)):
658
if node_pos == 0: # Special case
659
self._root_node = node
661
cache.add(node_pos, node)
662
found[node_pos] = node
665
def _get_nodes(self, cache, node_indexes):
668
for idx in node_indexes:
669
if idx == 0 and self._root_node is not None:
670
found[0] = self._root_node
673
found[idx] = cache[idx]
676
found.update(self._cache_nodes(needed, cache))
679
def _get_internal_nodes(self, node_indexes):
680
"""Get a node, from cache or disk.
682
After getting it, the node will be cached.
684
return self._get_nodes(self._internal_node_cache, node_indexes)
686
def _get_leaf_nodes(self, node_indexes):
687
"""Get a bunch of nodes, from cache or disk."""
688
found = self._get_nodes(self._leaf_node_cache, node_indexes)
689
if self._leaf_value_cache is not None:
690
for node in found.itervalues():
691
for key, value in node.keys.iteritems():
692
if key in self._leaf_value_cache:
693
# Don't add the rest of the keys, we've seen this node
696
self._leaf_value_cache[key] = value
699
def iter_all_entries(self):
700
"""Iterate over all keys within the index.
702
:return: An iterable of (index, key, value) or (index, key, value, reference_lists).
703
The former tuple is used when there are no reference lists in the
704
index, making the API compatible with simple key:value index types.
705
There is no defined order for the result iteration - it will be in
706
the most efficient order for the index.
708
if 'evil' in debug.debug_flags:
709
trace.mutter_callsite(3,
710
"iter_all_entries scales with size of history.")
711
if not self.key_count():
713
start_of_leaves = self._row_offsets[-2]
714
end_of_leaves = self._row_offsets[-1]
715
needed_nodes = range(start_of_leaves, end_of_leaves)
716
# We iterate strictly in-order so that we can use this function
717
# for spilling index builds to disk.
718
if self.node_ref_lists:
719
for _, node in self._read_nodes(needed_nodes):
720
for key, (value, refs) in sorted(node.keys.items()):
721
yield (self, key, value, refs)
723
for _, node in self._read_nodes(needed_nodes):
724
for key, (value, refs) in sorted(node.keys.items()):
725
yield (self, key, value)
728
def _multi_bisect_right(in_keys, fixed_keys):
729
"""Find the positions where each 'in_key' would fit in fixed_keys.
731
This is equivalent to doing "bisect_right" on each in_key into
734
:param in_keys: A sorted list of keys to match with fixed_keys
735
:param fixed_keys: A sorted list of keys to match against
736
:return: A list of (integer position, [key list]) tuples.
741
# no pointers in the fixed_keys list, which means everything must
743
return [(0, in_keys)]
745
# TODO: Iterating both lists will generally take M + N steps
746
# Bisecting each key will generally take M * log2 N steps.
747
# If we had an efficient way to compare, we could pick the method
748
# based on which has the fewer number of steps.
749
# There is also the argument that bisect_right is a compiled
750
# function, so there is even more to be gained.
751
# iter_steps = len(in_keys) + len(fixed_keys)
752
# bisect_steps = len(in_keys) * math.log(len(fixed_keys), 2)
753
if len(in_keys) == 1: # Bisect will always be faster for M = 1
754
return [(bisect_right(fixed_keys, in_keys[0]), in_keys)]
755
# elif bisect_steps < iter_steps:
757
# for key in in_keys:
758
# offsets.setdefault(bisect_right(fixed_keys, key),
760
# return [(o, offsets[o]) for o in sorted(offsets)]
761
in_keys_iter = iter(in_keys)
762
fixed_keys_iter = enumerate(fixed_keys)
763
cur_in_key = in_keys_iter.next()
764
cur_fixed_offset, cur_fixed_key = fixed_keys_iter.next()
766
class InputDone(Exception): pass
767
class FixedDone(Exception): pass
772
# TODO: Another possibility is that rather than iterating on each side,
773
# we could use a combination of bisecting and iterating. For
774
# example, while cur_in_key < fixed_key, bisect to find its
775
# point, then iterate all matching keys, then bisect (restricted
776
# to only the remainder) for the next one, etc.
779
if cur_in_key < cur_fixed_key:
781
cur_out = (cur_fixed_offset, cur_keys)
782
output.append(cur_out)
783
while cur_in_key < cur_fixed_key:
784
cur_keys.append(cur_in_key)
786
cur_in_key = in_keys_iter.next()
787
except StopIteration:
789
# At this point cur_in_key must be >= cur_fixed_key
790
# step the cur_fixed_key until we pass the cur key, or walk off
792
while cur_in_key >= cur_fixed_key:
794
cur_fixed_offset, cur_fixed_key = fixed_keys_iter.next()
795
except StopIteration:
798
# We consumed all of the input, nothing more to do
801
# There was some input left, but we consumed all of fixed, so we
802
# have to add one more for the tail
803
cur_keys = [cur_in_key]
804
cur_keys.extend(in_keys_iter)
805
cur_out = (len(fixed_keys), cur_keys)
806
output.append(cur_out)
809
def iter_entries(self, keys):
810
"""Iterate over keys within the index.
812
:param keys: An iterable providing the keys to be retrieved.
813
:return: An iterable as per iter_all_entries, but restricted to the
814
keys supplied. No additional keys will be returned, and every
815
key supplied that is in the index will be returned.
817
# 6 seconds spent in miss_torture using the sorted() line.
818
# Even with out of order disk IO it seems faster not to sort it when
819
# large queries are being made.
820
# However, now that we are doing multi-way bisecting, we need the keys
821
# in sorted order anyway. We could change the multi-way code to not
822
# require sorted order. (For example, it bisects for the first node,
823
# does an in-order search until a key comes before the current point,
824
# which it then bisects for, etc.)
825
keys = frozenset(keys)
829
if not self.key_count():
833
if self._leaf_value_cache is None:
837
value = self._leaf_value_cache.get(key, None)
838
if value is not None:
839
# This key is known not to be here, skip it
841
if self.node_ref_lists:
842
yield (self, key, value, refs)
844
yield (self, key, value)
846
needed_keys.append(key)
852
# 6 seconds spent in miss_torture using the sorted() line.
853
# Even with out of order disk IO it seems faster not to sort it when
854
# large queries are being made.
855
needed_keys = sorted(needed_keys)
857
nodes_and_keys = [(0, needed_keys)]
859
for row_pos, next_row_start in enumerate(self._row_offsets[1:-1]):
860
node_indexes = [idx for idx, s_keys in nodes_and_keys]
861
nodes = self._get_internal_nodes(node_indexes)
863
next_nodes_and_keys = []
864
for node_index, sub_keys in nodes_and_keys:
865
node = nodes[node_index]
866
positions = self._multi_bisect_right(sub_keys, node.keys)
867
node_offset = next_row_start + node.offset
868
next_nodes_and_keys.extend([(node_offset + pos, s_keys)
869
for pos, s_keys in positions])
870
nodes_and_keys = next_nodes_and_keys
871
# We should now be at the _LeafNodes
872
node_indexes = [idx for idx, s_keys in nodes_and_keys]
874
# TODO: We may *not* want to always read all the nodes in one
875
# big go. Consider setting a max size on this.
877
nodes = self._get_leaf_nodes(node_indexes)
878
for node_index, sub_keys in nodes_and_keys:
881
node = nodes[node_index]
882
for next_sub_key in sub_keys:
883
if next_sub_key in node.keys:
884
value, refs = node.keys[next_sub_key]
885
if self.node_ref_lists:
886
yield (self, next_sub_key, value, refs)
888
yield (self, next_sub_key, value)
890
def iter_entries_prefix(self, keys):
891
"""Iterate over keys within the index using prefix matching.
893
Prefix matching is applied within the tuple of a key, not to within
894
the bytestring of each key element. e.g. if you have the keys ('foo',
895
'bar'), ('foobar', 'gam') and do a prefix search for ('foo', None) then
896
only the former key is returned.
898
WARNING: Note that this method currently causes a full index parse
899
unconditionally (which is reasonably appropriate as it is a means for
900
thunking many small indices into one larger one and still supplies
901
iter_all_entries at the thunk layer).
903
:param keys: An iterable providing the key prefixes to be retrieved.
904
Each key prefix takes the form of a tuple the length of a key, but
905
with the last N elements 'None' rather than a regular bytestring.
906
The first element cannot be 'None'.
907
:return: An iterable as per iter_all_entries, but restricted to the
908
keys with a matching prefix to those supplied. No additional keys
909
will be returned, and every match that is in the index will be
912
keys = sorted(set(keys))
915
# Load if needed to check key lengths
916
if self._key_count is None:
917
self._get_root_node()
918
# TODO: only access nodes that can satisfy the prefixes we are looking
919
# for. For now, to meet API usage (as this function is not used by
920
# current bzrlib) just suck the entire index and iterate in memory.
922
if self.node_ref_lists:
923
if self._key_length == 1:
924
for _1, key, value, refs in self.iter_all_entries():
925
nodes[key] = value, refs
928
for _1, key, value, refs in self.iter_all_entries():
929
key_value = key, value, refs
930
# For a key of (foo, bar, baz) create
931
# _nodes_by_key[foo][bar][baz] = key_value
932
key_dict = nodes_by_key
933
for subkey in key[:-1]:
934
key_dict = key_dict.setdefault(subkey, {})
935
key_dict[key[-1]] = key_value
937
if self._key_length == 1:
938
for _1, key, value in self.iter_all_entries():
942
for _1, key, value in self.iter_all_entries():
943
key_value = key, value
944
# For a key of (foo, bar, baz) create
945
# _nodes_by_key[foo][bar][baz] = key_value
946
key_dict = nodes_by_key
947
for subkey in key[:-1]:
948
key_dict = key_dict.setdefault(subkey, {})
949
key_dict[key[-1]] = key_value
950
if self._key_length == 1:
954
raise errors.BadIndexKey(key)
955
if len(key) != self._key_length:
956
raise errors.BadIndexKey(key)
958
if self.node_ref_lists:
959
value, node_refs = nodes[key]
960
yield self, key, value, node_refs
962
yield self, key, nodes[key]
969
raise errors.BadIndexKey(key)
970
if len(key) != self._key_length:
971
raise errors.BadIndexKey(key)
972
# find what it refers to:
973
key_dict = nodes_by_key
975
# find the subdict whose contents should be returned.
977
while len(elements) and elements[0] is not None:
978
key_dict = key_dict[elements[0]]
981
# a non-existant lookup.
986
key_dict = dicts.pop(-1)
987
# can't be empty or would not exist
988
item, value = key_dict.iteritems().next()
989
if type(value) == dict:
991
dicts.extend(key_dict.itervalues())
994
for value in key_dict.itervalues():
995
# each value is the key:value:node refs tuple
997
yield (self, ) + value
999
# the last thing looked up was a terminal element
1000
yield (self, ) + key_dict
1002
def key_count(self):
1003
"""Return an estimate of the number of keys in this index.
1005
For BTreeGraphIndex the estimate is exact as it is contained in the
1008
if self._key_count is None:
1009
self._get_root_node()
1010
return self._key_count
1012
def _parse_header_from_bytes(self, bytes):
1013
"""Parse the header from a region of bytes.
1015
:param bytes: The data to parse.
1016
:return: An offset, data tuple such as readv yields, for the unparsed
1017
data. (which may be of length 0).
1019
signature = bytes[0:len(self._signature())]
1020
if not signature == self._signature():
1021
raise errors.BadIndexFormatSignature(self._name, BTreeGraphIndex)
1022
lines = bytes[len(self._signature()):].splitlines()
1023
options_line = lines[0]
1024
if not options_line.startswith(_OPTION_NODE_REFS):
1025
raise errors.BadIndexOptions(self)
1027
self.node_ref_lists = int(options_line[len(_OPTION_NODE_REFS):])
1029
raise errors.BadIndexOptions(self)
1030
options_line = lines[1]
1031
if not options_line.startswith(_OPTION_KEY_ELEMENTS):
1032
raise errors.BadIndexOptions(self)
1034
self._key_length = int(options_line[len(_OPTION_KEY_ELEMENTS):])
1036
raise errors.BadIndexOptions(self)
1037
options_line = lines[2]
1038
if not options_line.startswith(_OPTION_LEN):
1039
raise errors.BadIndexOptions(self)
1041
self._key_count = int(options_line[len(_OPTION_LEN):])
1043
raise errors.BadIndexOptions(self)
1044
options_line = lines[3]
1045
if not options_line.startswith(_OPTION_ROW_LENGTHS):
1046
raise errors.BadIndexOptions(self)
1048
self._row_lengths = map(int, [length for length in
1049
options_line[len(_OPTION_ROW_LENGTHS):].split(',')
1052
raise errors.BadIndexOptions(self)
1055
for row in self._row_lengths:
1056
offsets.append(row_offset)
1058
offsets.append(row_offset)
1059
self._row_offsets = offsets
1061
# calculate the bytes we have processed
1062
header_end = (len(signature) + sum(map(len, lines[0:4])) + 4)
1063
return header_end, bytes[header_end:]
1065
def _read_nodes(self, nodes):
1066
"""Read some nodes from disk into the LRU cache.
1068
This performs a readv to get the node data into memory, and parses each
1069
node, the yields it to the caller. The nodes are requested in the
1070
supplied order. If possible doing sort() on the list before requesting
1071
a read may improve performance.
1073
:param nodes: The nodes to read. 0 - first node, 1 - second node etc.
1078
offset = index * _PAGE_SIZE
1081
# Root node - special case
1083
size = min(_PAGE_SIZE, self._size)
1085
stream = self._transport.get(self._name)
1086
start = stream.read(_PAGE_SIZE)
1087
# Avoid doing this again
1088
self._size = len(start)
1089
size = min(_PAGE_SIZE, self._size)
1091
size = min(size, self._size - offset)
1092
ranges.append((offset, size))
1095
if self._file is None:
1096
data_ranges = self._transport.readv(self._name, ranges)
1099
for offset, size in ranges:
1100
self._file.seek(offset)
1101
data_ranges.append((offset, self._file.read(size)))
1102
for offset, data in data_ranges:
1104
# extract the header
1105
offset, data = self._parse_header_from_bytes(data)
1108
bytes = zlib.decompress(data)
1109
if bytes.startswith(_LEAF_FLAG):
1110
node = _LeafNode(bytes, self._key_length, self.node_ref_lists)
1111
elif bytes.startswith(_INTERNAL_FLAG):
1112
node = _InternalNode(bytes)
1114
raise AssertionError("Unknown node type for %r" % bytes)
1115
yield offset / _PAGE_SIZE, node
1117
def _signature(self):
1118
"""The file signature for this index type."""
1122
"""Validate that everything in the index can be accessed."""
1123
# just read and parse every node.
1124
self._get_root_node()
1125
if len(self._row_lengths) > 1:
1126
start_node = self._row_offsets[1]
1128
# We shouldn't be reading anything anyway
1130
node_end = self._row_offsets[-1]
1131
for node in self._read_nodes(range(start_node, node_end)):
1136
from bzrlib import _btree_serializer_c as _btree_serializer
1138
from bzrlib import _btree_serializer_py as _btree_serializer