~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: Ian Clatworthy
  • Date: 2009-01-19 02:24:15 UTC
  • mto: This revision was merged to the branch mainline in revision 3944.
  • Revision ID: ian.clatworthy@canonical.com-20090119022415-mo0mcfeiexfktgwt
apply jam's log --short fix (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/python
2
2
 
3
3
# Copyright (C) 2005 Canonical Ltd
4
 
 
 
4
#
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
7
7
# the Free Software Foundation; either version 2 of the License, or
8
8
# (at your option) any later version.
9
 
 
 
9
#
10
10
# This program is distributed in the hope that it will be useful,
11
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
13
# GNU General Public License for more details.
14
 
 
 
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
71
71
from copy import copy
72
72
from cStringIO import StringIO
73
73
import os
74
 
import sha
75
74
import time
 
75
import warnings
76
76
 
77
 
from bzrlib.trace import mutter
 
77
from bzrlib.lazy_import import lazy_import
 
78
lazy_import(globals(), """
 
79
from bzrlib import tsort
 
80
""")
 
81
from bzrlib import (
 
82
    errors,
 
83
    osutils,
 
84
    progress,
 
85
    )
78
86
from bzrlib.errors import (WeaveError, WeaveFormatError, WeaveParentMismatch,
79
87
        RevisionAlreadyPresent,
80
88
        RevisionNotPresent,
 
89
        UnavailableRepresentation,
81
90
        WeaveRevisionAlreadyPresent,
82
91
        WeaveRevisionNotPresent,
83
92
        )
84
 
import bzrlib.errors as errors
85
 
from bzrlib.osutils import sha_strings
 
93
from bzrlib.osutils import dirname, sha, sha_strings, split_lines
86
94
import bzrlib.patiencediff
 
95
from bzrlib.revision import NULL_REVISION
87
96
from bzrlib.symbol_versioning import *
88
 
from bzrlib.tsort import topo_sort
89
 
from bzrlib.versionedfile import VersionedFile, InterVersionedFile
 
97
from bzrlib.trace import mutter
 
98
from bzrlib.versionedfile import (
 
99
    AbsentContentFactory,
 
100
    adapter_registry,
 
101
    ContentFactory,
 
102
    VersionedFile,
 
103
    )
90
104
from bzrlib.weavefile import _read_weave_v5, write_weave_v5
91
105
 
92
106
 
 
107
class WeaveContentFactory(ContentFactory):
 
108
    """Content factory for streaming from weaves.
 
109
 
 
110
    :seealso ContentFactory:
 
111
    """
 
112
 
 
113
    def __init__(self, version, weave):
 
114
        """Create a WeaveContentFactory for version from weave."""
 
115
        ContentFactory.__init__(self)
 
116
        self.sha1 = weave.get_sha1s([version])[version]
 
117
        self.key = (version,)
 
118
        parents = weave.get_parent_map([version])[version]
 
119
        self.parents = tuple((parent,) for parent in parents)
 
120
        self.storage_kind = 'fulltext'
 
121
        self._weave = weave
 
122
 
 
123
    def get_bytes_as(self, storage_kind):
 
124
        if storage_kind == 'fulltext':
 
125
            return self._weave.get_text(self.key[-1])
 
126
        elif storage_kind == 'chunked':
 
127
            return self._weave.get_lines(self.key[-1])
 
128
        else:
 
129
            raise UnavailableRepresentation(self.key, storage_kind, 'fulltext')
 
130
 
 
131
 
93
132
class Weave(VersionedFile):
94
133
    """weave - versioned text file storage.
95
134
    
180
219
    """
181
220
 
182
221
    __slots__ = ['_weave', '_parents', '_sha1s', '_names', '_name_map',
183
 
                 '_weave_name', '_matcher']
184
 
    
185
 
    def __init__(self, weave_name=None, access_mode='w', matcher=None):
186
 
        super(Weave, self).__init__(access_mode)
 
222
                 '_weave_name', '_matcher', '_allow_reserved']
 
223
 
 
224
    def __init__(self, weave_name=None, access_mode='w', matcher=None,
 
225
                 get_scope=None, allow_reserved=False):
 
226
        """Create a weave.
 
227
 
 
228
        :param get_scope: A callable that returns an opaque object to be used
 
229
            for detecting when this weave goes out of scope (should stop
 
230
            answering requests or allowing mutation).
 
231
        """
 
232
        super(Weave, self).__init__()
187
233
        self._weave = []
188
234
        self._parents = []
189
235
        self._sha1s = []
194
240
            self._matcher = bzrlib.patiencediff.PatienceSequenceMatcher
195
241
        else:
196
242
            self._matcher = matcher
 
243
        if get_scope is None:
 
244
            get_scope = lambda:None
 
245
        self._get_scope = get_scope
 
246
        self._scope = get_scope()
 
247
        self._access_mode = access_mode
 
248
        self._allow_reserved = allow_reserved
197
249
 
198
250
    def __repr__(self):
199
251
        return "Weave(%r)" % self._weave_name
200
252
 
 
253
    def _check_write_ok(self):
 
254
        """Is the versioned file marked as 'finished' ? Raise if it is."""
 
255
        if self._get_scope() != self._scope:
 
256
            raise errors.OutSideTransaction()
 
257
        if self._access_mode != 'w':
 
258
            raise errors.ReadOnlyObjectDirtiedError(self)
 
259
 
201
260
    def copy(self):
202
261
        """Return a deep copy of self.
203
262
        
221
280
    def __ne__(self, other):
222
281
        return not self.__eq__(other)
223
282
 
224
 
    @deprecated_method(zero_eight)
225
 
    def idx_to_name(self, index):
226
 
        """Old public interface, the public interface is all names now."""
227
 
        return index
228
 
 
229
283
    def _idx_to_name(self, version):
230
284
        return self._names[version]
231
285
 
232
 
    @deprecated_method(zero_eight)
233
 
    def lookup(self, name):
234
 
        """Backwards compatibility thunk:
235
 
 
236
 
        Return name, as name is valid in the api now, and spew deprecation
237
 
        warnings everywhere.
238
 
        """
239
 
        return name
240
 
 
241
286
    def _lookup(self, name):
242
287
        """Convert symbolic version name to index."""
 
288
        if not self._allow_reserved:
 
289
            self.check_not_reserved_id(name)
243
290
        try:
244
291
            return self._name_map[name]
245
292
        except KeyError:
246
293
            raise RevisionNotPresent(name, self._weave_name)
247
294
 
248
 
    @deprecated_method(zero_eight)
249
 
    def iter_names(self):
250
 
        """Deprecated convenience function, please see VersionedFile.names()."""
251
 
        return iter(self.names())
252
 
 
253
 
    @deprecated_method(zero_eight)
254
 
    def names(self):
255
 
        """See Weave.versions for the current api."""
256
 
        return self.versions()
257
 
 
258
295
    def versions(self):
259
296
        """See VersionedFile.versions."""
260
297
        return self._names[:]
261
298
 
262
299
    def has_version(self, version_id):
263
300
        """See VersionedFile.has_version."""
264
 
        return self._name_map.has_key(version_id)
 
301
        return (version_id in self._name_map)
265
302
 
266
303
    __contains__ = has_version
267
304
 
268
 
    def get_delta(self, version_id):
269
 
        """See VersionedFile.get_delta."""
270
 
        return self.get_deltas([version_id])[version_id]
271
 
 
272
 
    def get_deltas(self, version_ids):
273
 
        """See VersionedFile.get_deltas."""
274
 
        version_ids = self.get_ancestry(version_ids)
 
305
    def get_record_stream(self, versions, ordering, include_delta_closure):
 
306
        """Get a stream of records for versions.
 
307
 
 
308
        :param versions: The versions to include. Each version is a tuple
 
309
            (version,).
 
310
        :param ordering: Either 'unordered' or 'topological'. A topologically
 
311
            sorted stream has compression parents strictly before their
 
312
            children.
 
313
        :param include_delta_closure: If True then the closure across any
 
314
            compression parents will be included (in the opaque data).
 
315
        :return: An iterator of ContentFactory objects, each of which is only
 
316
            valid until the iterator is advanced.
 
317
        """
 
318
        versions = [version[-1] for version in versions]
 
319
        if ordering == 'topological':
 
320
            parents = self.get_parent_map(versions)
 
321
            new_versions = tsort.topo_sort(parents)
 
322
            new_versions.extend(set(versions).difference(set(parents)))
 
323
            versions = new_versions
 
324
        for version in versions:
 
325
            if version in self:
 
326
                yield WeaveContentFactory(version, self)
 
327
            else:
 
328
                yield AbsentContentFactory((version,))
 
329
 
 
330
    def get_parent_map(self, version_ids):
 
331
        """See VersionedFile.get_parent_map."""
 
332
        result = {}
275
333
        for version_id in version_ids:
276
 
            if not self.has_version(version_id):
277
 
                raise RevisionNotPresent(version_id, self)
278
 
        # try extracting all versions; parallel extraction is used
279
 
        nv = self.num_versions()
280
 
        sha1s = {}
281
 
        deltas = {}
282
 
        texts = {}
283
 
        inclusions = {}
284
 
        noeols = {}
285
 
        last_parent_lines = {}
286
 
        parents = {}
287
 
        parent_inclusions = {}
288
 
        parent_linenums = {}
289
 
        parent_noeols = {}
290
 
        current_hunks = {}
291
 
        diff_hunks = {}
292
 
        # its simplest to generate a full set of prepared variables.
293
 
        for i in range(nv):
294
 
            name = self._names[i]
295
 
            sha1s[name] = self.get_sha1(name)
296
 
            parents_list = self.get_parents(name)
297
 
            try:
298
 
                parent = parents_list[0]
299
 
                parents[name] = parent
300
 
                parent_inclusions[name] = inclusions[parent]
301
 
            except IndexError:
302
 
                parents[name] = None
303
 
                parent_inclusions[name] = set()
304
 
            # we want to emit start, finish, replacement_length, replacement_lines tuples.
305
 
            diff_hunks[name] = []
306
 
            current_hunks[name] = [0, 0, 0, []] # #start, finish, repl_length, repl_tuples
307
 
            parent_linenums[name] = 0
308
 
            noeols[name] = False
309
 
            parent_noeols[name] = False
310
 
            last_parent_lines[name] = None
311
 
            new_inc = set([name])
312
 
            for p in self._parents[i]:
313
 
                new_inc.update(inclusions[self._idx_to_name(p)])
314
 
            # debug only, known good so far.
315
 
            #assert set(new_inc) == set(self.get_ancestry(name)), \
316
 
            #    'failed %s != %s' % (set(new_inc), set(self.get_ancestry(name)))
317
 
            inclusions[name] = new_inc
318
 
 
319
 
        nlines = len(self._weave)
320
 
 
321
 
        for lineno, inserted, deletes, line in self._walk_internal():
322
 
            # a line is active in a version if:
323
 
            # insert is in the versions inclusions
324
 
            # and
325
 
            # deleteset & the versions inclusions is an empty set.
326
 
            # so - if we have a included by mapping - version is included by
327
 
            # children, we get a list of children to examine for deletes affect
328
 
            # ing them, which is less than the entire set of children.
329
 
            for version_id in version_ids:  
330
 
                # The active inclusion must be an ancestor,
331
 
                # and no ancestors must have deleted this line,
332
 
                # because we don't support resurrection.
333
 
                parent_inclusion = parent_inclusions[version_id]
334
 
                inclusion = inclusions[version_id]
335
 
                parent_active = inserted in parent_inclusion and not (deletes & parent_inclusion)
336
 
                version_active = inserted in inclusion and not (deletes & inclusion)
337
 
                if not parent_active and not version_active:
338
 
                    # unrelated line of ancestry
 
334
            if version_id == NULL_REVISION:
 
335
                parents = ()
 
336
            else:
 
337
                try:
 
338
                    parents = tuple(
 
339
                        map(self._idx_to_name,
 
340
                            self._parents[self._lookup(version_id)]))
 
341
                except RevisionNotPresent:
339
342
                    continue
340
 
                elif parent_active and version_active:
341
 
                    # shared line
342
 
                    parent_linenum = parent_linenums[version_id]
343
 
                    if current_hunks[version_id] != [parent_linenum, parent_linenum, 0, []]:
344
 
                        diff_hunks[version_id].append(tuple(current_hunks[version_id]))
345
 
                    parent_linenum += 1
346
 
                    current_hunks[version_id] = [parent_linenum, parent_linenum, 0, []]
347
 
                    parent_linenums[version_id] = parent_linenum
348
 
                    try:
349
 
                        if line[-1] != '\n':
350
 
                            noeols[version_id] = True
351
 
                    except IndexError:
352
 
                        pass
353
 
                elif parent_active and not version_active:
354
 
                    # deleted line
355
 
                    current_hunks[version_id][1] += 1
356
 
                    parent_linenums[version_id] += 1
357
 
                    last_parent_lines[version_id] = line
358
 
                elif not parent_active and version_active:
359
 
                    # replacement line
360
 
                    # noeol only occurs at the end of a file because we 
361
 
                    # diff linewise. We want to show noeol changes as a
362
 
                    # empty diff unless the actual eol-less content changed.
363
 
                    theline = line
364
 
                    try:
365
 
                        if last_parent_lines[version_id][-1] != '\n':
366
 
                            parent_noeols[version_id] = True
367
 
                    except (TypeError, IndexError):
368
 
                        pass
369
 
                    try:
370
 
                        if theline[-1] != '\n':
371
 
                            noeols[version_id] = True
372
 
                    except IndexError:
373
 
                        pass
374
 
                    new_line = False
375
 
                    parent_should_go = False
376
 
 
377
 
                    if parent_noeols[version_id] == noeols[version_id]:
378
 
                        # no noeol toggle, so trust the weaves statement
379
 
                        # that this line is changed.
380
 
                        new_line = True
381
 
                        if parent_noeols[version_id]:
382
 
                            theline = theline + '\n'
383
 
                    elif parent_noeols[version_id]:
384
 
                        # parent has no eol, we do:
385
 
                        # our line is new, report as such..
386
 
                        new_line = True
387
 
                    elif noeols[version_id]:
388
 
                        # append a eol so that it looks like
389
 
                        # a normalised delta
390
 
                        theline = theline + '\n'
391
 
                        if parents[version_id] is not None:
392
 
                        #if last_parent_lines[version_id] is not None:
393
 
                            parent_should_go = True
394
 
                        if last_parent_lines[version_id] != theline:
395
 
                            # but changed anyway
396
 
                            new_line = True
397
 
                            #parent_should_go = False
398
 
                    if new_line:
399
 
                        current_hunks[version_id][2] += 1
400
 
                        current_hunks[version_id][3].append((inserted, theline))
401
 
                    if parent_should_go:
402
 
                        # last hunk last parent line is not eaten
403
 
                        current_hunks[version_id][1] -= 1
404
 
                    if current_hunks[version_id][1] < 0:
405
 
                        current_hunks[version_id][1] = 0
406
 
                        # import pdb;pdb.set_trace()
407
 
                    # assert current_hunks[version_id][1] >= 0
408
 
 
409
 
        # flush last hunk
410
 
        for i in range(nv):
411
 
            version = self._idx_to_name(i)
412
 
            if current_hunks[version] != [0, 0, 0, []]:
413
 
                diff_hunks[version].append(tuple(current_hunks[version]))
414
 
        result = {}
415
 
        for version_id in version_ids:
416
 
            result[version_id] = (
417
 
                                  parents[version_id],
418
 
                                  sha1s[version_id],
419
 
                                  noeols[version_id],
420
 
                                  diff_hunks[version_id],
421
 
                                  )
 
343
            result[version_id] = parents
422
344
        return result
423
345
 
424
 
    def get_parents(self, version_id):
425
 
        """See VersionedFile.get_parent."""
426
 
        return map(self._idx_to_name, self._parents[self._lookup(version_id)])
 
346
    def get_parents_with_ghosts(self, version_id):
 
347
        raise NotImplementedError(self.get_parents_with_ghosts)
 
348
 
 
349
    def insert_record_stream(self, stream):
 
350
        """Insert a record stream into this versioned file.
 
351
 
 
352
        :param stream: A stream of records to insert. 
 
353
        :return: None
 
354
        :seealso VersionedFile.get_record_stream:
 
355
        """
 
356
        adapters = {}
 
357
        for record in stream:
 
358
            # Raise an error when a record is missing.
 
359
            if record.storage_kind == 'absent':
 
360
                raise RevisionNotPresent([record.key[0]], self)
 
361
            # adapt to non-tuple interface
 
362
            parents = [parent[0] for parent in record.parents]
 
363
            if (record.storage_kind == 'fulltext'
 
364
                or record.storage_kind == 'chunked'):
 
365
                self.add_lines(record.key[0], parents,
 
366
                    osutils.chunks_to_lines(record.get_bytes_as('chunked')))
 
367
            else:
 
368
                adapter_key = record.storage_kind, 'fulltext'
 
369
                try:
 
370
                    adapter = adapters[adapter_key]
 
371
                except KeyError:
 
372
                    adapter_factory = adapter_registry.get(adapter_key)
 
373
                    adapter = adapter_factory(self)
 
374
                    adapters[adapter_key] = adapter
 
375
                lines = split_lines(adapter.get_bytes(
 
376
                    record, record.get_bytes_as(record.storage_kind)))
 
377
                try:
 
378
                    self.add_lines(record.key[0], parents, lines)
 
379
                except RevisionAlreadyPresent:
 
380
                    pass
427
381
 
428
382
    def _check_repeated_add(self, name, parents, text, sha1):
429
383
        """Check that a duplicated add is OK.
436
390
            raise RevisionAlreadyPresent(name, self._weave_name)
437
391
        return idx
438
392
 
439
 
    @deprecated_method(zero_eight)
440
 
    def add_identical(self, old_rev_id, new_rev_id, parents):
441
 
        """Please use Weave.clone_text now."""
442
 
        return self.clone_text(new_rev_id, old_rev_id, parents)
443
 
 
444
 
    def _add_lines(self, version_id, parents, lines, parent_texts):
 
393
    def _add_lines(self, version_id, parents, lines, parent_texts,
 
394
       left_matching_blocks, nostore_sha, random_id, check_content):
445
395
        """See VersionedFile.add_lines."""
446
 
        return self._add(version_id, lines, map(self._lookup, parents))
447
 
 
448
 
    @deprecated_method(zero_eight)
449
 
    def add(self, name, parents, text, sha1=None):
450
 
        """See VersionedFile.add_lines for the non deprecated api."""
451
 
        return self._add(name, text, map(self._maybe_lookup, parents), sha1)
452
 
 
453
 
    def _add(self, version_id, lines, parents, sha1=None):
 
396
        idx = self._add(version_id, lines, map(self._lookup, parents),
 
397
            nostore_sha=nostore_sha)
 
398
        return sha_strings(lines), sum(map(len, lines)), idx
 
399
 
 
400
    def _add(self, version_id, lines, parents, sha1=None, nostore_sha=None):
454
401
        """Add a single text on top of the weave.
455
402
  
456
403
        Returns the index number of the newly added version.
464
411
            
465
412
        lines
466
413
            Sequence of lines to be added in the new version.
 
414
 
 
415
        :param nostore_sha: See VersionedFile.add_lines.
467
416
        """
468
 
 
469
 
        assert isinstance(version_id, basestring)
470
417
        self._check_lines_not_unicode(lines)
471
418
        self._check_lines_are_lines(lines)
472
419
        if not sha1:
473
420
            sha1 = sha_strings(lines)
 
421
        if sha1 == nostore_sha:
 
422
            raise errors.ExistingContent
474
423
        if version_id in self._name_map:
475
424
            return self._check_repeated_add(version_id, parents, lines, sha1)
476
425
 
520
469
        # another small special case: a merge, producing the same text
521
470
        # as auto-merge
522
471
        if lines == basis_lines:
523
 
            return new_version            
 
472
            return new_version
524
473
 
525
474
        # add a sentinel, because we can also match against the final line
526
475
        basis_lineno.append(len(self._weave))
545
494
            #print 'raw match', tag, i1, i2, j1, j2
546
495
            if tag == 'equal':
547
496
                continue
548
 
 
549
497
            i1 = basis_lineno[i1]
550
498
            i2 = basis_lineno[i2]
551
 
 
552
 
            assert 0 <= j1 <= j2 <= len(lines)
553
 
 
554
 
            #print tag, i1, i2, j1, j2
555
 
 
556
499
            # the deletion and insertion are handled separately.
557
500
            # first delete the region.
558
501
            if i1 != i2:
571
514
                offset += 2 + (j2 - j1)
572
515
        return new_version
573
516
 
574
 
    def _clone_text(self, new_version_id, old_version_id, parents):
575
 
        """See VersionedFile.clone_text."""
576
 
        old_lines = self.get_text(old_version_id)
577
 
        self.add_lines(new_version_id, parents, old_lines)
578
 
 
579
517
    def _inclusions(self, versions):
580
518
        """Return set of all ancestors of given version(s)."""
581
519
        if not len(versions):
589
527
        ## except IndexError:
590
528
        ##     raise ValueError("version %d not present in weave" % v)
591
529
 
592
 
    @deprecated_method(zero_eight)
593
 
    def inclusions(self, version_ids):
594
 
        """Deprecated - see VersionedFile.get_ancestry for the replacement."""
595
 
        if not version_ids:
596
 
            return []
597
 
        if isinstance(version_ids[0], int):
598
 
            return [self._idx_to_name(v) for v in self._inclusions(version_ids)]
599
 
        else:
600
 
            return self.get_ancestry(version_ids)
601
 
 
602
 
    def get_ancestry(self, version_ids):
 
530
    def get_ancestry(self, version_ids, topo_sorted=True):
603
531
        """See VersionedFile.get_ancestry."""
604
532
        if isinstance(version_ids, basestring):
605
533
            version_ids = [version_ids]
634
562
        return len(other_parents.difference(my_parents)) == 0
635
563
 
636
564
    def annotate(self, version_id):
637
 
        if isinstance(version_id, int):
638
 
            warn('Weave.annotate(int) is deprecated. Please use version names'
639
 
                 ' in all circumstances as of 0.8',
640
 
                 DeprecationWarning,
641
 
                 stacklevel=2
642
 
                 )
643
 
            result = []
644
 
            for origin, lineno, text in self._extract([version_id]):
645
 
                result.append((origin, text))
646
 
            return result
647
 
        else:
648
 
            return super(Weave, self).annotate(version_id)
649
 
    
650
 
    def annotate_iter(self, version_id):
651
 
        """Yield list of (version-id, line) pairs for the specified version.
 
565
        """Return a list of (version-id, line) tuples for version_id.
652
566
 
653
567
        The index indicates when the line originated in the weave."""
654
568
        incls = [self._lookup(version_id)]
655
 
        for origin, lineno, text in self._extract(incls):
656
 
            yield self._idx_to_name(origin), text
657
 
 
658
 
    @deprecated_method(zero_eight)
659
 
    def _walk(self):
660
 
        """_walk has become visit, a supported api."""
661
 
        return self._walk_internal()
662
 
 
663
 
    def iter_lines_added_or_present_in_versions(self, version_ids=None):
 
569
        return [(self._idx_to_name(origin), text) for origin, lineno, text in
 
570
            self._extract(incls)]
 
571
 
 
572
    def iter_lines_added_or_present_in_versions(self, version_ids=None,
 
573
                                                pb=None):
664
574
        """See VersionedFile.iter_lines_added_or_present_in_versions()."""
665
575
        if version_ids is None:
666
576
            version_ids = self.versions()
671
581
            # properly, we do not filter down to that
672
582
            # if inserted not in version_ids: continue
673
583
            if line[-1] != '\n':
674
 
                yield line + '\n'
 
584
                yield line + '\n', inserted
675
585
            else:
676
 
                yield line
677
 
 
678
 
    #@deprecated_method(zero_eight)
679
 
    def walk(self, version_ids=None):
680
 
        """See VersionedFile.walk."""
681
 
        return self._walk_internal(version_ids)
 
586
                yield line, inserted
682
587
 
683
588
    def _walk_internal(self, version_ids=None):
684
589
        """Helper method for weave actions."""
697
602
                elif c == '}':
698
603
                    istack.pop()
699
604
                elif c == '[':
700
 
                    assert self._names[v] not in dset
701
605
                    dset.add(self._names[v])
702
606
                elif c == ']':
703
607
                    dset.remove(self._names[v])
704
608
                else:
705
609
                    raise WeaveFormatError('unexpected instruction %r' % v)
706
610
            else:
707
 
                assert l.__class__ in (str, unicode)
708
 
                assert istack
709
611
                yield lineno, istack[-1], frozenset(dset), l
710
612
            lineno += 1
711
613
 
728
630
        inc_b = set(self.get_ancestry([ver_b]))
729
631
        inc_c = inc_a & inc_b
730
632
 
731
 
        for lineno, insert, deleteset, line in\
732
 
            self.walk([ver_a, ver_b]):
 
633
        for lineno, insert, deleteset, line in self._walk_internal([ver_a, ver_b]):
733
634
            if deleteset & inc_c:
734
635
                # killed in parent; can't be in either a or b
735
636
                # not relevant to our work
761
662
                # not in either revision
762
663
                yield 'irrelevant', line
763
664
 
764
 
        yield 'unchanged', ''           # terminator
765
 
 
766
665
    def _extract(self, versions):
767
666
        """Yield annotation of lines in included set.
768
667
 
822
721
                c, v = l
823
722
                isactive = None
824
723
                if c == '{':
825
 
                    assert v not in iset
826
724
                    istack.append(v)
827
725
                    iset.add(v)
828
726
                elif c == '}':
829
727
                    iset.remove(istack.pop())
830
728
                elif c == '[':
831
729
                    if v in included:
832
 
                        assert v not in dset
833
730
                        dset.add(v)
834
 
                else:
835
 
                    assert c == ']'
 
731
                elif c == ']':
836
732
                    if v in included:
837
 
                        assert v in dset
838
733
                        dset.remove(v)
 
734
                else:
 
735
                    raise AssertionError()
839
736
            else:
840
 
                assert l.__class__ in (str, unicode)
841
737
                if isactive is None:
842
738
                    isactive = (not dset) and istack and (istack[-1] in included)
843
739
                if isactive:
851
747
                                   % dset)
852
748
        return result
853
749
 
854
 
    @deprecated_method(zero_eight)
855
 
    def get_iter(self, name_or_index):
856
 
        """Deprecated, please do not use. Lookups are not not needed.
857
 
        
858
 
        Please use get_lines now.
859
 
        """
860
 
        return iter(self.get_lines(self._maybe_lookup(name_or_index)))
861
 
 
862
 
    @deprecated_method(zero_eight)
863
 
    def maybe_lookup(self, name_or_index):
864
 
        """Deprecated, please do not use. Lookups are not not needed."""
865
 
        return self._maybe_lookup(name_or_index)
866
 
 
867
750
    def _maybe_lookup(self, name_or_index):
868
751
        """Convert possible symbolic name to index, or pass through indexes.
869
752
        
874
757
        else:
875
758
            return self._lookup(name_or_index)
876
759
 
877
 
    @deprecated_method(zero_eight)
878
 
    def get(self, version_id):
879
 
        """Please use either Weave.get_text or Weave.get_lines as desired."""
880
 
        return self.get_lines(version_id)
881
 
 
882
760
    def get_lines(self, version_id):
883
761
        """See VersionedFile.get_lines()."""
884
762
        int_index = self._maybe_lookup(version_id)
892
770
                       expected_sha1, measured_sha1))
893
771
        return result
894
772
 
895
 
    def get_sha1(self, version_id):
896
 
        """See VersionedFile.get_sha1()."""
897
 
        return self._sha1s[self._lookup(version_id)]
898
 
 
899
 
    @deprecated_method(zero_eight)
900
 
    def numversions(self):
901
 
        """How many versions are in this weave?
902
 
 
903
 
        Deprecated in favour of num_versions.
904
 
        """
905
 
        return self.num_versions()
 
773
    def get_sha1s(self, version_ids):
 
774
        """See VersionedFile.get_sha1s()."""
 
775
        result = {}
 
776
        for v in version_ids:
 
777
            result[v] = self._sha1s[self._lookup(v)]
 
778
        return result
906
779
 
907
780
    def num_versions(self):
908
781
        """How many versions are in this weave?"""
909
782
        l = len(self._parents)
910
 
        assert l == len(self._sha1s)
911
783
        return l
912
784
 
913
785
    __len__ = num_versions
933
805
            # For creating the ancestry, IntSet is much faster (3.7s vs 0.17s)
934
806
            # The problem is that set membership is much more expensive
935
807
            name = self._idx_to_name(i)
936
 
            sha1s[name] = sha.new()
 
808
            sha1s[name] = sha()
937
809
            texts[name] = []
938
810
            new_inc = set([name])
939
811
            for p in self._parents[i]:
940
812
                new_inc.update(inclusions[self._idx_to_name(p)])
941
813
 
942
 
            assert set(new_inc) == set(self.get_ancestry(name)), \
943
 
                'failed %s != %s' % (set(new_inc), set(self.get_ancestry(name)))
 
814
            if set(new_inc) != set(self.get_ancestry(name)):
 
815
                raise AssertionError(
 
816
                    'failed %s != %s' 
 
817
                    % (set(new_inc), set(self.get_ancestry(name))))
944
818
            inclusions[name] = new_inc
945
819
 
946
820
        nlines = len(self._weave)
976
850
        # no lines outside of insertion blocks, that deletions are
977
851
        # properly paired, etc.
978
852
 
979
 
    def _join(self, other, pb, msg, version_ids, ignore_missing):
980
 
        """Worker routine for join()."""
981
 
        if not other.versions():
982
 
            return          # nothing to update, easy
983
 
 
984
 
        if not version_ids:
985
 
            # versions is never none, InterWeave checks this.
986
 
            return 0
987
 
 
988
 
        # two loops so that we do not change ourselves before verifying it
989
 
        # will be ok
990
 
        # work through in index order to make sure we get all dependencies
991
 
        names_to_join = []
992
 
        processed = 0
993
 
        # get the selected versions only that are in other.versions.
994
 
        version_ids = set(other.versions()).intersection(set(version_ids))
995
 
        # pull in the referenced graph.
996
 
        version_ids = other.get_ancestry(version_ids)
997
 
        pending_graph = [(version, other.get_parents(version)) for
998
 
                         version in version_ids]
999
 
        for name in topo_sort(pending_graph):
1000
 
            other_idx = other._name_map[name]
1001
 
            # returns True if we have it, False if we need it.
1002
 
            if not self._check_version_consistent(other, other_idx, name):
1003
 
                names_to_join.append((other_idx, name))
1004
 
            processed += 1
1005
 
 
1006
 
 
1007
 
        if pb and not msg:
1008
 
            msg = 'weave join'
1009
 
 
1010
 
        merged = 0
1011
 
        time0 = time.time()
1012
 
        for other_idx, name in names_to_join:
1013
 
            # TODO: If all the parents of the other version are already
1014
 
            # present then we can avoid some work by just taking the delta
1015
 
            # and adjusting the offsets.
1016
 
            new_parents = self._imported_parents(other, other_idx)
1017
 
            sha1 = other._sha1s[other_idx]
1018
 
 
1019
 
            merged += 1
1020
 
 
1021
 
            if pb:
1022
 
                pb.update(msg, merged, len(names_to_join))
1023
 
           
1024
 
            lines = other.get_lines(other_idx)
1025
 
            self._add(name, lines, new_parents, sha1)
1026
 
 
1027
 
        mutter("merged = %d, processed = %d, file_id=%s; deltat=%d"%(
1028
 
                merged, processed, self._weave_name, time.time()-time0))
1029
 
 
1030
853
    def _imported_parents(self, other, other_idx):
1031
854
        """Return list of parents in self corresponding to indexes in other."""
1032
855
        new_parents = []
1067
890
        else:
1068
891
            return False
1069
892
 
1070
 
    @deprecated_method(zero_eight)
1071
 
    def reweave(self, other, pb=None, msg=None):
1072
 
        """reweave has been superseded by plain use of join."""
1073
 
        return self.join(other, pb, msg)
1074
 
 
1075
893
    def _reweave(self, other, pb, msg):
1076
894
        """Reweave self with other - internal helper for join().
1077
895
 
1094
912
 
1095
913
    WEAVE_SUFFIX = '.weave'
1096
914
    
1097
 
    def __init__(self, name, transport, filemode=None, create=False, access_mode='w'):
 
915
    def __init__(self, name, transport, filemode=None, create=False, access_mode='w', get_scope=None):
1098
916
        """Create a WeaveFile.
1099
917
        
1100
918
        :param create: If not True, only open an existing knit.
1101
919
        """
1102
 
        super(WeaveFile, self).__init__(name, access_mode)
 
920
        super(WeaveFile, self).__init__(name, access_mode, get_scope=get_scope,
 
921
            allow_reserved=False)
1103
922
        self._transport = transport
1104
923
        self._filemode = filemode
1105
924
        try:
1110
929
            # new file, save it
1111
930
            self._save()
1112
931
 
1113
 
    def _add_lines(self, version_id, parents, lines, parent_texts):
 
932
    def _add_lines(self, version_id, parents, lines, parent_texts,
 
933
        left_matching_blocks, nostore_sha, random_id, check_content):
1114
934
        """Add a version and save the weave."""
 
935
        self.check_not_reserved_id(version_id)
1115
936
        result = super(WeaveFile, self)._add_lines(version_id, parents, lines,
1116
 
                                                   parent_texts)
 
937
            parent_texts, left_matching_blocks, nostore_sha, random_id,
 
938
            check_content)
1117
939
        self._save()
1118
940
        return result
1119
941
 
1120
 
    def _clone_text(self, new_version_id, old_version_id, parents):
1121
 
        """See VersionedFile.clone_text."""
1122
 
        super(WeaveFile, self)._clone_text(new_version_id, old_version_id, parents)
1123
 
        self._save
1124
 
 
1125
942
    def copy_to(self, name, transport):
1126
943
        """See VersionedFile.copy_to()."""
1127
944
        # as we are all in memory always, just serialise to the new place.
1128
945
        sio = StringIO()
1129
946
        write_weave_v5(self, sio)
1130
947
        sio.seek(0)
1131
 
        transport.put(name + WeaveFile.WEAVE_SUFFIX, sio, self._filemode)
1132
 
 
1133
 
    def create_empty(self, name, transport, filemode=None):
1134
 
        return WeaveFile(name, transport, filemode, create=True)
 
948
        transport.put_file(name + WeaveFile.WEAVE_SUFFIX, sio, self._filemode)
1135
949
 
1136
950
    def _save(self):
1137
951
        """Save the weave."""
1139
953
        sio = StringIO()
1140
954
        write_weave_v5(self, sio)
1141
955
        sio.seek(0)
1142
 
        self._transport.put(self._weave_name + WeaveFile.WEAVE_SUFFIX,
1143
 
                            sio,
1144
 
                            self._filemode)
 
956
        bytes = sio.getvalue()
 
957
        path = self._weave_name + WeaveFile.WEAVE_SUFFIX
 
958
        try:
 
959
            self._transport.put_bytes(path, bytes, self._filemode)
 
960
        except errors.NoSuchFile:
 
961
            self._transport.mkdir(dirname(path))
 
962
            self._transport.put_bytes(path, bytes, self._filemode)
1145
963
 
1146
964
    @staticmethod
1147
965
    def get_suffixes():
1148
966
        """See VersionedFile.get_suffixes()."""
1149
967
        return [WeaveFile.WEAVE_SUFFIX]
1150
968
 
 
969
    def insert_record_stream(self, stream):
 
970
        super(WeaveFile, self).insert_record_stream(stream)
 
971
        self._save()
 
972
 
 
973
    @deprecated_method(one_five)
1151
974
    def join(self, other, pb=None, msg=None, version_ids=None,
1152
975
             ignore_missing=False):
1153
976
        """Join other into self and save."""
1155
978
        self._save()
1156
979
 
1157
980
 
1158
 
@deprecated_function(zero_eight)
1159
 
def reweave(wa, wb, pb=None, msg=None):
1160
 
    """reweaving is deprecation, please just use weave.join()."""
1161
 
    _reweave(wa, wb, pb, msg)
1162
 
 
1163
981
def _reweave(wa, wb, pb=None, msg=None):
1164
982
    """Combine two weaves and return the result.
1165
983
 
1183
1001
    # map from version name -> all parent names
1184
1002
    combined_parents = _reweave_parent_graphs(wa, wb)
1185
1003
    mutter("combined parents: %r", combined_parents)
1186
 
    order = topo_sort(combined_parents.iteritems())
 
1004
    order = tsort.topo_sort(combined_parents.iteritems())
1187
1005
    mutter("order to reweave: %r", order)
1188
1006
 
1189
1007
    if pb and not msg:
1239
1057
    from bzrlib.weavefile import read_weave
1240
1058
 
1241
1059
    wf = file(weave_file, 'rb')
1242
 
    w = read_weave(wf, WeaveVersionedFile)
 
1060
    w = read_weave(wf)
1243
1061
    # FIXME: doesn't work on pipes
1244
1062
    weave_size = wf.tell()
1245
1063
 
1419
1237
        raise ValueError('unknown command %r' % cmd)
1420
1238
    
1421
1239
 
1422
 
 
1423
 
def profile_main(argv):
1424
 
    import tempfile, hotshot, hotshot.stats
1425
 
 
1426
 
    prof_f = tempfile.NamedTemporaryFile()
1427
 
 
1428
 
    prof = hotshot.Profile(prof_f.name)
1429
 
 
1430
 
    ret = prof.runcall(main, argv)
1431
 
    prof.close()
1432
 
 
1433
 
    stats = hotshot.stats.load(prof_f.name)
1434
 
    #stats.strip_dirs()
1435
 
    stats.sort_stats('cumulative')
1436
 
    ## XXX: Might like to write to stderr or the trace file instead but
1437
 
    ## print_stats seems hardcoded to stdout
1438
 
    stats.print_stats(20)
1439
 
            
1440
 
    return ret
1441
 
 
1442
 
 
1443
 
def lsprofile_main(argv): 
1444
 
    from bzrlib.lsprof import profile
1445
 
    ret,stats = profile(main, argv)
1446
 
    stats.sort()
1447
 
    stats.pprint()
1448
 
    return ret
1449
 
 
1450
 
 
1451
1240
if __name__ == '__main__':
1452
1241
    import sys
1453
 
    if '--profile' in sys.argv:
1454
 
        args = sys.argv[:]
1455
 
        args.remove('--profile')
1456
 
        sys.exit(profile_main(args))
1457
 
    elif '--lsprof' in sys.argv:
1458
 
        args = sys.argv[:]
1459
 
        args.remove('--lsprof')
1460
 
        sys.exit(lsprofile_main(args))
1461
 
    else:
1462
 
        sys.exit(main(sys.argv))
1463
 
 
1464
 
 
1465
 
class InterWeave(InterVersionedFile):
1466
 
    """Optimised code paths for weave to weave operations."""
1467
 
    
1468
 
    _matching_file_from_factory = staticmethod(WeaveFile)
1469
 
    _matching_file_to_factory = staticmethod(WeaveFile)
1470
 
    
1471
 
    @staticmethod
1472
 
    def is_compatible(source, target):
1473
 
        """Be compatible with weaves."""
1474
 
        try:
1475
 
            return (isinstance(source, Weave) and
1476
 
                    isinstance(target, Weave))
1477
 
        except AttributeError:
1478
 
            return False
1479
 
 
1480
 
    def join(self, pb=None, msg=None, version_ids=None, ignore_missing=False):
1481
 
        """See InterVersionedFile.join."""
1482
 
        version_ids = self._get_source_version_ids(version_ids, ignore_missing)
1483
 
        if self.target.versions() == [] and version_ids is None:
1484
 
            self.target._copy_weave_content(self.source)
1485
 
            return
1486
 
        try:
1487
 
            self.target._join(self.source, pb, msg, version_ids, ignore_missing)
1488
 
        except errors.WeaveParentMismatch:
1489
 
            self.target._reweave(self.source, pb, msg)
1490
 
 
1491
 
 
1492
 
InterVersionedFile.register_optimiser(InterWeave)
 
1242
    sys.exit(main(sys.argv))