/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Martin Pool
  • Date: 2008-04-24 07:38:09 UTC
  • mto: This revision was merged to the branch mainline in revision 3415.
  • Revision ID: mbp@sourcefrog.net-20080424073809-ueh0p57961v1q5cs
Treat assert statements in our code as a hard error

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
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
from bzrlib.lazy_import import lazy_import
 
18
lazy_import(globals(), """
 
19
from itertools import izip
 
20
import math
 
21
import md5
 
22
import time
 
23
 
 
24
from bzrlib import (
 
25
        debug,
 
26
        graph,
 
27
        pack,
 
28
        ui,
 
29
        )
 
30
from bzrlib.index import (
 
31
    GraphIndex,
 
32
    GraphIndexBuilder,
 
33
    InMemoryGraphIndex,
 
34
    CombinedGraphIndex,
 
35
    GraphIndexPrefixAdapter,
 
36
    )
 
37
from bzrlib.knit import KnitGraphIndex, _PackAccess, _KnitData
 
38
from bzrlib.osutils import rand_chars
 
39
from bzrlib.pack import ContainerWriter
 
40
from bzrlib.store import revision
 
41
from bzrlib import tsort
 
42
""")
 
43
from bzrlib import (
 
44
    bzrdir,
 
45
    deprecated_graph,
 
46
    errors,
 
47
    knit,
 
48
    lockable_files,
 
49
    lockdir,
 
50
    osutils,
 
51
    symbol_versioning,
 
52
    transactions,
 
53
    xml5,
 
54
    xml6,
 
55
    xml7,
 
56
    )
 
57
 
 
58
from bzrlib.decorators import needs_read_lock, needs_write_lock
 
59
from bzrlib.repofmt.knitrepo import KnitRepository
 
60
from bzrlib.repository import (
 
61
    CommitBuilder,
 
62
    MetaDirRepository,
 
63
    MetaDirRepositoryFormat,
 
64
    RootCommitBuilder,
 
65
    )
 
66
import bzrlib.revision as _mod_revision
 
67
from bzrlib.store.revision.knit import KnitRevisionStore
 
68
from bzrlib.store.versioned import VersionedFileStore
 
69
from bzrlib.trace import mutter, note, warning
 
70
 
 
71
 
 
72
class PackCommitBuilder(CommitBuilder):
 
73
    """A subclass of CommitBuilder to add texts with pack semantics.
 
74
    
 
75
    Specifically this uses one knit object rather than one knit object per
 
76
    added text, reducing memory and object pressure.
 
77
    """
 
78
 
 
79
    def __init__(self, repository, parents, config, timestamp=None,
 
80
                 timezone=None, committer=None, revprops=None,
 
81
                 revision_id=None):
 
82
        CommitBuilder.__init__(self, repository, parents, config,
 
83
            timestamp=timestamp, timezone=timezone, committer=committer,
 
84
            revprops=revprops, revision_id=revision_id)
 
85
        self._file_graph = graph.Graph(
 
86
            repository._pack_collection.text_index.combined_index)
 
87
 
 
88
    def _add_text_to_weave(self, file_id, new_lines, parents, nostore_sha):
 
89
        return self.repository._pack_collection._add_text_to_weave(file_id,
 
90
            self._new_revision_id, new_lines, parents, nostore_sha,
 
91
            self.random_revid)
 
92
 
 
93
    def _heads(self, file_id, revision_ids):
 
94
        keys = [(file_id, revision_id) for revision_id in revision_ids]
 
95
        return set([key[1] for key in self._file_graph.heads(keys)])
 
96
 
 
97
 
 
98
class PackRootCommitBuilder(RootCommitBuilder):
 
99
    """A subclass of RootCommitBuilder to add texts with pack semantics.
 
100
    
 
101
    Specifically this uses one knit object rather than one knit object per
 
102
    added text, reducing memory and object pressure.
 
103
    """
 
104
 
 
105
    def __init__(self, repository, parents, config, timestamp=None,
 
106
                 timezone=None, committer=None, revprops=None,
 
107
                 revision_id=None):
 
108
        CommitBuilder.__init__(self, repository, parents, config,
 
109
            timestamp=timestamp, timezone=timezone, committer=committer,
 
110
            revprops=revprops, revision_id=revision_id)
 
111
        self._file_graph = graph.Graph(
 
112
            repository._pack_collection.text_index.combined_index)
 
113
 
 
114
    def _add_text_to_weave(self, file_id, new_lines, parents, nostore_sha):
 
115
        return self.repository._pack_collection._add_text_to_weave(file_id,
 
116
            self._new_revision_id, new_lines, parents, nostore_sha,
 
117
            self.random_revid)
 
118
 
 
119
    def _heads(self, file_id, revision_ids):
 
120
        keys = [(file_id, revision_id) for revision_id in revision_ids]
 
121
        return set([key[1] for key in self._file_graph.heads(keys)])
 
122
 
 
123
 
 
124
class Pack(object):
 
125
    """An in memory proxy for a pack and its indices.
 
126
 
 
127
    This is a base class that is not directly used, instead the classes
 
128
    ExistingPack and NewPack are used.
 
129
    """
 
130
 
 
131
    def __init__(self, revision_index, inventory_index, text_index,
 
132
        signature_index):
 
133
        """Create a pack instance.
 
134
 
 
135
        :param revision_index: A GraphIndex for determining what revisions are
 
136
            present in the Pack and accessing the locations of their texts.
 
137
        :param inventory_index: A GraphIndex for determining what inventories are
 
138
            present in the Pack and accessing the locations of their
 
139
            texts/deltas.
 
140
        :param text_index: A GraphIndex for determining what file texts
 
141
            are present in the pack and accessing the locations of their
 
142
            texts/deltas (via (fileid, revisionid) tuples).
 
143
        :param revision_index: A GraphIndex for determining what signatures are
 
144
            present in the Pack and accessing the locations of their texts.
 
145
        """
 
146
        self.revision_index = revision_index
 
147
        self.inventory_index = inventory_index
 
148
        self.text_index = text_index
 
149
        self.signature_index = signature_index
 
150
 
 
151
    def access_tuple(self):
 
152
        """Return a tuple (transport, name) for the pack content."""
 
153
        return self.pack_transport, self.file_name()
 
154
 
 
155
    def file_name(self):
 
156
        """Get the file name for the pack on disk."""
 
157
        return self.name + '.pack'
 
158
 
 
159
    def get_revision_count(self):
 
160
        return self.revision_index.key_count()
 
161
 
 
162
    def inventory_index_name(self, name):
 
163
        """The inv index is the name + .iix."""
 
164
        return self.index_name('inventory', name)
 
165
 
 
166
    def revision_index_name(self, name):
 
167
        """The revision index is the name + .rix."""
 
168
        return self.index_name('revision', name)
 
169
 
 
170
    def signature_index_name(self, name):
 
171
        """The signature index is the name + .six."""
 
172
        return self.index_name('signature', name)
 
173
 
 
174
    def text_index_name(self, name):
 
175
        """The text index is the name + .tix."""
 
176
        return self.index_name('text', name)
 
177
 
 
178
    def _external_compression_parents_of_texts(self):
 
179
        keys = set()
 
180
        refs = set()
 
181
        for node in self.text_index.iter_all_entries():
 
182
            keys.add(node[1])
 
183
            refs.update(node[3][1])
 
184
        return refs - keys
 
185
 
 
186
 
 
187
class ExistingPack(Pack):
 
188
    """An in memory proxy for an existing .pack and its disk indices."""
 
189
 
 
190
    def __init__(self, pack_transport, name, revision_index, inventory_index,
 
191
        text_index, signature_index):
 
192
        """Create an ExistingPack object.
 
193
 
 
194
        :param pack_transport: The transport where the pack file resides.
 
195
        :param name: The name of the pack on disk in the pack_transport.
 
196
        """
 
197
        Pack.__init__(self, revision_index, inventory_index, text_index,
 
198
            signature_index)
 
199
        self.name = name
 
200
        self.pack_transport = pack_transport
 
201
        if None in (revision_index, inventory_index, text_index,
 
202
                signature_index, name, pack_transport):
 
203
            raise AssertionError()
 
204
 
 
205
    def __eq__(self, other):
 
206
        return self.__dict__ == other.__dict__
 
207
 
 
208
    def __ne__(self, other):
 
209
        return not self.__eq__(other)
 
210
 
 
211
    def __repr__(self):
 
212
        return "<bzrlib.repofmt.pack_repo.Pack object at 0x%x, %s, %s" % (
 
213
            id(self), self.transport, self.name)
 
214
 
 
215
 
 
216
class NewPack(Pack):
 
217
    """An in memory proxy for a pack which is being created."""
 
218
 
 
219
    # A map of index 'type' to the file extension and position in the
 
220
    # index_sizes array.
 
221
    index_definitions = {
 
222
        'revision': ('.rix', 0),
 
223
        'inventory': ('.iix', 1),
 
224
        'text': ('.tix', 2),
 
225
        'signature': ('.six', 3),
 
226
        }
 
227
 
 
228
    def __init__(self, upload_transport, index_transport, pack_transport,
 
229
        upload_suffix='', file_mode=None):
 
230
        """Create a NewPack instance.
 
231
 
 
232
        :param upload_transport: A writable transport for the pack to be
 
233
            incrementally uploaded to.
 
234
        :param index_transport: A writable transport for the pack's indices to
 
235
            be written to when the pack is finished.
 
236
        :param pack_transport: A writable transport for the pack to be renamed
 
237
            to when the upload is complete. This *must* be the same as
 
238
            upload_transport.clone('../packs').
 
239
        :param upload_suffix: An optional suffix to be given to any temporary
 
240
            files created during the pack creation. e.g '.autopack'
 
241
        :param file_mode: An optional file mode to create the new files with.
 
242
        """
 
243
        # The relative locations of the packs are constrained, but all are
 
244
        # passed in because the caller has them, so as to avoid object churn.
 
245
        Pack.__init__(self,
 
246
            # Revisions: parents list, no text compression.
 
247
            InMemoryGraphIndex(reference_lists=1),
 
248
            # Inventory: We want to map compression only, but currently the
 
249
            # knit code hasn't been updated enough to understand that, so we
 
250
            # have a regular 2-list index giving parents and compression
 
251
            # source.
 
252
            InMemoryGraphIndex(reference_lists=2),
 
253
            # Texts: compression and per file graph, for all fileids - so two
 
254
            # reference lists and two elements in the key tuple.
 
255
            InMemoryGraphIndex(reference_lists=2, key_elements=2),
 
256
            # Signatures: Just blobs to store, no compression, no parents
 
257
            # listing.
 
258
            InMemoryGraphIndex(reference_lists=0),
 
259
            )
 
260
        # where should the new pack be opened
 
261
        self.upload_transport = upload_transport
 
262
        # where are indices written out to
 
263
        self.index_transport = index_transport
 
264
        # where is the pack renamed to when it is finished?
 
265
        self.pack_transport = pack_transport
 
266
        # What file mode to upload the pack and indices with.
 
267
        self._file_mode = file_mode
 
268
        # tracks the content written to the .pack file.
 
269
        self._hash = md5.new()
 
270
        # a four-tuple with the length in bytes of the indices, once the pack
 
271
        # is finalised. (rev, inv, text, sigs)
 
272
        self.index_sizes = None
 
273
        # How much data to cache when writing packs. Note that this is not
 
274
        # synchronised with reads, because it's not in the transport layer, so
 
275
        # is not safe unless the client knows it won't be reading from the pack
 
276
        # under creation.
 
277
        self._cache_limit = 0
 
278
        # the temporary pack file name.
 
279
        self.random_name = rand_chars(20) + upload_suffix
 
280
        # when was this pack started ?
 
281
        self.start_time = time.time()
 
282
        # open an output stream for the data added to the pack.
 
283
        self.write_stream = self.upload_transport.open_write_stream(
 
284
            self.random_name, mode=self._file_mode)
 
285
        if 'pack' in debug.debug_flags:
 
286
            mutter('%s: create_pack: pack stream open: %s%s t+%6.3fs',
 
287
                time.ctime(), self.upload_transport.base, self.random_name,
 
288
                time.time() - self.start_time)
 
289
        # A list of byte sequences to be written to the new pack, and the 
 
290
        # aggregate size of them.  Stored as a list rather than separate 
 
291
        # variables so that the _write_data closure below can update them.
 
292
        self._buffer = [[], 0]
 
293
        # create a callable for adding data 
 
294
        #
 
295
        # robertc says- this is a closure rather than a method on the object
 
296
        # so that the variables are locals, and faster than accessing object
 
297
        # members.
 
298
        def _write_data(bytes, flush=False, _buffer=self._buffer,
 
299
            _write=self.write_stream.write, _update=self._hash.update):
 
300
            _buffer[0].append(bytes)
 
301
            _buffer[1] += len(bytes)
 
302
            # buffer cap
 
303
            if _buffer[1] > self._cache_limit or flush:
 
304
                bytes = ''.join(_buffer[0])
 
305
                _write(bytes)
 
306
                _update(bytes)
 
307
                _buffer[:] = [[], 0]
 
308
        # expose this on self, for the occasion when clients want to add data.
 
309
        self._write_data = _write_data
 
310
        # a pack writer object to serialise pack records.
 
311
        self._writer = pack.ContainerWriter(self._write_data)
 
312
        self._writer.begin()
 
313
        # what state is the pack in? (open, finished, aborted)
 
314
        self._state = 'open'
 
315
 
 
316
    def abort(self):
 
317
        """Cancel creating this pack."""
 
318
        self._state = 'aborted'
 
319
        self.write_stream.close()
 
320
        # Remove the temporary pack file.
 
321
        self.upload_transport.delete(self.random_name)
 
322
        # The indices have no state on disk.
 
323
 
 
324
    def access_tuple(self):
 
325
        """Return a tuple (transport, name) for the pack content."""
 
326
        if self._state == 'finished':
 
327
            return Pack.access_tuple(self)
 
328
        elif self._state == 'open':
 
329
            return self.upload_transport, self.random_name
 
330
        else:
 
331
            raise AssertionError(self._state)
 
332
 
 
333
    def data_inserted(self):
 
334
        """True if data has been added to this pack."""
 
335
        return bool(self.get_revision_count() or
 
336
            self.inventory_index.key_count() or
 
337
            self.text_index.key_count() or
 
338
            self.signature_index.key_count())
 
339
 
 
340
    def finish(self):
 
341
        """Finish the new pack.
 
342
 
 
343
        This:
 
344
         - finalises the content
 
345
         - assigns a name (the md5 of the content, currently)
 
346
         - writes out the associated indices
 
347
         - renames the pack into place.
 
348
         - stores the index size tuple for the pack in the index_sizes
 
349
           attribute.
 
350
        """
 
351
        self._writer.end()
 
352
        if self._buffer[1]:
 
353
            self._write_data('', flush=True)
 
354
        self.name = self._hash.hexdigest()
 
355
        # write indices
 
356
        # XXX: It'd be better to write them all to temporary names, then
 
357
        # rename them all into place, so that the window when only some are
 
358
        # visible is smaller.  On the other hand none will be seen until
 
359
        # they're in the names list.
 
360
        self.index_sizes = [None, None, None, None]
 
361
        self._write_index('revision', self.revision_index, 'revision')
 
362
        self._write_index('inventory', self.inventory_index, 'inventory')
 
363
        self._write_index('text', self.text_index, 'file texts')
 
364
        self._write_index('signature', self.signature_index,
 
365
            'revision signatures')
 
366
        self.write_stream.close()
 
367
        # Note that this will clobber an existing pack with the same name,
 
368
        # without checking for hash collisions. While this is undesirable this
 
369
        # is something that can be rectified in a subsequent release. One way
 
370
        # to rectify it may be to leave the pack at the original name, writing
 
371
        # its pack-names entry as something like 'HASH: index-sizes
 
372
        # temporary-name'. Allocate that and check for collisions, if it is
 
373
        # collision free then rename it into place. If clients know this scheme
 
374
        # they can handle missing-file errors by:
 
375
        #  - try for HASH.pack
 
376
        #  - try for temporary-name
 
377
        #  - refresh the pack-list to see if the pack is now absent
 
378
        self.upload_transport.rename(self.random_name,
 
379
                '../packs/' + self.name + '.pack')
 
380
        self._state = 'finished'
 
381
        if 'pack' in debug.debug_flags:
 
382
            # XXX: size might be interesting?
 
383
            mutter('%s: create_pack: pack renamed into place: %s%s->%s%s t+%6.3fs',
 
384
                time.ctime(), self.upload_transport.base, self.random_name,
 
385
                self.pack_transport, self.name,
 
386
                time.time() - self.start_time)
 
387
 
 
388
    def flush(self):
 
389
        """Flush any current data."""
 
390
        if self._buffer[1]:
 
391
            bytes = ''.join(self._buffer[0])
 
392
            self.write_stream.write(bytes)
 
393
            self._hash.update(bytes)
 
394
            self._buffer[:] = [[], 0]
 
395
 
 
396
    def index_name(self, index_type, name):
 
397
        """Get the disk name of an index type for pack name 'name'."""
 
398
        return name + NewPack.index_definitions[index_type][0]
 
399
 
 
400
    def index_offset(self, index_type):
 
401
        """Get the position in a index_size array for a given index type."""
 
402
        return NewPack.index_definitions[index_type][1]
 
403
 
 
404
    def _replace_index_with_readonly(self, index_type):
 
405
        setattr(self, index_type + '_index',
 
406
            GraphIndex(self.index_transport,
 
407
                self.index_name(index_type, self.name),
 
408
                self.index_sizes[self.index_offset(index_type)]))
 
409
 
 
410
    def set_write_cache_size(self, size):
 
411
        self._cache_limit = size
 
412
 
 
413
    def _write_index(self, index_type, index, label):
 
414
        """Write out an index.
 
415
 
 
416
        :param index_type: The type of index to write - e.g. 'revision'.
 
417
        :param index: The index object to serialise.
 
418
        :param label: What label to give the index e.g. 'revision'.
 
419
        """
 
420
        index_name = self.index_name(index_type, self.name)
 
421
        self.index_sizes[self.index_offset(index_type)] = \
 
422
            self.index_transport.put_file(index_name, index.finish(),
 
423
            mode=self._file_mode)
 
424
        if 'pack' in debug.debug_flags:
 
425
            # XXX: size might be interesting?
 
426
            mutter('%s: create_pack: wrote %s index: %s%s t+%6.3fs',
 
427
                time.ctime(), label, self.upload_transport.base,
 
428
                self.random_name, time.time() - self.start_time)
 
429
        # Replace the writable index on this object with a readonly, 
 
430
        # presently unloaded index. We should alter
 
431
        # the index layer to make its finish() error if add_node is
 
432
        # subsequently used. RBC
 
433
        self._replace_index_with_readonly(index_type)
 
434
 
 
435
 
 
436
class AggregateIndex(object):
 
437
    """An aggregated index for the RepositoryPackCollection.
 
438
 
 
439
    AggregateIndex is reponsible for managing the PackAccess object,
 
440
    Index-To-Pack mapping, and all indices list for a specific type of index
 
441
    such as 'revision index'.
 
442
 
 
443
    A CombinedIndex provides an index on a single key space built up
 
444
    from several on-disk indices.  The AggregateIndex builds on this 
 
445
    to provide a knit access layer, and allows having up to one writable
 
446
    index within the collection.
 
447
    """
 
448
    # XXX: Probably 'can be written to' could/should be separated from 'acts
 
449
    # like a knit index' -- mbp 20071024
 
450
 
 
451
    def __init__(self):
 
452
        """Create an AggregateIndex."""
 
453
        self.index_to_pack = {}
 
454
        self.combined_index = CombinedGraphIndex([])
 
455
        self.knit_access = _PackAccess(self.index_to_pack)
 
456
 
 
457
    def replace_indices(self, index_to_pack, indices):
 
458
        """Replace the current mappings with fresh ones.
 
459
 
 
460
        This should probably not be used eventually, rather incremental add and
 
461
        removal of indices. It has been added during refactoring of existing
 
462
        code.
 
463
 
 
464
        :param index_to_pack: A mapping from index objects to
 
465
            (transport, name) tuples for the pack file data.
 
466
        :param indices: A list of indices.
 
467
        """
 
468
        # refresh the revision pack map dict without replacing the instance.
 
469
        self.index_to_pack.clear()
 
470
        self.index_to_pack.update(index_to_pack)
 
471
        # XXX: API break - clearly a 'replace' method would be good?
 
472
        self.combined_index._indices[:] = indices
 
473
        # the current add nodes callback for the current writable index if
 
474
        # there is one.
 
475
        self.add_callback = None
 
476
 
 
477
    def add_index(self, index, pack):
 
478
        """Add index to the aggregate, which is an index for Pack pack.
 
479
 
 
480
        Future searches on the aggregate index will seach this new index
 
481
        before all previously inserted indices.
 
482
        
 
483
        :param index: An Index for the pack.
 
484
        :param pack: A Pack instance.
 
485
        """
 
486
        # expose it to the index map
 
487
        self.index_to_pack[index] = pack.access_tuple()
 
488
        # put it at the front of the linear index list
 
489
        self.combined_index.insert_index(0, index)
 
490
 
 
491
    def add_writable_index(self, index, pack):
 
492
        """Add an index which is able to have data added to it.
 
493
 
 
494
        There can be at most one writable index at any time.  Any
 
495
        modifications made to the knit are put into this index.
 
496
        
 
497
        :param index: An index from the pack parameter.
 
498
        :param pack: A Pack instance.
 
499
        """
 
500
        if self.add_callback is not None:
 
501
            raise AssertionError(
 
502
                "%s already has a writable index through %s" % \
 
503
                (self, self.add_callback))
 
504
        # allow writing: queue writes to a new index
 
505
        self.add_index(index, pack)
 
506
        # Updates the index to packs mapping as a side effect,
 
507
        self.knit_access.set_writer(pack._writer, index, pack.access_tuple())
 
508
        self.add_callback = index.add_nodes
 
509
 
 
510
    def clear(self):
 
511
        """Reset all the aggregate data to nothing."""
 
512
        self.knit_access.set_writer(None, None, (None, None))
 
513
        self.index_to_pack.clear()
 
514
        del self.combined_index._indices[:]
 
515
        self.add_callback = None
 
516
 
 
517
    def remove_index(self, index, pack):
 
518
        """Remove index from the indices used to answer queries.
 
519
        
 
520
        :param index: An index from the pack parameter.
 
521
        :param pack: A Pack instance.
 
522
        """
 
523
        del self.index_to_pack[index]
 
524
        self.combined_index._indices.remove(index)
 
525
        if (self.add_callback is not None and
 
526
            getattr(index, 'add_nodes', None) == self.add_callback):
 
527
            self.add_callback = None
 
528
            self.knit_access.set_writer(None, None, (None, None))
 
529
 
 
530
 
 
531
class Packer(object):
 
532
    """Create a pack from packs."""
 
533
 
 
534
    def __init__(self, pack_collection, packs, suffix, revision_ids=None):
 
535
        """Create a Packer.
 
536
 
 
537
        :param pack_collection: A RepositoryPackCollection object where the
 
538
            new pack is being written to.
 
539
        :param packs: The packs to combine.
 
540
        :param suffix: The suffix to use on the temporary files for the pack.
 
541
        :param revision_ids: Revision ids to limit the pack to.
 
542
        """
 
543
        self.packs = packs
 
544
        self.suffix = suffix
 
545
        self.revision_ids = revision_ids
 
546
        # The pack object we are creating.
 
547
        self.new_pack = None
 
548
        self._pack_collection = pack_collection
 
549
        # The index layer keys for the revisions being copied. None for 'all
 
550
        # objects'.
 
551
        self._revision_keys = None
 
552
        # What text keys to copy. None for 'all texts'. This is set by
 
553
        # _copy_inventory_texts
 
554
        self._text_filter = None
 
555
        self._extra_init()
 
556
 
 
557
    def _extra_init(self):
 
558
        """A template hook to allow extending the constructor trivially."""
 
559
 
 
560
    def pack(self, pb=None):
 
561
        """Create a new pack by reading data from other packs.
 
562
 
 
563
        This does little more than a bulk copy of data. One key difference
 
564
        is that data with the same item key across multiple packs is elided
 
565
        from the output. The new pack is written into the current pack store
 
566
        along with its indices, and the name added to the pack names. The 
 
567
        source packs are not altered and are not required to be in the current
 
568
        pack collection.
 
569
 
 
570
        :param pb: An optional progress bar to use. A nested bar is created if
 
571
            this is None.
 
572
        :return: A Pack object, or None if nothing was copied.
 
573
        """
 
574
        # open a pack - using the same name as the last temporary file
 
575
        # - which has already been flushed, so its safe.
 
576
        # XXX: - duplicate code warning with start_write_group; fix before
 
577
        #      considering 'done'.
 
578
        if self._pack_collection._new_pack is not None:
 
579
            raise errors.BzrError('call to create_pack_from_packs while '
 
580
                'another pack is being written.')
 
581
        if self.revision_ids is not None:
 
582
            if len(self.revision_ids) == 0:
 
583
                # silly fetch request.
 
584
                return None
 
585
            else:
 
586
                self.revision_ids = frozenset(self.revision_ids)
 
587
        if pb is None:
 
588
            self.pb = ui.ui_factory.nested_progress_bar()
 
589
        else:
 
590
            self.pb = pb
 
591
        try:
 
592
            return self._create_pack_from_packs()
 
593
        finally:
 
594
            if pb is None:
 
595
                self.pb.finished()
 
596
 
 
597
    def open_pack(self):
 
598
        """Open a pack for the pack we are creating."""
 
599
        return NewPack(self._pack_collection._upload_transport,
 
600
            self._pack_collection._index_transport,
 
601
            self._pack_collection._pack_transport, upload_suffix=self.suffix,
 
602
            file_mode=self._pack_collection.repo.control_files._file_mode)
 
603
 
 
604
    def _copy_revision_texts(self):
 
605
        """Copy revision data to the new pack."""
 
606
        # select revisions
 
607
        if self.revision_ids:
 
608
            revision_keys = [(revision_id,) for revision_id in self.revision_ids]
 
609
        else:
 
610
            revision_keys = None
 
611
        # select revision keys
 
612
        revision_index_map = self._pack_collection._packs_list_to_pack_map_and_index_list(
 
613
            self.packs, 'revision_index')[0]
 
614
        revision_nodes = self._pack_collection._index_contents(revision_index_map, revision_keys)
 
615
        # copy revision keys and adjust values
 
616
        self.pb.update("Copying revision texts", 1)
 
617
        total_items, readv_group_iter = self._revision_node_readv(revision_nodes)
 
618
        list(self._copy_nodes_graph(revision_index_map, self.new_pack._writer,
 
619
            self.new_pack.revision_index, readv_group_iter, total_items))
 
620
        if 'pack' in debug.debug_flags:
 
621
            mutter('%s: create_pack: revisions copied: %s%s %d items t+%6.3fs',
 
622
                time.ctime(), self._pack_collection._upload_transport.base,
 
623
                self.new_pack.random_name,
 
624
                self.new_pack.revision_index.key_count(),
 
625
                time.time() - self.new_pack.start_time)
 
626
        self._revision_keys = revision_keys
 
627
 
 
628
    def _copy_inventory_texts(self):
 
629
        """Copy the inventory texts to the new pack.
 
630
 
 
631
        self._revision_keys is used to determine what inventories to copy.
 
632
 
 
633
        Sets self._text_filter appropriately.
 
634
        """
 
635
        # select inventory keys
 
636
        inv_keys = self._revision_keys # currently the same keyspace, and note that
 
637
        # querying for keys here could introduce a bug where an inventory item
 
638
        # is missed, so do not change it to query separately without cross
 
639
        # checking like the text key check below.
 
640
        inventory_index_map = self._pack_collection._packs_list_to_pack_map_and_index_list(
 
641
            self.packs, 'inventory_index')[0]
 
642
        inv_nodes = self._pack_collection._index_contents(inventory_index_map, inv_keys)
 
643
        # copy inventory keys and adjust values
 
644
        # XXX: Should be a helper function to allow different inv representation
 
645
        # at this point.
 
646
        self.pb.update("Copying inventory texts", 2)
 
647
        total_items, readv_group_iter = self._least_readv_node_readv(inv_nodes)
 
648
        # Only grab the output lines if we will be processing them
 
649
        output_lines = bool(self.revision_ids)
 
650
        inv_lines = self._copy_nodes_graph(inventory_index_map,
 
651
            self.new_pack._writer, self.new_pack.inventory_index,
 
652
            readv_group_iter, total_items, output_lines=output_lines)
 
653
        if self.revision_ids:
 
654
            self._process_inventory_lines(inv_lines)
 
655
        else:
 
656
            # eat the iterator to cause it to execute.
 
657
            list(inv_lines)
 
658
            self._text_filter = None
 
659
        if 'pack' in debug.debug_flags:
 
660
            mutter('%s: create_pack: inventories copied: %s%s %d items t+%6.3fs',
 
661
                time.ctime(), self._pack_collection._upload_transport.base,
 
662
                self.new_pack.random_name,
 
663
                self.new_pack.inventory_index.key_count(),
 
664
                time.time() - self.new_pack.start_time)
 
665
 
 
666
    def _copy_text_texts(self):
 
667
        # select text keys
 
668
        text_index_map, text_nodes = self._get_text_nodes()
 
669
        if self._text_filter is not None:
 
670
            # We could return the keys copied as part of the return value from
 
671
            # _copy_nodes_graph but this doesn't work all that well with the
 
672
            # need to get line output too, so we check separately, and as we're
 
673
            # going to buffer everything anyway, we check beforehand, which
 
674
            # saves reading knit data over the wire when we know there are
 
675
            # mising records.
 
676
            text_nodes = set(text_nodes)
 
677
            present_text_keys = set(_node[1] for _node in text_nodes)
 
678
            missing_text_keys = set(self._text_filter) - present_text_keys
 
679
            if missing_text_keys:
 
680
                # TODO: raise a specific error that can handle many missing
 
681
                # keys.
 
682
                a_missing_key = missing_text_keys.pop()
 
683
                raise errors.RevisionNotPresent(a_missing_key[1],
 
684
                    a_missing_key[0])
 
685
        # copy text keys and adjust values
 
686
        self.pb.update("Copying content texts", 3)
 
687
        total_items, readv_group_iter = self._least_readv_node_readv(text_nodes)
 
688
        list(self._copy_nodes_graph(text_index_map, self.new_pack._writer,
 
689
            self.new_pack.text_index, readv_group_iter, total_items))
 
690
        self._log_copied_texts()
 
691
 
 
692
    def _check_references(self):
 
693
        """Make sure our external refereneces are present."""
 
694
        external_refs = self.new_pack._external_compression_parents_of_texts()
 
695
        if external_refs:
 
696
            index = self._pack_collection.text_index.combined_index
 
697
            found_items = list(index.iter_entries(external_refs))
 
698
            if len(found_items) != len(external_refs):
 
699
                found_keys = set(k for idx, k, refs, value in found_items)
 
700
                missing_items = external_refs - found_keys
 
701
                missing_file_id, missing_revision_id = missing_items.pop()
 
702
                raise errors.RevisionNotPresent(missing_revision_id,
 
703
                                                missing_file_id)
 
704
 
 
705
    def _create_pack_from_packs(self):
 
706
        self.pb.update("Opening pack", 0, 5)
 
707
        self.new_pack = self.open_pack()
 
708
        new_pack = self.new_pack
 
709
        # buffer data - we won't be reading-back during the pack creation and
 
710
        # this makes a significant difference on sftp pushes.
 
711
        new_pack.set_write_cache_size(1024*1024)
 
712
        if 'pack' in debug.debug_flags:
 
713
            plain_pack_list = ['%s%s' % (a_pack.pack_transport.base, a_pack.name)
 
714
                for a_pack in self.packs]
 
715
            if self.revision_ids is not None:
 
716
                rev_count = len(self.revision_ids)
 
717
            else:
 
718
                rev_count = 'all'
 
719
            mutter('%s: create_pack: creating pack from source packs: '
 
720
                '%s%s %s revisions wanted %s t=0',
 
721
                time.ctime(), self._pack_collection._upload_transport.base, new_pack.random_name,
 
722
                plain_pack_list, rev_count)
 
723
        self._copy_revision_texts()
 
724
        self._copy_inventory_texts()
 
725
        self._copy_text_texts()
 
726
        # select signature keys
 
727
        signature_filter = self._revision_keys # same keyspace
 
728
        signature_index_map = self._pack_collection._packs_list_to_pack_map_and_index_list(
 
729
            self.packs, 'signature_index')[0]
 
730
        signature_nodes = self._pack_collection._index_contents(signature_index_map,
 
731
            signature_filter)
 
732
        # copy signature keys and adjust values
 
733
        self.pb.update("Copying signature texts", 4)
 
734
        self._copy_nodes(signature_nodes, signature_index_map, new_pack._writer,
 
735
            new_pack.signature_index)
 
736
        if 'pack' in debug.debug_flags:
 
737
            mutter('%s: create_pack: revision signatures copied: %s%s %d items t+%6.3fs',
 
738
                time.ctime(), self._pack_collection._upload_transport.base, new_pack.random_name,
 
739
                new_pack.signature_index.key_count(),
 
740
                time.time() - new_pack.start_time)
 
741
        self._check_references()
 
742
        if not self._use_pack(new_pack):
 
743
            new_pack.abort()
 
744
            return None
 
745
        self.pb.update("Finishing pack", 5)
 
746
        new_pack.finish()
 
747
        self._pack_collection.allocate(new_pack)
 
748
        return new_pack
 
749
 
 
750
    def _copy_nodes(self, nodes, index_map, writer, write_index):
 
751
        """Copy knit nodes between packs with no graph references."""
 
752
        pb = ui.ui_factory.nested_progress_bar()
 
753
        try:
 
754
            return self._do_copy_nodes(nodes, index_map, writer,
 
755
                write_index, pb)
 
756
        finally:
 
757
            pb.finished()
 
758
 
 
759
    def _do_copy_nodes(self, nodes, index_map, writer, write_index, pb):
 
760
        # for record verification
 
761
        knit_data = _KnitData(None)
 
762
        # plan a readv on each source pack:
 
763
        # group by pack
 
764
        nodes = sorted(nodes)
 
765
        # how to map this into knit.py - or knit.py into this?
 
766
        # we don't want the typical knit logic, we want grouping by pack
 
767
        # at this point - perhaps a helper library for the following code 
 
768
        # duplication points?
 
769
        request_groups = {}
 
770
        for index, key, value in nodes:
 
771
            if index not in request_groups:
 
772
                request_groups[index] = []
 
773
            request_groups[index].append((key, value))
 
774
        record_index = 0
 
775
        pb.update("Copied record", record_index, len(nodes))
 
776
        for index, items in request_groups.iteritems():
 
777
            pack_readv_requests = []
 
778
            for key, value in items:
 
779
                # ---- KnitGraphIndex.get_position
 
780
                bits = value[1:].split(' ')
 
781
                offset, length = int(bits[0]), int(bits[1])
 
782
                pack_readv_requests.append((offset, length, (key, value[0])))
 
783
            # linear scan up the pack
 
784
            pack_readv_requests.sort()
 
785
            # copy the data
 
786
            transport, path = index_map[index]
 
787
            reader = pack.make_readv_reader(transport, path,
 
788
                [offset[0:2] for offset in pack_readv_requests])
 
789
            for (names, read_func), (_1, _2, (key, eol_flag)) in \
 
790
                izip(reader.iter_records(), pack_readv_requests):
 
791
                raw_data = read_func(None)
 
792
                # check the header only
 
793
                df, _ = knit_data._parse_record_header(key[-1], raw_data)
 
794
                df.close()
 
795
                pos, size = writer.add_bytes_record(raw_data, names)
 
796
                write_index.add_node(key, eol_flag + "%d %d" % (pos, size))
 
797
                pb.update("Copied record", record_index)
 
798
                record_index += 1
 
799
 
 
800
    def _copy_nodes_graph(self, index_map, writer, write_index,
 
801
        readv_group_iter, total_items, output_lines=False):
 
802
        """Copy knit nodes between packs.
 
803
 
 
804
        :param output_lines: Return lines present in the copied data as
 
805
            an iterator of line,version_id.
 
806
        """
 
807
        pb = ui.ui_factory.nested_progress_bar()
 
808
        try:
 
809
            for result in self._do_copy_nodes_graph(index_map, writer,
 
810
                write_index, output_lines, pb, readv_group_iter, total_items):
 
811
                yield result
 
812
        except Exception:
 
813
            # Python 2.4 does not permit try:finally: in a generator.
 
814
            pb.finished()
 
815
            raise
 
816
        else:
 
817
            pb.finished()
 
818
 
 
819
    def _do_copy_nodes_graph(self, index_map, writer, write_index,
 
820
        output_lines, pb, readv_group_iter, total_items):
 
821
        # for record verification
 
822
        knit_data = _KnitData(None)
 
823
        # for line extraction when requested (inventories only)
 
824
        if output_lines:
 
825
            factory = knit.KnitPlainFactory()
 
826
        record_index = 0
 
827
        pb.update("Copied record", record_index, total_items)
 
828
        for index, readv_vector, node_vector in readv_group_iter:
 
829
            # copy the data
 
830
            transport, path = index_map[index]
 
831
            reader = pack.make_readv_reader(transport, path, readv_vector)
 
832
            for (names, read_func), (key, eol_flag, references) in \
 
833
                izip(reader.iter_records(), node_vector):
 
834
                raw_data = read_func(None)
 
835
                version_id = key[-1]
 
836
                if output_lines:
 
837
                    # read the entire thing
 
838
                    content, _ = knit_data._parse_record(version_id, raw_data)
 
839
                    if len(references[-1]) == 0:
 
840
                        line_iterator = factory.get_fulltext_content(content)
 
841
                    else:
 
842
                        line_iterator = factory.get_linedelta_content(content)
 
843
                    for line in line_iterator:
 
844
                        yield line, version_id
 
845
                else:
 
846
                    # check the header only
 
847
                    df, _ = knit_data._parse_record_header(version_id, raw_data)
 
848
                    df.close()
 
849
                pos, size = writer.add_bytes_record(raw_data, names)
 
850
                write_index.add_node(key, eol_flag + "%d %d" % (pos, size), references)
 
851
                pb.update("Copied record", record_index)
 
852
                record_index += 1
 
853
 
 
854
    def _get_text_nodes(self):
 
855
        text_index_map = self._pack_collection._packs_list_to_pack_map_and_index_list(
 
856
            self.packs, 'text_index')[0]
 
857
        return text_index_map, self._pack_collection._index_contents(text_index_map,
 
858
            self._text_filter)
 
859
 
 
860
    def _least_readv_node_readv(self, nodes):
 
861
        """Generate request groups for nodes using the least readv's.
 
862
        
 
863
        :param nodes: An iterable of graph index nodes.
 
864
        :return: Total node count and an iterator of the data needed to perform
 
865
            readvs to obtain the data for nodes. Each item yielded by the
 
866
            iterator is a tuple with:
 
867
            index, readv_vector, node_vector. readv_vector is a list ready to
 
868
            hand to the transport readv method, and node_vector is a list of
 
869
            (key, eol_flag, references) for the the node retrieved by the
 
870
            matching readv_vector.
 
871
        """
 
872
        # group by pack so we do one readv per pack
 
873
        nodes = sorted(nodes)
 
874
        total = len(nodes)
 
875
        request_groups = {}
 
876
        for index, key, value, references in nodes:
 
877
            if index not in request_groups:
 
878
                request_groups[index] = []
 
879
            request_groups[index].append((key, value, references))
 
880
        result = []
 
881
        for index, items in request_groups.iteritems():
 
882
            pack_readv_requests = []
 
883
            for key, value, references in items:
 
884
                # ---- KnitGraphIndex.get_position
 
885
                bits = value[1:].split(' ')
 
886
                offset, length = int(bits[0]), int(bits[1])
 
887
                pack_readv_requests.append(
 
888
                    ((offset, length), (key, value[0], references)))
 
889
            # linear scan up the pack to maximum range combining.
 
890
            pack_readv_requests.sort()
 
891
            # split out the readv and the node data.
 
892
            pack_readv = [readv for readv, node in pack_readv_requests]
 
893
            node_vector = [node for readv, node in pack_readv_requests]
 
894
            result.append((index, pack_readv, node_vector))
 
895
        return total, result
 
896
 
 
897
    def _log_copied_texts(self):
 
898
        if 'pack' in debug.debug_flags:
 
899
            mutter('%s: create_pack: file texts copied: %s%s %d items t+%6.3fs',
 
900
                time.ctime(), self._pack_collection._upload_transport.base,
 
901
                self.new_pack.random_name,
 
902
                self.new_pack.text_index.key_count(),
 
903
                time.time() - self.new_pack.start_time)
 
904
 
 
905
    def _process_inventory_lines(self, inv_lines):
 
906
        """Use up the inv_lines generator and setup a text key filter."""
 
907
        repo = self._pack_collection.repo
 
908
        fileid_revisions = repo._find_file_ids_from_xml_inventory_lines(
 
909
            inv_lines, self.revision_ids)
 
910
        text_filter = []
 
911
        for fileid, file_revids in fileid_revisions.iteritems():
 
912
            text_filter.extend([(fileid, file_revid) for file_revid in file_revids])
 
913
        self._text_filter = text_filter
 
914
 
 
915
    def _revision_node_readv(self, revision_nodes):
 
916
        """Return the total revisions and the readv's to issue.
 
917
 
 
918
        :param revision_nodes: The revision index contents for the packs being
 
919
            incorporated into the new pack.
 
920
        :return: As per _least_readv_node_readv.
 
921
        """
 
922
        return self._least_readv_node_readv(revision_nodes)
 
923
 
 
924
    def _use_pack(self, new_pack):
 
925
        """Return True if new_pack should be used.
 
926
 
 
927
        :param new_pack: The pack that has just been created.
 
928
        :return: True if the pack should be used.
 
929
        """
 
930
        return new_pack.data_inserted()
 
931
 
 
932
 
 
933
class OptimisingPacker(Packer):
 
934
    """A packer which spends more time to create better disk layouts."""
 
935
 
 
936
    def _revision_node_readv(self, revision_nodes):
 
937
        """Return the total revisions and the readv's to issue.
 
938
 
 
939
        This sort places revisions in topological order with the ancestors
 
940
        after the children.
 
941
 
 
942
        :param revision_nodes: The revision index contents for the packs being
 
943
            incorporated into the new pack.
 
944
        :return: As per _least_readv_node_readv.
 
945
        """
 
946
        # build an ancestors dict
 
947
        ancestors = {}
 
948
        by_key = {}
 
949
        for index, key, value, references in revision_nodes:
 
950
            ancestors[key] = references[0]
 
951
            by_key[key] = (index, value, references)
 
952
        order = tsort.topo_sort(ancestors)
 
953
        total = len(order)
 
954
        # Single IO is pathological, but it will work as a starting point.
 
955
        requests = []
 
956
        for key in reversed(order):
 
957
            index, value, references = by_key[key]
 
958
            # ---- KnitGraphIndex.get_position
 
959
            bits = value[1:].split(' ')
 
960
            offset, length = int(bits[0]), int(bits[1])
 
961
            requests.append(
 
962
                (index, [(offset, length)], [(key, value[0], references)]))
 
963
        # TODO: combine requests in the same index that are in ascending order.
 
964
        return total, requests
 
965
 
 
966
 
 
967
class ReconcilePacker(Packer):
 
968
    """A packer which regenerates indices etc as it copies.
 
969
    
 
970
    This is used by ``bzr reconcile`` to cause parent text pointers to be
 
971
    regenerated.
 
972
    """
 
973
 
 
974
    def _extra_init(self):
 
975
        self._data_changed = False
 
976
 
 
977
    def _process_inventory_lines(self, inv_lines):
 
978
        """Generate a text key reference map rather for reconciling with."""
 
979
        repo = self._pack_collection.repo
 
980
        refs = repo._find_text_key_references_from_xml_inventory_lines(
 
981
            inv_lines)
 
982
        self._text_refs = refs
 
983
        # during reconcile we:
 
984
        #  - convert unreferenced texts to full texts
 
985
        #  - correct texts which reference a text not copied to be full texts
 
986
        #  - copy all others as-is but with corrected parents.
 
987
        #  - so at this point we don't know enough to decide what becomes a full
 
988
        #    text.
 
989
        self._text_filter = None
 
990
 
 
991
    def _copy_text_texts(self):
 
992
        """generate what texts we should have and then copy."""
 
993
        self.pb.update("Copying content texts", 3)
 
994
        # we have three major tasks here:
 
995
        # 1) generate the ideal index
 
996
        repo = self._pack_collection.repo
 
997
        ancestors = dict([(key[0], tuple(ref[0] for ref in refs[0])) for
 
998
            _1, key, _2, refs in 
 
999
            self.new_pack.revision_index.iter_all_entries()])
 
1000
        ideal_index = repo._generate_text_key_index(self._text_refs, ancestors)
 
1001
        # 2) generate a text_nodes list that contains all the deltas that can
 
1002
        #    be used as-is, with corrected parents.
 
1003
        ok_nodes = []
 
1004
        bad_texts = []
 
1005
        discarded_nodes = []
 
1006
        NULL_REVISION = _mod_revision.NULL_REVISION
 
1007
        text_index_map, text_nodes = self._get_text_nodes()
 
1008
        for node in text_nodes:
 
1009
            # 0 - index
 
1010
            # 1 - key 
 
1011
            # 2 - value
 
1012
            # 3 - refs
 
1013
            try:
 
1014
                ideal_parents = tuple(ideal_index[node[1]])
 
1015
            except KeyError:
 
1016
                discarded_nodes.append(node)
 
1017
                self._data_changed = True
 
1018
            else:
 
1019
                if ideal_parents == (NULL_REVISION,):
 
1020
                    ideal_parents = ()
 
1021
                if ideal_parents == node[3][0]:
 
1022
                    # no change needed.
 
1023
                    ok_nodes.append(node)
 
1024
                elif ideal_parents[0:1] == node[3][0][0:1]:
 
1025
                    # the left most parent is the same, or there are no parents
 
1026
                    # today. Either way, we can preserve the representation as
 
1027
                    # long as we change the refs to be inserted.
 
1028
                    self._data_changed = True
 
1029
                    ok_nodes.append((node[0], node[1], node[2],
 
1030
                        (ideal_parents, node[3][1])))
 
1031
                    self._data_changed = True
 
1032
                else:
 
1033
                    # Reinsert this text completely
 
1034
                    bad_texts.append((node[1], ideal_parents))
 
1035
                    self._data_changed = True
 
1036
        # we're finished with some data.
 
1037
        del ideal_index
 
1038
        del text_nodes
 
1039
        # 3) bulk copy the ok data
 
1040
        total_items, readv_group_iter = self._least_readv_node_readv(ok_nodes)
 
1041
        list(self._copy_nodes_graph(text_index_map, self.new_pack._writer,
 
1042
            self.new_pack.text_index, readv_group_iter, total_items))
 
1043
        # 4) adhoc copy all the other texts.
 
1044
        # We have to topologically insert all texts otherwise we can fail to
 
1045
        # reconcile when parts of a single delta chain are preserved intact,
 
1046
        # and other parts are not. E.g. Discarded->d1->d2->d3. d1 will be
 
1047
        # reinserted, and if d3 has incorrect parents it will also be
 
1048
        # reinserted. If we insert d3 first, d2 is present (as it was bulk
 
1049
        # copied), so we will try to delta, but d2 is not currently able to be
 
1050
        # extracted because it's basis d1 is not present. Topologically sorting
 
1051
        # addresses this. The following generates a sort for all the texts that
 
1052
        # are being inserted without having to reference the entire text key
 
1053
        # space (we only topo sort the revisions, which is smaller).
 
1054
        topo_order = tsort.topo_sort(ancestors)
 
1055
        rev_order = dict(zip(topo_order, range(len(topo_order))))
 
1056
        bad_texts.sort(key=lambda key:rev_order[key[0][1]])
 
1057
        transaction = repo.get_transaction()
 
1058
        file_id_index = GraphIndexPrefixAdapter(
 
1059
            self.new_pack.text_index,
 
1060
            ('blank', ), 1,
 
1061
            add_nodes_callback=self.new_pack.text_index.add_nodes)
 
1062
        knit_index = KnitGraphIndex(file_id_index,
 
1063
            add_callback=file_id_index.add_nodes,
 
1064
            deltas=True, parents=True)
 
1065
        output_knit = knit.KnitVersionedFile('reconcile-texts',
 
1066
            self._pack_collection.transport,
 
1067
            index=knit_index,
 
1068
            access_method=_PackAccess(
 
1069
                {self.new_pack.text_index:self.new_pack.access_tuple()},
 
1070
                (self.new_pack._writer, self.new_pack.text_index)),
 
1071
            factory=knit.KnitPlainFactory())
 
1072
        for key, parent_keys in bad_texts:
 
1073
            # We refer to the new pack to delta data being output.
 
1074
            # A possible improvement would be to catch errors on short reads
 
1075
            # and only flush then.
 
1076
            self.new_pack.flush()
 
1077
            parents = []
 
1078
            for parent_key in parent_keys:
 
1079
                if parent_key[0] != key[0]:
 
1080
                    # Graph parents must match the fileid
 
1081
                    raise errors.BzrError('Mismatched key parent %r:%r' %
 
1082
                        (key, parent_keys))
 
1083
                parents.append(parent_key[1])
 
1084
            source_weave = repo.weave_store.get_weave(key[0], transaction)
 
1085
            text_lines = source_weave.get_lines(key[1])
 
1086
            # adapt the 'knit' to the current file_id.
 
1087
            file_id_index = GraphIndexPrefixAdapter(
 
1088
                self.new_pack.text_index,
 
1089
                (key[0], ), 1,
 
1090
                add_nodes_callback=self.new_pack.text_index.add_nodes)
 
1091
            knit_index._graph_index = file_id_index
 
1092
            knit_index._add_callback = file_id_index.add_nodes
 
1093
            output_knit.add_lines_with_ghosts(
 
1094
                key[1], parents, text_lines, random_id=True, check_content=False)
 
1095
        # 5) check that nothing inserted has a reference outside the keyspace.
 
1096
        missing_text_keys = self.new_pack._external_compression_parents_of_texts()
 
1097
        if missing_text_keys:
 
1098
            raise errors.BzrError('Reference to missing compression parents %r'
 
1099
                % (refs - keys,))
 
1100
        self._log_copied_texts()
 
1101
 
 
1102
    def _use_pack(self, new_pack):
 
1103
        """Override _use_pack to check for reconcile having changed content."""
 
1104
        # XXX: we might be better checking this at the copy time.
 
1105
        original_inventory_keys = set()
 
1106
        inv_index = self._pack_collection.inventory_index.combined_index
 
1107
        for entry in inv_index.iter_all_entries():
 
1108
            original_inventory_keys.add(entry[1])
 
1109
        new_inventory_keys = set()
 
1110
        for entry in new_pack.inventory_index.iter_all_entries():
 
1111
            new_inventory_keys.add(entry[1])
 
1112
        if new_inventory_keys != original_inventory_keys:
 
1113
            self._data_changed = True
 
1114
        return new_pack.data_inserted() and self._data_changed
 
1115
 
 
1116
 
 
1117
class RepositoryPackCollection(object):
 
1118
    """Management of packs within a repository."""
 
1119
 
 
1120
    def __init__(self, repo, transport, index_transport, upload_transport,
 
1121
                 pack_transport):
 
1122
        """Create a new RepositoryPackCollection.
 
1123
 
 
1124
        :param transport: Addresses the repository base directory 
 
1125
            (typically .bzr/repository/).
 
1126
        :param index_transport: Addresses the directory containing indices.
 
1127
        :param upload_transport: Addresses the directory into which packs are written
 
1128
            while they're being created.
 
1129
        :param pack_transport: Addresses the directory of existing complete packs.
 
1130
        """
 
1131
        self.repo = repo
 
1132
        self.transport = transport
 
1133
        self._index_transport = index_transport
 
1134
        self._upload_transport = upload_transport
 
1135
        self._pack_transport = pack_transport
 
1136
        self._suffix_offsets = {'.rix': 0, '.iix': 1, '.tix': 2, '.six': 3}
 
1137
        self.packs = []
 
1138
        # name:Pack mapping
 
1139
        self._packs_by_name = {}
 
1140
        # the previous pack-names content
 
1141
        self._packs_at_load = None
 
1142
        # when a pack is being created by this object, the state of that pack.
 
1143
        self._new_pack = None
 
1144
        # aggregated revision index data
 
1145
        self.revision_index = AggregateIndex()
 
1146
        self.inventory_index = AggregateIndex()
 
1147
        self.text_index = AggregateIndex()
 
1148
        self.signature_index = AggregateIndex()
 
1149
 
 
1150
    def add_pack_to_memory(self, pack):
 
1151
        """Make a Pack object available to the repository to satisfy queries.
 
1152
        
 
1153
        :param pack: A Pack object.
 
1154
        """
 
1155
        if pack.name in self._packs_by_name:
 
1156
            raise AssertionError()
 
1157
        self.packs.append(pack)
 
1158
        self._packs_by_name[pack.name] = pack
 
1159
        self.revision_index.add_index(pack.revision_index, pack)
 
1160
        self.inventory_index.add_index(pack.inventory_index, pack)
 
1161
        self.text_index.add_index(pack.text_index, pack)
 
1162
        self.signature_index.add_index(pack.signature_index, pack)
 
1163
        
 
1164
    def _add_text_to_weave(self, file_id, revision_id, new_lines, parents,
 
1165
        nostore_sha, random_revid):
 
1166
        file_id_index = GraphIndexPrefixAdapter(
 
1167
            self.text_index.combined_index,
 
1168
            (file_id, ), 1,
 
1169
            add_nodes_callback=self.text_index.add_callback)
 
1170
        self.repo._text_knit._index._graph_index = file_id_index
 
1171
        self.repo._text_knit._index._add_callback = file_id_index.add_nodes
 
1172
        return self.repo._text_knit.add_lines_with_ghosts(
 
1173
            revision_id, parents, new_lines, nostore_sha=nostore_sha,
 
1174
            random_id=random_revid, check_content=False)[0:2]
 
1175
 
 
1176
    def all_packs(self):
 
1177
        """Return a list of all the Pack objects this repository has.
 
1178
 
 
1179
        Note that an in-progress pack being created is not returned.
 
1180
 
 
1181
        :return: A list of Pack objects for all the packs in the repository.
 
1182
        """
 
1183
        result = []
 
1184
        for name in self.names():
 
1185
            result.append(self.get_pack_by_name(name))
 
1186
        return result
 
1187
 
 
1188
    def autopack(self):
 
1189
        """Pack the pack collection incrementally.
 
1190
        
 
1191
        This will not attempt global reorganisation or recompression,
 
1192
        rather it will just ensure that the total number of packs does
 
1193
        not grow without bound. It uses the _max_pack_count method to
 
1194
        determine if autopacking is needed, and the pack_distribution
 
1195
        method to determine the number of revisions in each pack.
 
1196
 
 
1197
        If autopacking takes place then the packs name collection will have
 
1198
        been flushed to disk - packing requires updating the name collection
 
1199
        in synchronisation with certain steps. Otherwise the names collection
 
1200
        is not flushed.
 
1201
 
 
1202
        :return: True if packing took place.
 
1203
        """
 
1204
        # XXX: Should not be needed when the management of indices is sane.
 
1205
        total_revisions = self.revision_index.combined_index.key_count()
 
1206
        total_packs = len(self._names)
 
1207
        if self._max_pack_count(total_revisions) >= total_packs:
 
1208
            return False
 
1209
        # XXX: the following may want to be a class, to pack with a given
 
1210
        # policy.
 
1211
        mutter('Auto-packing repository %s, which has %d pack files, '
 
1212
            'containing %d revisions into %d packs.', self, total_packs,
 
1213
            total_revisions, self._max_pack_count(total_revisions))
 
1214
        # determine which packs need changing
 
1215
        pack_distribution = self.pack_distribution(total_revisions)
 
1216
        existing_packs = []
 
1217
        for pack in self.all_packs():
 
1218
            revision_count = pack.get_revision_count()
 
1219
            if revision_count == 0:
 
1220
                # revision less packs are not generated by normal operation,
 
1221
                # only by operations like sign-my-commits, and thus will not
 
1222
                # tend to grow rapdily or without bound like commit containing
 
1223
                # packs do - leave them alone as packing them really should
 
1224
                # group their data with the relevant commit, and that may
 
1225
                # involve rewriting ancient history - which autopack tries to
 
1226
                # avoid. Alternatively we could not group the data but treat
 
1227
                # each of these as having a single revision, and thus add 
 
1228
                # one revision for each to the total revision count, to get
 
1229
                # a matching distribution.
 
1230
                continue
 
1231
            existing_packs.append((revision_count, pack))
 
1232
        pack_operations = self.plan_autopack_combinations(
 
1233
            existing_packs, pack_distribution)
 
1234
        self._execute_pack_operations(pack_operations)
 
1235
        return True
 
1236
 
 
1237
    def _execute_pack_operations(self, pack_operations, _packer_class=Packer):
 
1238
        """Execute a series of pack operations.
 
1239
 
 
1240
        :param pack_operations: A list of [revision_count, packs_to_combine].
 
1241
        :param _packer_class: The class of packer to use (default: Packer).
 
1242
        :return: None.
 
1243
        """
 
1244
        for revision_count, packs in pack_operations:
 
1245
            # we may have no-ops from the setup logic
 
1246
            if len(packs) == 0:
 
1247
                continue
 
1248
            _packer_class(self, packs, '.autopack').pack()
 
1249
            for pack in packs:
 
1250
                self._remove_pack_from_memory(pack)
 
1251
        # record the newly available packs and stop advertising the old
 
1252
        # packs
 
1253
        self._save_pack_names(clear_obsolete_packs=True)
 
1254
        # Move the old packs out of the way now they are no longer referenced.
 
1255
        for revision_count, packs in pack_operations:
 
1256
            self._obsolete_packs(packs)
 
1257
 
 
1258
    def lock_names(self):
 
1259
        """Acquire the mutex around the pack-names index.
 
1260
        
 
1261
        This cannot be used in the middle of a read-only transaction on the
 
1262
        repository.
 
1263
        """
 
1264
        self.repo.control_files.lock_write()
 
1265
 
 
1266
    def pack(self):
 
1267
        """Pack the pack collection totally."""
 
1268
        self.ensure_loaded()
 
1269
        total_packs = len(self._names)
 
1270
        if total_packs < 2:
 
1271
            # This is arguably wrong because we might not be optimal, but for
 
1272
            # now lets leave it in. (e.g. reconcile -> one pack. But not
 
1273
            # optimal.
 
1274
            return
 
1275
        total_revisions = self.revision_index.combined_index.key_count()
 
1276
        # XXX: the following may want to be a class, to pack with a given
 
1277
        # policy.
 
1278
        mutter('Packing repository %s, which has %d pack files, '
 
1279
            'containing %d revisions into 1 packs.', self, total_packs,
 
1280
            total_revisions)
 
1281
        # determine which packs need changing
 
1282
        pack_distribution = [1]
 
1283
        pack_operations = [[0, []]]
 
1284
        for pack in self.all_packs():
 
1285
            pack_operations[-1][0] += pack.get_revision_count()
 
1286
            pack_operations[-1][1].append(pack)
 
1287
        self._execute_pack_operations(pack_operations, OptimisingPacker)
 
1288
 
 
1289
    def plan_autopack_combinations(self, existing_packs, pack_distribution):
 
1290
        """Plan a pack operation.
 
1291
 
 
1292
        :param existing_packs: The packs to pack. (A list of (revcount, Pack)
 
1293
            tuples).
 
1294
        :param pack_distribution: A list with the number of revisions desired
 
1295
            in each pack.
 
1296
        """
 
1297
        if len(existing_packs) <= len(pack_distribution):
 
1298
            return []
 
1299
        existing_packs.sort(reverse=True)
 
1300
        pack_operations = [[0, []]]
 
1301
        # plan out what packs to keep, and what to reorganise
 
1302
        while len(existing_packs):
 
1303
            # take the largest pack, and if its less than the head of the
 
1304
            # distribution chart we will include its contents in the new pack for
 
1305
            # that position. If its larger, we remove its size from the
 
1306
            # distribution chart
 
1307
            next_pack_rev_count, next_pack = existing_packs.pop(0)
 
1308
            if next_pack_rev_count >= pack_distribution[0]:
 
1309
                # this is already packed 'better' than this, so we can
 
1310
                # not waste time packing it.
 
1311
                while next_pack_rev_count > 0:
 
1312
                    next_pack_rev_count -= pack_distribution[0]
 
1313
                    if next_pack_rev_count >= 0:
 
1314
                        # more to go
 
1315
                        del pack_distribution[0]
 
1316
                    else:
 
1317
                        # didn't use that entire bucket up
 
1318
                        pack_distribution[0] = -next_pack_rev_count
 
1319
            else:
 
1320
                # add the revisions we're going to add to the next output pack
 
1321
                pack_operations[-1][0] += next_pack_rev_count
 
1322
                # allocate this pack to the next pack sub operation
 
1323
                pack_operations[-1][1].append(next_pack)
 
1324
                if pack_operations[-1][0] >= pack_distribution[0]:
 
1325
                    # this pack is used up, shift left.
 
1326
                    del pack_distribution[0]
 
1327
                    pack_operations.append([0, []])
 
1328
        
 
1329
        return pack_operations
 
1330
 
 
1331
    def ensure_loaded(self):
 
1332
        # NB: if you see an assertion error here, its probably access against
 
1333
        # an unlocked repo. Naughty.
 
1334
        if not self.repo.is_locked():
 
1335
            raise errors.ObjectNotLocked(self.repo)
 
1336
        if self._names is None:
 
1337
            self._names = {}
 
1338
            self._packs_at_load = set()
 
1339
            for index, key, value in self._iter_disk_pack_index():
 
1340
                name = key[0]
 
1341
                self._names[name] = self._parse_index_sizes(value)
 
1342
                self._packs_at_load.add((key, value))
 
1343
        # populate all the metadata.
 
1344
        self.all_packs()
 
1345
 
 
1346
    def _parse_index_sizes(self, value):
 
1347
        """Parse a string of index sizes."""
 
1348
        return tuple([int(digits) for digits in value.split(' ')])
 
1349
 
 
1350
    def get_pack_by_name(self, name):
 
1351
        """Get a Pack object by name.
 
1352
 
 
1353
        :param name: The name of the pack - e.g. '123456'
 
1354
        :return: A Pack object.
 
1355
        """
 
1356
        try:
 
1357
            return self._packs_by_name[name]
 
1358
        except KeyError:
 
1359
            rev_index = self._make_index(name, '.rix')
 
1360
            inv_index = self._make_index(name, '.iix')
 
1361
            txt_index = self._make_index(name, '.tix')
 
1362
            sig_index = self._make_index(name, '.six')
 
1363
            result = ExistingPack(self._pack_transport, name, rev_index,
 
1364
                inv_index, txt_index, sig_index)
 
1365
            self.add_pack_to_memory(result)
 
1366
            return result
 
1367
 
 
1368
    def allocate(self, a_new_pack):
 
1369
        """Allocate name in the list of packs.
 
1370
 
 
1371
        :param a_new_pack: A NewPack instance to be added to the collection of
 
1372
            packs for this repository.
 
1373
        """
 
1374
        self.ensure_loaded()
 
1375
        if a_new_pack.name in self._names:
 
1376
            raise errors.BzrError(
 
1377
                'Pack %r already exists in %s' % (a_new_pack.name, self))
 
1378
        self._names[a_new_pack.name] = tuple(a_new_pack.index_sizes)
 
1379
        self.add_pack_to_memory(a_new_pack)
 
1380
 
 
1381
    def _iter_disk_pack_index(self):
 
1382
        """Iterate over the contents of the pack-names index.
 
1383
        
 
1384
        This is used when loading the list from disk, and before writing to
 
1385
        detect updates from others during our write operation.
 
1386
        :return: An iterator of the index contents.
 
1387
        """
 
1388
        return GraphIndex(self.transport, 'pack-names', None
 
1389
                ).iter_all_entries()
 
1390
 
 
1391
    def _make_index(self, name, suffix):
 
1392
        size_offset = self._suffix_offsets[suffix]
 
1393
        index_name = name + suffix
 
1394
        index_size = self._names[name][size_offset]
 
1395
        return GraphIndex(
 
1396
            self._index_transport, index_name, index_size)
 
1397
 
 
1398
    def _max_pack_count(self, total_revisions):
 
1399
        """Return the maximum number of packs to use for total revisions.
 
1400
        
 
1401
        :param total_revisions: The total number of revisions in the
 
1402
            repository.
 
1403
        """
 
1404
        if not total_revisions:
 
1405
            return 1
 
1406
        digits = str(total_revisions)
 
1407
        result = 0
 
1408
        for digit in digits:
 
1409
            result += int(digit)
 
1410
        return result
 
1411
 
 
1412
    def names(self):
 
1413
        """Provide an order to the underlying names."""
 
1414
        return sorted(self._names.keys())
 
1415
 
 
1416
    def _obsolete_packs(self, packs):
 
1417
        """Move a number of packs which have been obsoleted out of the way.
 
1418
 
 
1419
        Each pack and its associated indices are moved out of the way.
 
1420
 
 
1421
        Note: for correctness this function should only be called after a new
 
1422
        pack names index has been written without these pack names, and with
 
1423
        the names of packs that contain the data previously available via these
 
1424
        packs.
 
1425
 
 
1426
        :param packs: The packs to obsolete.
 
1427
        :param return: None.
 
1428
        """
 
1429
        for pack in packs:
 
1430
            pack.pack_transport.rename(pack.file_name(),
 
1431
                '../obsolete_packs/' + pack.file_name())
 
1432
            # TODO: Probably needs to know all possible indices for this pack
 
1433
            # - or maybe list the directory and move all indices matching this
 
1434
            # name whether we recognize it or not?
 
1435
            for suffix in ('.iix', '.six', '.tix', '.rix'):
 
1436
                self._index_transport.rename(pack.name + suffix,
 
1437
                    '../obsolete_packs/' + pack.name + suffix)
 
1438
 
 
1439
    def pack_distribution(self, total_revisions):
 
1440
        """Generate a list of the number of revisions to put in each pack.
 
1441
 
 
1442
        :param total_revisions: The total number of revisions in the
 
1443
            repository.
 
1444
        """
 
1445
        if total_revisions == 0:
 
1446
            return [0]
 
1447
        digits = reversed(str(total_revisions))
 
1448
        result = []
 
1449
        for exponent, count in enumerate(digits):
 
1450
            size = 10 ** exponent
 
1451
            for pos in range(int(count)):
 
1452
                result.append(size)
 
1453
        return list(reversed(result))
 
1454
 
 
1455
    def _pack_tuple(self, name):
 
1456
        """Return a tuple with the transport and file name for a pack name."""
 
1457
        return self._pack_transport, name + '.pack'
 
1458
 
 
1459
    def _remove_pack_from_memory(self, pack):
 
1460
        """Remove pack from the packs accessed by this repository.
 
1461
        
 
1462
        Only affects memory state, until self._save_pack_names() is invoked.
 
1463
        """
 
1464
        self._names.pop(pack.name)
 
1465
        self._packs_by_name.pop(pack.name)
 
1466
        self._remove_pack_indices(pack)
 
1467
 
 
1468
    def _remove_pack_indices(self, pack):
 
1469
        """Remove the indices for pack from the aggregated indices."""
 
1470
        self.revision_index.remove_index(pack.revision_index, pack)
 
1471
        self.inventory_index.remove_index(pack.inventory_index, pack)
 
1472
        self.text_index.remove_index(pack.text_index, pack)
 
1473
        self.signature_index.remove_index(pack.signature_index, pack)
 
1474
 
 
1475
    def reset(self):
 
1476
        """Clear all cached data."""
 
1477
        # cached revision data
 
1478
        self.repo._revision_knit = None
 
1479
        self.revision_index.clear()
 
1480
        # cached signature data
 
1481
        self.repo._signature_knit = None
 
1482
        self.signature_index.clear()
 
1483
        # cached file text data
 
1484
        self.text_index.clear()
 
1485
        self.repo._text_knit = None
 
1486
        # cached inventory data
 
1487
        self.inventory_index.clear()
 
1488
        # remove the open pack
 
1489
        self._new_pack = None
 
1490
        # information about packs.
 
1491
        self._names = None
 
1492
        self.packs = []
 
1493
        self._packs_by_name = {}
 
1494
        self._packs_at_load = None
 
1495
 
 
1496
    def _make_index_map(self, index_suffix):
 
1497
        """Return information on existing indices.
 
1498
 
 
1499
        :param suffix: Index suffix added to pack name.
 
1500
 
 
1501
        :returns: (pack_map, indices) where indices is a list of GraphIndex 
 
1502
        objects, and pack_map is a mapping from those objects to the 
 
1503
        pack tuple they describe.
 
1504
        """
 
1505
        # TODO: stop using this; it creates new indices unnecessarily.
 
1506
        self.ensure_loaded()
 
1507
        suffix_map = {'.rix': 'revision_index',
 
1508
            '.six': 'signature_index',
 
1509
            '.iix': 'inventory_index',
 
1510
            '.tix': 'text_index',
 
1511
        }
 
1512
        return self._packs_list_to_pack_map_and_index_list(self.all_packs(),
 
1513
            suffix_map[index_suffix])
 
1514
 
 
1515
    def _packs_list_to_pack_map_and_index_list(self, packs, index_attribute):
 
1516
        """Convert a list of packs to an index pack map and index list.
 
1517
 
 
1518
        :param packs: The packs list to process.
 
1519
        :param index_attribute: The attribute that the desired index is found
 
1520
            on.
 
1521
        :return: A tuple (map, list) where map contains the dict from
 
1522
            index:pack_tuple, and lsit contains the indices in the same order
 
1523
            as the packs list.
 
1524
        """
 
1525
        indices = []
 
1526
        pack_map = {}
 
1527
        for pack in packs:
 
1528
            index = getattr(pack, index_attribute)
 
1529
            indices.append(index)
 
1530
            pack_map[index] = (pack.pack_transport, pack.file_name())
 
1531
        return pack_map, indices
 
1532
 
 
1533
    def _index_contents(self, pack_map, key_filter=None):
 
1534
        """Get an iterable of the index contents from a pack_map.
 
1535
 
 
1536
        :param pack_map: A map from indices to pack details.
 
1537
        :param key_filter: An optional filter to limit the
 
1538
            keys returned.
 
1539
        """
 
1540
        indices = [index for index in pack_map.iterkeys()]
 
1541
        all_index = CombinedGraphIndex(indices)
 
1542
        if key_filter is None:
 
1543
            return all_index.iter_all_entries()
 
1544
        else:
 
1545
            return all_index.iter_entries(key_filter)
 
1546
 
 
1547
    def _unlock_names(self):
 
1548
        """Release the mutex around the pack-names index."""
 
1549
        self.repo.control_files.unlock()
 
1550
 
 
1551
    def _save_pack_names(self, clear_obsolete_packs=False):
 
1552
        """Save the list of packs.
 
1553
 
 
1554
        This will take out the mutex around the pack names list for the
 
1555
        duration of the method call. If concurrent updates have been made, a
 
1556
        three-way merge between the current list and the current in memory list
 
1557
        is performed.
 
1558
 
 
1559
        :param clear_obsolete_packs: If True, clear out the contents of the
 
1560
            obsolete_packs directory.
 
1561
        """
 
1562
        self.lock_names()
 
1563
        try:
 
1564
            builder = GraphIndexBuilder()
 
1565
            # load the disk nodes across
 
1566
            disk_nodes = set()
 
1567
            for index, key, value in self._iter_disk_pack_index():
 
1568
                disk_nodes.add((key, value))
 
1569
            # do a two-way diff against our original content
 
1570
            current_nodes = set()
 
1571
            for name, sizes in self._names.iteritems():
 
1572
                current_nodes.add(
 
1573
                    ((name, ), ' '.join(str(size) for size in sizes)))
 
1574
            deleted_nodes = self._packs_at_load - current_nodes
 
1575
            new_nodes = current_nodes - self._packs_at_load
 
1576
            disk_nodes.difference_update(deleted_nodes)
 
1577
            disk_nodes.update(new_nodes)
 
1578
            # TODO: handle same-name, index-size-changes here - 
 
1579
            # e.g. use the value from disk, not ours, *unless* we're the one
 
1580
            # changing it.
 
1581
            for key, value in disk_nodes:
 
1582
                builder.add_node(key, value)
 
1583
            self.transport.put_file('pack-names', builder.finish(),
 
1584
                mode=self.repo.control_files._file_mode)
 
1585
            # move the baseline forward
 
1586
            self._packs_at_load = disk_nodes
 
1587
            # now clear out the obsolete packs directory
 
1588
            if clear_obsolete_packs:
 
1589
                self.transport.clone('obsolete_packs').delete_multi(
 
1590
                    self.transport.list_dir('obsolete_packs'))
 
1591
        finally:
 
1592
            self._unlock_names()
 
1593
        # synchronise the memory packs list with what we just wrote:
 
1594
        new_names = dict(disk_nodes)
 
1595
        # drop no longer present nodes
 
1596
        for pack in self.all_packs():
 
1597
            if (pack.name,) not in new_names:
 
1598
                self._remove_pack_from_memory(pack)
 
1599
        # add new nodes/refresh existing ones
 
1600
        for key, value in disk_nodes:
 
1601
            name = key[0]
 
1602
            sizes = self._parse_index_sizes(value)
 
1603
            if name in self._names:
 
1604
                # existing
 
1605
                if sizes != self._names[name]:
 
1606
                    # the pack for name has had its indices replaced - rare but
 
1607
                    # important to handle. XXX: probably can never happen today
 
1608
                    # because the three-way merge code above does not handle it
 
1609
                    # - you may end up adding the same key twice to the new
 
1610
                    # disk index because the set values are the same, unless
 
1611
                    # the only index shows up as deleted by the set difference
 
1612
                    # - which it may. Until there is a specific test for this,
 
1613
                    # assume its broken. RBC 20071017.
 
1614
                    self._remove_pack_from_memory(self.get_pack_by_name(name))
 
1615
                    self._names[name] = sizes
 
1616
                    self.get_pack_by_name(name)
 
1617
            else:
 
1618
                # new
 
1619
                self._names[name] = sizes
 
1620
                self.get_pack_by_name(name)
 
1621
 
 
1622
    def _start_write_group(self):
 
1623
        # Do not permit preparation for writing if we're not in a 'write lock'.
 
1624
        if not self.repo.is_write_locked():
 
1625
            raise errors.NotWriteLocked(self)
 
1626
        self._new_pack = NewPack(self._upload_transport, self._index_transport,
 
1627
            self._pack_transport, upload_suffix='.pack',
 
1628
            file_mode=self.repo.control_files._file_mode)
 
1629
        # allow writing: queue writes to a new index
 
1630
        self.revision_index.add_writable_index(self._new_pack.revision_index,
 
1631
            self._new_pack)
 
1632
        self.inventory_index.add_writable_index(self._new_pack.inventory_index,
 
1633
            self._new_pack)
 
1634
        self.text_index.add_writable_index(self._new_pack.text_index,
 
1635
            self._new_pack)
 
1636
        self.signature_index.add_writable_index(self._new_pack.signature_index,
 
1637
            self._new_pack)
 
1638
 
 
1639
        # reused revision and signature knits may need updating
 
1640
        #
 
1641
        # "Hysterical raisins. client code in bzrlib grabs those knits outside
 
1642
        # of write groups and then mutates it inside the write group."
 
1643
        if self.repo._revision_knit is not None:
 
1644
            self.repo._revision_knit._index._add_callback = \
 
1645
                self.revision_index.add_callback
 
1646
        if self.repo._signature_knit is not None:
 
1647
            self.repo._signature_knit._index._add_callback = \
 
1648
                self.signature_index.add_callback
 
1649
        # create a reused knit object for text addition in commit.
 
1650
        self.repo._text_knit = self.repo.weave_store.get_weave_or_empty(
 
1651
            'all-texts', None)
 
1652
 
 
1653
    def _abort_write_group(self):
 
1654
        # FIXME: just drop the transient index.
 
1655
        # forget what names there are
 
1656
        if self._new_pack is not None:
 
1657
            self._new_pack.abort()
 
1658
            self._remove_pack_indices(self._new_pack)
 
1659
            self._new_pack = None
 
1660
        self.repo._text_knit = None
 
1661
 
 
1662
    def _commit_write_group(self):
 
1663
        self._remove_pack_indices(self._new_pack)
 
1664
        if self._new_pack.data_inserted():
 
1665
            # get all the data to disk and read to use
 
1666
            self._new_pack.finish()
 
1667
            self.allocate(self._new_pack)
 
1668
            self._new_pack = None
 
1669
            if not self.autopack():
 
1670
                # when autopack takes no steps, the names list is still
 
1671
                # unsaved.
 
1672
                self._save_pack_names()
 
1673
        else:
 
1674
            self._new_pack.abort()
 
1675
            self._new_pack = None
 
1676
        self.repo._text_knit = None
 
1677
 
 
1678
 
 
1679
class KnitPackRevisionStore(KnitRevisionStore):
 
1680
    """An object to adapt access from RevisionStore's to use KnitPacks.
 
1681
 
 
1682
    This class works by replacing the original RevisionStore.
 
1683
    We need to do this because the KnitPackRevisionStore is less
 
1684
    isolated in its layering - it uses services from the repo.
 
1685
    """
 
1686
 
 
1687
    def __init__(self, repo, transport, revisionstore):
 
1688
        """Create a KnitPackRevisionStore on repo with revisionstore.
 
1689
 
 
1690
        This will store its state in the Repository, use the
 
1691
        indices to provide a KnitGraphIndex,
 
1692
        and at the end of transactions write new indices.
 
1693
        """
 
1694
        KnitRevisionStore.__init__(self, revisionstore.versioned_file_store)
 
1695
        self.repo = repo
 
1696
        self._serializer = revisionstore._serializer
 
1697
        self.transport = transport
 
1698
 
 
1699
    def get_revision_file(self, transaction):
 
1700
        """Get the revision versioned file object."""
 
1701
        if getattr(self.repo, '_revision_knit', None) is not None:
 
1702
            return self.repo._revision_knit
 
1703
        self.repo._pack_collection.ensure_loaded()
 
1704
        add_callback = self.repo._pack_collection.revision_index.add_callback
 
1705
        # setup knit specific objects
 
1706
        knit_index = KnitGraphIndex(
 
1707
            self.repo._pack_collection.revision_index.combined_index,
 
1708
            add_callback=add_callback)
 
1709
        self.repo._revision_knit = knit.KnitVersionedFile(
 
1710
            'revisions', self.transport.clone('..'),
 
1711
            self.repo.control_files._file_mode,
 
1712
            create=False,
 
1713
            index=knit_index, delta=False, factory=knit.KnitPlainFactory(),
 
1714
            access_method=self.repo._pack_collection.revision_index.knit_access)
 
1715
        return self.repo._revision_knit
 
1716
 
 
1717
    def get_signature_file(self, transaction):
 
1718
        """Get the signature versioned file object."""
 
1719
        if getattr(self.repo, '_signature_knit', None) is not None:
 
1720
            return self.repo._signature_knit
 
1721
        self.repo._pack_collection.ensure_loaded()
 
1722
        add_callback = self.repo._pack_collection.signature_index.add_callback
 
1723
        # setup knit specific objects
 
1724
        knit_index = KnitGraphIndex(
 
1725
            self.repo._pack_collection.signature_index.combined_index,
 
1726
            add_callback=add_callback, parents=False)
 
1727
        self.repo._signature_knit = knit.KnitVersionedFile(
 
1728
            'signatures', self.transport.clone('..'),
 
1729
            self.repo.control_files._file_mode,
 
1730
            create=False,
 
1731
            index=knit_index, delta=False, factory=knit.KnitPlainFactory(),
 
1732
            access_method=self.repo._pack_collection.signature_index.knit_access)
 
1733
        return self.repo._signature_knit
 
1734
 
 
1735
 
 
1736
class KnitPackTextStore(VersionedFileStore):
 
1737
    """Presents a TextStore abstraction on top of packs.
 
1738
 
 
1739
    This class works by replacing the original VersionedFileStore.
 
1740
    We need to do this because the KnitPackRevisionStore is less
 
1741
    isolated in its layering - it uses services from the repo and shares them
 
1742
    with all the data written in a single write group.
 
1743
    """
 
1744
 
 
1745
    def __init__(self, repo, transport, weavestore):
 
1746
        """Create a KnitPackTextStore on repo with weavestore.
 
1747
 
 
1748
        This will store its state in the Repository, use the
 
1749
        indices FileNames to provide a KnitGraphIndex,
 
1750
        and at the end of transactions write new indices.
 
1751
        """
 
1752
        # don't call base class constructor - it's not suitable.
 
1753
        # no transient data stored in the transaction
 
1754
        # cache.
 
1755
        self._precious = False
 
1756
        self.repo = repo
 
1757
        self.transport = transport
 
1758
        self.weavestore = weavestore
 
1759
        # XXX for check() which isn't updated yet
 
1760
        self._transport = weavestore._transport
 
1761
 
 
1762
    def get_weave_or_empty(self, file_id, transaction):
 
1763
        """Get a 'Knit' backed by the .tix indices.
 
1764
 
 
1765
        The transaction parameter is ignored.
 
1766
        """
 
1767
        self.repo._pack_collection.ensure_loaded()
 
1768
        add_callback = self.repo._pack_collection.text_index.add_callback
 
1769
        # setup knit specific objects
 
1770
        file_id_index = GraphIndexPrefixAdapter(
 
1771
            self.repo._pack_collection.text_index.combined_index,
 
1772
            (file_id, ), 1, add_nodes_callback=add_callback)
 
1773
        knit_index = KnitGraphIndex(file_id_index,
 
1774
            add_callback=file_id_index.add_nodes,
 
1775
            deltas=True, parents=True)
 
1776
        return knit.KnitVersionedFile('text:' + file_id,
 
1777
            self.transport.clone('..'),
 
1778
            None,
 
1779
            index=knit_index,
 
1780
            access_method=self.repo._pack_collection.text_index.knit_access,
 
1781
            factory=knit.KnitPlainFactory())
 
1782
 
 
1783
    get_weave = get_weave_or_empty
 
1784
 
 
1785
    def __iter__(self):
 
1786
        """Generate a list of the fileids inserted, for use by check."""
 
1787
        self.repo._pack_collection.ensure_loaded()
 
1788
        ids = set()
 
1789
        for index, key, value, refs in \
 
1790
            self.repo._pack_collection.text_index.combined_index.iter_all_entries():
 
1791
            ids.add(key[0])
 
1792
        return iter(ids)
 
1793
 
 
1794
 
 
1795
class InventoryKnitThunk(object):
 
1796
    """An object to manage thunking get_inventory_weave to pack based knits."""
 
1797
 
 
1798
    def __init__(self, repo, transport):
 
1799
        """Create an InventoryKnitThunk for repo at transport.
 
1800
 
 
1801
        This will store its state in the Repository, use the
 
1802
        indices FileNames to provide a KnitGraphIndex,
 
1803
        and at the end of transactions write a new index..
 
1804
        """
 
1805
        self.repo = repo
 
1806
        self.transport = transport
 
1807
 
 
1808
    def get_weave(self):
 
1809
        """Get a 'Knit' that contains inventory data."""
 
1810
        self.repo._pack_collection.ensure_loaded()
 
1811
        add_callback = self.repo._pack_collection.inventory_index.add_callback
 
1812
        # setup knit specific objects
 
1813
        knit_index = KnitGraphIndex(
 
1814
            self.repo._pack_collection.inventory_index.combined_index,
 
1815
            add_callback=add_callback, deltas=True, parents=True)
 
1816
        return knit.KnitVersionedFile(
 
1817
            'inventory', self.transport.clone('..'),
 
1818
            self.repo.control_files._file_mode,
 
1819
            create=False,
 
1820
            index=knit_index, delta=True, factory=knit.KnitPlainFactory(),
 
1821
            access_method=self.repo._pack_collection.inventory_index.knit_access)
 
1822
 
 
1823
 
 
1824
class KnitPackRepository(KnitRepository):
 
1825
    """Experimental graph-knit using repository."""
 
1826
 
 
1827
    def __init__(self, _format, a_bzrdir, control_files, _revision_store,
 
1828
        control_store, text_store, _commit_builder_class, _serializer):
 
1829
        KnitRepository.__init__(self, _format, a_bzrdir, control_files,
 
1830
            _revision_store, control_store, text_store, _commit_builder_class,
 
1831
            _serializer)
 
1832
        index_transport = control_files._transport.clone('indices')
 
1833
        self._pack_collection = RepositoryPackCollection(self, control_files._transport,
 
1834
            index_transport,
 
1835
            control_files._transport.clone('upload'),
 
1836
            control_files._transport.clone('packs'))
 
1837
        self._revision_store = KnitPackRevisionStore(self, index_transport, self._revision_store)
 
1838
        self.weave_store = KnitPackTextStore(self, index_transport, self.weave_store)
 
1839
        self._inv_thunk = InventoryKnitThunk(self, index_transport)
 
1840
        # True when the repository object is 'write locked' (as opposed to the
 
1841
        # physical lock only taken out around changes to the pack-names list.) 
 
1842
        # Another way to represent this would be a decorator around the control
 
1843
        # files object that presents logical locks as physical ones - if this
 
1844
        # gets ugly consider that alternative design. RBC 20071011
 
1845
        self._write_lock_count = 0
 
1846
        self._transaction = None
 
1847
        # for tests
 
1848
        self._reconcile_does_inventory_gc = True
 
1849
        self._reconcile_fixes_text_parents = True
 
1850
        self._reconcile_backsup_inventory = False
 
1851
 
 
1852
    def _abort_write_group(self):
 
1853
        self._pack_collection._abort_write_group()
 
1854
 
 
1855
    def _find_inconsistent_revision_parents(self):
 
1856
        """Find revisions with incorrectly cached parents.
 
1857
 
 
1858
        :returns: an iterator yielding tuples of (revison-id, parents-in-index,
 
1859
            parents-in-revision).
 
1860
        """
 
1861
        if not self.is_locked():
 
1862
            raise errors.ObjectNotLocked(self)
 
1863
        pb = ui.ui_factory.nested_progress_bar()
 
1864
        result = []
 
1865
        try:
 
1866
            revision_nodes = self._pack_collection.revision_index \
 
1867
                .combined_index.iter_all_entries()
 
1868
            index_positions = []
 
1869
            # Get the cached index values for all revisions, and also the location
 
1870
            # in each index of the revision text so we can perform linear IO.
 
1871
            for index, key, value, refs in revision_nodes:
 
1872
                pos, length = value[1:].split(' ')
 
1873
                index_positions.append((index, int(pos), key[0],
 
1874
                    tuple(parent[0] for parent in refs[0])))
 
1875
                pb.update("Reading revision index.", 0, 0)
 
1876
            index_positions.sort()
 
1877
            batch_count = len(index_positions) / 1000 + 1
 
1878
            pb.update("Checking cached revision graph.", 0, batch_count)
 
1879
            for offset in xrange(batch_count):
 
1880
                pb.update("Checking cached revision graph.", offset)
 
1881
                to_query = index_positions[offset * 1000:(offset + 1) * 1000]
 
1882
                if not to_query:
 
1883
                    break
 
1884
                rev_ids = [item[2] for item in to_query]
 
1885
                revs = self.get_revisions(rev_ids)
 
1886
                for revision, item in zip(revs, to_query):
 
1887
                    index_parents = item[3]
 
1888
                    rev_parents = tuple(revision.parent_ids)
 
1889
                    if index_parents != rev_parents:
 
1890
                        result.append((revision.revision_id, index_parents, rev_parents))
 
1891
        finally:
 
1892
            pb.finished()
 
1893
        return result
 
1894
 
 
1895
    @symbol_versioning.deprecated_method(symbol_versioning.one_one)
 
1896
    def get_parents(self, revision_ids):
 
1897
        """See graph._StackedParentsProvider.get_parents."""
 
1898
        parent_map = self.get_parent_map(revision_ids)
 
1899
        return [parent_map.get(r, None) for r in revision_ids]
 
1900
 
 
1901
    def get_parent_map(self, keys):
 
1902
        """See graph._StackedParentsProvider.get_parent_map
 
1903
 
 
1904
        This implementation accesses the combined revision index to provide
 
1905
        answers.
 
1906
        """
 
1907
        self._pack_collection.ensure_loaded()
 
1908
        index = self._pack_collection.revision_index.combined_index
 
1909
        keys = set(keys)
 
1910
        if _mod_revision.NULL_REVISION in keys:
 
1911
            keys.discard(_mod_revision.NULL_REVISION)
 
1912
            found_parents = {_mod_revision.NULL_REVISION:()}
 
1913
        else:
 
1914
            found_parents = {}
 
1915
        search_keys = set((revision_id,) for revision_id in keys)
 
1916
        for index, key, value, refs in index.iter_entries(search_keys):
 
1917
            parents = refs[0]
 
1918
            if not parents:
 
1919
                parents = (_mod_revision.NULL_REVISION,)
 
1920
            else:
 
1921
                parents = tuple(parent[0] for parent in parents)
 
1922
            found_parents[key[0]] = parents
 
1923
        return found_parents
 
1924
 
 
1925
    @symbol_versioning.deprecated_method(symbol_versioning.one_four)
 
1926
    @needs_read_lock
 
1927
    def get_revision_graph(self, revision_id=None):
 
1928
        """Return a dictionary containing the revision graph.
 
1929
 
 
1930
        :param revision_id: The revision_id to get a graph from. If None, then
 
1931
        the entire revision graph is returned. This is a deprecated mode of
 
1932
        operation and will be removed in the future.
 
1933
        :return: a dictionary of revision_id->revision_parents_list.
 
1934
        """
 
1935
        if 'evil' in debug.debug_flags:
 
1936
            mutter_callsite(3,
 
1937
                "get_revision_graph scales with size of history.")
 
1938
        # special case NULL_REVISION
 
1939
        if revision_id == _mod_revision.NULL_REVISION:
 
1940
            return {}
 
1941
        if revision_id is None:
 
1942
            revision_vf = self._get_revision_vf()
 
1943
            return revision_vf.get_graph()
 
1944
        g = self.get_graph()
 
1945
        first = g.get_parent_map([revision_id])
 
1946
        if revision_id not in first:
 
1947
            raise errors.NoSuchRevision(self, revision_id)
 
1948
        else:
 
1949
            ancestry = {}
 
1950
            children = {}
 
1951
            NULL_REVISION = _mod_revision.NULL_REVISION
 
1952
            ghosts = set([NULL_REVISION])
 
1953
            for rev_id, parent_ids in g.iter_ancestry([revision_id]):
 
1954
                if parent_ids is None: # This is a ghost
 
1955
                    ghosts.add(rev_id)
 
1956
                    continue
 
1957
                ancestry[rev_id] = parent_ids
 
1958
                for p in parent_ids:
 
1959
                    if p in children:
 
1960
                        children[p].append(rev_id)
 
1961
                    else:
 
1962
                        children[p] = [rev_id]
 
1963
 
 
1964
            if NULL_REVISION in ancestry:
 
1965
                del ancestry[NULL_REVISION]
 
1966
 
 
1967
            # Find all nodes that reference a ghost, and filter the ghosts out
 
1968
            # of their parent lists. To preserve the order of parents, and
 
1969
            # avoid double filtering nodes, we just find all children first,
 
1970
            # and then filter.
 
1971
            children_of_ghosts = set()
 
1972
            for ghost in ghosts:
 
1973
                children_of_ghosts.update(children[ghost])
 
1974
 
 
1975
            for child in children_of_ghosts:
 
1976
                ancestry[child] = tuple(p for p in ancestry[child]
 
1977
                                           if p not in ghosts)
 
1978
            return ancestry
 
1979
 
 
1980
    def has_revisions(self, revision_ids):
 
1981
        """See Repository.has_revisions()."""
 
1982
        revision_ids = set(revision_ids)
 
1983
        result = revision_ids.intersection(
 
1984
            set([None, _mod_revision.NULL_REVISION]))
 
1985
        revision_ids.difference_update(result)
 
1986
        index = self._pack_collection.revision_index.combined_index
 
1987
        keys = [(revision_id,) for revision_id in revision_ids]
 
1988
        result.update(node[1][0] for node in index.iter_entries(keys))
 
1989
        return result
 
1990
 
 
1991
    def _make_parents_provider(self):
 
1992
        return graph.CachingParentsProvider(self)
 
1993
 
 
1994
    def _refresh_data(self):
 
1995
        if self._write_lock_count == 1 or (
 
1996
            self.control_files._lock_count == 1 and
 
1997
            self.control_files._lock_mode == 'r'):
 
1998
            # forget what names there are
 
1999
            self._pack_collection.reset()
 
2000
            # XXX: Better to do an in-memory merge when acquiring a new lock -
 
2001
            # factor out code from _save_pack_names.
 
2002
            self._pack_collection.ensure_loaded()
 
2003
 
 
2004
    def _start_write_group(self):
 
2005
        self._pack_collection._start_write_group()
 
2006
 
 
2007
    def _commit_write_group(self):
 
2008
        return self._pack_collection._commit_write_group()
 
2009
 
 
2010
    def get_inventory_weave(self):
 
2011
        return self._inv_thunk.get_weave()
 
2012
 
 
2013
    def get_transaction(self):
 
2014
        if self._write_lock_count:
 
2015
            return self._transaction
 
2016
        else:
 
2017
            return self.control_files.get_transaction()
 
2018
 
 
2019
    def is_locked(self):
 
2020
        return self._write_lock_count or self.control_files.is_locked()
 
2021
 
 
2022
    def is_write_locked(self):
 
2023
        return self._write_lock_count
 
2024
 
 
2025
    def lock_write(self, token=None):
 
2026
        if not self._write_lock_count and self.is_locked():
 
2027
            raise errors.ReadOnlyError(self)
 
2028
        self._write_lock_count += 1
 
2029
        if self._write_lock_count == 1:
 
2030
            from bzrlib import transactions
 
2031
            self._transaction = transactions.WriteTransaction()
 
2032
        self._refresh_data()
 
2033
 
 
2034
    def lock_read(self):
 
2035
        if self._write_lock_count:
 
2036
            self._write_lock_count += 1
 
2037
        else:
 
2038
            self.control_files.lock_read()
 
2039
        self._refresh_data()
 
2040
 
 
2041
    def leave_lock_in_place(self):
 
2042
        # not supported - raise an error
 
2043
        raise NotImplementedError(self.leave_lock_in_place)
 
2044
 
 
2045
    def dont_leave_lock_in_place(self):
 
2046
        # not supported - raise an error
 
2047
        raise NotImplementedError(self.dont_leave_lock_in_place)
 
2048
 
 
2049
    @needs_write_lock
 
2050
    def pack(self):
 
2051
        """Compress the data within the repository.
 
2052
 
 
2053
        This will pack all the data to a single pack. In future it may
 
2054
        recompress deltas or do other such expensive operations.
 
2055
        """
 
2056
        self._pack_collection.pack()
 
2057
 
 
2058
    @needs_write_lock
 
2059
    def reconcile(self, other=None, thorough=False):
 
2060
        """Reconcile this repository."""
 
2061
        from bzrlib.reconcile import PackReconciler
 
2062
        reconciler = PackReconciler(self, thorough=thorough)
 
2063
        reconciler.reconcile()
 
2064
        return reconciler
 
2065
 
 
2066
    def unlock(self):
 
2067
        if self._write_lock_count == 1 and self._write_group is not None:
 
2068
            self.abort_write_group()
 
2069
            self._transaction = None
 
2070
            self._write_lock_count = 0
 
2071
            raise errors.BzrError(
 
2072
                'Must end write group before releasing write lock on %s'
 
2073
                % self)
 
2074
        if self._write_lock_count:
 
2075
            self._write_lock_count -= 1
 
2076
            if not self._write_lock_count:
 
2077
                transaction = self._transaction
 
2078
                self._transaction = None
 
2079
                transaction.finish()
 
2080
        else:
 
2081
            self.control_files.unlock()
 
2082
 
 
2083
 
 
2084
class RepositoryFormatPack(MetaDirRepositoryFormat):
 
2085
    """Format logic for pack structured repositories.
 
2086
 
 
2087
    This repository format has:
 
2088
     - a list of packs in pack-names
 
2089
     - packs in packs/NAME.pack
 
2090
     - indices in indices/NAME.{iix,six,tix,rix}
 
2091
     - knit deltas in the packs, knit indices mapped to the indices.
 
2092
     - thunk objects to support the knits programming API.
 
2093
     - a format marker of its own
 
2094
     - an optional 'shared-storage' flag
 
2095
     - an optional 'no-working-trees' flag
 
2096
     - a LockDir lock
 
2097
    """
 
2098
 
 
2099
    # Set this attribute in derived classes to control the repository class
 
2100
    # created by open and initialize.
 
2101
    repository_class = None
 
2102
    # Set this attribute in derived classes to control the
 
2103
    # _commit_builder_class that the repository objects will have passed to
 
2104
    # their constructor.
 
2105
    _commit_builder_class = None
 
2106
    # Set this attribute in derived clases to control the _serializer that the
 
2107
    # repository objects will have passed to their constructor.
 
2108
    _serializer = None
 
2109
    # External references are not supported in pack repositories yet.
 
2110
    supports_external_lookups = False
 
2111
 
 
2112
    def _get_control_store(self, repo_transport, control_files):
 
2113
        """Return the control store for this repository."""
 
2114
        return VersionedFileStore(
 
2115
            repo_transport,
 
2116
            prefixed=False,
 
2117
            file_mode=control_files._file_mode,
 
2118
            versionedfile_class=knit.make_file_knit,
 
2119
            versionedfile_kwargs={'factory': knit.KnitPlainFactory()},
 
2120
            )
 
2121
 
 
2122
    def _get_revision_store(self, repo_transport, control_files):
 
2123
        """See RepositoryFormat._get_revision_store()."""
 
2124
        versioned_file_store = VersionedFileStore(
 
2125
            repo_transport,
 
2126
            file_mode=control_files._file_mode,
 
2127
            prefixed=False,
 
2128
            precious=True,
 
2129
            versionedfile_class=knit.make_file_knit,
 
2130
            versionedfile_kwargs={'delta': False,
 
2131
                                  'factory': knit.KnitPlainFactory(),
 
2132
                                 },
 
2133
            escaped=True,
 
2134
            )
 
2135
        return KnitRevisionStore(versioned_file_store)
 
2136
 
 
2137
    def _get_text_store(self, transport, control_files):
 
2138
        """See RepositoryFormat._get_text_store()."""
 
2139
        return self._get_versioned_file_store('knits',
 
2140
                                  transport,
 
2141
                                  control_files,
 
2142
                                  versionedfile_class=knit.make_file_knit,
 
2143
                                  versionedfile_kwargs={
 
2144
                                      'create_parent_dir': True,
 
2145
                                      'delay_create': True,
 
2146
                                      'dir_mode': control_files._dir_mode,
 
2147
                                  },
 
2148
                                  escaped=True)
 
2149
 
 
2150
    def initialize(self, a_bzrdir, shared=False):
 
2151
        """Create a pack based repository.
 
2152
 
 
2153
        :param a_bzrdir: bzrdir to contain the new repository; must already
 
2154
            be initialized.
 
2155
        :param shared: If true the repository will be initialized as a shared
 
2156
                       repository.
 
2157
        """
 
2158
        mutter('creating repository in %s.', a_bzrdir.transport.base)
 
2159
        dirs = ['indices', 'obsolete_packs', 'packs', 'upload']
 
2160
        builder = GraphIndexBuilder()
 
2161
        files = [('pack-names', builder.finish())]
 
2162
        utf8_files = [('format', self.get_format_string())]
 
2163
        
 
2164
        self._upload_blank_content(a_bzrdir, dirs, files, utf8_files, shared)
 
2165
        return self.open(a_bzrdir=a_bzrdir, _found=True)
 
2166
 
 
2167
    def open(self, a_bzrdir, _found=False, _override_transport=None):
 
2168
        """See RepositoryFormat.open().
 
2169
        
 
2170
        :param _override_transport: INTERNAL USE ONLY. Allows opening the
 
2171
                                    repository at a slightly different url
 
2172
                                    than normal. I.e. during 'upgrade'.
 
2173
        """
 
2174
        if not _found:
 
2175
            format = RepositoryFormat.find_format(a_bzrdir)
 
2176
        if _override_transport is not None:
 
2177
            repo_transport = _override_transport
 
2178
        else:
 
2179
            repo_transport = a_bzrdir.get_repository_transport(None)
 
2180
        control_files = lockable_files.LockableFiles(repo_transport,
 
2181
                                'lock', lockdir.LockDir)
 
2182
        text_store = self._get_text_store(repo_transport, control_files)
 
2183
        control_store = self._get_control_store(repo_transport, control_files)
 
2184
        _revision_store = self._get_revision_store(repo_transport, control_files)
 
2185
        return self.repository_class(_format=self,
 
2186
                              a_bzrdir=a_bzrdir,
 
2187
                              control_files=control_files,
 
2188
                              _revision_store=_revision_store,
 
2189
                              control_store=control_store,
 
2190
                              text_store=text_store,
 
2191
                              _commit_builder_class=self._commit_builder_class,
 
2192
                              _serializer=self._serializer)
 
2193
 
 
2194
 
 
2195
class RepositoryFormatKnitPack1(RepositoryFormatPack):
 
2196
    """A no-subtrees parameterized Pack repository.
 
2197
 
 
2198
    This format was introduced in 0.92.
 
2199
    """
 
2200
 
 
2201
    repository_class = KnitPackRepository
 
2202
    _commit_builder_class = PackCommitBuilder
 
2203
    _serializer = xml5.serializer_v5
 
2204
 
 
2205
    def _get_matching_bzrdir(self):
 
2206
        return bzrdir.format_registry.make_bzrdir('pack-0.92')
 
2207
 
 
2208
    def _ignore_setting_bzrdir(self, format):
 
2209
        pass
 
2210
 
 
2211
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
2212
 
 
2213
    def get_format_string(self):
 
2214
        """See RepositoryFormat.get_format_string()."""
 
2215
        return "Bazaar pack repository format 1 (needs bzr 0.92)\n"
 
2216
 
 
2217
    def get_format_description(self):
 
2218
        """See RepositoryFormat.get_format_description()."""
 
2219
        return "Packs containing knits without subtree support"
 
2220
 
 
2221
    def check_conversion_target(self, target_format):
 
2222
        pass
 
2223
 
 
2224
 
 
2225
class RepositoryFormatKnitPack3(RepositoryFormatPack):
 
2226
    """A subtrees parameterized Pack repository.
 
2227
 
 
2228
    This repository format uses the xml7 serializer to get:
 
2229
     - support for recording full info about the tree root
 
2230
     - support for recording tree-references
 
2231
 
 
2232
    This format was introduced in 0.92.
 
2233
    """
 
2234
 
 
2235
    repository_class = KnitPackRepository
 
2236
    _commit_builder_class = PackRootCommitBuilder
 
2237
    rich_root_data = True
 
2238
    supports_tree_reference = True
 
2239
    _serializer = xml7.serializer_v7
 
2240
 
 
2241
    def _get_matching_bzrdir(self):
 
2242
        return bzrdir.format_registry.make_bzrdir(
 
2243
            'pack-0.92-subtree')
 
2244
 
 
2245
    def _ignore_setting_bzrdir(self, format):
 
2246
        pass
 
2247
 
 
2248
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
2249
 
 
2250
    def check_conversion_target(self, target_format):
 
2251
        if not target_format.rich_root_data:
 
2252
            raise errors.BadConversionTarget(
 
2253
                'Does not support rich root data.', target_format)
 
2254
        if not getattr(target_format, 'supports_tree_reference', False):
 
2255
            raise errors.BadConversionTarget(
 
2256
                'Does not support nested trees', target_format)
 
2257
            
 
2258
    def get_format_string(self):
 
2259
        """See RepositoryFormat.get_format_string()."""
 
2260
        return "Bazaar pack repository format 1 with subtree support (needs bzr 0.92)\n"
 
2261
 
 
2262
    def get_format_description(self):
 
2263
        """See RepositoryFormat.get_format_description()."""
 
2264
        return "Packs containing knits with subtree support\n"
 
2265
 
 
2266
 
 
2267
class RepositoryFormatKnitPack4(RepositoryFormatPack):
 
2268
    """A rich-root, no subtrees parameterized Pack repository.
 
2269
 
 
2270
    This repository format uses the xml6 serializer to get:
 
2271
     - support for recording full info about the tree root
 
2272
 
 
2273
    This format was introduced in 1.0.
 
2274
    """
 
2275
 
 
2276
    repository_class = KnitPackRepository
 
2277
    _commit_builder_class = PackRootCommitBuilder
 
2278
    rich_root_data = True
 
2279
    supports_tree_reference = False
 
2280
    _serializer = xml6.serializer_v6
 
2281
 
 
2282
    def _get_matching_bzrdir(self):
 
2283
        return bzrdir.format_registry.make_bzrdir(
 
2284
            'rich-root-pack')
 
2285
 
 
2286
    def _ignore_setting_bzrdir(self, format):
 
2287
        pass
 
2288
 
 
2289
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
2290
 
 
2291
    def check_conversion_target(self, target_format):
 
2292
        if not target_format.rich_root_data:
 
2293
            raise errors.BadConversionTarget(
 
2294
                'Does not support rich root data.', target_format)
 
2295
 
 
2296
    def get_format_string(self):
 
2297
        """See RepositoryFormat.get_format_string()."""
 
2298
        return ("Bazaar pack repository format 1 with rich root"
 
2299
                " (needs bzr 1.0)\n")
 
2300
 
 
2301
    def get_format_description(self):
 
2302
        """See RepositoryFormat.get_format_description()."""
 
2303
        return "Packs containing knits with rich root support\n"
 
2304
 
 
2305
 
 
2306
class RepositoryFormatPackDevelopment0(RepositoryFormatPack):
 
2307
    """A no-subtrees development repository.
 
2308
 
 
2309
    This format should be retained until the second release after bzr 1.0.
 
2310
 
 
2311
    No changes to the disk behaviour from pack-0.92.
 
2312
    """
 
2313
 
 
2314
    repository_class = KnitPackRepository
 
2315
    _commit_builder_class = PackCommitBuilder
 
2316
    _serializer = xml5.serializer_v5
 
2317
 
 
2318
    def _get_matching_bzrdir(self):
 
2319
        return bzrdir.format_registry.make_bzrdir('development0')
 
2320
 
 
2321
    def _ignore_setting_bzrdir(self, format):
 
2322
        pass
 
2323
 
 
2324
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
2325
 
 
2326
    def get_format_string(self):
 
2327
        """See RepositoryFormat.get_format_string()."""
 
2328
        return "Bazaar development format 0 (needs bzr.dev from before 1.3)\n"
 
2329
 
 
2330
    def get_format_description(self):
 
2331
        """See RepositoryFormat.get_format_description()."""
 
2332
        return ("Development repository format, currently the same as "
 
2333
            "pack-0.92\n")
 
2334
 
 
2335
    def check_conversion_target(self, target_format):
 
2336
        pass
 
2337
 
 
2338
 
 
2339
class RepositoryFormatPackDevelopment0Subtree(RepositoryFormatPack):
 
2340
    """A subtrees development repository.
 
2341
 
 
2342
    This format should be retained until the second release after bzr 1.0.
 
2343
 
 
2344
    No changes to the disk behaviour from pack-0.92-subtree.
 
2345
    """
 
2346
 
 
2347
    repository_class = KnitPackRepository
 
2348
    _commit_builder_class = PackRootCommitBuilder
 
2349
    rich_root_data = True
 
2350
    supports_tree_reference = True
 
2351
    _serializer = xml7.serializer_v7
 
2352
 
 
2353
    def _get_matching_bzrdir(self):
 
2354
        return bzrdir.format_registry.make_bzrdir(
 
2355
            'development0-subtree')
 
2356
 
 
2357
    def _ignore_setting_bzrdir(self, format):
 
2358
        pass
 
2359
 
 
2360
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
2361
 
 
2362
    def check_conversion_target(self, target_format):
 
2363
        if not target_format.rich_root_data:
 
2364
            raise errors.BadConversionTarget(
 
2365
                'Does not support rich root data.', target_format)
 
2366
        if not getattr(target_format, 'supports_tree_reference', False):
 
2367
            raise errors.BadConversionTarget(
 
2368
                'Does not support nested trees', target_format)
 
2369
            
 
2370
    def get_format_string(self):
 
2371
        """See RepositoryFormat.get_format_string()."""
 
2372
        return ("Bazaar development format 0 with subtree support "
 
2373
            "(needs bzr.dev from before 1.3)\n")
 
2374
 
 
2375
    def get_format_description(self):
 
2376
        """See RepositoryFormat.get_format_description()."""
 
2377
        return ("Development repository format, currently the same as "
 
2378
            "pack-0.92-subtree\n")
 
2379
 
 
2380