/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
3830.3.12 by Martin Pool
Review cleanups: unify has_key impls, add missing_keys(), clean up exception blocks
1
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
2
#
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.
7
#
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.
12
#
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
16
17
"""Knit versionedfile implementation.
18
19
A knit is a versioned file implementation that supports efficient append only
20
updates.
1563.2.6 by Robert Collins
Start check tests for knits (pending), and remove dead code.
21
22
Knit file layout:
23
lifeless: the data file is made up of "delta records".  each delta record has a delta header 
24
that contains; (1) a version id, (2) the size of the delta (in lines), and (3)  the digest of 
25
the -expanded data- (ie, the delta applied to the parent).  the delta also ends with a 
26
end-marker; simply "end VERSION"
27
28
delta can be line or full contents.a
29
... the 8's there are the index number of the annotation.
30
version robertc@robertcollins.net-20051003014215-ee2990904cc4c7ad 7 c7d23b2a5bd6ca00e8e266cec0ec228158ee9f9e
31
59,59,3
32
8
33
8         if ie.executable:
34
8             e.set('executable', 'yes')
35
130,130,2
36
8         if elt.get('executable') == 'yes':
37
8             ie.executable = True
38
end robertc@robertcollins.net-20051003014215-ee2990904cc4c7ad 
39
40
41
whats in an index:
42
09:33 < jrydberg> lifeless: each index is made up of a tuple of; version id, options, position, size, parents
43
09:33 < jrydberg> lifeless: the parents are currently dictionary compressed
44
09:33 < jrydberg> lifeless: (meaning it currently does not support ghosts)
45
09:33 < lifeless> right
46
09:33 < jrydberg> lifeless: the position and size is the range in the data file
47
48
49
so the index sequence is the dictionary compressed sequence number used
50
in the deltas to provide line annotation
51
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
52
"""
53
1563.2.6 by Robert Collins
Start check tests for knits (pending), and remove dead code.
54
# TODOS:
55
# 10:16 < lifeless> make partial index writes safe
56
# 10:16 < lifeless> implement 'knit.check()' like weave.check()
57
# 10:17 < lifeless> record known ghosts so we can detect when they are filled in rather than the current 'reweave 
58
#                    always' approach.
1563.2.11 by Robert Collins
Consolidate reweave and join as we have no separate usage, make reweave tests apply to all versionedfile implementations and deprecate the old reweave apis.
59
# move sha1 out of the content so that join is faster at verifying parents
60
# record content length ?
1563.2.6 by Robert Collins
Start check tests for knits (pending), and remove dead code.
61
                  
62
1563.2.11 by Robert Collins
Consolidate reweave and join as we have no separate usage, make reweave tests apply to all versionedfile implementations and deprecate the old reweave apis.
63
from cStringIO import StringIO
1596.2.28 by Robert Collins
more knit profile based tuning.
64
from itertools import izip, chain
1756.2.17 by Aaron Bentley
Fixes suggested by John Meinel
65
import operator
1563.2.6 by Robert Collins
Start check tests for knits (pending), and remove dead code.
66
import os
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
67
import sys
1594.2.19 by Robert Collins
More coalescing tweaks, and knit feedback.
68
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
69
from bzrlib.lazy_import import lazy_import
70
lazy_import(globals(), """
71
from bzrlib import (
2770.1.1 by Aaron Bentley
Initial implmentation of plain knit annotation
72
    annotate,
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
73
    debug,
74
    diff,
3224.1.10 by John Arbash Meinel
Introduce the heads_provider for reannotate.
75
    graph as _mod_graph,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
76
    index as _mod_index,
2998.2.2 by John Arbash Meinel
implement a faster path for copying from packs back to knits.
77
    lru_cache,
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
78
    pack,
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
79
    progress,
2745.1.2 by Robert Collins
Ensure mutter_callsite is not directly called on a lazy_load object, to make the stacklevel parameter work correctly.
80
    trace,
3224.5.1 by Andrew Bennetts
Lots of assorted hackery to reduce the number of imports for common operations. Improves 'rocks', 'st' and 'help' times by ~50ms on my laptop.
81
    tsort,
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
82
    tuned_gzip,
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
83
    )
84
""")
1911.2.3 by John Arbash Meinel
Moving everything into a new location so that we can cache more than just revision ids
85
from bzrlib import (
86
    errors,
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
87
    osutils,
2104.4.2 by John Arbash Meinel
Small cleanup and NEWS entry about fixing bug #65714
88
    patiencediff,
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
89
    )
90
from bzrlib.errors import (
91
    FileExists,
92
    NoSuchFile,
93
    KnitError,
94
    InvalidRevisionId,
95
    KnitCorrupt,
96
    KnitHeaderError,
97
    RevisionNotPresent,
98
    RevisionAlreadyPresent,
3787.1.1 by Robert Collins
Embed the failed text in sha1 knit errors.
99
    SHA1KnitCorrupt,
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
100
    )
101
from bzrlib.osutils import (
102
    contains_whitespace,
103
    contains_linebreaks,
2850.1.1 by Robert Collins
* ``KnitVersionedFile.add*`` will no longer cache added records even when
104
    sha_string,
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
105
    sha_strings,
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
106
    split_lines,
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
107
    )
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
108
from bzrlib.versionedfile import (
3350.3.12 by Robert Collins
Generate streams with absent records.
109
    AbsentContentFactory,
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
110
    adapter_registry,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
111
    ConstantMapper,
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
112
    ContentFactory,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
113
    FulltextContentFactory,
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
114
    VersionedFile,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
115
    VersionedFiles,
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
116
    )
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
117
118
119
# TODO: Split out code specific to this format into an associated object.
120
121
# TODO: Can we put in some kind of value to check that the index and data
122
# files belong together?
123
1759.2.1 by Jelmer Vernooij
Fix some types (found using aspell).
124
# TODO: accommodate binaries, perhaps by storing a byte count
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
125
126
# TODO: function to check whole file
127
128
# TODO: atomically append data, then measure backwards from the cursor
129
# position after writing to work out where it was located.  we may need to
130
# bypass python file buffering.
131
132
DATA_SUFFIX = '.knit'
133
INDEX_SUFFIX = '.kndx'
134
135
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
136
class KnitAdapter(object):
137
    """Base class for knit record adaption."""
138
3350.3.7 by Robert Collins
Create a registry of versioned file record adapters.
139
    def __init__(self, basis_vf):
140
        """Create an adapter which accesses full texts from basis_vf.
141
        
142
        :param basis_vf: A versioned file to access basis texts of deltas from.
143
            May be None for adapters that do not need to access basis texts.
144
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
145
        self._data = KnitVersionedFiles(None, None)
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
146
        self._annotate_factory = KnitAnnotateFactory()
147
        self._plain_factory = KnitPlainFactory()
3350.3.7 by Robert Collins
Create a registry of versioned file record adapters.
148
        self._basis_vf = basis_vf
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
149
150
151
class FTAnnotatedToUnannotated(KnitAdapter):
152
    """An adapter from FT annotated knits to unannotated ones."""
153
154
    def get_bytes(self, factory, annotated_compressed_bytes):
155
        rec, contents = \
156
            self._data._parse_record_unchecked(annotated_compressed_bytes)
157
        content = self._annotate_factory.parse_fulltext(contents, rec[1])
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
158
        size, bytes = self._data._record_to_data((rec[1],), rec[3], content.text())
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
159
        return bytes
160
161
162
class DeltaAnnotatedToUnannotated(KnitAdapter):
163
    """An adapter for deltas from annotated to unannotated."""
164
165
    def get_bytes(self, factory, annotated_compressed_bytes):
166
        rec, contents = \
167
            self._data._parse_record_unchecked(annotated_compressed_bytes)
168
        delta = self._annotate_factory.parse_line_delta(contents, rec[1],
169
            plain=True)
170
        contents = self._plain_factory.lower_line_delta(delta)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
171
        size, bytes = self._data._record_to_data((rec[1],), rec[3], contents)
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
172
        return bytes
173
174
175
class FTAnnotatedToFullText(KnitAdapter):
176
    """An adapter from FT annotated knits to unannotated ones."""
177
178
    def get_bytes(self, factory, annotated_compressed_bytes):
179
        rec, contents = \
180
            self._data._parse_record_unchecked(annotated_compressed_bytes)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
181
        content, delta = self._annotate_factory.parse_record(factory.key[-1],
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
182
            contents, factory._build_details, None)
183
        return ''.join(content.text())
184
185
186
class DeltaAnnotatedToFullText(KnitAdapter):
187
    """An adapter for deltas from annotated to unannotated."""
188
189
    def get_bytes(self, factory, annotated_compressed_bytes):
190
        rec, contents = \
191
            self._data._parse_record_unchecked(annotated_compressed_bytes)
192
        delta = self._annotate_factory.parse_line_delta(contents, rec[1],
193
            plain=True)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
194
        compression_parent = factory.parents[0]
195
        basis_entry = self._basis_vf.get_record_stream(
196
            [compression_parent], 'unordered', True).next()
197
        if basis_entry.storage_kind == 'absent':
198
            raise errors.RevisionNotPresent(compression_parent, self._basis_vf)
199
        basis_lines = split_lines(basis_entry.get_bytes_as('fulltext'))
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
200
        # Manually apply the delta because we have one annotated content and
201
        # one plain.
202
        basis_content = PlainKnitContent(basis_lines, compression_parent)
203
        basis_content.apply_delta(delta, rec[1])
204
        basis_content._should_strip_eol = factory._build_details[1]
205
        return ''.join(basis_content.text())
206
207
3350.3.5 by Robert Collins
Create adapters from plain compressed knit content.
208
class FTPlainToFullText(KnitAdapter):
209
    """An adapter from FT plain knits to unannotated ones."""
210
211
    def get_bytes(self, factory, compressed_bytes):
212
        rec, contents = \
213
            self._data._parse_record_unchecked(compressed_bytes)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
214
        content, delta = self._plain_factory.parse_record(factory.key[-1],
3350.3.5 by Robert Collins
Create adapters from plain compressed knit content.
215
            contents, factory._build_details, None)
216
        return ''.join(content.text())
217
218
219
class DeltaPlainToFullText(KnitAdapter):
220
    """An adapter for deltas from annotated to unannotated."""
221
222
    def get_bytes(self, factory, compressed_bytes):
223
        rec, contents = \
224
            self._data._parse_record_unchecked(compressed_bytes)
225
        delta = self._plain_factory.parse_line_delta(contents, rec[1])
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
226
        compression_parent = factory.parents[0]
227
        # XXX: string splitting overhead.
228
        basis_entry = self._basis_vf.get_record_stream(
229
            [compression_parent], 'unordered', True).next()
230
        if basis_entry.storage_kind == 'absent':
231
            raise errors.RevisionNotPresent(compression_parent, self._basis_vf)
232
        basis_lines = split_lines(basis_entry.get_bytes_as('fulltext'))
3350.3.5 by Robert Collins
Create adapters from plain compressed knit content.
233
        basis_content = PlainKnitContent(basis_lines, compression_parent)
234
        # Manually apply the delta because we have one annotated content and
235
        # one plain.
236
        content, _ = self._plain_factory.parse_record(rec[1], contents,
237
            factory._build_details, basis_content)
238
        return ''.join(content.text())
239
240
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
241
class KnitContentFactory(ContentFactory):
242
    """Content factory for streaming from knits.
243
    
244
    :seealso ContentFactory:
245
    """
246
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
247
    def __init__(self, key, parents, build_details, sha1, raw_record,
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
248
        annotated, knit=None):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
249
        """Create a KnitContentFactory for key.
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
250
        
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
251
        :param key: The key.
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
252
        :param parents: The parents.
253
        :param build_details: The build details as returned from
254
            get_build_details.
255
        :param sha1: The sha1 expected from the full text of this object.
256
        :param raw_record: The bytes of the knit data from disk.
257
        :param annotated: True if the raw data is annotated.
258
        """
259
        ContentFactory.__init__(self)
260
        self.sha1 = sha1
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
261
        self.key = key
262
        self.parents = parents
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
263
        if build_details[0] == 'line-delta':
264
            kind = 'delta'
265
        else:
266
            kind = 'ft'
267
        if annotated:
268
            annotated_kind = 'annotated-'
269
        else:
270
            annotated_kind = ''
271
        self.storage_kind = 'knit-%s%s-gz' % (annotated_kind, kind)
272
        self._raw_record = raw_record
273
        self._build_details = build_details
274
        self._knit = knit
275
276
    def get_bytes_as(self, storage_kind):
277
        if storage_kind == self.storage_kind:
278
            return self._raw_record
279
        if storage_kind == 'fulltext' and self._knit is not None:
280
            return self._knit.get_text(self.key[0])
281
        else:
282
            raise errors.UnavailableRepresentation(self.key, storage_kind,
283
                self.storage_kind)
284
285
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
286
class KnitContent(object):
3468.2.4 by Martin Pool
Test and fix #234748 problems in trailing newline diffs
287
    """Content of a knit version to which deltas can be applied.
288
    
3468.2.5 by Martin Pool
Correct comment and remove overbroad except block
289
    This is always stored in memory as a list of lines with \n at the end,
290
    plus a flag saying if the final ending is really there or not, because that 
291
    corresponds to the on-disk knit representation.
3468.2.4 by Martin Pool
Test and fix #234748 problems in trailing newline diffs
292
    """
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
293
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
294
    def __init__(self):
295
        self._should_strip_eol = False
296
2921.2.1 by Robert Collins
* Knit text reconstruction now avoids making copies of the lines list for
297
    def apply_delta(self, delta, new_version_id):
2921.2.2 by Robert Collins
Review feedback.
298
        """Apply delta to this object to become new_version_id."""
2921.2.1 by Robert Collins
* Knit text reconstruction now avoids making copies of the lines list for
299
        raise NotImplementedError(self.apply_delta)
300
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
301
    def line_delta_iter(self, new_lines):
1596.2.32 by Robert Collins
Reduce re-extraction of texts during weave to knit joins by providing a memoisation facility.
302
        """Generate line-based delta from this content to new_lines."""
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
303
        new_texts = new_lines.text()
304
        old_texts = self.text()
2781.1.1 by Martin Pool
merge cpatiencediff from Lukas
305
        s = patiencediff.PatienceSequenceMatcher(None, old_texts, new_texts)
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
306
        for tag, i1, i2, j1, j2 in s.get_opcodes():
307
            if tag == 'equal':
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
308
                continue
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
309
            # ofrom, oto, length, data
310
            yield i1, i2, j2 - j1, new_lines._lines[j1:j2]
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
311
312
    def line_delta(self, new_lines):
313
        return list(self.line_delta_iter(new_lines))
314
2520.4.41 by Aaron Bentley
Accelerate mpdiff generation
315
    @staticmethod
2520.4.48 by Aaron Bentley
Support getting blocks from knit deltas with no final EOL
316
    def get_line_delta_blocks(knit_delta, source, target):
2520.4.41 by Aaron Bentley
Accelerate mpdiff generation
317
        """Extract SequenceMatcher.get_matching_blocks() from a knit delta"""
2520.4.48 by Aaron Bentley
Support getting blocks from knit deltas with no final EOL
318
        target_len = len(target)
2520.4.41 by Aaron Bentley
Accelerate mpdiff generation
319
        s_pos = 0
320
        t_pos = 0
321
        for s_begin, s_end, t_len, new_text in knit_delta:
2520.4.47 by Aaron Bentley
Fix get_line_delta_blocks with eol
322
            true_n = s_begin - s_pos
323
            n = true_n
2520.4.41 by Aaron Bentley
Accelerate mpdiff generation
324
            if n > 0:
2520.4.48 by Aaron Bentley
Support getting blocks from knit deltas with no final EOL
325
                # knit deltas do not provide reliable info about whether the
326
                # last line of a file matches, due to eol handling.
327
                if source[s_pos + n -1] != target[t_pos + n -1]:
2520.4.47 by Aaron Bentley
Fix get_line_delta_blocks with eol
328
                    n-=1
329
                if n > 0:
330
                    yield s_pos, t_pos, n
331
            t_pos += t_len + true_n
2520.4.41 by Aaron Bentley
Accelerate mpdiff generation
332
            s_pos = s_end
2520.4.48 by Aaron Bentley
Support getting blocks from knit deltas with no final EOL
333
        n = target_len - t_pos
334
        if n > 0:
335
            if source[s_pos + n -1] != target[t_pos + n -1]:
336
                n-=1
337
            if n > 0:
338
                yield s_pos, t_pos, n
2520.4.41 by Aaron Bentley
Accelerate mpdiff generation
339
        yield s_pos + (target_len - t_pos), target_len, 0
340
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
341
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
342
class AnnotatedKnitContent(KnitContent):
343
    """Annotated content."""
344
345
    def __init__(self, lines):
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
346
        KnitContent.__init__(self)
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
347
        self._lines = lines
348
3316.2.13 by Robert Collins
* ``VersionedFile.annotate_iter`` is deprecated. While in principal this
349
    def annotate(self):
350
        """Return a list of (origin, text) for each content line."""
3468.2.4 by Martin Pool
Test and fix #234748 problems in trailing newline diffs
351
        lines = self._lines[:]
352
        if self._should_strip_eol:
353
            origin, last_line = lines[-1]
354
            lines[-1] = (origin, last_line.rstrip('\n'))
355
        return lines
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
356
2921.2.1 by Robert Collins
* Knit text reconstruction now avoids making copies of the lines list for
357
    def apply_delta(self, delta, new_version_id):
2921.2.2 by Robert Collins
Review feedback.
358
        """Apply delta to this object to become new_version_id."""
2921.2.1 by Robert Collins
* Knit text reconstruction now avoids making copies of the lines list for
359
        offset = 0
360
        lines = self._lines
361
        for start, end, count, delta_lines in delta:
362
            lines[offset+start:offset+end] = delta_lines
363
            offset = offset + (start - end) + count
364
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
365
    def text(self):
2911.1.1 by Martin Pool
Better messages when problems are detected inside a knit
366
        try:
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
367
            lines = [text for origin, text in self._lines]
2911.1.1 by Martin Pool
Better messages when problems are detected inside a knit
368
        except ValueError, e:
369
            # most commonly (only?) caused by the internal form of the knit
370
            # missing annotation information because of a bug - see thread
371
            # around 20071015
372
            raise KnitCorrupt(self,
373
                "line in annotated knit missing annotation information: %s"
374
                % (e,))
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
375
        if self._should_strip_eol:
3350.3.4 by Robert Collins
Finish adapters for annotated knits to unannotated knits and full texts.
376
            lines[-1] = lines[-1].rstrip('\n')
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
377
        return lines
378
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
379
    def copy(self):
380
        return AnnotatedKnitContent(self._lines[:])
381
382
383
class PlainKnitContent(KnitContent):
2794.1.3 by Robert Collins
Review feedback.
384
    """Unannotated content.
385
    
386
    When annotate[_iter] is called on this content, the same version is reported
387
    for all lines. Generally, annotate[_iter] is not useful on PlainKnitContent
388
    objects.
389
    """
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
390
391
    def __init__(self, lines, version_id):
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
392
        KnitContent.__init__(self)
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
393
        self._lines = lines
394
        self._version_id = version_id
395
3316.2.13 by Robert Collins
* ``VersionedFile.annotate_iter`` is deprecated. While in principal this
396
    def annotate(self):
397
        """Return a list of (origin, text) for each content line."""
398
        return [(self._version_id, line) for line in self._lines]
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
399
2921.2.1 by Robert Collins
* Knit text reconstruction now avoids making copies of the lines list for
400
    def apply_delta(self, delta, new_version_id):
2921.2.2 by Robert Collins
Review feedback.
401
        """Apply delta to this object to become new_version_id."""
2921.2.1 by Robert Collins
* Knit text reconstruction now avoids making copies of the lines list for
402
        offset = 0
403
        lines = self._lines
404
        for start, end, count, delta_lines in delta:
405
            lines[offset+start:offset+end] = delta_lines
406
            offset = offset + (start - end) + count
407
        self._version_id = new_version_id
408
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
409
    def copy(self):
410
        return PlainKnitContent(self._lines[:], self._version_id)
411
412
    def text(self):
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
413
        lines = self._lines
414
        if self._should_strip_eol:
415
            lines = lines[:]
416
            lines[-1] = lines[-1].rstrip('\n')
417
        return lines
418
419
420
class _KnitFactory(object):
421
    """Base class for common Factory functions."""
422
423
    def parse_record(self, version_id, record, record_details,
424
                     base_content, copy_base_content=True):
425
        """Parse a record into a full content object.
426
427
        :param version_id: The official version id for this content
428
        :param record: The data returned by read_records_iter()
429
        :param record_details: Details about the record returned by
430
            get_build_details
431
        :param base_content: If get_build_details returns a compression_parent,
432
            you must return a base_content here, else use None
433
        :param copy_base_content: When building from the base_content, decide
434
            you can either copy it and return a new object, or modify it in
435
            place.
436
        :return: (content, delta) A Content object and possibly a line-delta,
437
            delta may be None
438
        """
439
        method, noeol = record_details
440
        if method == 'line-delta':
441
            if copy_base_content:
442
                content = base_content.copy()
443
            else:
444
                content = base_content
445
            delta = self.parse_line_delta(record, version_id)
446
            content.apply_delta(delta, version_id)
447
        else:
448
            content = self.parse_fulltext(record, version_id)
449
            delta = None
450
        content._should_strip_eol = noeol
451
        return (content, delta)
452
453
454
class KnitAnnotateFactory(_KnitFactory):
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
455
    """Factory for creating annotated Content objects."""
456
457
    annotated = True
458
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
459
    def make(self, lines, version_id):
460
        num_lines = len(lines)
461
        return AnnotatedKnitContent(zip([version_id] * num_lines, lines))
462
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
463
    def parse_fulltext(self, content, version_id):
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
464
        """Convert fulltext to internal representation
465
466
        fulltext content is of the format
467
        revid(utf8) plaintext\n
468
        internal representation is of the format:
469
        (revid, plaintext)
470
        """
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
471
        # TODO: jam 20070209 The tests expect this to be returned as tuples,
472
        #       but the code itself doesn't really depend on that.
473
        #       Figure out a way to not require the overhead of turning the
474
        #       list back into tuples.
475
        lines = [tuple(line.split(' ', 1)) for line in content]
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
476
        return AnnotatedKnitContent(lines)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
477
478
    def parse_line_delta_iter(self, lines):
2163.1.2 by John Arbash Meinel
Don't modify the list during parse_line_delta
479
        return iter(self.parse_line_delta(lines))
1628.1.2 by Robert Collins
More knit micro-optimisations.
480
2851.4.2 by Ian Clatworthy
use factory methods in annotated-to-plain conversion instead of duplicating format knowledge
481
    def parse_line_delta(self, lines, version_id, plain=False):
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
482
        """Convert a line based delta into internal representation.
483
484
        line delta is in the form of:
485
        intstart intend intcount
486
        1..count lines:
487
        revid(utf8) newline\n
1759.2.1 by Jelmer Vernooij
Fix some types (found using aspell).
488
        internal representation is
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
489
        (start, end, count, [1..count tuples (revid, newline)])
2851.4.2 by Ian Clatworthy
use factory methods in annotated-to-plain conversion instead of duplicating format knowledge
490
491
        :param plain: If True, the lines are returned as a plain
2911.1.1 by Martin Pool
Better messages when problems are detected inside a knit
492
            list without annotations, not as a list of (origin, content) tuples, i.e.
2851.4.2 by Ian Clatworthy
use factory methods in annotated-to-plain conversion instead of duplicating format knowledge
493
            (start, end, count, [1..count newline])
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
494
        """
1628.1.2 by Robert Collins
More knit micro-optimisations.
495
        result = []
496
        lines = iter(lines)
497
        next = lines.next
2249.5.1 by John Arbash Meinel
Leave revision-ids in utf-8 when reading.
498
2249.5.15 by John Arbash Meinel
remove get_cached_utf8 checks which were slowing things down.
499
        cache = {}
500
        def cache_and_return(line):
501
            origin, text = line.split(' ', 1)
502
            return cache.setdefault(origin, origin), text
503
1628.1.2 by Robert Collins
More knit micro-optimisations.
504
        # walk through the lines parsing.
2851.4.2 by Ian Clatworthy
use factory methods in annotated-to-plain conversion instead of duplicating format knowledge
505
        # Note that the plain test is explicitly pulled out of the
506
        # loop to minimise any performance impact
507
        if plain:
508
            for header in lines:
509
                start, end, count = [int(n) for n in header.split(',')]
510
                contents = [next().split(' ', 1)[1] for i in xrange(count)]
511
                result.append((start, end, count, contents))
512
        else:
513
            for header in lines:
514
                start, end, count = [int(n) for n in header.split(',')]
515
                contents = [tuple(next().split(' ', 1)) for i in xrange(count)]
516
                result.append((start, end, count, contents))
1628.1.2 by Robert Collins
More knit micro-optimisations.
517
        return result
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
518
2163.2.2 by John Arbash Meinel
Don't deal with annotations when we don't care about them. Saves another 300+ms
519
    def get_fulltext_content(self, lines):
520
        """Extract just the content lines from a fulltext."""
521
        return (line.split(' ', 1)[1] for line in lines)
522
523
    def get_linedelta_content(self, lines):
524
        """Extract just the content from a line delta.
525
526
        This doesn't return all of the extra information stored in a delta.
527
        Only the actual content lines.
528
        """
529
        lines = iter(lines)
530
        next = lines.next
531
        for header in lines:
532
            header = header.split(',')
533
            count = int(header[2])
534
            for i in xrange(count):
535
                origin, text = next().split(' ', 1)
536
                yield text
537
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
538
    def lower_fulltext(self, content):
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
539
        """convert a fulltext content record into a serializable form.
540
541
        see parse_fulltext which this inverts.
542
        """
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
543
        # TODO: jam 20070209 We only do the caching thing to make sure that
544
        #       the origin is a valid utf-8 line, eventually we could remove it
2249.5.15 by John Arbash Meinel
remove get_cached_utf8 checks which were slowing things down.
545
        return ['%s %s' % (o, t) for o, t in content._lines]
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
546
547
    def lower_line_delta(self, delta):
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
548
        """convert a delta into a serializable form.
549
1628.1.2 by Robert Collins
More knit micro-optimisations.
550
        See parse_line_delta which this inverts.
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
551
        """
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
552
        # TODO: jam 20070209 We only do the caching thing to make sure that
553
        #       the origin is a valid utf-8 line, eventually we could remove it
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
554
        out = []
555
        for start, end, c, lines in delta:
556
            out.append('%d,%d,%d\n' % (start, end, c))
2249.5.15 by John Arbash Meinel
remove get_cached_utf8 checks which were slowing things down.
557
            out.extend(origin + ' ' + text
1911.2.1 by John Arbash Meinel
Cache encode/decode operations, saves memory and time. Especially when committing a new kernel tree with 7.7M new lines to annotate
558
                       for origin, text in lines)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
559
        return out
560
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
561
    def annotate(self, knit, key):
562
        content = knit._get_content(key)
563
        # adjust for the fact that serialised annotations are only key suffixes
564
        # for this factory.
565
        if type(key) == tuple:
566
            prefix = key[:-1]
567
            origins = content.annotate()
568
            result = []
569
            for origin, line in origins:
570
                result.append((prefix + (origin,), line))
571
            return result
572
        else:
3350.6.10 by Martin Pool
VersionedFiles review cleanups
573
            # XXX: This smells a bit.  Why would key ever be a non-tuple here?
574
            # Aren't keys defined to be tuples?  -- spiv 20080618
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
575
            return content.annotate()
2770.1.1 by Aaron Bentley
Initial implmentation of plain knit annotation
576
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
577
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
578
class KnitPlainFactory(_KnitFactory):
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
579
    """Factory for creating plain Content objects."""
580
581
    annotated = False
582
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
583
    def make(self, lines, version_id):
584
        return PlainKnitContent(lines, version_id)
585
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
586
    def parse_fulltext(self, content, version_id):
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
587
        """This parses an unannotated fulltext.
588
589
        Note that this is not a noop - the internal representation
590
        has (versionid, line) - its just a constant versionid.
591
        """
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
592
        return self.make(content, version_id)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
593
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
594
    def parse_line_delta_iter(self, lines, version_id):
2163.1.2 by John Arbash Meinel
Don't modify the list during parse_line_delta
595
        cur = 0
596
        num_lines = len(lines)
597
        while cur < num_lines:
598
            header = lines[cur]
599
            cur += 1
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
600
            start, end, c = [int(n) for n in header.split(',')]
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
601
            yield start, end, c, lines[cur:cur+c]
2163.1.2 by John Arbash Meinel
Don't modify the list during parse_line_delta
602
            cur += c
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
603
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
604
    def parse_line_delta(self, lines, version_id):
605
        return list(self.parse_line_delta_iter(lines, version_id))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
606
2163.2.2 by John Arbash Meinel
Don't deal with annotations when we don't care about them. Saves another 300+ms
607
    def get_fulltext_content(self, lines):
608
        """Extract just the content lines from a fulltext."""
609
        return iter(lines)
610
611
    def get_linedelta_content(self, lines):
612
        """Extract just the content from a line delta.
613
614
        This doesn't return all of the extra information stored in a delta.
615
        Only the actual content lines.
616
        """
617
        lines = iter(lines)
618
        next = lines.next
619
        for header in lines:
620
            header = header.split(',')
621
            count = int(header[2])
622
            for i in xrange(count):
623
                yield next()
624
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
625
    def lower_fulltext(self, content):
626
        return content.text()
627
628
    def lower_line_delta(self, delta):
629
        out = []
630
        for start, end, c, lines in delta:
631
            out.append('%d,%d,%d\n' % (start, end, c))
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
632
            out.extend(lines)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
633
        return out
634
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
635
    def annotate(self, knit, key):
3224.1.7 by John Arbash Meinel
_StreamIndex also needs to return the proper values for get_build_details.
636
        annotator = _KnitAnnotator(knit)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
637
        return annotator.annotate(key)
638
639
640
641
def make_file_factory(annotated, mapper):
642
    """Create a factory for creating a file based KnitVersionedFiles.
3350.6.10 by Martin Pool
VersionedFiles review cleanups
643
644
    This is only functional enough to run interface tests, it doesn't try to
645
    provide a full pack environment.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
646
    
647
    :param annotated: knit annotations are wanted.
648
    :param mapper: The mapper from keys to paths.
649
    """
650
    def factory(transport):
651
        index = _KndxIndex(transport, mapper, lambda:None, lambda:True, lambda:True)
652
        access = _KnitKeyAccess(transport, mapper)
653
        return KnitVersionedFiles(index, access, annotated=annotated)
654
    return factory
655
656
657
def make_pack_factory(graph, delta, keylength):
658
    """Create a factory for creating a pack based VersionedFiles.
659
660
    This is only functional enough to run interface tests, it doesn't try to
661
    provide a full pack environment.
662
    
663
    :param graph: Store a graph.
664
    :param delta: Delta compress contents.
665
    :param keylength: How long should keys be.
666
    """
667
    def factory(transport):
668
        parents = graph or delta
669
        ref_length = 0
670
        if graph:
671
            ref_length += 1
672
        if delta:
673
            ref_length += 1
674
            max_delta_chain = 200
675
        else:
676
            max_delta_chain = 0
677
        graph_index = _mod_index.InMemoryGraphIndex(reference_lists=ref_length,
678
            key_elements=keylength)
679
        stream = transport.open_write_stream('newpack')
680
        writer = pack.ContainerWriter(stream.write)
681
        writer.begin()
682
        index = _KnitGraphIndex(graph_index, lambda:True, parents=parents,
683
            deltas=delta, add_callback=graph_index.add_nodes)
684
        access = _DirectPackAccess({})
685
        access.set_writer(writer, graph_index, (transport, 'newpack'))
686
        result = KnitVersionedFiles(index, access,
687
            max_delta_chain=max_delta_chain)
688
        result.stream = stream
689
        result.writer = writer
690
        return result
691
    return factory
692
693
694
def cleanup_pack_knit(versioned_files):
695
    versioned_files.stream.close()
696
    versioned_files.writer.end()
697
698
699
class KnitVersionedFiles(VersionedFiles):
700
    """Storage for many versioned files using knit compression.
701
702
    Backend storage is managed by indices and data objects.
3582.1.14 by Martin Pool
Clearer comments about KnitVersionedFile stacking
703
704
    :ivar _index: A _KnitGraphIndex or similar that can describe the 
705
        parents, graph, compression and data location of entries in this 
706
        KnitVersionedFiles.  Note that this is only the index for 
3582.1.16 by Martin Pool
Review feedback and news entry
707
        *this* vfs; if there are fallbacks they must be queried separately.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
708
    """
709
710
    def __init__(self, index, data_access, max_delta_chain=200,
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
711
                 annotated=False, reload_func=None):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
712
        """Create a KnitVersionedFiles with index and data_access.
713
714
        :param index: The index for the knit data.
715
        :param data_access: The access object to store and retrieve knit
716
            records.
717
        :param max_delta_chain: The maximum number of deltas to permit during
718
            insertion. Set to 0 to prohibit the use of deltas.
719
        :param annotated: Set to True to cause annotations to be calculated and
720
            stored during insertion.
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
721
        :param reload_func: An function that can be called if we think we need
722
            to reload the pack listing and try again. See
723
            'bzrlib.repofmt.pack_repo.AggregateIndex' for the signature.
1563.2.25 by Robert Collins
Merge in upstream.
724
        """
3316.2.3 by Robert Collins
Remove manual notification of transaction finishing on versioned files.
725
        self._index = index
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
726
        self._access = data_access
727
        self._max_delta_chain = max_delta_chain
728
        if annotated:
729
            self._factory = KnitAnnotateFactory()
730
        else:
731
            self._factory = KnitPlainFactory()
3350.8.1 by Robert Collins
KnitVersionedFiles.add_fallback_versioned_files exists.
732
        self._fallback_vfs = []
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
733
        self._reload_func = reload_func
3350.8.1 by Robert Collins
KnitVersionedFiles.add_fallback_versioned_files exists.
734
3702.1.1 by Martin Pool
Add repr for KnitVersionedFiles
735
    def __repr__(self):
736
        return "%s(%r, %r)" % (
737
            self.__class__.__name__,
738
            self._index,
739
            self._access)
740
3350.8.1 by Robert Collins
KnitVersionedFiles.add_fallback_versioned_files exists.
741
    def add_fallback_versioned_files(self, a_versioned_files):
742
        """Add a source of texts for texts not present in this knit.
743
744
        :param a_versioned_files: A VersionedFiles object.
745
        """
746
        self._fallback_vfs.append(a_versioned_files)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
747
748
    def add_lines(self, key, parents, lines, parent_texts=None,
749
        left_matching_blocks=None, nostore_sha=None, random_id=False,
750
        check_content=True):
751
        """See VersionedFiles.add_lines()."""
752
        self._index._check_write_ok()
753
        self._check_add(key, lines, random_id, check_content)
754
        if parents is None:
3350.6.11 by Martin Pool
Review cleanups and documentation from Robert's mail on 2080618
755
            # The caller might pass None if there is no graph data, but kndx
756
            # indexes can't directly store that, so we give them
757
            # an empty tuple instead.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
758
            parents = ()
759
        return self._add(key, lines, parents,
760
            parent_texts, left_matching_blocks, nostore_sha, random_id)
761
762
    def _add(self, key, lines, parents, parent_texts,
763
        left_matching_blocks, nostore_sha, random_id):
764
        """Add a set of lines on top of version specified by parents.
765
766
        Any versions not present will be converted into ghosts.
767
        """
768
        # first thing, if the content is something we don't need to store, find
769
        # that out.
770
        line_bytes = ''.join(lines)
771
        digest = sha_string(line_bytes)
772
        if nostore_sha == digest:
773
            raise errors.ExistingContent
774
775
        present_parents = []
776
        if parent_texts is None:
777
            parent_texts = {}
3830.3.9 by Martin Pool
Simplify kvf insert_record_stream; add has_key shorthand methods; update stacking effort tests
778
        # Do a single query to ascertain parent presence; we only compress
779
        # against parents in the same kvf.
780
        present_parent_map = self._index.get_parent_map(parents)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
781
        for parent in parents:
782
            if parent in present_parent_map:
783
                present_parents.append(parent)
784
785
        # Currently we can only compress against the left most present parent.
786
        if (len(present_parents) == 0 or
787
            present_parents[0] != parents[0]):
788
            delta = False
789
        else:
790
            # To speed the extract of texts the delta chain is limited
791
            # to a fixed number of deltas.  This should minimize both
792
            # I/O and the time spend applying deltas.
793
            delta = self._check_should_delta(present_parents[0])
794
795
        text_length = len(line_bytes)
796
        options = []
797
        if lines:
798
            if lines[-1][-1] != '\n':
799
                # copy the contents of lines.
800
                lines = lines[:]
801
                options.append('no-eol')
802
                lines[-1] = lines[-1] + '\n'
803
                line_bytes += '\n'
804
805
        for element in key:
806
            if type(element) != str:
807
                raise TypeError("key contains non-strings: %r" % (key,))
808
        # Knit hunks are still last-element only
809
        version_id = key[-1]
810
        content = self._factory.make(lines, version_id)
811
        if 'no-eol' in options:
812
            # Hint to the content object that its text() call should strip the
813
            # EOL.
814
            content._should_strip_eol = True
815
        if delta or (self._factory.annotated and len(present_parents) > 0):
816
            # Merge annotations from parent texts if needed.
817
            delta_hunks = self._merge_annotations(content, present_parents,
818
                parent_texts, delta, self._factory.annotated,
819
                left_matching_blocks)
820
821
        if delta:
822
            options.append('line-delta')
823
            store_lines = self._factory.lower_line_delta(delta_hunks)
824
            size, bytes = self._record_to_data(key, digest,
825
                store_lines)
826
        else:
827
            options.append('fulltext')
828
            # isinstance is slower and we have no hierarchy.
829
            if self._factory.__class__ == KnitPlainFactory:
830
                # Use the already joined bytes saving iteration time in
831
                # _record_to_data.
832
                size, bytes = self._record_to_data(key, digest,
833
                    lines, [line_bytes])
834
            else:
835
                # get mixed annotation + content and feed it into the
836
                # serialiser.
837
                store_lines = self._factory.lower_fulltext(content)
838
                size, bytes = self._record_to_data(key, digest,
839
                    store_lines)
840
841
        access_memo = self._access.add_raw_records([(key, size)], bytes)[0]
842
        self._index.add_records(
843
            ((key, options, access_memo, parents),),
844
            random_id=random_id)
845
        return digest, text_length, content
846
847
    def annotate(self, key):
848
        """See VersionedFiles.annotate."""
849
        return self._factory.annotate(self, key)
850
851
    def check(self, progress_bar=None):
852
        """See VersionedFiles.check()."""
853
        # This doesn't actually test extraction of everything, but that will
854
        # impact 'bzr check' substantially, and needs to be integrated with
855
        # care. However, it does check for the obvious problem of a delta with
856
        # no basis.
3517.4.14 by Martin Pool
KnitVersionedFiles.check should just check its own keys then recurse into fallbacks
857
        keys = self._index.keys()
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
858
        parent_map = self.get_parent_map(keys)
859
        for key in keys:
860
            if self._index.get_method(key) != 'fulltext':
861
                compression_parent = parent_map[key][0]
862
                if compression_parent not in parent_map:
863
                    raise errors.KnitCorrupt(self,
864
                        "Missing basis parent %s for %s" % (
865
                        compression_parent, key))
3517.4.14 by Martin Pool
KnitVersionedFiles.check should just check its own keys then recurse into fallbacks
866
        for fallback_vfs in self._fallback_vfs:
867
            fallback_vfs.check()
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
868
869
    def _check_add(self, key, lines, random_id, check_content):
870
        """check that version_id and lines are safe to add."""
3350.6.10 by Martin Pool
VersionedFiles review cleanups
871
        version_id = key[-1]
872
        if contains_whitespace(version_id):
3517.3.1 by Andrew Bennetts
Fix error in error path.
873
            raise InvalidRevisionId(version_id, self)
3350.6.10 by Martin Pool
VersionedFiles review cleanups
874
        self.check_not_reserved_id(version_id)
3350.6.11 by Martin Pool
Review cleanups and documentation from Robert's mail on 2080618
875
        # TODO: If random_id==False and the key is already present, we should
876
        # probably check that the existing content is identical to what is
877
        # being inserted, and otherwise raise an exception.  This would make
878
        # the bundle code simpler.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
879
        if check_content:
880
            self._check_lines_not_unicode(lines)
881
            self._check_lines_are_lines(lines)
882
883
    def _check_header(self, key, line):
884
        rec = self._split_header(line)
885
        self._check_header_version(rec, key[-1])
886
        return rec
887
888
    def _check_header_version(self, rec, version_id):
889
        """Checks the header version on original format knit records.
890
        
891
        These have the last component of the key embedded in the record.
892
        """
893
        if rec[1] != version_id:
894
            raise KnitCorrupt(self,
895
                'unexpected version, wanted %r, got %r' % (version_id, rec[1]))
896
897
    def _check_should_delta(self, parent):
2147.1.1 by John Arbash Meinel
Factor the common knit delta selection into a helper func, and allow the fulltext to be chosen based on cumulative delta size
898
        """Iterate back through the parent listing, looking for a fulltext.
899
900
        This is used when we want to decide whether to add a delta or a new
901
        fulltext. It searches for _max_delta_chain parents. When it finds a
902
        fulltext parent, it sees if the total size of the deltas leading up to
903
        it is large enough to indicate that we want a new full text anyway.
904
905
        Return True if we should create a new delta, False if we should use a
906
        full text.
907
        """
908
        delta_size = 0
909
        fulltext_size = None
2147.1.2 by John Arbash Meinel
Simplify the knit max-chain detection code.
910
        for count in xrange(self._max_delta_chain):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
911
            # XXX: Collapse these two queries:
3350.8.9 by Robert Collins
define behaviour for add_lines with stacked storage.
912
            try:
3582.1.14 by Martin Pool
Clearer comments about KnitVersionedFile stacking
913
                # Note that this only looks in the index of this particular
914
                # KnitVersionedFiles, not in the fallbacks.  This ensures that
915
                # we won't store a delta spanning physical repository
916
                # boundaries.
3350.8.9 by Robert Collins
define behaviour for add_lines with stacked storage.
917
                method = self._index.get_method(parent)
918
            except RevisionNotPresent:
919
                # Some basis is not locally present: always delta
920
                return False
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
921
            index, pos, size = self._index.get_position(parent)
2147.1.1 by John Arbash Meinel
Factor the common knit delta selection into a helper func, and allow the fulltext to be chosen based on cumulative delta size
922
            if method == 'fulltext':
923
                fulltext_size = size
924
                break
925
            delta_size += size
3350.6.11 by Martin Pool
Review cleanups and documentation from Robert's mail on 2080618
926
            # We don't explicitly check for presence because this is in an
927
            # inner loop, and if it's missing it'll fail anyhow.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
928
            # TODO: This should be asking for compression parent, not graph
929
            # parent.
930
            parent = self._index.get_parent_map([parent])[parent][0]
2147.1.2 by John Arbash Meinel
Simplify the knit max-chain detection code.
931
        else:
932
            # We couldn't find a fulltext, so we must create a new one
2147.1.1 by John Arbash Meinel
Factor the common knit delta selection into a helper func, and allow the fulltext to be chosen based on cumulative delta size
933
            return False
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
934
        # Simple heuristic - if the total I/O wold be greater as a delta than
935
        # the originally installed fulltext, we create a new fulltext.
2147.1.2 by John Arbash Meinel
Simplify the knit max-chain detection code.
936
        return fulltext_size > delta_size
2147.1.1 by John Arbash Meinel
Factor the common knit delta selection into a helper func, and allow the fulltext to be chosen based on cumulative delta size
937
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
938
    def _build_details_to_components(self, build_details):
939
        """Convert a build_details tuple to a position tuple."""
940
        # record_details, access_memo, compression_parent
941
        return build_details[3], build_details[0], build_details[1]
942
3350.6.10 by Martin Pool
VersionedFiles review cleanups
943
    def _get_components_positions(self, keys, allow_missing=False):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
944
        """Produce a map of position data for the components of keys.
945
946
        This data is intended to be used for retrieving the knit records.
947
948
        A dict of key to (record_details, index_memo, next, parents) is
949
        returned.
950
        method is the way referenced data should be applied.
951
        index_memo is the handle to pass to the data access to actually get the
952
            data
953
        next is the build-parent of the version, or None for fulltexts.
954
        parents is the version_ids of the parents of this version
955
3350.6.10 by Martin Pool
VersionedFiles review cleanups
956
        :param allow_missing: If True do not raise an error on a missing component,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
957
            just ignore it.
958
        """
959
        component_data = {}
960
        pending_components = keys
961
        while pending_components:
962
            build_details = self._index.get_build_details(pending_components)
963
            current_components = set(pending_components)
964
            pending_components = set()
965
            for key, details in build_details.iteritems():
966
                (index_memo, compression_parent, parents,
967
                 record_details) = details
968
                method = record_details[0]
969
                if compression_parent is not None:
970
                    pending_components.add(compression_parent)
971
                component_data[key] = self._build_details_to_components(details)
972
            missing = current_components.difference(build_details)
3350.6.10 by Martin Pool
VersionedFiles review cleanups
973
            if missing and not allow_missing:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
974
                raise errors.RevisionNotPresent(missing.pop(), self)
975
        return component_data
976
       
977
    def _get_content(self, key, parent_texts={}):
978
        """Returns a content object that makes up the specified
979
        version."""
980
        cached_version = parent_texts.get(key, None)
981
        if cached_version is not None:
982
            # Ensure the cache dict is valid.
983
            if not self.get_parent_map([key]):
984
                raise RevisionNotPresent(key, self)
985
            return cached_version
986
        text_map, contents_map = self._get_content_maps([key])
987
        return contents_map[key]
988
3350.8.7 by Robert Collins
get_record_stream for fulltexts working (but note extreme memory use!).
989
    def _get_content_maps(self, keys, nonlocal_keys=None):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
990
        """Produce maps of text and KnitContents
991
        
3350.8.7 by Robert Collins
get_record_stream for fulltexts working (but note extreme memory use!).
992
        :param keys: The keys to produce content maps for.
993
        :param nonlocal_keys: An iterable of keys(possibly intersecting keys)
994
            which are known to not be in this knit, but rather in one of the
995
            fallback knits.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
996
        :return: (text_map, content_map) where text_map contains the texts for
3350.6.10 by Martin Pool
VersionedFiles review cleanups
997
            the requested versions and content_map contains the KnitContents.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
998
        """
999
        # FUTURE: This function could be improved for the 'extract many' case
1000
        # by tracking each component and only doing the copy when the number of
1001
        # children than need to apply delta's to it is > 1 or it is part of the
1002
        # final output.
1003
        keys = list(keys)
1004
        multiple_versions = len(keys) != 1
3350.8.7 by Robert Collins
get_record_stream for fulltexts working (but note extreme memory use!).
1005
        record_map = self._get_record_map(keys, allow_missing=True)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1006
1007
        text_map = {}
1008
        content_map = {}
1009
        final_content = {}
3350.8.7 by Robert Collins
get_record_stream for fulltexts working (but note extreme memory use!).
1010
        if nonlocal_keys is None:
1011
            nonlocal_keys = set()
1012
        else:
1013
            nonlocal_keys = frozenset(nonlocal_keys)
1014
        missing_keys = set(nonlocal_keys)
1015
        for source in self._fallback_vfs:
1016
            if not missing_keys:
1017
                break
1018
            for record in source.get_record_stream(missing_keys,
1019
                'unordered', True):
1020
                if record.storage_kind == 'absent':
1021
                    continue
1022
                missing_keys.remove(record.key)
1023
                lines = split_lines(record.get_bytes_as('fulltext'))
1024
                text_map[record.key] = lines
3350.8.10 by Robert Collins
Stacked insert_record_stream.
1025
                content_map[record.key] = PlainKnitContent(lines, record.key)
1026
                if record.key in keys:
1027
                    final_content[record.key] = content_map[record.key]
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1028
        for key in keys:
3350.8.7 by Robert Collins
get_record_stream for fulltexts working (but note extreme memory use!).
1029
            if key in nonlocal_keys:
1030
                # already handled
1031
                continue
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1032
            components = []
1033
            cursor = key
1034
            while cursor is not None:
3350.8.10 by Robert Collins
Stacked insert_record_stream.
1035
                try:
1036
                    record, record_details, digest, next = record_map[cursor]
1037
                except KeyError:
1038
                    raise RevisionNotPresent(cursor, self)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1039
                components.append((cursor, record, record_details, digest))
3350.8.10 by Robert Collins
Stacked insert_record_stream.
1040
                cursor = next
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1041
                if cursor in content_map:
3350.8.10 by Robert Collins
Stacked insert_record_stream.
1042
                    # no need to plan further back
1043
                    components.append((cursor, None, None, None))
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1044
                    break
1045
1046
            content = None
1047
            for (component_id, record, record_details,
1048
                 digest) in reversed(components):
1049
                if component_id in content_map:
1050
                    content = content_map[component_id]
1051
                else:
1052
                    content, delta = self._factory.parse_record(key[-1],
1053
                        record, record_details, content,
1054
                        copy_base_content=multiple_versions)
1055
                    if multiple_versions:
1056
                        content_map[component_id] = content
1057
1058
            final_content[key] = content
1059
1060
            # digest here is the digest from the last applied component.
1061
            text = content.text()
1062
            actual_sha = sha_strings(text)
1063
            if actual_sha != digest:
3787.1.1 by Robert Collins
Embed the failed text in sha1 knit errors.
1064
                raise SHA1KnitCorrupt(self, actual_sha, digest, key, text)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1065
            text_map[key] = text
1066
        return text_map, final_content
1067
1068
    def get_parent_map(self, keys):
3517.4.17 by Martin Pool
Redo base Repository.get_parent_map to use .revisions graph
1069
        """Get a map of the graph parents of keys.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1070
1071
        :param keys: The keys to look up parents for.
1072
        :return: A mapping from keys to parents. Absent keys are absent from
1073
            the mapping.
1074
        """
3350.8.14 by Robert Collins
Review feedback.
1075
        return self._get_parent_map_with_sources(keys)[0]
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1076
3350.8.14 by Robert Collins
Review feedback.
1077
    def _get_parent_map_with_sources(self, keys):
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1078
        """Get a map of the parents of keys.
1079
1080
        :param keys: The keys to look up parents for.
1081
        :return: A tuple. The first element is a mapping from keys to parents.
1082
            Absent keys are absent from the mapping. The second element is a
1083
            list with the locations each key was found in. The first element
1084
            is the in-this-knit parents, the second the first fallback source,
1085
            and so on.
1086
        """
3350.8.2 by Robert Collins
stacked get_parent_map.
1087
        result = {}
1088
        sources = [self._index] + self._fallback_vfs
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1089
        source_results = []
3350.8.2 by Robert Collins
stacked get_parent_map.
1090
        missing = set(keys)
1091
        for source in sources:
1092
            if not missing:
1093
                break
1094
            new_result = source.get_parent_map(missing)
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1095
            source_results.append(new_result)
3350.8.2 by Robert Collins
stacked get_parent_map.
1096
            result.update(new_result)
1097
            missing.difference_update(set(new_result))
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1098
        return result, source_results
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1099
3350.8.3 by Robert Collins
VF.get_sha1s needed changing to be stackable.
1100
    def _get_record_map(self, keys, allow_missing=False):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1101
        """Produce a dictionary of knit records.
1102
        
1103
        :return: {key:(record, record_details, digest, next)}
1104
            record
1105
                data returned from read_records
1106
            record_details
1107
                opaque information to pass to parse_record
1108
            digest
1109
                SHA1 digest of the full text after all steps are done
1110
            next
1111
                build-parent of the version, i.e. the leftmost ancestor.
1112
                Will be None if the record is not a delta.
3350.8.3 by Robert Collins
VF.get_sha1s needed changing to be stackable.
1113
        :param keys: The keys to build a map for
1114
        :param allow_missing: If some records are missing, rather than 
1115
            error, just return the data that could be generated.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1116
        """
3789.2.11 by John Arbash Meinel
KnitVersionedFile.get_record_stream now retries *and* fails correctly.
1117
        # This retries the whole request if anything fails. Potentially we
1118
        # could be a bit more selective. We could track the keys whose records
1119
        # we have successfully found, and then only request the new records
1120
        # from there. However, _get_components_positions grabs the whole build
1121
        # chain, which means we'll likely try to grab the same records again
1122
        # anyway. Also, can the build chains change as part of a pack
1123
        # operation? We wouldn't want to end up with a broken chain.
3789.2.10 by John Arbash Meinel
The first function for KnitVersionedFiles can now retry on request.
1124
        while True:
1125
            try:
1126
                position_map = self._get_components_positions(keys,
1127
                    allow_missing=allow_missing)
3789.2.11 by John Arbash Meinel
KnitVersionedFile.get_record_stream now retries *and* fails correctly.
1128
                # key = component_id, r = record_details, i_m = index_memo,
1129
                # n = next
3789.2.10 by John Arbash Meinel
The first function for KnitVersionedFiles can now retry on request.
1130
                records = [(key, i_m) for key, (r, i_m, n)
3789.2.11 by John Arbash Meinel
KnitVersionedFile.get_record_stream now retries *and* fails correctly.
1131
                                       in position_map.iteritems()]
3789.2.10 by John Arbash Meinel
The first function for KnitVersionedFiles can now retry on request.
1132
                record_map = {}
3789.2.11 by John Arbash Meinel
KnitVersionedFile.get_record_stream now retries *and* fails correctly.
1133
                for key, record, digest in self._read_records_iter(records):
3789.2.10 by John Arbash Meinel
The first function for KnitVersionedFiles can now retry on request.
1134
                    (record_details, index_memo, next) = position_map[key]
1135
                    record_map[key] = record, record_details, digest, next
1136
                return record_map
1137
            except errors.RetryWithNewPacks, e:
1138
                self._access.reload_or_raise(e)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1139
3763.4.1 by John Arbash Meinel
Possible fix for bug #269456.
1140
    def _split_by_prefix(self, keys):
1141
        """For the given keys, split them up based on their prefix.
1142
1143
        To keep memory pressure somewhat under control, split the
1144
        requests back into per-file-id requests, otherwise "bzr co"
1145
        extracts the full tree into memory before writing it to disk.
1146
        This should be revisited if _get_content_maps() can ever cross
1147
        file-id boundaries.
1148
1149
        :param keys: An iterable of key tuples
1150
        :return: A dict of {prefix: [key_list]}
1151
        """
1152
        split_by_prefix = {}
1153
        for key in keys:
1154
            if len(key) == 1:
1155
                split_by_prefix.setdefault('', []).append(key)
1156
            else:
1157
                split_by_prefix.setdefault(key[0], []).append(key)
1158
        return split_by_prefix
1159
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1160
    def get_record_stream(self, keys, ordering, include_delta_closure):
1161
        """Get a stream of records for keys.
1162
1163
        :param keys: The keys to include.
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
1164
        :param ordering: Either 'unordered' or 'topological'. A topologically
1165
            sorted stream has compression parents strictly before their
1166
            children.
1167
        :param include_delta_closure: If True then the closure across any
1168
            compression parents will be included (in the opaque data).
1169
        :return: An iterator of ContentFactory objects, each of which is only
1170
            valid until the iterator is advanced.
1171
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1172
        # keys might be a generator
1173
        keys = set(keys)
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1174
        if not keys:
1175
            return
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1176
        if not self._index.has_graph:
1177
            # Cannot topological order when no graph has been stored.
1178
            ordering = 'unordered'
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
1179
1180
        remaining_keys = keys
1181
        while True:
1182
            try:
1183
                keys = set(remaining_keys)
1184
                for content_factory in self._get_remaining_record_stream(keys,
1185
                                            ordering, include_delta_closure):
1186
                    remaining_keys.discard(content_factory.key)
1187
                    yield content_factory
1188
                return
1189
            except errors.RetryWithNewPacks, e:
3789.2.11 by John Arbash Meinel
KnitVersionedFile.get_record_stream now retries *and* fails correctly.
1190
                self._access.reload_or_raise(e)
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
1191
1192
    def _get_remaining_record_stream(self, keys, ordering,
1193
                                     include_delta_closure):
3789.2.4 by John Arbash Meinel
Add a multiple-record test, though it isn't quite what we want for the readv tests.
1194
        """This function is the 'retry' portion for get_record_stream."""
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
1195
        if include_delta_closure:
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1196
            positions = self._get_components_positions(keys, allow_missing=True)
3350.3.3 by Robert Collins
Functional get_record_stream interface tests covering full interface.
1197
        else:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1198
            build_details = self._index.get_build_details(keys)
3350.6.11 by Martin Pool
Review cleanups and documentation from Robert's mail on 2080618
1199
            # map from key to
1200
            # (record_details, access_memo, compression_parent_key)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1201
            positions = dict((key, self._build_details_to_components(details))
1202
                for key, details in build_details.iteritems())
1203
        absent_keys = keys.difference(set(positions))
1204
        # There may be more absent keys : if we're missing the basis component
1205
        # and are trying to include the delta closure.
1206
        if include_delta_closure:
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1207
            needed_from_fallback = set()
3350.6.11 by Martin Pool
Review cleanups and documentation from Robert's mail on 2080618
1208
            # Build up reconstructable_keys dict.  key:True in this dict means
1209
            # the key can be reconstructed.
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1210
            reconstructable_keys = {}
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1211
            for key in keys:
1212
                # the delta chain
1213
                try:
1214
                    chain = [key, positions[key][2]]
1215
                except KeyError:
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1216
                    needed_from_fallback.add(key)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1217
                    continue
1218
                result = True
1219
                while chain[-1] is not None:
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1220
                    if chain[-1] in reconstructable_keys:
1221
                        result = reconstructable_keys[chain[-1]]
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1222
                        break
1223
                    else:
1224
                        try:
1225
                            chain.append(positions[chain[-1]][2])
1226
                        except KeyError:
1227
                            # missing basis component
3350.8.10 by Robert Collins
Stacked insert_record_stream.
1228
                            needed_from_fallback.add(chain[-1])
1229
                            result = True
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1230
                            break
1231
                for chain_key in chain[:-1]:
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1232
                    reconstructable_keys[chain_key] = result
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1233
                if not result:
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1234
                    needed_from_fallback.add(key)
1235
        # Double index lookups here : need a unified api ?
3350.8.14 by Robert Collins
Review feedback.
1236
        global_map, parent_maps = self._get_parent_map_with_sources(keys)
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1237
        if ordering == 'topological':
1238
            # Global topological sort
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
1239
            present_keys = tsort.topo_sort(global_map)
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1240
            # Now group by source:
1241
            source_keys = []
1242
            current_source = None
1243
            for key in present_keys:
1244
                for parent_map in parent_maps:
1245
                    if key in parent_map:
1246
                        key_source = parent_map
1247
                        break
1248
                if current_source is not key_source:
1249
                    source_keys.append((key_source, []))
1250
                    current_source = key_source
1251
                source_keys[-1][1].append(key)
1252
        else:
3606.7.7 by John Arbash Meinel
Add tests for the fetching behavior.
1253
            if ordering != 'unordered':
1254
                raise AssertionError('valid values for ordering are:'
1255
                    ' "unordered" or "topological" not: %r'
1256
                    % (ordering,))
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1257
            # Just group by source; remote sources first.
1258
            present_keys = []
1259
            source_keys = []
1260
            for parent_map in reversed(parent_maps):
1261
                source_keys.append((parent_map, []))
1262
                for key in parent_map:
1263
                    present_keys.append(key)
1264
                    source_keys[-1][1].append(key)
1265
        absent_keys = keys - set(global_map)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1266
        for key in absent_keys:
1267
            yield AbsentContentFactory(key)
1268
        # restrict our view to the keys we can answer.
1269
        # XXX: Memory: TODO: batch data here to cap buffered data at (say) 1MB.
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1270
        # XXX: At that point we need to consider the impact of double reads by
1271
        # utilising components multiple times.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1272
        if include_delta_closure:
1273
            # XXX: get_content_maps performs its own index queries; allow state
1274
            # to be passed in.
3763.4.1 by John Arbash Meinel
Possible fix for bug #269456.
1275
            non_local_keys = needed_from_fallback - absent_keys
1276
            prefix_split_keys = self._split_by_prefix(present_keys)
1277
            prefix_split_non_local_keys = self._split_by_prefix(non_local_keys)
1278
            for prefix, keys in prefix_split_keys.iteritems():
1279
                non_local = prefix_split_non_local_keys.get(prefix, [])
1280
                non_local = set(non_local)
1281
                text_map, _ = self._get_content_maps(keys, non_local)
1282
                for key in keys:
1283
                    lines = text_map.pop(key)
1284
                    text = ''.join(lines)
1285
                    yield FulltextContentFactory(key, global_map[key], None,
1286
                                                 text)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1287
        else:
3350.8.6 by Robert Collins
get_record_stream stacking for delta access.
1288
            for source, keys in source_keys:
1289
                if source is parent_maps[0]:
1290
                    # this KnitVersionedFiles
1291
                    records = [(key, positions[key][1]) for key in keys]
1292
                    for key, raw_data, sha1 in self._read_records_iter_raw(records):
1293
                        (record_details, index_memo, _) = positions[key]
1294
                        yield KnitContentFactory(key, global_map[key],
1295
                            record_details, sha1, raw_data, self._factory.annotated, None)
1296
                else:
1297
                    vf = self._fallback_vfs[parent_maps.index(source) - 1]
1298
                    for record in vf.get_record_stream(keys, ordering,
1299
                        include_delta_closure):
1300
                        yield record
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1301
1302
    def get_sha1s(self, keys):
1303
        """See VersionedFiles.get_sha1s()."""
3350.8.3 by Robert Collins
VF.get_sha1s needed changing to be stackable.
1304
        missing = set(keys)
1305
        record_map = self._get_record_map(missing, allow_missing=True)
1306
        result = {}
1307
        for key, details in record_map.iteritems():
1308
            if key not in missing:
1309
                continue
1310
            # record entry 2 is the 'digest'.
1311
            result[key] = details[2]
1312
        missing.difference_update(set(result))
1313
        for source in self._fallback_vfs:
1314
            if not missing:
1315
                break
1316
            new_result = source.get_sha1s(missing)
1317
            result.update(new_result)
1318
            missing.difference_update(set(new_result))
1319
        return result
3052.2.2 by Robert Collins
* Operations pulling data from a smart server where the underlying
1320
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1321
    def insert_record_stream(self, stream):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1322
        """Insert a record stream into this container.
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1323
1324
        :param stream: A stream of records to insert. 
1325
        :return: None
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1326
        :seealso VersionedFiles.get_record_stream:
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1327
        """
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1328
        def get_adapter(adapter_key):
1329
            try:
1330
                return adapters[adapter_key]
1331
            except KeyError:
1332
                adapter_factory = adapter_registry.get(adapter_key)
1333
                adapter = adapter_factory(self)
1334
                adapters[adapter_key] = adapter
1335
                return adapter
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1336
        if self._factory.annotated:
3350.3.11 by Robert Collins
Test inserting a stream that overlaps the current content of a knit does not error.
1337
            # self is annotated, we need annotated knits to use directly.
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1338
            annotated = "annotated-"
3350.3.11 by Robert Collins
Test inserting a stream that overlaps the current content of a knit does not error.
1339
            convertibles = []
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1340
        else:
3350.3.11 by Robert Collins
Test inserting a stream that overlaps the current content of a knit does not error.
1341
            # self is not annotated, but we can strip annotations cheaply.
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1342
            annotated = ""
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1343
            convertibles = set(["knit-annotated-ft-gz"])
1344
            if self._max_delta_chain:
1345
                convertibles.add("knit-annotated-delta-gz")
3350.3.22 by Robert Collins
Review feedback.
1346
        # The set of types we can cheaply adapt without needing basis texts.
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1347
        native_types = set()
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1348
        if self._max_delta_chain:
1349
            native_types.add("knit-%sdelta-gz" % annotated)
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1350
        native_types.add("knit-%sft-gz" % annotated)
3350.3.11 by Robert Collins
Test inserting a stream that overlaps the current content of a knit does not error.
1351
        knit_types = native_types.union(convertibles)
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1352
        adapters = {}
3350.3.22 by Robert Collins
Review feedback.
1353
        # Buffer all index entries that we can't add immediately because their
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1354
        # basis parent is missing. We don't buffer all because generating
1355
        # annotations may require access to some of the new records. However we
1356
        # can't generate annotations from new deltas until their basis parent
1357
        # is present anyway, so we get away with not needing an index that
3350.3.22 by Robert Collins
Review feedback.
1358
        # includes the new keys.
3830.3.15 by Martin Pool
Check against all parents when deciding whether to store a fulltext in a stacked repository
1359
        #
1360
        # See <http://launchpad.net/bugs/300177> about ordering of compression
1361
        # parents in the records - to be conservative, we insist that all
1362
        # parents must be present to avoid expanding to a fulltext.
1363
        #
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1364
        # key = basis_parent, value = index entry to add
1365
        buffered_index_entries = {}
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1366
        for record in stream:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1367
            parents = record.parents
3350.3.15 by Robert Collins
Update the insert_record_stream contract to error if an absent record is provided.
1368
            # Raise an error when a record is missing.
1369
            if record.storage_kind == 'absent':
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1370
                raise RevisionNotPresent([record.key], self)
3830.3.15 by Martin Pool
Check against all parents when deciding whether to store a fulltext in a stacked repository
1371
            elif ((record.storage_kind in knit_types)
3830.3.9 by Martin Pool
Simplify kvf insert_record_stream; add has_key shorthand methods; update stacking effort tests
1372
                  and (not parents
3830.3.18 by Martin Pool
Faster expression evaluation order
1373
                       or not self._fallback_vfs
3830.3.15 by Martin Pool
Check against all parents when deciding whether to store a fulltext in a stacked repository
1374
                       or not self._index.missing_keys(parents)
1375
                       or self.missing_keys(parents))):
3830.3.9 by Martin Pool
Simplify kvf insert_record_stream; add has_key shorthand methods; update stacking effort tests
1376
                # we can insert the knit record literally if either it has no
1377
                # compression parent OR we already have its basis in this kvf
1378
                # OR the basis is not present even in the fallbacks.  In the
1379
                # last case it will either turn up later in the stream and all
1380
                # will be well, or it won't turn up at all and we'll raise an
1381
                # error at the end.
3830.3.13 by Martin Pool
review cleanups to insert_record_stream
1382
                #
1383
                # TODO: self.has_key is somewhat redundant with
1384
                # self._index.has_key; we really want something that directly
1385
                # asks if it's only present in the fallbacks. -- mbp 20081119
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1386
                if record.storage_kind not in native_types:
1387
                    try:
1388
                        adapter_key = (record.storage_kind, "knit-delta-gz")
1389
                        adapter = get_adapter(adapter_key)
1390
                    except KeyError:
1391
                        adapter_key = (record.storage_kind, "knit-ft-gz")
1392
                        adapter = get_adapter(adapter_key)
1393
                    bytes = adapter.get_bytes(
1394
                        record, record.get_bytes_as(record.storage_kind))
1395
                else:
1396
                    bytes = record.get_bytes_as(record.storage_kind)
1397
                options = [record._build_details[0]]
1398
                if record._build_details[1]:
1399
                    options.append('no-eol')
3350.3.11 by Robert Collins
Test inserting a stream that overlaps the current content of a knit does not error.
1400
                # Just blat it across.
1401
                # Note: This does end up adding data on duplicate keys. As
1402
                # modern repositories use atomic insertions this should not
1403
                # lead to excessive growth in the event of interrupted fetches.
1404
                # 'knit' repositories may suffer excessive growth, but as a
1405
                # deprecated format this is tolerable. It can be fixed if
1406
                # needed by in the kndx index support raising on a duplicate
1407
                # add with identical parents and options.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1408
                access_memo = self._access.add_raw_records(
1409
                    [(record.key, len(bytes))], bytes)[0]
1410
                index_entry = (record.key, options, access_memo, parents)
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1411
                buffered = False
1412
                if 'fulltext' not in options:
3830.3.24 by John Arbash Meinel
We don't require all parents to be present, just the compression parent.
1413
                    # Not a fulltext, so we need to make sure the compression
1414
                    # parent will also be present.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1415
                    # Note that pack backed knits don't need to buffer here
1416
                    # because they buffer all writes to the transaction level,
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1417
                    # but we don't expose that difference at the index level. If
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1418
                    # the query here has sufficient cost to show up in
1419
                    # profiling we should do that.
3830.3.24 by John Arbash Meinel
We don't require all parents to be present, just the compression parent.
1420
                    #
3830.3.7 by Martin Pool
KnitVersionedFiles.insert_record_stream checks that compression parents are in the same kvf, not in a fallback
1421
                    # They're required to be physically in this
1422
                    # KnitVersionedFiles, not in a fallback.
3830.3.24 by John Arbash Meinel
We don't require all parents to be present, just the compression parent.
1423
                    compression_parent = parents[0]
1424
                    if self.missing_keys([compression_parent]):
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1425
                        pending = buffered_index_entries.setdefault(
3830.3.24 by John Arbash Meinel
We don't require all parents to be present, just the compression parent.
1426
                            compression_parent, [])
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1427
                        pending.append(index_entry)
1428
                        buffered = True
1429
                if not buffered:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1430
                    self._index.add_records([index_entry])
3830.3.9 by Martin Pool
Simplify kvf insert_record_stream; add has_key shorthand methods; update stacking effort tests
1431
            elif record.storage_kind == 'fulltext':
1432
                self.add_lines(record.key, parents,
1433
                    split_lines(record.get_bytes_as('fulltext')))
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1434
            else:
3830.3.9 by Martin Pool
Simplify kvf insert_record_stream; add has_key shorthand methods; update stacking effort tests
1435
                # Not a fulltext, and not suitable for direct insertion as a
1436
                # delta, either because it's not the right format, or because
1437
                # it depends on a base only present in the fallback kvfs.
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1438
                adapter_key = record.storage_kind, 'fulltext'
3350.3.9 by Robert Collins
Avoid full text reconstruction when transferring knit to knit via record streams.
1439
                adapter = get_adapter(adapter_key)
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1440
                lines = split_lines(adapter.get_bytes(
1441
                    record, record.get_bytes_as(record.storage_kind)))
3350.3.11 by Robert Collins
Test inserting a stream that overlaps the current content of a knit does not error.
1442
                try:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1443
                    self.add_lines(record.key, parents, lines)
3350.3.11 by Robert Collins
Test inserting a stream that overlaps the current content of a knit does not error.
1444
                except errors.RevisionAlreadyPresent:
1445
                    pass
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1446
            # Add any records whose basis parent is now available.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1447
            added_keys = [record.key]
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1448
            while added_keys:
1449
                key = added_keys.pop(0)
1450
                if key in buffered_index_entries:
1451
                    index_entries = buffered_index_entries[key]
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1452
                    self._index.add_records(index_entries)
3350.3.17 by Robert Collins
Prevent corrupt knits being created when a stream is interrupted with basis parents not present.
1453
                    added_keys.extend(
1454
                        [index_entry[0] for index_entry in index_entries])
1455
                    del buffered_index_entries[key]
1456
        # If there were any deltas which had a missing basis parent, error.
1457
        if buffered_index_entries:
3830.3.7 by Martin Pool
KnitVersionedFiles.insert_record_stream checks that compression parents are in the same kvf, not in a fallback
1458
            from pprint import pformat
1459
            raise errors.BzrCheckError(
1460
                "record_stream refers to compression parents not in %r:\n%s"
1461
                % (self, pformat(sorted(buffered_index_entries.keys()))))
3350.3.8 by Robert Collins
Basic stream insertion, no fast path yet for knit to knit.
1462
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1463
    def iter_lines_added_or_present_in_keys(self, keys, pb=None):
1464
        """Iterate over the lines in the versioned files from keys.
1465
1466
        This may return lines from other keys. Each item the returned
1467
        iterator yields is a tuple of a line and a text version that that line
1468
        is present in (not introduced in).
1469
1470
        Ordering of results is in whatever order is most suitable for the
1471
        underlying storage format.
1472
1473
        If a progress bar is supplied, it may be used to indicate progress.
1474
        The caller is responsible for cleaning up progress bars (because this
1475
        is an iterator).
1476
1477
        NOTES:
3830.3.17 by Martin Pool
Don't assume versions being unmentioned by iter_lines_added_or_changed implies the versions aren't present
1478
         * Lines are normalised by the underlying store: they will all have \\n
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1479
           terminators.
1480
         * Lines are returned in arbitrary order.
3830.3.17 by Martin Pool
Don't assume versions being unmentioned by iter_lines_added_or_changed implies the versions aren't present
1481
         * If a requested key did not change any lines (or didn't have any
1482
           lines), it may not be mentioned at all in the result.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1483
1484
        :return: An iterator over (line, key).
1485
        """
1486
        if pb is None:
1487
            pb = progress.DummyProgress()
1488
        keys = set(keys)
3350.8.5 by Robert Collins
Iter_lines_added_or_present_in_keys stacks.
1489
        total = len(keys)
3789.2.12 by John Arbash Meinel
iter_lines_added_or_present now retries.
1490
        done = False
1491
        while not done:
1492
            try:
1493
                # we don't care about inclusions, the caller cares.
1494
                # but we need to setup a list of records to visit.
1495
                # we need key, position, length
1496
                key_records = []
1497
                build_details = self._index.get_build_details(keys)
1498
                for key, details in build_details.iteritems():
1499
                    if key in keys:
1500
                        key_records.append((key, details[0]))
1501
                records_iter = enumerate(self._read_records_iter(key_records))
1502
                for (key_idx, (key, data, sha_value)) in records_iter:
1503
                    pb.update('Walking content.', key_idx, total)
1504
                    compression_parent = build_details[key][1]
1505
                    if compression_parent is None:
1506
                        # fulltext
1507
                        line_iterator = self._factory.get_fulltext_content(data)
1508
                    else:
1509
                        # Delta 
1510
                        line_iterator = self._factory.get_linedelta_content(data)
1511
                    # Now that we are yielding the data for this key, remove it
1512
                    # from the list
1513
                    keys.remove(key)
1514
                    # XXX: It might be more efficient to yield (key,
1515
                    # line_iterator) in the future. However for now, this is a
1516
                    # simpler change to integrate into the rest of the
1517
                    # codebase. RBC 20071110
1518
                    for line in line_iterator:
1519
                        yield line, key
1520
                done = True
1521
            except errors.RetryWithNewPacks, e:
1522
                self._access.reload_or_raise(e)
3830.3.17 by Martin Pool
Don't assume versions being unmentioned by iter_lines_added_or_changed implies the versions aren't present
1523
        # If there are still keys we've not yet found, we look in the fallback
1524
        # vfs, and hope to find them there.  Note that if the keys are found
1525
        # but had no changes or no content, the fallback may not return
1526
        # anything.  
1527
        if keys and not self._fallback_vfs:
1528
            # XXX: strictly the second parameter is meant to be the file id
1529
            # but it's not easily accessible here.
1530
            raise RevisionNotPresent(keys, repr(self))
3350.8.5 by Robert Collins
Iter_lines_added_or_present_in_keys stacks.
1531
        for source in self._fallback_vfs:
1532
            if not keys:
1533
                break
1534
            source_keys = set()
1535
            for line, key in source.iter_lines_added_or_present_in_keys(keys):
1536
                source_keys.add(key)
1537
                yield line, key
1538
            keys.difference_update(source_keys)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1539
        pb.update('Walking content.', total, total)
1540
1541
    def _make_line_delta(self, delta_seq, new_content):
1542
        """Generate a line delta from delta_seq and new_content."""
1543
        diff_hunks = []
1544
        for op in delta_seq.get_opcodes():
1545
            if op[0] == 'equal':
1546
                continue
1547
            diff_hunks.append((op[1], op[2], op[4]-op[3], new_content._lines[op[3]:op[4]]))
1548
        return diff_hunks
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1549
1596.2.34 by Robert Collins
Optimise knit add to only diff once per parent, not once per parent + once for the delta generation.
1550
    def _merge_annotations(self, content, parents, parent_texts={},
2520.4.140 by Aaron Bentley
Use matching blocks from mpdiff for knit delta creation
1551
                           delta=None, annotated=None,
1552
                           left_matching_blocks=None):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1553
        """Merge annotations for content and generate deltas.
1554
        
1555
        This is done by comparing the annotations based on changes to the text
1556
        and generating a delta on the resulting full texts. If annotations are
1557
        not being created then a simple delta is created.
1596.2.27 by Robert Collins
Note potential improvements in knit adds.
1558
        """
2520.4.146 by Aaron Bentley
Avoid get_matching_blocks for un-annotated text
1559
        if left_matching_blocks is not None:
1560
            delta_seq = diff._PrematchedMatcher(left_matching_blocks)
1561
        else:
1562
            delta_seq = None
1596.2.34 by Robert Collins
Optimise knit add to only diff once per parent, not once per parent + once for the delta generation.
1563
        if annotated:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1564
            for parent_key in parents:
1565
                merge_content = self._get_content(parent_key, parent_texts)
1566
                if (parent_key == parents[0] and delta_seq is not None):
2520.4.146 by Aaron Bentley
Avoid get_matching_blocks for un-annotated text
1567
                    seq = delta_seq
2520.4.140 by Aaron Bentley
Use matching blocks from mpdiff for knit delta creation
1568
                else:
1569
                    seq = patiencediff.PatienceSequenceMatcher(
1570
                        None, merge_content.text(), content.text())
1596.2.34 by Robert Collins
Optimise knit add to only diff once per parent, not once per parent + once for the delta generation.
1571
                for i, j, n in seq.get_matching_blocks():
1572
                    if n == 0:
1573
                        continue
3460.2.1 by Robert Collins
* Inserting a bundle which changes the contents of a file with no trailing
1574
                    # this copies (origin, text) pairs across to the new
1575
                    # content for any line that matches the last-checked
2520.4.146 by Aaron Bentley
Avoid get_matching_blocks for un-annotated text
1576
                    # parent.
1596.2.34 by Robert Collins
Optimise knit add to only diff once per parent, not once per parent + once for the delta generation.
1577
                    content._lines[j:j+n] = merge_content._lines[i:i+n]
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1578
            # XXX: Robert says the following block is a workaround for a
1579
            # now-fixed bug and it can probably be deleted. -- mbp 20080618
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1580
            if content._lines and content._lines[-1][1][-1] != '\n':
1581
                # The copied annotation was from a line without a trailing EOL,
1582
                # reinstate one for the content object, to ensure correct
1583
                # serialization.
1584
                line = content._lines[-1][1] + '\n'
1585
                content._lines[-1] = (content._lines[-1][0], line)
1596.2.36 by Robert Collins
add a get_delta api to versioned_file.
1586
        if delta:
2520.4.146 by Aaron Bentley
Avoid get_matching_blocks for un-annotated text
1587
            if delta_seq is None:
1596.2.36 by Robert Collins
add a get_delta api to versioned_file.
1588
                reference_content = self._get_content(parents[0], parent_texts)
1589
                new_texts = content.text()
1590
                old_texts = reference_content.text()
2104.4.2 by John Arbash Meinel
Small cleanup and NEWS entry about fixing bug #65714
1591
                delta_seq = patiencediff.PatienceSequenceMatcher(
2100.2.1 by wang
Replace python's difflib by patiencediff because the worst case
1592
                                                 None, old_texts, new_texts)
1596.2.36 by Robert Collins
add a get_delta api to versioned_file.
1593
            return self._make_line_delta(delta_seq, content)
1594
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1595
    def _parse_record(self, version_id, data):
1596
        """Parse an original format knit record.
1597
1598
        These have the last element of the key only present in the stored data.
1599
        """
1600
        rec, record_contents = self._parse_record_unchecked(data)
1601
        self._check_header_version(rec, version_id)
1602
        return record_contents, rec[3]
1603
1604
    def _parse_record_header(self, key, raw_data):
1605
        """Parse a record header for consistency.
1606
1607
        :return: the header and the decompressor stream.
1608
                 as (stream, header_record)
1609
        """
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
1610
        df = tuned_gzip.GzipFile(mode='rb', fileobj=StringIO(raw_data))
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1611
        try:
1612
            # Current serialise
1613
            rec = self._check_header(key, df.readline())
1614
        except Exception, e:
1615
            raise KnitCorrupt(self,
1616
                              "While reading {%s} got %s(%s)"
1617
                              % (key, e.__class__.__name__, str(e)))
1618
        return df, rec
1619
1620
    def _parse_record_unchecked(self, data):
1621
        # profiling notes:
1622
        # 4168 calls in 2880 217 internal
1623
        # 4168 calls to _parse_record_header in 2121
1624
        # 4168 calls to readlines in 330
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
1625
        df = tuned_gzip.GzipFile(mode='rb', fileobj=StringIO(data))
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1626
        try:
1627
            record_contents = df.readlines()
1628
        except Exception, e:
1629
            raise KnitCorrupt(self, "Corrupt compressed record %r, got %s(%s)" %
1630
                (data, e.__class__.__name__, str(e)))
1631
        header = record_contents.pop(0)
1632
        rec = self._split_header(header)
1633
        last_line = record_contents.pop()
1634
        if len(record_contents) != int(rec[2]):
1635
            raise KnitCorrupt(self,
1636
                              'incorrect number of lines %s != %s'
1637
                              ' for version {%s} %s'
1638
                              % (len(record_contents), int(rec[2]),
1639
                                 rec[1], record_contents))
1640
        if last_line != 'end %s\n' % rec[1]:
1641
            raise KnitCorrupt(self,
1642
                              'unexpected version end line %r, wanted %r' 
1643
                              % (last_line, rec[1]))
1644
        df.close()
1645
        return rec, record_contents
1646
1647
    def _read_records_iter(self, records):
1648
        """Read text records from data file and yield result.
1649
1650
        The result will be returned in whatever is the fastest to read.
1651
        Not by the order requested. Also, multiple requests for the same
1652
        record will only yield 1 response.
1653
        :param records: A list of (key, access_memo) entries
1654
        :return: Yields (key, contents, digest) in the order
1655
                 read, not the order requested
1656
        """
1657
        if not records:
1658
            return
1659
1660
        # XXX: This smells wrong, IO may not be getting ordered right.
1661
        needed_records = sorted(set(records), key=operator.itemgetter(1))
1662
        if not needed_records:
1663
            return
1664
1665
        # The transport optimizes the fetching as well 
1666
        # (ie, reads continuous ranges.)
1667
        raw_data = self._access.get_raw_records(
1668
            [index_memo for key, index_memo in needed_records])
1669
1670
        for (key, index_memo), data in \
1671
                izip(iter(needed_records), raw_data):
1672
            content, digest = self._parse_record(key[-1], data)
1673
            yield key, content, digest
1674
1675
    def _read_records_iter_raw(self, records):
1676
        """Read text records from data file and yield raw data.
1677
1678
        This unpacks enough of the text record to validate the id is
1679
        as expected but thats all.
1680
1681
        Each item the iterator yields is (key, bytes, sha1_of_full_text).
1682
        """
1683
        # setup an iterator of the external records:
1684
        # uses readv so nice and fast we hope.
1685
        if len(records):
1686
            # grab the disk data needed.
1687
            needed_offsets = [index_memo for key, index_memo
1688
                                           in records]
1689
            raw_records = self._access.get_raw_records(needed_offsets)
1690
1691
        for key, index_memo in records:
1692
            data = raw_records.next()
1693
            # validate the header (note that we can only use the suffix in
1694
            # current knit records).
1695
            df, rec = self._parse_record_header(key, data)
1696
            df.close()
1697
            yield key, data, rec[3]
1698
1699
    def _record_to_data(self, key, digest, lines, dense_lines=None):
1700
        """Convert key, digest, lines into a raw data block.
1701
        
1702
        :param key: The key of the record. Currently keys are always serialised
1703
            using just the trailing component.
1704
        :param dense_lines: The bytes of lines but in a denser form. For
1705
            instance, if lines is a list of 1000 bytestrings each ending in \n,
1706
            dense_lines may be a list with one line in it, containing all the
1707
            1000's lines and their \n's. Using dense_lines if it is already
1708
            known is a win because the string join to create bytes in this
1709
            function spends less time resizing the final string.
1710
        :return: (len, a StringIO instance with the raw data ready to read.)
1711
        """
1712
        # Note: using a string copy here increases memory pressure with e.g.
1713
        # ISO's, but it is about 3 seconds faster on a 1.2Ghz intel machine
1714
        # when doing the initial commit of a mozilla tree. RBC 20070921
1715
        bytes = ''.join(chain(
1716
            ["version %s %d %s\n" % (key[-1],
1717
                                     len(lines),
1718
                                     digest)],
1719
            dense_lines or lines,
1720
            ["end %s\n" % key[-1]]))
1721
        if type(bytes) != str:
1722
            raise AssertionError(
1723
                'data must be plain bytes was %s' % type(bytes))
1724
        if lines and lines[-1][-1] != '\n':
1725
            raise ValueError('corrupt lines value %r' % lines)
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
1726
        compressed_bytes = tuned_gzip.bytes_to_gzip(bytes)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1727
        return len(compressed_bytes), compressed_bytes
1728
1729
    def _split_header(self, line):
1730
        rec = line.split()
1731
        if len(rec) != 4:
1732
            raise KnitCorrupt(self,
1733
                              'unexpected number of elements in record header')
1734
        return rec
1735
1736
    def keys(self):
1737
        """See VersionedFiles.keys."""
1738
        if 'evil' in debug.debug_flags:
1739
            trace.mutter_callsite(2, "keys scales with size of history")
3350.8.4 by Robert Collins
Vf.keys() stacking support.
1740
        sources = [self._index] + self._fallback_vfs
1741
        result = set()
1742
        for source in sources:
1743
            result.update(source.keys())
1744
        return result
1745
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1746
1747
class _KndxIndex(object):
1748
    """Manages knit index files
1749
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1750
    The index is kept in memory and read on startup, to enable
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1751
    fast lookups of revision information.  The cursor of the index
1752
    file is always pointing to the end, making it easy to append
1753
    entries.
1754
1755
    _cache is a cache for fast mapping from version id to a Index
1756
    object.
1757
1758
    _history is a cache for fast mapping from indexes to version ids.
1759
1760
    The index data format is dictionary compressed when it comes to
1761
    parent references; a index entry may only have parents that with a
1762
    lover index number.  As a result, the index is topological sorted.
1563.2.11 by Robert Collins
Consolidate reweave and join as we have no separate usage, make reweave tests apply to all versionedfile implementations and deprecate the old reweave apis.
1763
1764
    Duplicate entries may be written to the index for a single version id
1765
    if this is done then the latter one completely replaces the former:
1766
    this allows updates to correct version and parent information. 
1767
    Note that the two entries may share the delta, and that successive
1768
    annotations and references MUST point to the first entry.
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1769
1770
    The index file on disc contains a header, followed by one line per knit
1771
    record. The same revision can be present in an index file more than once.
1759.2.1 by Jelmer Vernooij
Fix some types (found using aspell).
1772
    The first occurrence gets assigned a sequence number starting from 0. 
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1773
    
1774
    The format of a single line is
1775
    REVISION_ID FLAGS BYTE_OFFSET LENGTH( PARENT_ID|PARENT_SEQUENCE_ID)* :\n
1776
    REVISION_ID is a utf8-encoded revision id
1777
    FLAGS is a comma separated list of flags about the record. Values include 
1778
        no-eol, line-delta, fulltext.
1779
    BYTE_OFFSET is the ascii representation of the byte offset in the data file
1780
        that the the compressed data starts at.
1781
    LENGTH is the ascii representation of the length of the data file.
1782
    PARENT_ID a utf-8 revision id prefixed by a '.' that is a parent of
1783
        REVISION_ID.
1784
    PARENT_SEQUENCE_ID the ascii representation of the sequence number of a
1785
        revision id already in the knit that is a parent of REVISION_ID.
1786
    The ' :' marker is the end of record marker.
1787
    
1788
    partial writes:
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
1789
    when a write is interrupted to the index file, it will result in a line
1790
    that does not end in ' :'. If the ' :' is not present at the end of a line,
1791
    or at the end of the file, then the record that is missing it will be
1792
    ignored by the parser.
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1793
1759.2.1 by Jelmer Vernooij
Fix some types (found using aspell).
1794
    When writing new records to the index file, the data is preceded by '\n'
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1795
    to ensure that records always start on new lines even if the last write was
1796
    interrupted. As a result its normal for the last line in the index to be
1797
    missing a trailing newline. One can be added with no harmful effects.
3350.6.11 by Martin Pool
Review cleanups and documentation from Robert's mail on 2080618
1798
1799
    :ivar _kndx_cache: dict from prefix to the old state of KnitIndex objects,
1800
        where prefix is e.g. the (fileid,) for .texts instances or () for
1801
        constant-mapped things like .revisions, and the old state is
1802
        tuple(history_vector, cache_dict).  This is used to prevent having an
1803
        ABI change with the C extension that reads .kndx files.
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1804
    """
1805
1666.1.6 by Robert Collins
Make knit the default format.
1806
    HEADER = "# bzr knit index 8\n"
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1807
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1808
    def __init__(self, transport, mapper, get_scope, allow_writes, is_locked):
1809
        """Create a _KndxIndex on transport using mapper."""
1810
        self._transport = transport
1811
        self._mapper = mapper
1812
        self._get_scope = get_scope
1813
        self._allow_writes = allow_writes
1814
        self._is_locked = is_locked
1815
        self._reset_cache()
1816
        self.has_graph = True
1817
1818
    def add_records(self, records, random_id=False):
1819
        """Add multiple records to the index.
1820
        
1821
        :param records: a list of tuples:
1822
                         (key, options, access_memo, parents).
1823
        :param random_id: If True the ids being added were randomly generated
1824
            and no check for existence will be performed.
1825
        """
1826
        paths = {}
1827
        for record in records:
1828
            key = record[0]
1829
            prefix = key[:-1]
1830
            path = self._mapper.map(key) + '.kndx'
1831
            path_keys = paths.setdefault(path, (prefix, []))
1832
            path_keys[1].append(record)
1833
        for path in sorted(paths):
1834
            prefix, path_keys = paths[path]
1835
            self._load_prefixes([prefix])
1836
            lines = []
1837
            orig_history = self._kndx_cache[prefix][1][:]
1838
            orig_cache = self._kndx_cache[prefix][0].copy()
1839
1840
            try:
1841
                for key, options, (_, pos, size), parents in path_keys:
1842
                    if parents is None:
1843
                        # kndx indices cannot be parentless.
1844
                        parents = ()
1845
                    line = "\n%s %s %s %s %s :" % (
1846
                        key[-1], ','.join(options), pos, size,
1847
                        self._dictionary_compress(parents))
1848
                    if type(line) != str:
1849
                        raise AssertionError(
1850
                            'data must be utf8 was %s' % type(line))
1851
                    lines.append(line)
1852
                    self._cache_key(key, options, pos, size, parents)
1853
                if len(orig_history):
1854
                    self._transport.append_bytes(path, ''.join(lines))
1855
                else:
1856
                    self._init_index(path, lines)
1857
            except:
1858
                # If any problems happen, restore the original values and re-raise
1859
                self._kndx_cache[prefix] = (orig_cache, orig_history)
1860
                raise
1861
1862
    def _cache_key(self, key, options, pos, size, parent_keys):
1596.2.18 by Robert Collins
More microopimisations on index reading, now down to 16000 records/seconds.
1863
        """Cache a version record in the history array and index cache.
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
1864
1865
        This is inlined into _load_data for performance. KEEP IN SYNC.
1596.2.18 by Robert Collins
More microopimisations on index reading, now down to 16000 records/seconds.
1866
        (It saves 60ms, 25% of the __init__ overhead on local 4000 record
1867
         indexes).
1868
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1869
        prefix = key[:-1]
1870
        version_id = key[-1]
1871
        # last-element only for compatibilty with the C load_data.
1872
        parents = tuple(parent[-1] for parent in parent_keys)
1873
        for parent in parent_keys:
1874
            if parent[:-1] != prefix:
1875
                raise ValueError("mismatched prefixes for %r, %r" % (
1876
                    key, parent_keys))
1877
        cache, history = self._kndx_cache[prefix]
1596.2.14 by Robert Collins
Make knit parsing non quadratic?
1878
        # only want the _history index to reference the 1st index entry
1879
        # for version_id
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1880
        if version_id not in cache:
1881
            index = len(history)
1882
            history.append(version_id)
1628.1.1 by Robert Collins
Cache the index number of versions in the knit index's self._cache so that
1883
        else:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1884
            index = cache[version_id][5]
1885
        cache[version_id] = (version_id,
1628.1.1 by Robert Collins
Cache the index number of versions in the knit index's self._cache so that
1886
                                   options,
1887
                                   pos,
1888
                                   size,
1889
                                   parents,
1890
                                   index)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1891
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1892
    def check_header(self, fp):
1893
        line = fp.readline()
1894
        if line == '':
1895
            # An empty file can actually be treated as though the file doesn't
1896
            # exist yet.
1897
            raise errors.NoSuchFile(self)
1898
        if line != self.HEADER:
1899
            raise KnitHeaderError(badline=line, filename=self)
1900
1901
    def _check_read(self):
1902
        if not self._is_locked():
1903
            raise errors.ObjectNotLocked(self)
1904
        if self._get_scope() != self._scope:
1905
            self._reset_cache()
1906
3316.2.3 by Robert Collins
Remove manual notification of transaction finishing on versioned files.
1907
    def _check_write_ok(self):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1908
        """Assert if not writes are permitted."""
1909
        if not self._is_locked():
1910
            raise errors.ObjectNotLocked(self)
3316.2.5 by Robert Collins
Review feedback.
1911
        if self._get_scope() != self._scope:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1912
            self._reset_cache()
3316.2.3 by Robert Collins
Remove manual notification of transaction finishing on versioned files.
1913
        if self._mode != 'w':
1914
            raise errors.ReadOnlyObjectDirtiedError(self)
1915
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1916
    def get_build_details(self, keys):
1917
        """Get the method, index_memo and compression parent for keys.
3218.1.1 by Robert Collins
Reduce index query pressure for text construction by batching the individual queries into single batch queries.
1918
3224.1.29 by John Arbash Meinel
Properly handle annotating when ghosts are present.
1919
        Ghosts are omitted from the result.
1920
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1921
        :param keys: An iterable of keys.
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1922
        :return: A dict of key:(index_memo, compression_parent, parents,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1923
            record_details).
3224.1.14 by John Arbash Meinel
Switch to making content_details opaque, step 1
1924
            index_memo
1925
                opaque structure to pass to read_records to extract the raw
1926
                data
1927
            compression_parent
1928
                Content that this record is built upon, may be None
1929
            parents
1930
                Logical parents of this node
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
1931
            record_details
3224.1.14 by John Arbash Meinel
Switch to making content_details opaque, step 1
1932
                extra information about the content which needs to be passed to
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
1933
                Factory.parse_record
3218.1.1 by Robert Collins
Reduce index query pressure for text construction by batching the individual queries into single batch queries.
1934
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1935
        parent_map = self.get_parent_map(keys)
3218.1.1 by Robert Collins
Reduce index query pressure for text construction by batching the individual queries into single batch queries.
1936
        result = {}
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1937
        for key in keys:
1938
            if key not in parent_map:
1939
                continue # Ghost
1940
            method = self.get_method(key)
1941
            parents = parent_map[key]
3218.1.1 by Robert Collins
Reduce index query pressure for text construction by batching the individual queries into single batch queries.
1942
            if method == 'fulltext':
1943
                compression_parent = None
1944
            else:
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
1945
                compression_parent = parents[0]
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1946
            noeol = 'no-eol' in self.get_options(key)
1947
            index_memo = self.get_position(key)
1948
            result[key] = (index_memo, compression_parent,
3224.1.14 by John Arbash Meinel
Switch to making content_details opaque, step 1
1949
                                  parents, (method, noeol))
3218.1.1 by Robert Collins
Reduce index query pressure for text construction by batching the individual queries into single batch queries.
1950
        return result
1951
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1952
    def get_method(self, key):
1953
        """Return compression method of specified key."""
1954
        options = self.get_options(key)
1955
        if 'fulltext' in options:
1956
            return 'fulltext'
1957
        elif 'line-delta' in options:
1958
            return 'line-delta'
1959
        else:
1960
            raise errors.KnitIndexUnknownMethod(self, options)
1961
1962
    def get_options(self, key):
1963
        """Return a list representing options.
1964
1965
        e.g. ['foo', 'bar']
1966
        """
1967
        prefix, suffix = self._split_key(key)
1968
        self._load_prefixes([prefix])
3350.8.9 by Robert Collins
define behaviour for add_lines with stacked storage.
1969
        try:
1970
            return self._kndx_cache[prefix][0][suffix][1]
1971
        except KeyError:
1972
            raise RevisionNotPresent(key, self)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1973
1974
    def get_parent_map(self, keys):
1975
        """Get a map of the parents of keys.
1976
1977
        :param keys: The keys to look up parents for.
1978
        :return: A mapping from keys to parents. Absent keys are absent from
1979
            the mapping.
1980
        """
1981
        # Parse what we need to up front, this potentially trades off I/O
1982
        # locality (.kndx and .knit in the same block group for the same file
1983
        # id) for less checking in inner loops.
3350.6.10 by Martin Pool
VersionedFiles review cleanups
1984
        prefixes = set(key[:-1] for key in keys)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1985
        self._load_prefixes(prefixes)
1986
        result = {}
1987
        for key in keys:
1988
            prefix = key[:-1]
1989
            try:
1990
                suffix_parents = self._kndx_cache[prefix][0][key[-1]][4]
1991
            except KeyError:
1992
                pass
1993
            else:
1994
                result[key] = tuple(prefix + (suffix,) for
1995
                    suffix in suffix_parents)
1996
        return result
1997
1998
    def get_position(self, key):
1999
        """Return details needed to access the version.
2000
        
2001
        :return: a tuple (key, data position, size) to hand to the access
2002
            logic to get the record.
2003
        """
2004
        prefix, suffix = self._split_key(key)
2005
        self._load_prefixes([prefix])
2006
        entry = self._kndx_cache[prefix][0][suffix]
2007
        return key, entry[2], entry[3]
2008
3830.3.12 by Martin Pool
Review cleanups: unify has_key impls, add missing_keys(), clean up exception blocks
2009
    has_key = _mod_index._has_key_from_parent_map
2010
    
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2011
    def _init_index(self, path, extra_lines=[]):
2012
        """Initialize an index."""
2013
        sio = StringIO()
2014
        sio.write(self.HEADER)
2015
        sio.writelines(extra_lines)
2016
        sio.seek(0)
2017
        self._transport.put_file_non_atomic(path, sio,
2018
                            create_parent_dir=True)
2019
                           # self._create_parent_dir)
2020
                           # mode=self._file_mode,
2021
                           # dir_mode=self._dir_mode)
2022
2023
    def keys(self):
2024
        """Get all the keys in the collection.
2025
        
2026
        The keys are not ordered.
2027
        """
2028
        result = set()
2029
        # Identify all key prefixes.
2030
        # XXX: A bit hacky, needs polish.
2031
        if type(self._mapper) == ConstantMapper:
2032
            prefixes = [()]
2033
        else:
2034
            relpaths = set()
2035
            for quoted_relpath in self._transport.iter_files_recursive():
2036
                path, ext = os.path.splitext(quoted_relpath)
2037
                relpaths.add(path)
2038
            prefixes = [self._mapper.unmap(path) for path in relpaths]
2039
        self._load_prefixes(prefixes)
2040
        for prefix in prefixes:
2041
            for suffix in self._kndx_cache[prefix][1]:
2042
                result.add(prefix + (suffix,))
2043
        return result
2044
    
2045
    def _load_prefixes(self, prefixes):
2046
        """Load the indices for prefixes."""
2047
        self._check_read()
2048
        for prefix in prefixes:
2049
            if prefix not in self._kndx_cache:
2050
                # the load_data interface writes to these variables.
2051
                self._cache = {}
2052
                self._history = []
2053
                self._filename = prefix
2054
                try:
2055
                    path = self._mapper.map(prefix) + '.kndx'
2056
                    fp = self._transport.get(path)
2057
                    try:
2058
                        # _load_data may raise NoSuchFile if the target knit is
2059
                        # completely empty.
2060
                        _load_data(self, fp)
2061
                    finally:
2062
                        fp.close()
2063
                    self._kndx_cache[prefix] = (self._cache, self._history)
2064
                    del self._cache
2065
                    del self._filename
2066
                    del self._history
2067
                except NoSuchFile:
2068
                    self._kndx_cache[prefix] = ({}, [])
2069
                    if type(self._mapper) == ConstantMapper:
2070
                        # preserve behaviour for revisions.kndx etc.
2071
                        self._init_index(path)
2072
                    del self._cache
2073
                    del self._filename
2074
                    del self._history
2075
3830.3.12 by Martin Pool
Review cleanups: unify has_key impls, add missing_keys(), clean up exception blocks
2076
    missing_keys = _mod_index._missing_keys_from_parent_map
2077
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2078
    def _partition_keys(self, keys):
2079
        """Turn keys into a dict of prefix:suffix_list."""
2080
        result = {}
2081
        for key in keys:
2082
            prefix_keys = result.setdefault(key[:-1], [])
2083
            prefix_keys.append(key[-1])
2084
        return result
2085
2086
    def _dictionary_compress(self, keys):
2087
        """Dictionary compress keys.
2088
        
2089
        :param keys: The keys to generate references to.
2090
        :return: A string representation of keys. keys which are present are
2091
            dictionary compressed, and others are emitted as fulltext with a
2092
            '.' prefix.
2093
        """
2094
        if not keys:
2095
            return ''
1594.2.8 by Robert Collins
add ghost aware apis to knits.
2096
        result_list = []
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2097
        prefix = keys[0][:-1]
2098
        cache = self._kndx_cache[prefix][0]
2099
        for key in keys:
2100
            if key[:-1] != prefix:
2101
                # kndx indices cannot refer across partitioned storage.
2102
                raise ValueError("mismatched prefixes for %r" % keys)
2103
            if key[-1] in cache:
1628.1.1 by Robert Collins
Cache the index number of versions in the knit index's self._cache so that
2104
                # -- inlined lookup() --
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2105
                result_list.append(str(cache[key[-1]][5]))
1628.1.1 by Robert Collins
Cache the index number of versions in the knit index's self._cache so that
2106
                # -- end lookup () --
1594.2.8 by Robert Collins
add ghost aware apis to knits.
2107
            else:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2108
                result_list.append('.' + key[-1])
1594.2.8 by Robert Collins
add ghost aware apis to knits.
2109
        return ' '.join(result_list)
2110
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2111
    def _reset_cache(self):
2112
        # Possibly this should be a LRU cache. A dictionary from key_prefix to
2113
        # (cache_dict, history_vector) for parsed kndx files.
2114
        self._kndx_cache = {}
2115
        self._scope = self._get_scope()
2116
        allow_writes = self._allow_writes()
2117
        if allow_writes:
2118
            self._mode = 'w'
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
2119
        else:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2120
            self._mode = 'r'
2121
2122
    def _split_key(self, key):
2123
        """Split key into a prefix and suffix."""
2124
        return key[:-1], key[-1]
2125
2126
2127
class _KnitGraphIndex(object):
2128
    """A KnitVersionedFiles index layered on GraphIndex."""
2129
2130
    def __init__(self, graph_index, is_locked, deltas=False, parents=True,
2131
        add_callback=None):
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2132
        """Construct a KnitGraphIndex on a graph_index.
2133
2134
        :param graph_index: An implementation of bzrlib.index.GraphIndex.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2135
        :param is_locked: A callback to check whether the object should answer
2136
            queries.
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2137
        :param deltas: Allow delta-compressed records.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2138
        :param parents: If True, record knits parents, if not do not record 
2139
            parents.
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2140
        :param add_callback: If not None, allow additions to the index and call
2141
            this callback with a list of added GraphIndex nodes:
2592.3.33 by Robert Collins
Change the order of index refs and values to make the no-graph knit index easier.
2142
            [(node, value, node_refs), ...]
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2143
        :param is_locked: A callback, returns True if the index is locked and
2144
            thus usable.
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2145
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2146
        self._add_callback = add_callback
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2147
        self._graph_index = graph_index
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2148
        self._deltas = deltas
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2149
        self._parents = parents
2150
        if deltas and not parents:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2151
            # XXX: TODO: Delta tree and parent graph should be conceptually
2152
            # separate.
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2153
            raise KnitCorrupt(self, "Cannot do delta compression without "
2154
                "parent tracking.")
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2155
        self.has_graph = parents
2156
        self._is_locked = is_locked
2157
3517.4.13 by Martin Pool
Add repr methods
2158
    def __repr__(self):
2159
        return "%s(%r)" % (self.__class__.__name__, self._graph_index)
2160
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2161
    def add_records(self, records, random_id=False):
2162
        """Add multiple records to the index.
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2163
        
2164
        This function does not insert data into the Immutable GraphIndex
2165
        backing the KnitGraphIndex, instead it prepares data for insertion by
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2166
        the caller and checks that it is safe to insert then calls
2167
        self._add_callback with the prepared GraphIndex nodes.
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2168
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2169
        :param records: a list of tuples:
2170
                         (key, options, access_memo, parents).
2841.2.1 by Robert Collins
* Commit no longer checks for new text keys during insertion when the
2171
        :param random_id: If True the ids being added were randomly generated
2172
            and no check for existence will be performed.
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2173
        """
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2174
        if not self._add_callback:
2175
            raise errors.ReadOnlyError(self)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2176
        # we hope there are no repositories with inconsistent parentage
2177
        # anymore.
2178
2179
        keys = {}
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2180
        for (key, options, access_memo, parents) in records:
2181
            if self._parents:
2182
                parents = tuple(parents)
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2183
            index, pos, size = access_memo
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2184
            if 'no-eol' in options:
2185
                value = 'N'
2186
            else:
2187
                value = ' '
2188
            value += "%d %d" % (pos, size)
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2189
            if not self._deltas:
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2190
                if 'line-delta' in options:
2191
                    raise KnitCorrupt(self, "attempt to add line-delta in non-delta knit")
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2192
            if self._parents:
2193
                if self._deltas:
2194
                    if 'line-delta' in options:
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2195
                        node_refs = (parents, (parents[0],))
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2196
                    else:
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2197
                        node_refs = (parents, ())
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2198
                else:
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2199
                    node_refs = (parents, )
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2200
            else:
2201
                if parents:
2202
                    raise KnitCorrupt(self, "attempt to add node with parents "
2203
                        "in parentless index.")
2204
                node_refs = ()
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2205
            keys[key] = (value, node_refs)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2206
        # check for dups
2841.2.1 by Robert Collins
* Commit no longer checks for new text keys during insertion when the
2207
        if not random_id:
2208
            present_nodes = self._get_entries(keys)
2209
            for (index, key, value, node_refs) in present_nodes:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2210
                if (value[0] != keys[key][0][0] or
2211
                    node_refs != keys[key][1]):
2212
                    raise KnitCorrupt(self, "inconsistent details in add_records"
2841.2.1 by Robert Collins
* Commit no longer checks for new text keys during insertion when the
2213
                        ": %s %s" % ((value, node_refs), keys[key]))
2214
                del keys[key]
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2215
        result = []
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2216
        if self._parents:
2217
            for key, (value, node_refs) in keys.iteritems():
2218
                result.append((key, value, node_refs))
2219
        else:
2220
            for key, (value, node_refs) in keys.iteritems():
2221
                result.append((key, value))
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2222
        self._add_callback(result)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2223
        
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2224
    def _check_read(self):
2225
        """raise if reads are not permitted."""
2226
        if not self._is_locked():
2227
            raise errors.ObjectNotLocked(self)
2228
2229
    def _check_write_ok(self):
2230
        """Assert if writes are not permitted."""
2231
        if not self._is_locked():
2232
            raise errors.ObjectNotLocked(self)
2233
2234
    def _compression_parent(self, an_entry):
2235
        # return the key that an_entry is compressed against, or None
2236
        # Grab the second parent list (as deltas implies parents currently)
2237
        compression_parents = an_entry[3][1]
2238
        if not compression_parents:
2239
            return None
2240
        if len(compression_parents) != 1:
2241
            raise AssertionError(
2242
                "Too many compression parents: %r" % compression_parents)
2243
        return compression_parents[0]
2244
2245
    def get_build_details(self, keys):
2246
        """Get the method, index_memo and compression parent for version_ids.
2247
2248
        Ghosts are omitted from the result.
2249
2250
        :param keys: An iterable of keys.
2251
        :return: A dict of key:
2252
            (index_memo, compression_parent, parents, record_details).
2253
            index_memo
2254
                opaque structure to pass to read_records to extract the raw
2255
                data
2256
            compression_parent
2257
                Content that this record is built upon, may be None
2258
            parents
2259
                Logical parents of this node
2260
            record_details
2261
                extra information about the content which needs to be passed to
2262
                Factory.parse_record
2263
        """
2264
        self._check_read()
2265
        result = {}
2266
        entries = self._get_entries(keys, False)
2267
        for entry in entries:
2268
            key = entry[1]
2269
            if not self._parents:
2270
                parents = ()
2271
            else:
2272
                parents = entry[3][0]
2273
            if not self._deltas:
2274
                compression_parent_key = None
2275
            else:
2276
                compression_parent_key = self._compression_parent(entry)
2277
            noeol = (entry[2][0] == 'N')
2278
            if compression_parent_key:
2279
                method = 'line-delta'
2280
            else:
2281
                method = 'fulltext'
2282
            result[key] = (self._node_to_position(entry),
2283
                                  compression_parent_key, parents,
2284
                                  (method, noeol))
2285
        return result
2286
2287
    def _get_entries(self, keys, check_present=False):
2288
        """Get the entries for keys.
2289
        
2290
        :param keys: An iterable of index key tuples.
2291
        """
2292
        keys = set(keys)
2293
        found_keys = set()
2294
        if self._parents:
2295
            for node in self._graph_index.iter_entries(keys):
2296
                yield node
2297
                found_keys.add(node[1])
2298
        else:
2299
            # adapt parentless index to the rest of the code.
2300
            for node in self._graph_index.iter_entries(keys):
2301
                yield node[0], node[1], node[2], ()
2302
                found_keys.add(node[1])
2303
        if check_present:
2304
            missing_keys = keys.difference(found_keys)
2305
            if missing_keys:
2306
                raise RevisionNotPresent(missing_keys.pop(), self)
2307
2308
    def get_method(self, key):
2309
        """Return compression method of specified key."""
2310
        return self._get_method(self._get_node(key))
2311
2312
    def _get_method(self, node):
2313
        if not self._deltas:
2314
            return 'fulltext'
2315
        if self._compression_parent(node):
2316
            return 'line-delta'
2317
        else:
2318
            return 'fulltext'
2319
2320
    def _get_node(self, key):
2321
        try:
2322
            return list(self._get_entries([key]))[0]
2323
        except IndexError:
2324
            raise RevisionNotPresent(key, self)
2325
2326
    def get_options(self, key):
2327
        """Return a list representing options.
2328
2329
        e.g. ['foo', 'bar']
2330
        """
2331
        node = self._get_node(key)
2332
        options = [self._get_method(node)]
2333
        if node[2][0] == 'N':
2334
            options.append('no-eol')
2335
        return options
2336
2337
    def get_parent_map(self, keys):
2338
        """Get a map of the parents of keys.
2339
2340
        :param keys: The keys to look up parents for.
2341
        :return: A mapping from keys to parents. Absent keys are absent from
2342
            the mapping.
2343
        """
2344
        self._check_read()
2345
        nodes = self._get_entries(keys)
2346
        result = {}
2347
        if self._parents:
2348
            for node in nodes:
2349
                result[node[1]] = node[3][0]
2350
        else:
2351
            for node in nodes:
2352
                result[node[1]] = None
2353
        return result
2354
2355
    def get_position(self, key):
2356
        """Return details needed to access the version.
2357
        
2358
        :return: a tuple (index, data position, size) to hand to the access
2359
            logic to get the record.
2360
        """
2361
        node = self._get_node(key)
2362
        return self._node_to_position(node)
2363
3830.3.12 by Martin Pool
Review cleanups: unify has_key impls, add missing_keys(), clean up exception blocks
2364
    has_key = _mod_index._has_key_from_parent_map
3830.3.9 by Martin Pool
Simplify kvf insert_record_stream; add has_key shorthand methods; update stacking effort tests
2365
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2366
    def keys(self):
2367
        """Get all the keys in the collection.
2368
        
2369
        The keys are not ordered.
2370
        """
2371
        self._check_read()
2372
        return [node[1] for node in self._graph_index.iter_all_entries()]
2373
    
3830.3.12 by Martin Pool
Review cleanups: unify has_key impls, add missing_keys(), clean up exception blocks
2374
    missing_keys = _mod_index._missing_keys_from_parent_map
2375
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2376
    def _node_to_position(self, node):
2377
        """Convert an index value to position details."""
2378
        bits = node[2][1:].split(' ')
2379
        return node[0], int(bits[0]), int(bits[1])
2380
2381
2382
class _KnitKeyAccess(object):
2383
    """Access to records in .knit files."""
2384
2385
    def __init__(self, transport, mapper):
2386
        """Create a _KnitKeyAccess with transport and mapper.
2387
2388
        :param transport: The transport the access object is rooted at.
2389
        :param mapper: The mapper used to map keys to .knit files.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2390
        """
2391
        self._transport = transport
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2392
        self._mapper = mapper
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2393
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2394
    def add_raw_records(self, key_sizes, raw_data):
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2395
        """Add raw knit bytes to a storage area.
2396
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2397
        The data is spooled to the container writer in one bytes-record per
2398
        raw data item.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2399
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2400
        :param sizes: An iterable of tuples containing the key and size of each
2401
            raw data segment.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2402
        :param raw_data: A bytestring containing the data.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2403
        :return: A list of memos to retrieve the record later. Each memo is an
2404
            opaque index memo. For _KnitKeyAccess the memo is (key, pos,
2405
            length), where the key is the record key.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2406
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2407
        if type(raw_data) != str:
2408
            raise AssertionError(
2409
                'data must be plain bytes was %s' % type(raw_data))
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2410
        result = []
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2411
        offset = 0
2412
        # TODO: This can be tuned for writing to sftp and other servers where
2413
        # append() is relatively expensive by grouping the writes to each key
2414
        # prefix.
2415
        for key, size in key_sizes:
2416
            path = self._mapper.map(key)
2417
            try:
2418
                base = self._transport.append_bytes(path + '.knit',
2419
                    raw_data[offset:offset+size])
2420
            except errors.NoSuchFile:
2421
                self._transport.mkdir(osutils.dirname(path))
2422
                base = self._transport.append_bytes(path + '.knit',
2423
                    raw_data[offset:offset+size])
2424
            # if base == 0:
2425
            # chmod.
2426
            offset += size
2427
            result.append((key, base, size))
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2428
        return result
2429
2430
    def get_raw_records(self, memos_for_retrieval):
2431
        """Get the raw bytes for a records.
2432
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2433
        :param memos_for_retrieval: An iterable containing the access memo for
2434
            retrieving the bytes.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2435
        :return: An iterator over the bytes of the records.
2436
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2437
        # first pass, group into same-index request to minimise readv's issued.
2438
        request_lists = []
2439
        current_prefix = None
2440
        for (key, offset, length) in memos_for_retrieval:
2441
            if current_prefix == key[:-1]:
2442
                current_list.append((offset, length))
2443
            else:
2444
                if current_prefix is not None:
2445
                    request_lists.append((current_prefix, current_list))
2446
                current_prefix = key[:-1]
2447
                current_list = [(offset, length)]
2448
        # handle the last entry
2449
        if current_prefix is not None:
2450
            request_lists.append((current_prefix, current_list))
2451
        for prefix, read_vector in request_lists:
2452
            path = self._mapper.map(prefix) + '.knit'
2453
            for pos, data in self._transport.readv(path, read_vector):
2454
                yield data
2455
2456
2457
class _DirectPackAccess(object):
2458
    """Access to data in one or more packs with less translation."""
2459
3789.2.5 by John Arbash Meinel
Change _DirectPackAccess to only raise Retry when _reload_func is defined.
2460
    def __init__(self, index_to_packs, reload_func=None):
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2461
        """Create a _DirectPackAccess object.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2462
2463
        :param index_to_packs: A dict mapping index objects to the transport
2464
            and file names for obtaining data.
3789.2.5 by John Arbash Meinel
Change _DirectPackAccess to only raise Retry when _reload_func is defined.
2465
        :param reload_func: A function to call if we determine that the pack
2466
            files have moved and we need to reload our caches. See
2467
            bzrlib.repo_fmt.pack_repo.AggregateIndex for more details.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2468
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2469
        self._container_writer = None
2470
        self._write_index = None
2471
        self._indices = index_to_packs
3789.2.5 by John Arbash Meinel
Change _DirectPackAccess to only raise Retry when _reload_func is defined.
2472
        self._reload_func = reload_func
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2473
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2474
    def add_raw_records(self, key_sizes, raw_data):
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2475
        """Add raw knit bytes to a storage area.
2476
2670.2.3 by Robert Collins
Review feedback.
2477
        The data is spooled to the container writer in one bytes-record per
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2478
        raw data item.
2479
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2480
        :param sizes: An iterable of tuples containing the key and size of each
2481
            raw data segment.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2482
        :param raw_data: A bytestring containing the data.
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2483
        :return: A list of memos to retrieve the record later. Each memo is an
2484
            opaque index memo. For _DirectPackAccess the memo is (index, pos,
2485
            length), where the index field is the write_index object supplied
2486
            to the PackAccess object.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2487
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2488
        if type(raw_data) != str:
2489
            raise AssertionError(
2490
                'data must be plain bytes was %s' % type(raw_data))
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2491
        result = []
2492
        offset = 0
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2493
        for key, size in key_sizes:
2494
            p_offset, p_length = self._container_writer.add_bytes_record(
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2495
                raw_data[offset:offset+size], [])
2496
            offset += size
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2497
            result.append((self._write_index, p_offset, p_length))
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2498
        return result
2499
2500
    def get_raw_records(self, memos_for_retrieval):
2501
        """Get the raw bytes for a records.
2502
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2503
        :param memos_for_retrieval: An iterable containing the (index, pos, 
2504
            length) memo for retrieving the bytes. The Pack access method
2505
            looks up the pack to use for a given record in its index_to_pack
2506
            map.
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2507
        :return: An iterator over the bytes of the records.
2508
        """
2509
        # first pass, group into same-index requests
2510
        request_lists = []
2511
        current_index = None
2512
        for (index, offset, length) in memos_for_retrieval:
2513
            if current_index == index:
2514
                current_list.append((offset, length))
2515
            else:
2516
                if current_index is not None:
2517
                    request_lists.append((current_index, current_list))
2518
                current_index = index
2519
                current_list = [(offset, length)]
2520
        # handle the last entry
2521
        if current_index is not None:
2522
            request_lists.append((current_index, current_list))
2523
        for index, offsets in request_lists:
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
2524
            try:
2525
                transport, path = self._indices[index]
2526
            except KeyError:
2527
                # A KeyError here indicates that someone has triggered an index
2528
                # reload, and this index has gone missing, we need to start
2529
                # over.
3789.2.5 by John Arbash Meinel
Change _DirectPackAccess to only raise Retry when _reload_func is defined.
2530
                if self._reload_func is None:
2531
                    # If we don't have a _reload_func there is nothing that can
2532
                    # be done
2533
                    raise
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
2534
                raise errors.RetryWithNewPacks(reload_occurred=True,
2535
                                               exc_info=sys.exc_info())
2536
            try:
2537
                reader = pack.make_readv_reader(transport, path, offsets)
2538
                for names, read_func in reader.iter_records():
2539
                    yield read_func(None)
2540
            except errors.NoSuchFile:
2541
                # A NoSuchFile error indicates that a pack file has gone
2542
                # missing on disk, we need to trigger a reload, and start over.
3789.2.5 by John Arbash Meinel
Change _DirectPackAccess to only raise Retry when _reload_func is defined.
2543
                if self._reload_func is None:
2544
                    raise
3789.2.1 by John Arbash Meinel
_DirectPackAccess can now raise RetryWithNewPacks when we think something has happened.
2545
                raise errors.RetryWithNewPacks(reload_occurred=False,
2546
                                               exc_info=sys.exc_info())
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
2547
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2548
    def set_writer(self, writer, index, transport_packname):
2592.3.70 by Robert Collins
Allow setting a writer after creating a knit._PackAccess object.
2549
        """Set a writer to use for adding data."""
2592.3.208 by Robert Collins
Start refactoring the knit-pack thunking to be clearer.
2550
        if index is not None:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2551
            self._indices[index] = transport_packname
2552
        self._container_writer = writer
2553
        self._write_index = index
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
2554
3789.2.5 by John Arbash Meinel
Change _DirectPackAccess to only raise Retry when _reload_func is defined.
2555
    def reload_or_raise(self, retry_exc):
2556
        """Try calling the reload function, or re-raise the original exception.
2557
2558
        This should be called after _DirectPackAccess raises a
2559
        RetryWithNewPacks exception. This function will handle the common logic
2560
        of determining when the error is fatal versus being temporary.
2561
        It will also make sure that the original exception is raised, rather
2562
        than the RetryWithNewPacks exception.
2563
2564
        If this function returns, then the calling function should retry
2565
        whatever operation was being performed. Otherwise an exception will
2566
        be raised.
2567
2568
        :param retry_exc: A RetryWithNewPacks exception.
2569
        """
3789.2.6 by John Arbash Meinel
Make _DirectPackAccess.reload_or_raise maintain the logic.
2570
        is_error = False
2571
        if self._reload_func is None:
2572
            is_error = True
2573
        elif not self._reload_func():
2574
            # The reload claimed that nothing changed
2575
            if not retry_exc.reload_occurred:
2576
                # If there wasn't an earlier reload, then we really were
2577
                # expecting to find changes. We didn't find them, so this is a
2578
                # hard error
2579
                is_error = True
2580
        if is_error:
2581
            exc_class, exc_value, exc_traceback = retry_exc.exc_info
2582
            raise exc_class, exc_value, exc_traceback
3789.2.5 by John Arbash Meinel
Change _DirectPackAccess to only raise Retry when _reload_func is defined.
2583
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
2584
2781.1.1 by Martin Pool
merge cpatiencediff from Lukas
2585
# Deprecated, use PatienceSequenceMatcher instead
2586
KnitSequenceMatcher = patiencediff.PatienceSequenceMatcher
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
2587
2588
2770.1.2 by Aaron Bentley
Convert to knit-only annotation
2589
def annotate_knit(knit, revision_id):
2590
    """Annotate a knit with no cached annotations.
2591
2592
    This implementation is for knits with no cached annotations.
2593
    It will work for knits with cached annotations, but this is not
2594
    recommended.
2595
    """
3224.1.7 by John Arbash Meinel
_StreamIndex also needs to return the proper values for get_build_details.
2596
    annotator = _KnitAnnotator(knit)
3224.1.25 by John Arbash Meinel
Quick change to the _KnitAnnotator api to use .annotate() instead of get_annotated_lines()
2597
    return iter(annotator.annotate(revision_id))
3224.1.7 by John Arbash Meinel
_StreamIndex also needs to return the proper values for get_build_details.
2598
2599
2600
class _KnitAnnotator(object):
3224.1.5 by John Arbash Meinel
Start using a helper class for doing the knit-pack annotations.
2601
    """Build up the annotations for a text."""
2602
2603
    def __init__(self, knit):
2604
        self._knit = knit
2605
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2606
        # Content objects, differs from fulltexts because of how final newlines
2607
        # are treated by knits. the content objects here will always have a
2608
        # final newline
2609
        self._fulltext_contents = {}
2610
2611
        # Annotated lines of specific revisions
2612
        self._annotated_lines = {}
2613
2614
        # Track the raw data for nodes that we could not process yet.
2615
        # This maps the revision_id of the base to a list of children that will
2616
        # annotated from it.
2617
        self._pending_children = {}
2618
3224.1.29 by John Arbash Meinel
Properly handle annotating when ghosts are present.
2619
        # Nodes which cannot be extracted
2620
        self._ghosts = set()
2621
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2622
        # Track how many children this node has, so we know if we need to keep
2623
        # it
2624
        self._annotate_children = {}
2625
        self._compression_children = {}
2626
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2627
        self._all_build_details = {}
3224.1.10 by John Arbash Meinel
Introduce the heads_provider for reannotate.
2628
        # The children => parent revision_id graph
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2629
        self._revision_id_graph = {}
2630
3224.1.10 by John Arbash Meinel
Introduce the heads_provider for reannotate.
2631
        self._heads_provider = None
2632
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2633
        self._nodes_to_keep_annotations = set()
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2634
        self._generations_until_keep = 100
2635
2636
    def set_generations_until_keep(self, value):
2637
        """Set the number of generations before caching a node.
2638
2639
        Setting this to -1 will cache every merge node, setting this higher
2640
        will cache fewer nodes.
2641
        """
2642
        self._generations_until_keep = value
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2643
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2644
    def _add_fulltext_content(self, revision_id, content_obj):
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2645
        self._fulltext_contents[revision_id] = content_obj
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2646
        # TODO: jam 20080305 It might be good to check the sha1digest here
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2647
        return content_obj.text()
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2648
2649
    def _check_parents(self, child, nodes_to_annotate):
2650
        """Check if all parents have been processed.
2651
2652
        :param child: A tuple of (rev_id, parents, raw_content)
2653
        :param nodes_to_annotate: If child is ready, add it to
2654
            nodes_to_annotate, otherwise put it back in self._pending_children
2655
        """
2656
        for parent_id in child[1]:
3224.1.29 by John Arbash Meinel
Properly handle annotating when ghosts are present.
2657
            if (parent_id not in self._annotated_lines):
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2658
                # This parent is present, but another parent is missing
2659
                self._pending_children.setdefault(parent_id,
2660
                                                  []).append(child)
2661
                break
2662
        else:
2663
            # This one is ready to be processed
2664
            nodes_to_annotate.append(child)
2665
2666
    def _add_annotation(self, revision_id, fulltext, parent_ids,
2667
                        left_matching_blocks=None):
2668
        """Add an annotation entry.
2669
2670
        All parents should already have been annotated.
2671
        :return: A list of children that now have their parents satisfied.
2672
        """
2673
        a = self._annotated_lines
2674
        annotated_parent_lines = [a[p] for p in parent_ids]
2675
        annotated_lines = list(annotate.reannotate(annotated_parent_lines,
3224.1.10 by John Arbash Meinel
Introduce the heads_provider for reannotate.
2676
            fulltext, revision_id, left_matching_blocks,
2677
            heads_provider=self._get_heads_provider()))
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2678
        self._annotated_lines[revision_id] = annotated_lines
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2679
        for p in parent_ids:
2680
            ann_children = self._annotate_children[p]
2681
            ann_children.remove(revision_id)
2682
            if (not ann_children
2683
                and p not in self._nodes_to_keep_annotations):
2684
                del self._annotated_lines[p]
2685
                del self._all_build_details[p]
2686
                if p in self._fulltext_contents:
2687
                    del self._fulltext_contents[p]
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2688
        # Now that we've added this one, see if there are any pending
2689
        # deltas to be done, certainly this parent is finished
2690
        nodes_to_annotate = []
2691
        for child in self._pending_children.pop(revision_id, []):
2692
            self._check_parents(child, nodes_to_annotate)
2693
        return nodes_to_annotate
2694
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2695
    def _get_build_graph(self, key):
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2696
        """Get the graphs for building texts and annotations.
2697
2698
        The data you need for creating a full text may be different than the
2699
        data you need to annotate that text. (At a minimum, you need both
2700
        parents to create an annotation, but only need 1 parent to generate the
2701
        fulltext.)
2702
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2703
        :return: A list of (key, index_memo) records, suitable for
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2704
            passing to read_records_iter to start reading in the raw data fro/
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2705
            the pack file.
2706
        """
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2707
        if key in self._annotated_lines:
3224.1.10 by John Arbash Meinel
Introduce the heads_provider for reannotate.
2708
            # Nothing to do
2709
            return []
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2710
        pending = set([key])
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2711
        records = []
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2712
        generation = 0
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2713
        kept_generation = 0
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2714
        while pending:
2715
            # get all pending nodes
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2716
            generation += 1
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2717
            this_iteration = pending
2718
            build_details = self._knit._index.get_build_details(this_iteration)
2719
            self._all_build_details.update(build_details)
2720
            # new_nodes = self._knit._index._get_entries(this_iteration)
2721
            pending = set()
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2722
            for key, details in build_details.iteritems():
3224.1.14 by John Arbash Meinel
Switch to making content_details opaque, step 1
2723
                (index_memo, compression_parent, parents,
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2724
                 record_details) = details
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2725
                self._revision_id_graph[key] = parents
2726
                records.append((key, index_memo))
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2727
                # Do we actually need to check _annotated_lines?
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2728
                pending.update(p for p in parents
2729
                                 if p not in self._all_build_details)
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2730
                if compression_parent:
2731
                    self._compression_children.setdefault(compression_parent,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2732
                        []).append(key)
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2733
                if parents:
2734
                    for parent in parents:
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2735
                        self._annotate_children.setdefault(parent,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2736
                            []).append(key)
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2737
                    num_gens = generation - kept_generation
2738
                    if ((num_gens >= self._generations_until_keep)
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2739
                        and len(parents) > 1):
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2740
                        kept_generation = generation
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2741
                        self._nodes_to_keep_annotations.add(key)
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2742
2743
            missing_versions = this_iteration.difference(build_details.keys())
3224.1.29 by John Arbash Meinel
Properly handle annotating when ghosts are present.
2744
            self._ghosts.update(missing_versions)
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2745
            for missing_version in missing_versions:
2746
                # add a key, no parents
3224.1.29 by John Arbash Meinel
Properly handle annotating when ghosts are present.
2747
                self._revision_id_graph[missing_version] = ()
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2748
                pending.discard(missing_version) # don't look for it
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
2749
        if self._ghosts.intersection(self._compression_children):
2750
            raise KnitCorrupt(
2751
                "We cannot have nodes which have a ghost compression parent:\n"
2752
                "ghosts: %r\n"
2753
                "compression children: %r"
2754
                % (self._ghosts, self._compression_children))
3224.1.29 by John Arbash Meinel
Properly handle annotating when ghosts are present.
2755
        # Cleanout anything that depends on a ghost so that we don't wait for
2756
        # the ghost to show up
2757
        for node in self._ghosts:
2758
            if node in self._annotate_children:
2759
                # We won't be building this node
2760
                del self._annotate_children[node]
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2761
        # Generally we will want to read the records in reverse order, because
2762
        # we find the parent nodes after the children
2763
        records.reverse()
2764
        return records
2765
2766
    def _annotate_records(self, records):
2767
        """Build the annotations for the listed records."""
2768
        # We iterate in the order read, rather than a strict order requested
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2769
        # However, process what we can, and put off to the side things that
2770
        # still need parents, cleaning them up when those parents are
2771
        # processed.
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2772
        for (rev_id, record,
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2773
             digest) in self._knit._read_records_iter(records):
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2774
            if rev_id in self._annotated_lines:
2775
                continue
2776
            parent_ids = self._revision_id_graph[rev_id]
3224.1.29 by John Arbash Meinel
Properly handle annotating when ghosts are present.
2777
            parent_ids = [p for p in parent_ids if p not in self._ghosts]
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2778
            details = self._all_build_details[rev_id]
3224.1.14 by John Arbash Meinel
Switch to making content_details opaque, step 1
2779
            (index_memo, compression_parent, parents,
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2780
             record_details) = details
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2781
            nodes_to_annotate = []
2782
            # TODO: Remove the punning between compression parents, and
2783
            #       parent_ids, we should be able to do this without assuming
2784
            #       the build order
2785
            if len(parent_ids) == 0:
2786
                # There are no parents for this node, so just add it
2787
                # TODO: This probably needs to be decoupled
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2788
                fulltext_content, delta = self._knit._factory.parse_record(
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2789
                    rev_id, record, record_details, None)
2790
                fulltext = self._add_fulltext_content(rev_id, fulltext_content)
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2791
                nodes_to_annotate.extend(self._add_annotation(rev_id, fulltext,
2792
                    parent_ids, left_matching_blocks=None))
2793
            else:
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2794
                child = (rev_id, parent_ids, record)
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2795
                # Check if all the parents are present
2796
                self._check_parents(child, nodes_to_annotate)
2797
            while nodes_to_annotate:
2798
                # Should we use a queue here instead of a stack?
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2799
                (rev_id, parent_ids, record) = nodes_to_annotate.pop()
3224.1.14 by John Arbash Meinel
Switch to making content_details opaque, step 1
2800
                (index_memo, compression_parent, parents,
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2801
                 record_details) = self._all_build_details[rev_id]
3777.4.1 by John Arbash Meinel
Two fixes for annotate code.
2802
                blocks = None
3224.1.14 by John Arbash Meinel
Switch to making content_details opaque, step 1
2803
                if compression_parent is not None:
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2804
                    comp_children = self._compression_children[compression_parent]
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
2805
                    if rev_id not in comp_children:
2806
                        raise AssertionError("%r not in compression children %r"
2807
                            % (rev_id, comp_children))
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2808
                    # If there is only 1 child, it is safe to reuse this
2809
                    # content
2810
                    reuse_content = (len(comp_children) == 1
2811
                        and compression_parent not in
2812
                            self._nodes_to_keep_annotations)
2813
                    if reuse_content:
2814
                        # Remove it from the cache since it will be changing
2815
                        parent_fulltext_content = self._fulltext_contents.pop(compression_parent)
2816
                        # Make sure to copy the fulltext since it might be
2817
                        # modified
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2818
                        parent_fulltext = list(parent_fulltext_content.text())
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2819
                    else:
2820
                        parent_fulltext_content = self._fulltext_contents[compression_parent]
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2821
                        parent_fulltext = parent_fulltext_content.text()
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2822
                    comp_children.remove(rev_id)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2823
                    fulltext_content, delta = self._knit._factory.parse_record(
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2824
                        rev_id, record, record_details,
2825
                        parent_fulltext_content,
3224.1.19 by John Arbash Meinel
Work on removing nodes from the working set once they aren't needed.
2826
                        copy_base_content=(not reuse_content))
3224.1.22 by John Arbash Meinel
Cleanup the extra debugging info, and some >80 char lines.
2827
                    fulltext = self._add_fulltext_content(rev_id,
2828
                                                          fulltext_content)
3777.4.1 by John Arbash Meinel
Two fixes for annotate code.
2829
                    if compression_parent == parent_ids[0]:
2830
                        # the compression_parent is the left parent, so we can
2831
                        # re-use the delta
2832
                        blocks = KnitContent.get_line_delta_blocks(delta,
2833
                                parent_fulltext, fulltext)
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2834
                else:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2835
                    fulltext_content = self._knit._factory.parse_fulltext(
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2836
                        record, rev_id)
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2837
                    fulltext = self._add_fulltext_content(rev_id,
3224.1.15 by John Arbash Meinel
Finish removing method and noeol from general knowledge,
2838
                        fulltext_content)
3224.1.6 by John Arbash Meinel
Refactor the annotation logic into a helper class.
2839
                nodes_to_annotate.extend(
2840
                    self._add_annotation(rev_id, fulltext, parent_ids,
2841
                                     left_matching_blocks=blocks))
2842
3224.1.10 by John Arbash Meinel
Introduce the heads_provider for reannotate.
2843
    def _get_heads_provider(self):
2844
        """Create a heads provider for resolving ancestry issues."""
2845
        if self._heads_provider is not None:
2846
            return self._heads_provider
2847
        parent_provider = _mod_graph.DictParentsProvider(
2848
            self._revision_id_graph)
2849
        graph_obj = _mod_graph.Graph(parent_provider)
3224.1.20 by John Arbash Meinel
Reduce the number of cache misses by caching known heads answers
2850
        head_cache = _mod_graph.FrozenHeadsCache(graph_obj)
3224.1.10 by John Arbash Meinel
Introduce the heads_provider for reannotate.
2851
        self._heads_provider = head_cache
2852
        return head_cache
2853
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2854
    def annotate(self, key):
2855
        """Return the annotated fulltext at the given key.
3224.1.5 by John Arbash Meinel
Start using a helper class for doing the knit-pack annotations.
2856
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
2857
        :param key: The key to annotate.
3224.1.5 by John Arbash Meinel
Start using a helper class for doing the knit-pack annotations.
2858
        """
3777.4.1 by John Arbash Meinel
Two fixes for annotate code.
2859
        if len(self._knit._fallback_vfs) > 0:
3517.4.1 by Martin Pool
Merge unoptimized annotate code for stacking, and only use it when needed
2860
            # stacked knits can't use the fast path at present.
2861
            return self._simple_annotate(key)
3789.2.13 by John Arbash Meinel
KnitVersionedFile.annotate() now retries when appropriate.
2862
        while True:
2863
            try:
2864
                records = self._get_build_graph(key)
2865
                if key in self._ghosts:
2866
                    raise errors.RevisionNotPresent(key, self._knit)
2867
                self._annotate_records(records)
2868
                return self._annotated_lines[key]
2869
            except errors.RetryWithNewPacks, e:
2870
                self._knit._access.reload_or_raise(e)
2871
                # The cached build_details are no longer valid
2872
                self._all_build_details.clear()
3224.1.5 by John Arbash Meinel
Start using a helper class for doing the knit-pack annotations.
2873
3517.4.1 by Martin Pool
Merge unoptimized annotate code for stacking, and only use it when needed
2874
    def _simple_annotate(self, key):
2875
        """Return annotated fulltext, rediffing from the full texts.
2876
2877
        This is slow but makes no assumptions about the repository
2878
        being able to produce line deltas.
2879
        """
2880
        # TODO: this code generates a parent maps of present ancestors; it
2881
        # could be split out into a separate method, and probably should use
2882
        # iter_ancestry instead. -- mbp and robertc 20080704
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
2883
        graph = _mod_graph.Graph(self._knit)
3350.9.1 by Robert Collins
Redo annotate more simply, using just the public interfaces for VersionedFiles.
2884
        head_cache = _mod_graph.FrozenHeadsCache(graph)
2885
        search = graph._make_breadth_first_searcher([key])
2886
        keys = set()
2887
        while True:
2888
            try:
2889
                present, ghosts = search.next_with_ghosts()
2890
            except StopIteration:
2891
                break
2892
            keys.update(present)
2893
        parent_map = self._knit.get_parent_map(keys)
2894
        parent_cache = {}
2895
        reannotate = annotate.reannotate
2896
        for record in self._knit.get_record_stream(keys, 'topological', True):
2897
            key = record.key
2898
            fulltext = split_lines(record.get_bytes_as('fulltext'))
3517.4.2 by Martin Pool
Make simple-annotation and graph code more tolerant of knits with no graph
2899
            parents = parent_map[key]
2900
            if parents is not None:
2901
                parent_lines = [parent_cache[parent] for parent in parent_map[key]]
2902
            else:
2903
                parent_lines = []
3350.9.1 by Robert Collins
Redo annotate more simply, using just the public interfaces for VersionedFiles.
2904
            parent_cache[key] = list(
2905
                reannotate(parent_lines, fulltext, key, None, head_cache))
3517.4.2 by Martin Pool
Make simple-annotation and graph code more tolerant of knits with no graph
2906
        try:
2907
            return parent_cache[key]
2908
        except KeyError, e:
2909
            raise errors.RevisionNotPresent(key, self._knit)
3224.1.5 by John Arbash Meinel
Start using a helper class for doing the knit-pack annotations.
2910
2911
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
2912
try:
2484.1.12 by John Arbash Meinel
Switch the layout to use a matching _knit_load_data_py.py and _knit_load_data_c.pyx
2913
    from bzrlib._knit_load_data_c import _load_data_c as _load_data
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
2914
except ImportError:
2484.1.12 by John Arbash Meinel
Switch the layout to use a matching _knit_load_data_py.py and _knit_load_data_c.pyx
2915
    from bzrlib._knit_load_data_py import _load_data_py as _load_data