~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: Aaron Bentley
  • Date: 2009-03-24 15:47:32 UTC
  • mto: This revision was merged to the branch mainline in revision 4241.
  • Revision ID: aaron@aaronbentley.com-20090324154732-bwkvi4dx3o90a7dq
Add output, emit minimal inventory delta.

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
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 
19
19
# Author: Martin Pool <mbp@canonical.com>
20
20
 
27
27
# property.
28
28
 
29
29
# TODO: Nothing here so far assumes the lines are really \n newlines,
30
 
# rather than being split up in some other way.  We could accomodate
 
30
# rather than being split up in some other way.  We could accommodate
31
31
# binaries, perhaps by naively splitting on \n or perhaps using
32
32
# something like a rolling checksum.
33
33
 
61
61
# where the basis and destination are unchanged.
62
62
 
63
63
# FIXME: Sometimes we will be given a parents list for a revision
64
 
# that includes some redundant parents (i.e. already a parent of 
65
 
# something in the list.)  We should eliminate them.  This can 
 
64
# that includes some redundant parents (i.e. already a parent of
 
65
# something in the list.)  We should eliminate them.  This can
66
66
# be done fairly efficiently because the sequence numbers constrain
67
67
# the possible relationships.
68
68
 
70
70
 
71
71
from copy import copy
72
72
from cStringIO import StringIO
73
 
from difflib import SequenceMatcher
74
73
import os
75
 
import sha
76
74
import time
 
75
import warnings
77
76
 
78
 
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
    )
79
86
from bzrlib.errors import (WeaveError, WeaveFormatError, WeaveParentMismatch,
80
87
        RevisionAlreadyPresent,
81
88
        RevisionNotPresent,
 
89
        UnavailableRepresentation,
82
90
        WeaveRevisionAlreadyPresent,
83
91
        WeaveRevisionNotPresent,
84
92
        )
85
 
import bzrlib.errors as errors
86
 
from bzrlib.osutils import sha_strings
87
 
from bzrlib.patiencediff import SequenceMatcher, unified_diff
 
93
from bzrlib.osutils import dirname, sha, sha_strings, split_lines
 
94
import bzrlib.patiencediff
 
95
from bzrlib.revision import NULL_REVISION
88
96
from bzrlib.symbol_versioning import *
89
 
from bzrlib.tsort import topo_sort
90
 
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
    sort_groupcompress,
 
103
    VersionedFile,
 
104
    )
91
105
from bzrlib.weavefile import _read_weave_v5, write_weave_v5
92
106
 
93
107
 
 
108
class WeaveContentFactory(ContentFactory):
 
109
    """Content factory for streaming from weaves.
 
110
 
 
111
    :seealso ContentFactory:
 
112
    """
 
113
 
 
114
    def __init__(self, version, weave):
 
115
        """Create a WeaveContentFactory for version from weave."""
 
116
        ContentFactory.__init__(self)
 
117
        self.sha1 = weave.get_sha1s([version])[version]
 
118
        self.key = (version,)
 
119
        parents = weave.get_parent_map([version])[version]
 
120
        self.parents = tuple((parent,) for parent in parents)
 
121
        self.storage_kind = 'fulltext'
 
122
        self._weave = weave
 
123
 
 
124
    def get_bytes_as(self, storage_kind):
 
125
        if storage_kind == 'fulltext':
 
126
            return self._weave.get_text(self.key[-1])
 
127
        elif storage_kind == 'chunked':
 
128
            return self._weave.get_lines(self.key[-1])
 
129
        else:
 
130
            raise UnavailableRepresentation(self.key, storage_kind, 'fulltext')
 
131
 
 
132
 
94
133
class Weave(VersionedFile):
95
134
    """weave - versioned text file storage.
96
 
    
 
135
 
97
136
    A Weave manages versions of line-based text files, keeping track
98
137
    of the originating version for each line.
99
138
 
145
184
 
146
185
    * It doesn't seem very useful to have an active insertion
147
186
      inside an inactive insertion, but it might happen.
148
 
      
 
187
 
149
188
    * Therefore, all instructions are always"considered"; that
150
189
      is passed onto and off the stack.  An outer inactive block
151
190
      doesn't disable an inner block.
181
220
    """
182
221
 
183
222
    __slots__ = ['_weave', '_parents', '_sha1s', '_names', '_name_map',
184
 
                 '_weave_name', '_matcher']
185
 
    
186
 
    def __init__(self, weave_name=None, access_mode='w', matcher=None):
187
 
        super(Weave, self).__init__(access_mode)
 
223
                 '_weave_name', '_matcher', '_allow_reserved']
 
224
 
 
225
    def __init__(self, weave_name=None, access_mode='w', matcher=None,
 
226
                 get_scope=None, allow_reserved=False):
 
227
        """Create a weave.
 
228
 
 
229
        :param get_scope: A callable that returns an opaque object to be used
 
230
            for detecting when this weave goes out of scope (should stop
 
231
            answering requests or allowing mutation).
 
232
        """
 
233
        super(Weave, self).__init__()
188
234
        self._weave = []
189
235
        self._parents = []
190
236
        self._sha1s = []
192
238
        self._name_map = {}
193
239
        self._weave_name = weave_name
194
240
        if matcher is None:
195
 
            self._matcher = SequenceMatcher
 
241
            self._matcher = bzrlib.patiencediff.PatienceSequenceMatcher
196
242
        else:
197
243
            self._matcher = matcher
 
244
        if get_scope is None:
 
245
            get_scope = lambda:None
 
246
        self._get_scope = get_scope
 
247
        self._scope = get_scope()
 
248
        self._access_mode = access_mode
 
249
        self._allow_reserved = allow_reserved
198
250
 
199
251
    def __repr__(self):
200
252
        return "Weave(%r)" % self._weave_name
201
253
 
 
254
    def _check_write_ok(self):
 
255
        """Is the versioned file marked as 'finished' ? Raise if it is."""
 
256
        if self._get_scope() != self._scope:
 
257
            raise errors.OutSideTransaction()
 
258
        if self._access_mode != 'w':
 
259
            raise errors.ReadOnlyObjectDirtiedError(self)
 
260
 
202
261
    def copy(self):
203
262
        """Return a deep copy of self.
204
 
        
 
263
 
205
264
        The copy can be modified without affecting the original weave."""
206
265
        other = Weave()
207
266
        other._weave = self._weave[:]
217
276
            return False
218
277
        return self._parents == other._parents \
219
278
               and self._weave == other._weave \
220
 
               and self._sha1s == other._sha1s 
221
 
    
 
279
               and self._sha1s == other._sha1s
 
280
 
222
281
    def __ne__(self, other):
223
282
        return not self.__eq__(other)
224
283
 
225
 
    @deprecated_method(zero_eight)
226
 
    def idx_to_name(self, index):
227
 
        """Old public interface, the public interface is all names now."""
228
 
        return index
229
 
 
230
284
    def _idx_to_name(self, version):
231
285
        return self._names[version]
232
286
 
233
 
    @deprecated_method(zero_eight)
234
 
    def lookup(self, name):
235
 
        """Backwards compatability thunk:
236
 
 
237
 
        Return name, as name is valid in the api now, and spew deprecation
238
 
        warnings everywhere.
239
 
        """
240
 
        return name
241
 
 
242
287
    def _lookup(self, name):
243
288
        """Convert symbolic version name to index."""
 
289
        if not self._allow_reserved:
 
290
            self.check_not_reserved_id(name)
244
291
        try:
245
292
            return self._name_map[name]
246
293
        except KeyError:
247
294
            raise RevisionNotPresent(name, self._weave_name)
248
295
 
249
 
    @deprecated_method(zero_eight)
250
 
    def iter_names(self):
251
 
        """Deprecated convenience function, please see VersionedFile.names()."""
252
 
        return iter(self.names())
253
 
 
254
 
    @deprecated_method(zero_eight)
255
 
    def names(self):
256
 
        """See Weave.versions for the current api."""
257
 
        return self.versions()
258
 
 
259
296
    def versions(self):
260
297
        """See VersionedFile.versions."""
261
298
        return self._names[:]
262
299
 
263
300
    def has_version(self, version_id):
264
301
        """See VersionedFile.has_version."""
265
 
        return self._name_map.has_key(version_id)
 
302
        return (version_id in self._name_map)
266
303
 
267
304
    __contains__ = has_version
268
305
 
269
 
    def get_delta(self, version_id):
270
 
        """See VersionedFile.get_delta."""
271
 
        return self.get_deltas([version_id])[version_id]
272
 
 
273
 
    def get_deltas(self, version_ids):
274
 
        """See VersionedFile.get_deltas."""
275
 
        version_ids = self.get_ancestry(version_ids)
 
306
    def get_record_stream(self, versions, ordering, include_delta_closure):
 
307
        """Get a stream of records for versions.
 
308
 
 
309
        :param versions: The versions to include. Each version is a tuple
 
310
            (version,).
 
311
        :param ordering: Either 'unordered' or 'topological'. A topologically
 
312
            sorted stream has compression parents strictly before their
 
313
            children.
 
314
        :param include_delta_closure: If True then the closure across any
 
315
            compression parents will be included (in the opaque data).
 
316
        :return: An iterator of ContentFactory objects, each of which is only
 
317
            valid until the iterator is advanced.
 
318
        """
 
319
        versions = [version[-1] for version in versions]
 
320
        if ordering == 'topological':
 
321
            parents = self.get_parent_map(versions)
 
322
            new_versions = tsort.topo_sort(parents)
 
323
            new_versions.extend(set(versions).difference(set(parents)))
 
324
            versions = new_versions
 
325
        elif ordering == 'groupcompress':
 
326
            parents = self.get_parent_map(versions)
 
327
            new_versions = sort_groupcompress(parents)
 
328
            new_versions.extend(set(versions).difference(set(parents)))
 
329
            versions = new_versions
 
330
        for version in versions:
 
331
            if version in self:
 
332
                yield WeaveContentFactory(version, self)
 
333
            else:
 
334
                yield AbsentContentFactory((version,))
 
335
 
 
336
    def get_parent_map(self, version_ids):
 
337
        """See VersionedFile.get_parent_map."""
 
338
        result = {}
276
339
        for version_id in version_ids:
277
 
            if not self.has_version(version_id):
278
 
                raise RevisionNotPresent(version_id, self)
279
 
        # try extracting all versions; parallel extraction is used
280
 
        nv = self.num_versions()
281
 
        sha1s = {}
282
 
        deltas = {}
283
 
        texts = {}
284
 
        inclusions = {}
285
 
        noeols = {}
286
 
        last_parent_lines = {}
287
 
        parents = {}
288
 
        parent_inclusions = {}
289
 
        parent_linenums = {}
290
 
        parent_noeols = {}
291
 
        current_hunks = {}
292
 
        diff_hunks = {}
293
 
        # its simplest to generate a full set of prepared variables.
294
 
        for i in range(nv):
295
 
            name = self._names[i]
296
 
            sha1s[name] = self.get_sha1(name)
297
 
            parents_list = self.get_parents(name)
298
 
            try:
299
 
                parent = parents_list[0]
300
 
                parents[name] = parent
301
 
                parent_inclusions[name] = inclusions[parent]
302
 
            except IndexError:
303
 
                parents[name] = None
304
 
                parent_inclusions[name] = set()
305
 
            # we want to emit start, finish, replacement_length, replacement_lines tuples.
306
 
            diff_hunks[name] = []
307
 
            current_hunks[name] = [0, 0, 0, []] # #start, finish, repl_length, repl_tuples
308
 
            parent_linenums[name] = 0
309
 
            noeols[name] = False
310
 
            parent_noeols[name] = False
311
 
            last_parent_lines[name] = None
312
 
            new_inc = set([name])
313
 
            for p in self._parents[i]:
314
 
                new_inc.update(inclusions[self._idx_to_name(p)])
315
 
            # debug only, known good so far.
316
 
            #assert set(new_inc) == set(self.get_ancestry(name)), \
317
 
            #    'failed %s != %s' % (set(new_inc), set(self.get_ancestry(name)))
318
 
            inclusions[name] = new_inc
319
 
 
320
 
        nlines = len(self._weave)
321
 
 
322
 
        for lineno, inserted, deletes, line in self._walk_internal():
323
 
            # a line is active in a version if:
324
 
            # insert is in the versions inclusions
325
 
            # and
326
 
            # deleteset & the versions inclusions is an empty set.
327
 
            # so - if we have a included by mapping - version is included by
328
 
            # children, we get a list of children to examine for deletes affect
329
 
            # ing them, which is less than the entire set of children.
330
 
            for version_id in version_ids:  
331
 
                # The active inclusion must be an ancestor,
332
 
                # and no ancestors must have deleted this line,
333
 
                # because we don't support resurrection.
334
 
                parent_inclusion = parent_inclusions[version_id]
335
 
                inclusion = inclusions[version_id]
336
 
                parent_active = inserted in parent_inclusion and not (deletes & parent_inclusion)
337
 
                version_active = inserted in inclusion and not (deletes & inclusion)
338
 
                if not parent_active and not version_active:
339
 
                    # unrelated line of ancestry
 
340
            if version_id == NULL_REVISION:
 
341
                parents = ()
 
342
            else:
 
343
                try:
 
344
                    parents = tuple(
 
345
                        map(self._idx_to_name,
 
346
                            self._parents[self._lookup(version_id)]))
 
347
                except RevisionNotPresent:
340
348
                    continue
341
 
                elif parent_active and version_active:
342
 
                    # shared line
343
 
                    parent_linenum = parent_linenums[version_id]
344
 
                    if current_hunks[version_id] != [parent_linenum, parent_linenum, 0, []]:
345
 
                        diff_hunks[version_id].append(tuple(current_hunks[version_id]))
346
 
                    parent_linenum += 1
347
 
                    current_hunks[version_id] = [parent_linenum, parent_linenum, 0, []]
348
 
                    parent_linenums[version_id] = parent_linenum
349
 
                    try:
350
 
                        if line[-1] != '\n':
351
 
                            noeols[version_id] = True
352
 
                    except IndexError:
353
 
                        pass
354
 
                elif parent_active and not version_active:
355
 
                    # deleted line
356
 
                    current_hunks[version_id][1] += 1
357
 
                    parent_linenums[version_id] += 1
358
 
                    last_parent_lines[version_id] = line
359
 
                elif not parent_active and version_active:
360
 
                    # replacement line
361
 
                    # noeol only occurs at the end of a file because we 
362
 
                    # diff linewise. We want to show noeol changes as a
363
 
                    # empty diff unless the actual eol-less content changed.
364
 
                    theline = line
365
 
                    try:
366
 
                        if last_parent_lines[version_id][-1] != '\n':
367
 
                            parent_noeols[version_id] = True
368
 
                    except (TypeError, IndexError):
369
 
                        pass
370
 
                    try:
371
 
                        if theline[-1] != '\n':
372
 
                            noeols[version_id] = True
373
 
                    except IndexError:
374
 
                        pass
375
 
                    new_line = False
376
 
                    parent_should_go = False
377
 
 
378
 
                    if parent_noeols[version_id] == noeols[version_id]:
379
 
                        # no noeol toggle, so trust the weaves statement
380
 
                        # that this line is changed.
381
 
                        new_line = True
382
 
                        if parent_noeols[version_id]:
383
 
                            theline = theline + '\n'
384
 
                    elif parent_noeols[version_id]:
385
 
                        # parent has no eol, we do:
386
 
                        # our line is new, report as such..
387
 
                        new_line = True
388
 
                    elif noeols[version_id]:
389
 
                        # append a eol so that it looks like
390
 
                        # a normalised delta
391
 
                        theline = theline + '\n'
392
 
                        if parents[version_id] is not None:
393
 
                        #if last_parent_lines[version_id] is not None:
394
 
                            parent_should_go = True
395
 
                        if last_parent_lines[version_id] != theline:
396
 
                            # but changed anyway
397
 
                            new_line = True
398
 
                            #parent_should_go = False
399
 
                    if new_line:
400
 
                        current_hunks[version_id][2] += 1
401
 
                        current_hunks[version_id][3].append((inserted, theline))
402
 
                    if parent_should_go:
403
 
                        # last hunk last parent line is not eaten
404
 
                        current_hunks[version_id][1] -= 1
405
 
                    if current_hunks[version_id][1] < 0:
406
 
                        current_hunks[version_id][1] = 0
407
 
                        # import pdb;pdb.set_trace()
408
 
                    # assert current_hunks[version_id][1] >= 0
409
 
 
410
 
        # flush last hunk
411
 
        for i in range(nv):
412
 
            version = self._idx_to_name(i)
413
 
            if current_hunks[version] != [0, 0, 0, []]:
414
 
                diff_hunks[version].append(tuple(current_hunks[version]))
415
 
        result = {}
416
 
        for version_id in version_ids:
417
 
            result[version_id] = (
418
 
                                  parents[version_id],
419
 
                                  sha1s[version_id],
420
 
                                  noeols[version_id],
421
 
                                  diff_hunks[version_id],
422
 
                                  )
 
349
            result[version_id] = parents
423
350
        return result
424
351
 
425
 
    def get_parents(self, version_id):
426
 
        """See VersionedFile.get_parent."""
427
 
        return map(self._idx_to_name, self._parents[self._lookup(version_id)])
 
352
    def get_parents_with_ghosts(self, version_id):
 
353
        raise NotImplementedError(self.get_parents_with_ghosts)
 
354
 
 
355
    def insert_record_stream(self, stream):
 
356
        """Insert a record stream into this versioned file.
 
357
 
 
358
        :param stream: A stream of records to insert.
 
359
        :return: None
 
360
        :seealso VersionedFile.get_record_stream:
 
361
        """
 
362
        adapters = {}
 
363
        for record in stream:
 
364
            # Raise an error when a record is missing.
 
365
            if record.storage_kind == 'absent':
 
366
                raise RevisionNotPresent([record.key[0]], self)
 
367
            # adapt to non-tuple interface
 
368
            parents = [parent[0] for parent in record.parents]
 
369
            if (record.storage_kind == 'fulltext'
 
370
                or record.storage_kind == 'chunked'):
 
371
                self.add_lines(record.key[0], parents,
 
372
                    osutils.chunks_to_lines(record.get_bytes_as('chunked')))
 
373
            else:
 
374
                adapter_key = record.storage_kind, 'fulltext'
 
375
                try:
 
376
                    adapter = adapters[adapter_key]
 
377
                except KeyError:
 
378
                    adapter_factory = adapter_registry.get(adapter_key)
 
379
                    adapter = adapter_factory(self)
 
380
                    adapters[adapter_key] = adapter
 
381
                lines = split_lines(adapter.get_bytes(record))
 
382
                try:
 
383
                    self.add_lines(record.key[0], parents, lines)
 
384
                except RevisionAlreadyPresent:
 
385
                    pass
428
386
 
429
387
    def _check_repeated_add(self, name, parents, text, sha1):
430
388
        """Check that a duplicated add is OK.
437
395
            raise RevisionAlreadyPresent(name, self._weave_name)
438
396
        return idx
439
397
 
440
 
    @deprecated_method(zero_eight)
441
 
    def add_identical(self, old_rev_id, new_rev_id, parents):
442
 
        """Please use Weave.clone_text now."""
443
 
        return self.clone_text(new_rev_id, old_rev_id, parents)
444
 
 
445
 
    def _add_lines(self, version_id, parents, lines, parent_texts):
 
398
    def _add_lines(self, version_id, parents, lines, parent_texts,
 
399
       left_matching_blocks, nostore_sha, random_id, check_content):
446
400
        """See VersionedFile.add_lines."""
447
 
        return self._add(version_id, lines, map(self._lookup, parents))
448
 
 
449
 
    @deprecated_method(zero_eight)
450
 
    def add(self, name, parents, text, sha1=None):
451
 
        """See VersionedFile.add_lines for the non deprecated api."""
452
 
        return self._add(name, text, map(self._maybe_lookup, parents), sha1)
453
 
 
454
 
    def _add(self, version_id, lines, parents, sha1=None):
 
401
        idx = self._add(version_id, lines, map(self._lookup, parents),
 
402
            nostore_sha=nostore_sha)
 
403
        return sha_strings(lines), sum(map(len, lines)), idx
 
404
 
 
405
    def _add(self, version_id, lines, parents, sha1=None, nostore_sha=None):
455
406
        """Add a single text on top of the weave.
456
 
  
 
407
 
457
408
        Returns the index number of the newly added version.
458
409
 
459
410
        version_id
462
413
 
463
414
        parents
464
415
            List or set of direct parent version numbers.
465
 
            
 
416
 
466
417
        lines
467
418
            Sequence of lines to be added in the new version.
 
419
 
 
420
        :param nostore_sha: See VersionedFile.add_lines.
468
421
        """
469
 
 
470
 
        assert isinstance(version_id, basestring)
471
422
        self._check_lines_not_unicode(lines)
472
423
        self._check_lines_are_lines(lines)
473
424
        if not sha1:
474
425
            sha1 = sha_strings(lines)
 
426
        if sha1 == nostore_sha:
 
427
            raise errors.ExistingContent
475
428
        if version_id in self._name_map:
476
429
            return self._check_repeated_add(version_id, parents, lines, sha1)
477
430
 
488
441
        self._names.append(version_id)
489
442
        self._name_map[version_id] = new_version
490
443
 
491
 
            
 
444
 
492
445
        if not parents:
493
446
            # special case; adding with no parents revision; can do
494
447
            # this more quickly by just appending unconditionally.
505
458
            if sha1 == self._sha1s[pv]:
506
459
                # special case: same as the single parent
507
460
                return new_version
508
 
            
 
461
 
509
462
 
510
463
        ancestors = self._inclusions(parents)
511
464
 
521
474
        # another small special case: a merge, producing the same text
522
475
        # as auto-merge
523
476
        if lines == basis_lines:
524
 
            return new_version            
 
477
            return new_version
525
478
 
526
 
        # add a sentinal, because we can also match against the final line
 
479
        # add a sentinel, because we can also match against the final line
527
480
        basis_lineno.append(len(self._weave))
528
481
 
529
482
        # XXX: which line of the weave should we really consider
546
499
            #print 'raw match', tag, i1, i2, j1, j2
547
500
            if tag == 'equal':
548
501
                continue
549
 
 
550
502
            i1 = basis_lineno[i1]
551
503
            i2 = basis_lineno[i2]
552
 
 
553
 
            assert 0 <= j1 <= j2 <= len(lines)
554
 
 
555
 
            #print tag, i1, i2, j1, j2
556
 
 
557
504
            # the deletion and insertion are handled separately.
558
505
            # first delete the region.
559
506
            if i1 != i2:
566
513
                # i2; we want to insert after this region to make sure
567
514
                # we don't destroy ourselves
568
515
                i = i2 + offset
569
 
                self._weave[i:i] = ([('{', new_version)] 
570
 
                                    + lines[j1:j2] 
 
516
                self._weave[i:i] = ([('{', new_version)]
 
517
                                    + lines[j1:j2]
571
518
                                    + [('}', None)])
572
519
                offset += 2 + (j2 - j1)
573
520
        return new_version
574
521
 
575
 
    def _clone_text(self, new_version_id, old_version_id, parents):
576
 
        """See VersionedFile.clone_text."""
577
 
        old_lines = self.get_text(old_version_id)
578
 
        self.add_lines(new_version_id, parents, old_lines)
579
 
 
580
522
    def _inclusions(self, versions):
581
523
        """Return set of all ancestors of given version(s)."""
582
524
        if not len(versions):
590
532
        ## except IndexError:
591
533
        ##     raise ValueError("version %d not present in weave" % v)
592
534
 
593
 
    @deprecated_method(zero_eight)
594
 
    def inclusions(self, version_ids):
595
 
        """Deprecated - see VersionedFile.get_ancestry for the replacement."""
596
 
        if not version_ids:
597
 
            return []
598
 
        if isinstance(version_ids[0], int):
599
 
            return [self._idx_to_name(v) for v in self._inclusions(version_ids)]
600
 
        else:
601
 
            return self.get_ancestry(version_ids)
602
 
 
603
 
    def get_ancestry(self, version_ids):
 
535
    def get_ancestry(self, version_ids, topo_sorted=True):
604
536
        """See VersionedFile.get_ancestry."""
605
537
        if isinstance(version_ids, basestring):
606
538
            version_ids = [version_ids]
615
547
            if not isinstance(l, basestring):
616
548
                raise ValueError("text line should be a string or unicode, not %s"
617
549
                                 % type(l))
618
 
        
 
550
 
619
551
 
620
552
 
621
553
    def _check_versions(self, indexes):
629
561
    def _compatible_parents(self, my_parents, other_parents):
630
562
        """During join check that other_parents are joinable with my_parents.
631
563
 
632
 
        Joinable is defined as 'is a subset of' - supersets may require 
 
564
        Joinable is defined as 'is a subset of' - supersets may require
633
565
        regeneration of diffs, but subsets do not.
634
566
        """
635
567
        return len(other_parents.difference(my_parents)) == 0
636
568
 
637
569
    def annotate(self, version_id):
638
 
        if isinstance(version_id, int):
639
 
            warn('Weave.annotate(int) is deprecated. Please use version names'
640
 
                 ' in all circumstances as of 0.8',
641
 
                 DeprecationWarning,
642
 
                 stacklevel=2
643
 
                 )
644
 
            result = []
645
 
            for origin, lineno, text in self._extract([version_id]):
646
 
                result.append((origin, text))
647
 
            return result
648
 
        else:
649
 
            return super(Weave, self).annotate(version_id)
650
 
    
651
 
    def annotate_iter(self, version_id):
652
 
        """Yield list of (version-id, line) pairs for the specified version.
 
570
        """Return a list of (version-id, line) tuples for version_id.
653
571
 
654
572
        The index indicates when the line originated in the weave."""
655
573
        incls = [self._lookup(version_id)]
656
 
        for origin, lineno, text in self._extract(incls):
657
 
            yield self._idx_to_name(origin), text
658
 
 
659
 
    @deprecated_method(zero_eight)
660
 
    def _walk(self):
661
 
        """_walk has become visit, a supported api."""
662
 
        return self._walk_internal()
663
 
 
664
 
    def iter_lines_added_or_present_in_versions(self, version_ids=None):
 
574
        return [(self._idx_to_name(origin), text) for origin, lineno, text in
 
575
            self._extract(incls)]
 
576
 
 
577
    def iter_lines_added_or_present_in_versions(self, version_ids=None,
 
578
                                                pb=None):
665
579
        """See VersionedFile.iter_lines_added_or_present_in_versions()."""
666
580
        if version_ids is None:
667
581
            version_ids = self.versions()
668
582
        version_ids = set(version_ids)
669
583
        for lineno, inserted, deletes, line in self._walk_internal(version_ids):
670
 
            # if inserted not in version_ids then it was inserted before the
671
 
            # versions we care about, but because weaves cannot represent ghosts
672
 
            # properly, we do not filter down to that
673
 
            # if inserted not in version_ids: continue
 
584
            if inserted not in version_ids: continue
674
585
            if line[-1] != '\n':
675
 
                yield line + '\n'
 
586
                yield line + '\n', inserted
676
587
            else:
677
 
                yield line
678
 
 
679
 
    #@deprecated_method(zero_eight)
680
 
    def walk(self, version_ids=None):
681
 
        """See VersionedFile.walk."""
682
 
        return self._walk_internal(version_ids)
 
588
                yield line, inserted
683
589
 
684
590
    def _walk_internal(self, version_ids=None):
685
591
        """Helper method for weave actions."""
686
 
        
 
592
 
687
593
        istack = []
688
594
        dset = set()
689
595
 
698
604
                elif c == '}':
699
605
                    istack.pop()
700
606
                elif c == '[':
701
 
                    assert self._names[v] not in dset
702
607
                    dset.add(self._names[v])
703
608
                elif c == ']':
704
609
                    dset.remove(self._names[v])
705
610
                else:
706
611
                    raise WeaveFormatError('unexpected instruction %r' % v)
707
612
            else:
708
 
                assert l.__class__ in (str, unicode)
709
 
                assert istack
710
613
                yield lineno, istack[-1], frozenset(dset), l
711
614
            lineno += 1
712
615
 
729
632
        inc_b = set(self.get_ancestry([ver_b]))
730
633
        inc_c = inc_a & inc_b
731
634
 
732
 
        for lineno, insert, deleteset, line in\
733
 
            self.walk([ver_a, ver_b]):
 
635
        for lineno, insert, deleteset, line in self._walk_internal([ver_a, ver_b]):
734
636
            if deleteset & inc_c:
735
637
                # killed in parent; can't be in either a or b
736
638
                # not relevant to our work
762
664
                # not in either revision
763
665
                yield 'irrelevant', line
764
666
 
765
 
        yield 'unchanged', ''           # terminator
766
 
 
767
667
    def _extract(self, versions):
768
668
        """Yield annotation of lines in included set.
769
669
 
776
676
        for i in versions:
777
677
            if not isinstance(i, int):
778
678
                raise ValueError(i)
779
 
            
 
679
 
780
680
        included = self._inclusions(versions)
781
681
 
782
682
        istack = []
791
691
 
792
692
        WFE = WeaveFormatError
793
693
 
794
 
        # wow. 
 
694
        # wow.
795
695
        #  449       0   4474.6820   2356.5590   bzrlib.weave:556(_extract)
796
696
        #  +285282   0   1676.8040   1676.8040   +<isinstance>
797
697
        # 1.6 seconds in 'isinstance'.
803
703
        # we're still spending ~1/4 of the method in isinstance though.
804
704
        # so lets hard code the acceptable string classes we expect:
805
705
        #  449       0   1202.9420    786.2930   bzrlib.weave:556(_extract)
806
 
        # +71352     0    377.5560    377.5560   +<method 'append' of 'list' 
 
706
        # +71352     0    377.5560    377.5560   +<method 'append' of 'list'
807
707
        #                                          objects>
808
708
        # yay, down to ~1/4 the initial extract time, and our inline time
809
709
        # has shrunk again, with isinstance no longer dominating.
810
710
        # tweaking the stack inclusion test to use a set gives:
811
711
        #  449       0   1122.8030    713.0080   bzrlib.weave:556(_extract)
812
 
        # +71352     0    354.9980    354.9980   +<method 'append' of 'list' 
 
712
        # +71352     0    354.9980    354.9980   +<method 'append' of 'list'
813
713
        #                                          objects>
814
714
        # - a 5% win, or possibly just noise. However with large istacks that
815
715
        # 'in' test could dominate, so I'm leaving this change in place -
816
716
        # when its fast enough to consider profiling big datasets we can review.
817
717
 
818
 
              
819
 
             
 
718
 
 
719
 
820
720
 
821
721
        for l in self._weave:
822
722
            if l.__class__ == tuple:
823
723
                c, v = l
824
724
                isactive = None
825
725
                if c == '{':
826
 
                    assert v not in iset
827
726
                    istack.append(v)
828
727
                    iset.add(v)
829
728
                elif c == '}':
830
729
                    iset.remove(istack.pop())
831
730
                elif c == '[':
832
731
                    if v in included:
833
 
                        assert v not in dset
834
732
                        dset.add(v)
835
 
                else:
836
 
                    assert c == ']'
 
733
                elif c == ']':
837
734
                    if v in included:
838
 
                        assert v in dset
839
735
                        dset.remove(v)
 
736
                else:
 
737
                    raise AssertionError()
840
738
            else:
841
 
                assert l.__class__ in (str, unicode)
842
739
                if isactive is None:
843
740
                    isactive = (not dset) and istack and (istack[-1] in included)
844
741
                if isactive:
852
749
                                   % dset)
853
750
        return result
854
751
 
855
 
    @deprecated_method(zero_eight)
856
 
    def get_iter(self, name_or_index):
857
 
        """Deprecated, please do not use. Lookups are not not needed.
858
 
        
859
 
        Please use get_lines now.
860
 
        """
861
 
        return iter(self.get_lines(self._maybe_lookup(name_or_index)))
862
 
 
863
 
    @deprecated_method(zero_eight)
864
 
    def maybe_lookup(self, name_or_index):
865
 
        """Deprecated, please do not use. Lookups are not not needed."""
866
 
        return self._maybe_lookup(name_or_index)
867
 
 
868
752
    def _maybe_lookup(self, name_or_index):
869
753
        """Convert possible symbolic name to index, or pass through indexes.
870
 
        
 
754
 
871
755
        NOT FOR PUBLIC USE.
872
756
        """
873
757
        if isinstance(name_or_index, (int, long)):
875
759
        else:
876
760
            return self._lookup(name_or_index)
877
761
 
878
 
    @deprecated_method(zero_eight)
879
 
    def get(self, version_id):
880
 
        """Please use either Weave.get_text or Weave.get_lines as desired."""
881
 
        return self.get_lines(version_id)
882
 
 
883
762
    def get_lines(self, version_id):
884
763
        """See VersionedFile.get_lines()."""
885
764
        int_index = self._maybe_lookup(version_id)
888
767
        measured_sha1 = sha_strings(result)
889
768
        if measured_sha1 != expected_sha1:
890
769
            raise errors.WeaveInvalidChecksum(
891
 
                    'file %s, revision %s, expected: %s, measured %s' 
 
770
                    'file %s, revision %s, expected: %s, measured %s'
892
771
                    % (self._weave_name, version_id,
893
772
                       expected_sha1, measured_sha1))
894
773
        return result
895
774
 
896
 
    def get_sha1(self, version_id):
897
 
        """See VersionedFile.get_sha1()."""
898
 
        return self._sha1s[self._lookup(version_id)]
899
 
 
900
 
    @deprecated_method(zero_eight)
901
 
    def numversions(self):
902
 
        """How many versions are in this weave?
903
 
 
904
 
        Deprecated in favour of num_versions.
905
 
        """
906
 
        return self.num_versions()
 
775
    def get_sha1s(self, version_ids):
 
776
        """See VersionedFile.get_sha1s()."""
 
777
        result = {}
 
778
        for v in version_ids:
 
779
            result[v] = self._sha1s[self._lookup(v)]
 
780
        return result
907
781
 
908
782
    def num_versions(self):
909
783
        """How many versions are in this weave?"""
910
784
        l = len(self._parents)
911
 
        assert l == len(self._sha1s)
912
785
        return l
913
786
 
914
787
    __len__ = num_versions
934
807
            # For creating the ancestry, IntSet is much faster (3.7s vs 0.17s)
935
808
            # The problem is that set membership is much more expensive
936
809
            name = self._idx_to_name(i)
937
 
            sha1s[name] = sha.new()
 
810
            sha1s[name] = sha()
938
811
            texts[name] = []
939
812
            new_inc = set([name])
940
813
            for p in self._parents[i]:
941
814
                new_inc.update(inclusions[self._idx_to_name(p)])
942
815
 
943
 
            assert set(new_inc) == set(self.get_ancestry(name)), \
944
 
                'failed %s != %s' % (set(new_inc), set(self.get_ancestry(name)))
 
816
            if set(new_inc) != set(self.get_ancestry(name)):
 
817
                raise AssertionError(
 
818
                    'failed %s != %s'
 
819
                    % (set(new_inc), set(self.get_ancestry(name))))
945
820
            inclusions[name] = new_inc
946
821
 
947
822
        nlines = len(self._weave)
977
852
        # no lines outside of insertion blocks, that deletions are
978
853
        # properly paired, etc.
979
854
 
980
 
    def _join(self, other, pb, msg, version_ids, ignore_missing):
981
 
        """Worker routine for join()."""
982
 
        if not other.versions():
983
 
            return          # nothing to update, easy
984
 
 
985
 
        if not version_ids:
986
 
            # versions is never none, InterWeave checks this.
987
 
            return 0
988
 
 
989
 
        # two loops so that we do not change ourselves before verifying it
990
 
        # will be ok
991
 
        # work through in index order to make sure we get all dependencies
992
 
        names_to_join = []
993
 
        processed = 0
994
 
        # get the selected versions only that are in other.versions.
995
 
        version_ids = set(other.versions()).intersection(set(version_ids))
996
 
        # pull in the referenced graph.
997
 
        version_ids = other.get_ancestry(version_ids)
998
 
        pending_graph = [(version, other.get_parents(version)) for
999
 
                         version in version_ids]
1000
 
        for name in topo_sort(pending_graph):
1001
 
            other_idx = other._name_map[name]
1002
 
            # returns True if we have it, False if we need it.
1003
 
            if not self._check_version_consistent(other, other_idx, name):
1004
 
                names_to_join.append((other_idx, name))
1005
 
            processed += 1
1006
 
 
1007
 
 
1008
 
        if pb and not msg:
1009
 
            msg = 'weave join'
1010
 
 
1011
 
        merged = 0
1012
 
        time0 = time.time()
1013
 
        for other_idx, name in names_to_join:
1014
 
            # TODO: If all the parents of the other version are already
1015
 
            # present then we can avoid some work by just taking the delta
1016
 
            # and adjusting the offsets.
1017
 
            new_parents = self._imported_parents(other, other_idx)
1018
 
            sha1 = other._sha1s[other_idx]
1019
 
 
1020
 
            merged += 1
1021
 
 
1022
 
            if pb:
1023
 
                pb.update(msg, merged, len(names_to_join))
1024
 
           
1025
 
            lines = other.get_lines(other_idx)
1026
 
            self._add(name, lines, new_parents, sha1)
1027
 
 
1028
 
        mutter("merged = %d, processed = %d, file_id=%s; deltat=%d"%(
1029
 
                merged, processed, self._weave_name, time.time()-time0))
1030
 
 
1031
855
    def _imported_parents(self, other, other_idx):
1032
856
        """Return list of parents in self corresponding to indexes in other."""
1033
857
        new_parents = []
1035
859
            parent_name = other._names[parent_idx]
1036
860
            if parent_name not in self._name_map:
1037
861
                # should not be possible
1038
 
                raise WeaveError("missing parent {%s} of {%s} in %r" 
 
862
                raise WeaveError("missing parent {%s} of {%s} in %r"
1039
863
                                 % (parent_name, other._name_map[other_idx], self))
1040
864
            new_parents.append(self._name_map[parent_name])
1041
865
        return new_parents
1048
872
         * the same text
1049
873
         * the same direct parents (by name, not index, and disregarding
1050
874
           order)
1051
 
        
 
875
 
1052
876
        If present & correct return True;
1053
 
        if not present in self return False; 
 
877
        if not present in self return False;
1054
878
        if inconsistent raise error."""
1055
879
        this_idx = self._name_map.get(name, -1)
1056
880
        if this_idx != -1:
1068
892
        else:
1069
893
            return False
1070
894
 
1071
 
    @deprecated_method(zero_eight)
1072
 
    def reweave(self, other, pb=None, msg=None):
1073
 
        """reweave has been superceded by plain use of join."""
1074
 
        return self.join(other, pb, msg)
1075
 
 
1076
895
    def _reweave(self, other, pb, msg):
1077
896
        """Reweave self with other - internal helper for join().
1078
897
 
1094
913
    """A WeaveFile represents a Weave on disk and writes on change."""
1095
914
 
1096
915
    WEAVE_SUFFIX = '.weave'
1097
 
    
1098
 
    def __init__(self, name, transport, filemode=None, create=False, access_mode='w'):
 
916
 
 
917
    def __init__(self, name, transport, filemode=None, create=False, access_mode='w', get_scope=None):
1099
918
        """Create a WeaveFile.
1100
 
        
 
919
 
1101
920
        :param create: If not True, only open an existing knit.
1102
921
        """
1103
 
        super(WeaveFile, self).__init__(name, access_mode)
 
922
        super(WeaveFile, self).__init__(name, access_mode, get_scope=get_scope,
 
923
            allow_reserved=False)
1104
924
        self._transport = transport
1105
925
        self._filemode = filemode
1106
926
        try:
1111
931
            # new file, save it
1112
932
            self._save()
1113
933
 
1114
 
    def _add_lines(self, version_id, parents, lines, parent_texts):
 
934
    def _add_lines(self, version_id, parents, lines, parent_texts,
 
935
        left_matching_blocks, nostore_sha, random_id, check_content):
1115
936
        """Add a version and save the weave."""
 
937
        self.check_not_reserved_id(version_id)
1116
938
        result = super(WeaveFile, self)._add_lines(version_id, parents, lines,
1117
 
                                                   parent_texts)
 
939
            parent_texts, left_matching_blocks, nostore_sha, random_id,
 
940
            check_content)
1118
941
        self._save()
1119
942
        return result
1120
943
 
1121
 
    def _clone_text(self, new_version_id, old_version_id, parents):
1122
 
        """See VersionedFile.clone_text."""
1123
 
        super(WeaveFile, self)._clone_text(new_version_id, old_version_id, parents)
1124
 
        self._save
1125
 
 
1126
944
    def copy_to(self, name, transport):
1127
945
        """See VersionedFile.copy_to()."""
1128
946
        # as we are all in memory always, just serialise to the new place.
1129
947
        sio = StringIO()
1130
948
        write_weave_v5(self, sio)
1131
949
        sio.seek(0)
1132
 
        transport.put(name + WeaveFile.WEAVE_SUFFIX, sio, self._filemode)
1133
 
 
1134
 
    def create_empty(self, name, transport, filemode=None):
1135
 
        return WeaveFile(name, transport, filemode, create=True)
 
950
        transport.put_file(name + WeaveFile.WEAVE_SUFFIX, sio, self._filemode)
1136
951
 
1137
952
    def _save(self):
1138
953
        """Save the weave."""
1140
955
        sio = StringIO()
1141
956
        write_weave_v5(self, sio)
1142
957
        sio.seek(0)
1143
 
        self._transport.put(self._weave_name + WeaveFile.WEAVE_SUFFIX,
1144
 
                            sio,
1145
 
                            self._filemode)
 
958
        bytes = sio.getvalue()
 
959
        path = self._weave_name + WeaveFile.WEAVE_SUFFIX
 
960
        try:
 
961
            self._transport.put_bytes(path, bytes, self._filemode)
 
962
        except errors.NoSuchFile:
 
963
            self._transport.mkdir(dirname(path))
 
964
            self._transport.put_bytes(path, bytes, self._filemode)
1146
965
 
1147
966
    @staticmethod
1148
967
    def get_suffixes():
1149
968
        """See VersionedFile.get_suffixes()."""
1150
969
        return [WeaveFile.WEAVE_SUFFIX]
1151
970
 
1152
 
    def join(self, other, pb=None, msg=None, version_ids=None,
1153
 
             ignore_missing=False):
1154
 
        """Join other into self and save."""
1155
 
        super(WeaveFile, self).join(other, pb, msg, version_ids, ignore_missing)
 
971
    def insert_record_stream(self, stream):
 
972
        super(WeaveFile, self).insert_record_stream(stream)
1156
973
        self._save()
1157
974
 
1158
975
 
1159
 
@deprecated_function(zero_eight)
1160
 
def reweave(wa, wb, pb=None, msg=None):
1161
 
    """reweaving is deprecation, please just use weave.join()."""
1162
 
    _reweave(wa, wb, pb, msg)
1163
 
 
1164
976
def _reweave(wa, wb, pb=None, msg=None):
1165
977
    """Combine two weaves and return the result.
1166
978
 
1167
 
    This works even if a revision R has different parents in 
 
979
    This works even if a revision R has different parents in
1168
980
    wa and wb.  In the resulting weave all the parents are given.
1169
981
 
1170
 
    This is done by just building up a new weave, maintaining ordering 
 
982
    This is done by just building up a new weave, maintaining ordering
1171
983
    of the versions in the two inputs.  More efficient approaches
1172
 
    might be possible but it should only be necessary to do 
1173
 
    this operation rarely, when a new previously ghost version is 
 
984
    might be possible but it should only be necessary to do
 
985
    this operation rarely, when a new previously ghost version is
1174
986
    inserted.
1175
987
 
1176
988
    :param pb: An optional progress bar, indicating how far done we are
1184
996
    # map from version name -> all parent names
1185
997
    combined_parents = _reweave_parent_graphs(wa, wb)
1186
998
    mutter("combined parents: %r", combined_parents)
1187
 
    order = topo_sort(combined_parents.iteritems())
 
999
    order = tsort.topo_sort(combined_parents.iteritems())
1188
1000
    mutter("order to reweave: %r", order)
1189
1001
 
1190
1002
    if pb and not msg:
1212
1024
 
1213
1025
def _reweave_parent_graphs(wa, wb):
1214
1026
    """Return combined parent ancestry for two weaves.
1215
 
    
 
1027
 
1216
1028
    Returned as a list of (version_name, set(parent_names))"""
1217
1029
    combined = {}
1218
1030
    for weave in [wa, wb]:
1240
1052
    from bzrlib.weavefile import read_weave
1241
1053
 
1242
1054
    wf = file(weave_file, 'rb')
1243
 
    w = read_weave(wf, WeaveVersionedFile)
 
1055
    w = read_weave(wf)
1244
1056
    # FIXME: doesn't work on pipes
1245
1057
    weave_size = wf.tell()
1246
1058
 
1283
1095
        Display origin of each line.
1284
1096
    weave merge WEAVEFILE VERSION1 VERSION2 > OUT
1285
1097
        Auto-merge two versions and display conflicts.
1286
 
    weave diff WEAVEFILE VERSION1 VERSION2 
 
1098
    weave diff WEAVEFILE VERSION1 VERSION2
1287
1099
        Show differences between two versions.
1288
1100
 
1289
1101
example:
1306
1118
 
1307
1119
    % weave merge foo.weave 1 2 > foo.txt   (merge them)
1308
1120
    % vi foo.txt                            (resolve conflicts)
1309
 
    % weave add foo.weave merged 1 2 < foo.txt     (commit merged version)     
1310
 
    
 
1121
    % weave add foo.weave merged 1 2 < foo.txt     (commit merged version)
 
1122
 
1311
1123
"""
1312
 
    
 
1124
 
1313
1125
 
1314
1126
 
1315
1127
def main(argv):
1338
1150
 
1339
1151
    def readit():
1340
1152
        return read_weave(file(argv[2], 'rb'))
1341
 
    
 
1153
 
1342
1154
    if cmd == 'help':
1343
1155
        usage()
1344
1156
    elif cmd == 'add':
1359
1171
    elif cmd == 'get': # get one version
1360
1172
        w = readit()
1361
1173
        sys.stdout.writelines(w.get_iter(int(argv[3])))
1362
 
        
 
1174
 
1363
1175
    elif cmd == 'diff':
1364
1176
        w = readit()
1365
1177
        fn = argv[2]
1366
1178
        v1, v2 = map(int, argv[3:5])
1367
1179
        lines1 = w.get(v1)
1368
1180
        lines2 = w.get(v2)
1369
 
        diff_gen = unified_diff(lines1, lines2,
 
1181
        diff_gen = bzrlib.patiencediff.unified_diff(lines1, lines2,
1370
1182
                                '%s version %d' % (fn, v1),
1371
1183
                                '%s version %d' % (fn, v2))
1372
1184
        sys.stdout.writelines(diff_gen)
1373
 
            
 
1185
 
1374
1186
    elif cmd == 'annotate':
1375
1187
        w = readit()
1376
1188
        # newline is added to all lines regardless; too hard to get
1383
1195
            else:
1384
1196
                print '%5d | %s' % (origin, text)
1385
1197
                lasto = origin
1386
 
                
 
1198
 
1387
1199
    elif cmd == 'toc':
1388
1200
        weave_toc(readit())
1389
1201
 
1390
1202
    elif cmd == 'stats':
1391
1203
        weave_stats(argv[2], ProgressBar())
1392
 
        
 
1204
 
1393
1205
    elif cmd == 'check':
1394
1206
        w = readit()
1395
1207
        pb = ProgressBar()
1418
1230
        sys.stdout.writelines(w.weave_merge(p))
1419
1231
    else:
1420
1232
        raise ValueError('unknown command %r' % cmd)
1421
 
    
1422
 
 
1423
 
 
1424
 
def profile_main(argv):
1425
 
    import tempfile, hotshot, hotshot.stats
1426
 
 
1427
 
    prof_f = tempfile.NamedTemporaryFile()
1428
 
 
1429
 
    prof = hotshot.Profile(prof_f.name)
1430
 
 
1431
 
    ret = prof.runcall(main, argv)
1432
 
    prof.close()
1433
 
 
1434
 
    stats = hotshot.stats.load(prof_f.name)
1435
 
    #stats.strip_dirs()
1436
 
    stats.sort_stats('cumulative')
1437
 
    ## XXX: Might like to write to stderr or the trace file instead but
1438
 
    ## print_stats seems hardcoded to stdout
1439
 
    stats.print_stats(20)
1440
 
            
1441
 
    return ret
1442
 
 
1443
 
 
1444
 
def lsprofile_main(argv): 
1445
 
    from bzrlib.lsprof import profile
1446
 
    ret,stats = profile(main, argv)
1447
 
    stats.sort()
1448
 
    stats.pprint()
1449
 
    return ret
1450
1233
 
1451
1234
 
1452
1235
if __name__ == '__main__':
1453
1236
    import sys
1454
 
    if '--profile' in sys.argv:
1455
 
        args = sys.argv[:]
1456
 
        args.remove('--profile')
1457
 
        sys.exit(profile_main(args))
1458
 
    elif '--lsprof' in sys.argv:
1459
 
        args = sys.argv[:]
1460
 
        args.remove('--lsprof')
1461
 
        sys.exit(lsprofile_main(args))
1462
 
    else:
1463
 
        sys.exit(main(sys.argv))
1464
 
 
1465
 
 
1466
 
class InterWeave(InterVersionedFile):
1467
 
    """Optimised code paths for weave to weave operations."""
1468
 
    
1469
 
    _matching_file_from_factory = staticmethod(WeaveFile)
1470
 
    _matching_file_to_factory = staticmethod(WeaveFile)
1471
 
    
1472
 
    @staticmethod
1473
 
    def is_compatible(source, target):
1474
 
        """Be compatible with weaves."""
1475
 
        try:
1476
 
            return (isinstance(source, Weave) and
1477
 
                    isinstance(target, Weave))
1478
 
        except AttributeError:
1479
 
            return False
1480
 
 
1481
 
    def join(self, pb=None, msg=None, version_ids=None, ignore_missing=False):
1482
 
        """See InterVersionedFile.join."""
1483
 
        version_ids = self._get_source_version_ids(version_ids, ignore_missing)
1484
 
        if self.target.versions() == [] and version_ids is None:
1485
 
            self.target._copy_weave_content(self.source)
1486
 
            return
1487
 
        try:
1488
 
            self.target._join(self.source, pb, msg, version_ids, ignore_missing)
1489
 
        except errors.WeaveParentMismatch:
1490
 
            self.target._reweave(self.source, pb, msg)
1491
 
 
1492
 
 
1493
 
InterVersionedFile.register_optimiser(InterWeave)
 
1237
    sys.exit(main(sys.argv))