~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Martin Pool
  • Date: 2006-03-06 11:20:10 UTC
  • mfrom: (1593 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1611.
  • Revision ID: mbp@sourcefrog.net-20060306112010-17c0170dde5d1eea
[merge] large merge to sync with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
At the moment every WorkingTree has its own branch.  Remote
26
26
WorkingTrees aren't supported.
27
27
 
28
 
To get a WorkingTree, call WorkingTree(dir[, branch])
 
28
To get a WorkingTree, call bzrdir.open_workingtree() or
 
29
WorkingTree.open(dir).
29
30
"""
30
31
 
31
32
 
49
50
 
50
51
from bzrlib.atomicfile import AtomicFile
51
52
from bzrlib.branch import (Branch,
52
 
                           BzrBranchFormat4,
53
 
                           BzrBranchFormat5,
54
 
                           BzrBranchFormat6,
55
 
                           is_control_file,
56
53
                           quotefn)
 
54
import bzrlib.bzrdir as bzrdir
57
55
from bzrlib.decorators import needs_read_lock, needs_write_lock
 
56
import bzrlib.errors as errors
58
57
from bzrlib.errors import (BzrCheckError,
59
58
                           BzrError,
60
59
                           DivergedBranches,
62
61
                           NotBranchError,
63
62
                           NoSuchFile,
64
63
                           NotVersionedError)
65
 
from bzrlib.inventory import InventoryEntry
66
 
from bzrlib.lockable_files import LockableFiles
67
 
from bzrlib.osutils import (appendpath,
 
64
from bzrlib.inventory import InventoryEntry, Inventory
 
65
from bzrlib.lockable_files import LockableFiles, TransportLock
 
66
from bzrlib.merge import merge_inner, transform_tree
 
67
from bzrlib.osutils import (
 
68
                            abspath,
 
69
                            appendpath,
68
70
                            compact_date,
69
71
                            file_kind,
70
72
                            isdir,
74
76
                            safe_unicode,
75
77
                            splitpath,
76
78
                            rand_bytes,
77
 
                            abspath,
78
79
                            normpath,
79
80
                            realpath,
80
81
                            relpath,
81
 
                            rename)
 
82
                            rename,
 
83
                            supports_executable,
 
84
                            )
 
85
from bzrlib.progress import DummyProgress
 
86
from bzrlib.revision import NULL_REVISION
82
87
from bzrlib.symbol_versioning import *
83
88
from bzrlib.textui import show_status
84
89
import bzrlib.tree
85
90
from bzrlib.trace import mutter
 
91
from bzrlib.transform import build_tree
86
92
from bzrlib.transport import get_transport
 
93
from bzrlib.transport.local import LocalTransport
 
94
import bzrlib.ui
87
95
import bzrlib.xml5
88
96
 
89
97
 
186
194
    not listed in the Inventory and vice versa.
187
195
    """
188
196
 
189
 
    def __init__(self, basedir='.', branch=None, _inventory=None, _control_files=None):
 
197
    def __init__(self, basedir='.',
 
198
                 branch=DEPRECATED_PARAMETER,
 
199
                 _inventory=None,
 
200
                 _control_files=None,
 
201
                 _internal=False,
 
202
                 _format=None,
 
203
                 _bzrdir=None):
190
204
        """Construct a WorkingTree for basedir.
191
205
 
192
206
        If the branch is not supplied, it is opened automatically.
194
208
        (branch.base is not cross checked, because for remote branches that
195
209
        would be meaningless).
196
210
        """
 
211
        self._format = _format
 
212
        self.bzrdir = _bzrdir
 
213
        if not _internal:
 
214
            # not created via open etc.
 
215
            warn("WorkingTree() is deprecated as of bzr version 0.8. "
 
216
                 "Please use bzrdir.open_workingtree or WorkingTree.open().",
 
217
                 DeprecationWarning,
 
218
                 stacklevel=2)
 
219
            wt = WorkingTree.open(basedir)
 
220
            self.branch = wt.branch
 
221
            self.basedir = wt.basedir
 
222
            self._control_files = wt._control_files
 
223
            self._hashcache = wt._hashcache
 
224
            self._set_inventory(wt._inventory)
 
225
            self._format = wt._format
 
226
            self.bzrdir = wt.bzrdir
197
227
        from bzrlib.hashcache import HashCache
198
228
        from bzrlib.trace import note, mutter
199
229
        assert isinstance(basedir, basestring), \
200
230
            "base directory %r is not a string" % basedir
201
231
        basedir = safe_unicode(basedir)
202
 
        mutter("openeing working tree %r", basedir)
203
 
        if branch is None:
204
 
            branch = Branch.open(basedir)
205
 
        assert isinstance(branch, Branch), \
206
 
            "branch %r is not a Branch" % branch
207
 
        self.branch = branch
 
232
        mutter("opening working tree %r", basedir)
 
233
        if deprecated_passed(branch):
 
234
            if not _internal:
 
235
                warn("WorkingTree(..., branch=XXX) is deprecated as of bzr 0.8."
 
236
                     " Please use bzrdir.open_workingtree() or WorkingTree.open().",
 
237
                     DeprecationWarning,
 
238
                     stacklevel=2
 
239
                     )
 
240
            self.branch = branch
 
241
        else:
 
242
            self.branch = self.bzrdir.open_branch()
 
243
        assert isinstance(self.branch, Branch), \
 
244
            "branch %r is not a Branch" % self.branch
208
245
        self.basedir = realpath(basedir)
209
246
        # if branch is at our basedir and is a format 6 or less
210
 
        if (isinstance(self.branch._branch_format,
211
 
                       (BzrBranchFormat4, BzrBranchFormat5, BzrBranchFormat6))
212
 
            # might be able to share control object
213
 
            and self.branch.base.split('/')[-2] == self.basedir.split('/')[-1]):
 
247
        if isinstance(self._format, WorkingTreeFormat2):
 
248
            # share control object
214
249
            self._control_files = self.branch.control_files
215
250
        elif _control_files is not None:
216
251
            assert False, "not done yet"
217
252
#            self._control_files = _control_files
218
253
        else:
 
254
            # only ready for format 3
 
255
            assert isinstance(self._format, WorkingTreeFormat3)
219
256
            self._control_files = LockableFiles(
220
 
                get_transport(self.basedir).clone(bzrlib.BZRDIR), 'branch-lock')
 
257
                self.bzrdir.get_workingtree_transport(None),
 
258
                'lock', TransportLock)
221
259
 
222
260
        # update the whole cache up front and write to disk if anything changed;
223
261
        # in the future we might want to do this more selectively
225
263
        # if needed, or, when the cache sees a change, append it to the hash
226
264
        # cache file, and have the parser take the most recent entry for a
227
265
        # given path only.
228
 
        hc = self._hashcache = HashCache(basedir)
 
266
        cache_filename = self.bzrdir.get_workingtree_transport(None).abspath('stat-cache')
 
267
        hc = self._hashcache = HashCache(basedir, cache_filename, self._control_files._file_mode)
229
268
        hc.read()
 
269
        # is this scan needed ? it makes things kinda slow.
230
270
        hc.scan()
231
271
 
232
272
        if hc.needs_write:
242
282
        self._inventory = inv
243
283
        self.path2id = self._inventory.path2id
244
284
 
 
285
    def is_control_filename(self, filename):
 
286
        """True if filename is the name of a control file in this tree.
 
287
        
 
288
        This is true IF and ONLY IF the filename is part of the meta data
 
289
        that bzr controls in this tree. I.E. a random .bzr directory placed
 
290
        on disk will not be a control file for this tree.
 
291
        """
 
292
        try:
 
293
            self.bzrdir.transport.relpath(self.abspath(filename))
 
294
            return True
 
295
        except errors.PathNotChild:
 
296
            return False
 
297
 
 
298
    @staticmethod
 
299
    def open(path=None, _unsupported=False):
 
300
        """Open an existing working tree at path.
 
301
 
 
302
        """
 
303
        if path is None:
 
304
            path = os.path.getcwdu()
 
305
        control = bzrdir.BzrDir.open(path, _unsupported)
 
306
        return control.open_workingtree(_unsupported)
 
307
        
245
308
    @staticmethod
246
309
    def open_containing(path=None):
247
310
        """Open an existing working tree which has its root about path.
254
317
        If there is one, it is returned, along with the unused portion of path.
255
318
        """
256
319
        if path is None:
257
 
            path = getcwd()
258
 
        else:
259
 
            # sanity check.
260
 
            if path.find('://') != -1:
261
 
                raise NotBranchError(path=path)
262
 
        path = abspath(path)
263
 
        orig_path = path[:]
264
 
        tail = u''
265
 
        while True:
266
 
            try:
267
 
                return WorkingTree(path), tail
268
 
            except NotBranchError:
269
 
                pass
270
 
            if tail:
271
 
                tail = pathjoin(os.path.basename(path), tail)
272
 
            else:
273
 
                tail = os.path.basename(path)
274
 
            lastpath = path
275
 
            path = os.path.dirname(path)
276
 
            if lastpath == path:
277
 
                # reached the root, whatever that may be
278
 
                raise NotBranchError(path=orig_path)
 
320
            path = os.getcwdu()
 
321
        control, relpath = bzrdir.BzrDir.open_containing(path)
 
322
        return control.open_workingtree(), relpath
 
323
 
 
324
    @staticmethod
 
325
    def open_downlevel(path=None):
 
326
        """Open an unsupported working tree.
 
327
 
 
328
        Only intended for advanced situations like upgrading part of a bzrdir.
 
329
        """
 
330
        return WorkingTree.open(path, _unsupported=True)
279
331
 
280
332
    def __iter__(self):
281
333
        """Iterate through file_ids for this tree.
294
346
 
295
347
    def abspath(self, filename):
296
348
        return pathjoin(self.basedir, filename)
 
349
    
 
350
    def basis_tree(self):
 
351
        """Return RevisionTree for the current last revision."""
 
352
        revision_id = self.last_revision()
 
353
        if revision_id is not None:
 
354
            try:
 
355
                xml = self.read_basis_inventory(revision_id)
 
356
                inv = bzrlib.xml5.serializer_v5.read_inventory_from_string(xml)
 
357
                return bzrlib.tree.RevisionTree(self.branch.repository, inv,
 
358
                                                revision_id)
 
359
            except NoSuchFile:
 
360
                pass
 
361
        return self.branch.repository.revision_tree(revision_id)
297
362
 
298
363
    @staticmethod
 
364
    @deprecated_method(zero_eight)
299
365
    def create(branch, directory):
300
366
        """Create a workingtree for branch at directory.
301
367
 
311
377
        XXX: When BzrDir is present, these should be created through that 
312
378
        interface instead.
313
379
        """
314
 
        try:
315
 
            os.mkdir(directory)
316
 
        except OSError, e:
317
 
            if e.errno != errno.EEXIST:
318
 
                raise
319
 
        try:
320
 
            os.mkdir(pathjoin(directory, '.bzr'))
321
 
        except OSError, e:
322
 
            if e.errno != errno.EEXIST:
323
 
                raise
324
 
        inv = branch.repository.revision_tree(branch.last_revision()).inventory
325
 
        wt = WorkingTree(directory, branch, inv)
326
 
        wt._write_inventory(inv)
327
 
        if branch.last_revision() is not None:
328
 
            wt.set_last_revision(branch.last_revision())
329
 
        wt.set_pending_merges([])
330
 
        wt.revert([])
331
 
        return wt
 
380
        warn('delete WorkingTree.create', stacklevel=3)
 
381
        transport = get_transport(directory)
 
382
        if branch.bzrdir.root_transport.base == transport.base:
 
383
            # same dir 
 
384
            return branch.bzrdir.create_workingtree()
 
385
        # different directory, 
 
386
        # create a branch reference
 
387
        # and now a working tree.
 
388
        raise NotImplementedError
332
389
 
333
390
    @staticmethod
 
391
    @deprecated_method(zero_eight)
334
392
    def create_standalone(directory):
335
 
        """Create a checkout and a branch at directory.
 
393
        """Create a checkout and a branch and a repo at directory.
336
394
 
337
395
        Directory must exist and be empty.
338
396
 
339
 
        XXX: When BzrDir is present, these should be created through that 
340
 
        interface instead.
 
397
        please use BzrDir.create_standalone_workingtree
341
398
        """
342
 
        directory = safe_unicode(directory)
343
 
        b = Branch.create(directory)
344
 
        return WorkingTree.create(b, directory)
 
399
        return bzrdir.BzrDir.create_standalone_workingtree(directory)
345
400
 
346
401
    def relpath(self, abs):
347
402
        """Return the local path portion from a given absolute path."""
365
420
        ## XXX: badly named; this is not in the store at all
366
421
        return self.abspath(self.id2path(file_id))
367
422
 
 
423
    @needs_read_lock
 
424
    def clone(self, to_bzrdir, revision_id=None, basis=None):
 
425
        """Duplicate this working tree into to_bzr, including all state.
 
426
        
 
427
        Specifically modified files are kept as modified, but
 
428
        ignored and unknown files are discarded.
 
429
 
 
430
        If you want to make a new line of development, see bzrdir.sprout()
 
431
 
 
432
        revision
 
433
            If not None, the cloned tree will have its last revision set to 
 
434
            revision, and and difference between the source trees last revision
 
435
            and this one merged in.
 
436
 
 
437
        basis
 
438
            If not None, a closer copy of a tree which may have some files in
 
439
            common, and which file content should be preferentially copied from.
 
440
        """
 
441
        # assumes the target bzr dir format is compatible.
 
442
        result = self._format.initialize(to_bzrdir)
 
443
        self.copy_content_into(result, revision_id)
 
444
        return result
 
445
 
 
446
    @needs_read_lock
 
447
    def copy_content_into(self, tree, revision_id=None):
 
448
        """Copy the current content and user files of this tree into tree."""
 
449
        if revision_id is None:
 
450
            transform_tree(tree, self)
 
451
        else:
 
452
            # TODO now merge from tree.last_revision to revision
 
453
            transform_tree(tree, self)
 
454
            tree.set_last_revision(revision_id)
 
455
 
368
456
    @needs_write_lock
369
457
    def commit(self, *args, **kwargs):
370
458
        from bzrlib.commit import Commit
402
490
        return self._hashcache.get_sha1(path)
403
491
 
404
492
    def is_executable(self, file_id):
405
 
        if os.name == "nt":
 
493
        if not supports_executable():
406
494
            return self._inventory[file_id].executable
407
495
        else:
408
496
            path = self._inventory.id2path(file_id)
447
535
 
448
536
        inv = self.read_working_inventory()
449
537
        for f,file_id in zip(files, ids):
450
 
            if is_control_file(f):
 
538
            if self.is_control_filename(f):
451
539
                raise BzrError("cannot add control file %s" % quotefn(f))
452
540
 
453
541
            fp = splitpath(f)
459
547
 
460
548
            try:
461
549
                kind = file_kind(fullpath)
462
 
            except OSError:
 
550
            except OSError, e:
 
551
                if e.errno == errno.ENOENT:
 
552
                    raise NoSuchFile(fullpath)
463
553
                # maybe something better?
464
554
                raise BzrError('cannot add: not a regular file, symlink or directory: %s' % quotefn(f))
465
555
 
521
611
        else:
522
612
            return '?'
523
613
 
524
 
 
525
614
    def list_files(self):
526
615
        """Recursively list all files as (path, class, kind, id).
527
616
 
541
630
                ## TODO: If we find a subdirectory with its own .bzr
542
631
                ## directory, then that is a separate tree and we
543
632
                ## should exclude it.
544
 
                if bzrlib.BZRDIR == f:
 
633
 
 
634
                # the bzrdir for this tree
 
635
                if self.bzrdir.transport.base.endswith(f + '/'):
545
636
                    continue
546
637
 
547
638
                # path within tree
718
809
        These are files in the working directory that are not versioned or
719
810
        control files or ignored.
720
811
        
721
 
        >>> from bzrlib.branch import ScratchBranch
722
 
        >>> b = ScratchBranch(files=['foo', 'foo~'])
723
 
        >>> tree = WorkingTree(b.base, b)
 
812
        >>> from bzrlib.bzrdir import ScratchDir
 
813
        >>> d = ScratchDir(files=['foo', 'foo~'])
 
814
        >>> b = d.open_branch()
 
815
        >>> tree = d.open_workingtree()
724
816
        >>> map(str, tree.unknowns())
725
817
        ['foo']
726
818
        >>> tree.add('foo')
745
837
                yield stem
746
838
 
747
839
    @needs_write_lock
748
 
    def pull(self, source, overwrite=False):
749
 
        from bzrlib.merge import merge_inner
 
840
    def pull(self, source, overwrite=False, stop_revision=None):
750
841
        source.lock_read()
751
842
        try:
752
843
            old_revision_history = self.branch.revision_history()
753
 
            count = self.branch.pull(source, overwrite)
 
844
            basis_tree = self.basis_tree()
 
845
            count = self.branch.pull(source, overwrite, stop_revision)
754
846
            new_revision_history = self.branch.revision_history()
755
847
            if new_revision_history != old_revision_history:
756
848
                if len(old_revision_history):
759
851
                    other_revision = None
760
852
                repository = self.branch.repository
761
853
                merge_inner(self.branch,
762
 
                            self.branch.basis_tree(), 
763
 
                            repository.revision_tree(other_revision),
764
 
                            this_tree=self)
 
854
                            self.branch.basis_tree(),
 
855
                            basis_tree, 
 
856
                            this_tree=self, 
 
857
                            pb=bzrlib.ui.ui_factory.progress_bar())
765
858
                self.set_last_revision(self.branch.last_revision())
766
859
            return count
767
860
        finally:
861
954
    def kind(self, file_id):
862
955
        return file_kind(self.id2abspath(file_id))
863
956
 
 
957
    @needs_read_lock
 
958
    def last_revision(self):
 
959
        """Return the last revision id of this working tree.
 
960
 
 
961
        In early branch formats this was == the branch last_revision,
 
962
        but that cannot be relied upon - for working tree operations,
 
963
        always use tree.last_revision().
 
964
        """
 
965
        return self.branch.last_revision()
 
966
 
864
967
    def lock_read(self):
865
968
        """See Branch.lock_read, and WorkingTree.unlock."""
866
 
        return self.branch.lock_read()
 
969
        self.branch.lock_read()
 
970
        try:
 
971
            return self._control_files.lock_read()
 
972
        except:
 
973
            self.branch.unlock()
 
974
            raise
867
975
 
868
976
    def lock_write(self):
869
977
        """See Branch.lock_write, and WorkingTree.unlock."""
870
 
        return self.branch.lock_write()
 
978
        self.branch.lock_write()
 
979
        try:
 
980
            return self._control_files.lock_write()
 
981
        except:
 
982
            self.branch.unlock()
 
983
            raise
871
984
 
872
985
    def _basis_inventory_name(self, revision_id):
873
986
        return 'basis-inventory.%s' % revision_id
874
987
 
 
988
    @needs_write_lock
875
989
    def set_last_revision(self, new_revision, old_revision=None):
876
 
        if old_revision is not None:
877
 
            try:
878
 
                path = self._basis_inventory_name(old_revision)
879
 
                path = self.branch.control_files._escape(path)
880
 
                self.branch.control_files._transport.delete(path)
881
 
            except NoSuchFile:
882
 
                pass
 
990
        """Change the last revision in the working tree."""
 
991
        self._remove_old_basis(old_revision)
 
992
        if self._change_last_revision(new_revision):
 
993
            self._cache_basis_inventory(new_revision)
 
994
 
 
995
    def _change_last_revision(self, new_revision):
 
996
        """Template method part of set_last_revision to perform the change."""
 
997
        if new_revision is None:
 
998
            self.branch.set_revision_history([])
 
999
            return False
 
1000
        # current format is locked in with the branch
 
1001
        revision_history = self.branch.revision_history()
 
1002
        try:
 
1003
            position = revision_history.index(new_revision)
 
1004
        except ValueError:
 
1005
            raise errors.NoSuchRevision(self.branch, new_revision)
 
1006
        self.branch.set_revision_history(revision_history[:position + 1])
 
1007
        return True
 
1008
 
 
1009
    def _cache_basis_inventory(self, new_revision):
 
1010
        """Cache new_revision as the basis inventory."""
883
1011
        try:
884
1012
            xml = self.branch.repository.get_inventory_xml(new_revision)
885
1013
            path = self._basis_inventory_name(new_revision)
886
 
            self.branch.control_files.put_utf8(path, xml)
 
1014
            self._control_files.put_utf8(path, xml)
887
1015
        except WeaveRevisionNotPresent:
888
1016
            pass
889
1017
 
 
1018
    def _remove_old_basis(self, old_revision):
 
1019
        """Remove the old basis inventory 'old_revision'."""
 
1020
        if old_revision is not None:
 
1021
            try:
 
1022
                path = self._basis_inventory_name(old_revision)
 
1023
                path = self._control_files._escape(path)
 
1024
                self._control_files._transport.delete(path)
 
1025
            except NoSuchFile:
 
1026
                pass
 
1027
 
890
1028
    def read_basis_inventory(self, revision_id):
891
1029
        """Read the cached basis inventory."""
892
1030
        path = self._basis_inventory_name(revision_id)
893
 
        return self.branch.control_files.get_utf8(path).read()
 
1031
        return self._control_files.get_utf8(path).read()
894
1032
        
895
1033
    @needs_read_lock
896
1034
    def read_working_inventory(self):
897
1035
        """Read the working inventory."""
898
1036
        # ElementTree does its own conversion from UTF-8, so open in
899
1037
        # binary.
900
 
        return bzrlib.xml5.serializer_v5.read_inventory(
 
1038
        result = bzrlib.xml5.serializer_v5.read_inventory(
901
1039
            self._control_files.get('inventory'))
 
1040
        self._set_inventory(result)
 
1041
        return result
902
1042
 
903
1043
    @needs_write_lock
904
1044
    def remove(self, files, verbose=False):
942
1082
        self._write_inventory(inv)
943
1083
 
944
1084
    @needs_write_lock
945
 
    def revert(self, filenames, old_tree=None, backups=True):
946
 
        from bzrlib.merge import merge_inner
 
1085
    def revert(self, filenames, old_tree=None, backups=True, 
 
1086
               pb=DummyProgress()):
 
1087
        from transform import revert
947
1088
        if old_tree is None:
948
 
            old_tree = self.branch.basis_tree()
949
 
        merge_inner(self.branch, old_tree,
950
 
                    self, ignore_zero=True,
951
 
                    backup_files=backups, 
952
 
                    interesting_files=filenames,
953
 
                    this_tree=self)
 
1089
            old_tree = self.basis_tree()
 
1090
        revert(self, old_tree, filenames, backups, pb)
954
1091
        if not len(filenames):
955
1092
            self.set_pending_merges([])
956
1093
 
987
1124
        inv._byid[inv.root.file_id] = inv.root
988
1125
        for fid in inv:
989
1126
            entry = inv[fid]
990
 
            if entry.parent_id in (None, orig_root_id):
 
1127
            if entry.parent_id == orig_root_id:
991
1128
                entry.parent_id = inv.root.file_id
992
1129
        self._write_inventory(inv)
993
1130
 
1005
1142
        # of a nasty hack; probably it's better to have a transaction object,
1006
1143
        # which can do some finalization when it's either successfully or
1007
1144
        # unsuccessfully completed.  (Denys's original patch did that.)
1008
 
        if self._hashcache.needs_write and self.branch.control_files._lock_count==1:
 
1145
        # RBC 20060206 hookinhg into transaction will couple lock and transaction
 
1146
        # wrongly. Hookinh into unllock on the control files object is fine though.
 
1147
        
 
1148
        # TODO: split this per format so there is no ugly if block
 
1149
        if self._hashcache.needs_write and (
 
1150
            # dedicated lock files
 
1151
            self._control_files._lock_count==1 or 
 
1152
            # shared lock files
 
1153
            (self._control_files is self.branch.control_files and 
 
1154
             self._control_files._lock_count==3)):
1009
1155
            self._hashcache.write()
1010
 
        return self.branch.unlock()
 
1156
        # reverse order of locking.
 
1157
        result = self._control_files.unlock()
 
1158
        try:
 
1159
            self.branch.unlock()
 
1160
        finally:
 
1161
            return result
 
1162
 
 
1163
    @needs_write_lock
 
1164
    def update(self):
 
1165
        """Update a working tree along its branch.
 
1166
 
 
1167
        This will update the branch if its bound too, which means we have multiple trees involved:
 
1168
        The new basis tree of the master.
 
1169
        The old basis tree of the branch.
 
1170
        The old basis tree of the working tree.
 
1171
        The current working tree state.
 
1172
        pathologically all three may be different, and non ancestors of each other.
 
1173
        Conceptually we want to:
 
1174
        Preserve the wt.basis->wt.state changes
 
1175
        Transform the wt.basis to the new master basis.
 
1176
        Apply a merge of the old branch basis to get any 'local' changes from it into the tree.
 
1177
        Restore the wt.basis->wt.state changes.
 
1178
 
 
1179
        There isn't a single operation at the moment to do that, so we:
 
1180
        Merge current state -> basis tree of the master w.r.t. the old tree basis.
 
1181
        Do a 'normal' merge of the old branch basis if it is relevant.
 
1182
        """
 
1183
        old_tip = self.branch.update()
 
1184
        if old_tip is not None:
 
1185
            self.add_pending_merge(old_tip)
 
1186
        self.branch.lock_read()
 
1187
        try:
 
1188
            result = 0
 
1189
            if self.last_revision() != self.branch.last_revision():
 
1190
                # merge tree state up to new branch tip.
 
1191
                basis = self.basis_tree()
 
1192
                to_tree = self.branch.basis_tree()
 
1193
                result += merge_inner(self.branch,
 
1194
                                      to_tree,
 
1195
                                      basis,
 
1196
                                      this_tree=self)
 
1197
                self.set_last_revision(self.branch.last_revision())
 
1198
            if old_tip and old_tip != self.last_revision():
 
1199
                # our last revision was not the prior branch last reivison
 
1200
                # and we have converted that last revision to a pending merge.
 
1201
                # base is somewhere between the branch tip now
 
1202
                # and the now pending merge
 
1203
                from bzrlib.revision import common_ancestor
 
1204
                try:
 
1205
                    base_rev_id = common_ancestor(self.branch.last_revision(),
 
1206
                                                  old_tip,
 
1207
                                                  self.branch.repository)
 
1208
                except errors.NoCommonAncestor:
 
1209
                    base_rev_id = None
 
1210
                base_tree = self.branch.repository.revision_tree(base_rev_id)
 
1211
                other_tree = self.branch.repository.revision_tree(old_tip)
 
1212
                result += merge_inner(self.branch,
 
1213
                                      other_tree,
 
1214
                                      base_tree,
 
1215
                                      this_tree=self)
 
1216
            return result
 
1217
        finally:
 
1218
            self.branch.unlock()
1011
1219
 
1012
1220
    @needs_write_lock
1013
1221
    def _write_inventory(self, inv):
1018
1226
        self._control_files.put('inventory', sio)
1019
1227
        self._set_inventory(inv)
1020
1228
        mutter('wrote working inventory')
1021
 
            
 
1229
 
 
1230
 
 
1231
class WorkingTree3(WorkingTree):
 
1232
    """This is the Format 3 working tree.
 
1233
 
 
1234
    This differs from the base WorkingTree by:
 
1235
     - having its own file lock
 
1236
     - having its own last-revision property.
 
1237
    """
 
1238
 
 
1239
    @needs_read_lock
 
1240
    def last_revision(self):
 
1241
        """See WorkingTree.last_revision."""
 
1242
        try:
 
1243
            return self._control_files.get_utf8('last-revision').read()
 
1244
        except NoSuchFile:
 
1245
            return None
 
1246
 
 
1247
    def _change_last_revision(self, revision_id):
 
1248
        """See WorkingTree._change_last_revision."""
 
1249
        if revision_id is None or revision_id == NULL_REVISION:
 
1250
            try:
 
1251
                self._control_files._transport.delete('last-revision')
 
1252
            except errors.NoSuchFile:
 
1253
                pass
 
1254
            return False
 
1255
        else:
 
1256
            try:
 
1257
                self.branch.revision_history().index(revision_id)
 
1258
            except ValueError:
 
1259
                raise errors.NoSuchRevision(self.branch, revision_id)
 
1260
            self._control_files.put_utf8('last-revision', revision_id)
 
1261
            return True
 
1262
 
1022
1263
 
1023
1264
CONFLICT_SUFFIXES = ('.THIS', '.BASE', '.OTHER')
1024
1265
def get_conflicted_stem(path):
1025
1266
    for suffix in CONFLICT_SUFFIXES:
1026
1267
        if path.endswith(suffix):
1027
1268
            return path[:-len(suffix)]
 
1269
 
 
1270
@deprecated_function(zero_eight)
 
1271
def is_control_file(filename):
 
1272
    """See WorkingTree.is_control_filename(filename)."""
 
1273
    ## FIXME: better check
 
1274
    filename = normpath(filename)
 
1275
    while filename != '':
 
1276
        head, tail = os.path.split(filename)
 
1277
        ## mutter('check %r for control file' % ((head, tail),))
 
1278
        if tail == '.bzr':
 
1279
            return True
 
1280
        if filename == head:
 
1281
            break
 
1282
        filename = head
 
1283
    return False
 
1284
 
 
1285
 
 
1286
class WorkingTreeFormat(object):
 
1287
    """An encapsulation of the initialization and open routines for a format.
 
1288
 
 
1289
    Formats provide three things:
 
1290
     * An initialization routine,
 
1291
     * a format string,
 
1292
     * an open routine.
 
1293
 
 
1294
    Formats are placed in an dict by their format string for reference 
 
1295
    during workingtree opening. Its not required that these be instances, they
 
1296
    can be classes themselves with class methods - it simply depends on 
 
1297
    whether state is needed for a given format or not.
 
1298
 
 
1299
    Once a format is deprecated, just deprecate the initialize and open
 
1300
    methods on the format class. Do not deprecate the object, as the 
 
1301
    object will be created every time regardless.
 
1302
    """
 
1303
 
 
1304
    _default_format = None
 
1305
    """The default format used for new trees."""
 
1306
 
 
1307
    _formats = {}
 
1308
    """The known formats."""
 
1309
 
 
1310
    @classmethod
 
1311
    def find_format(klass, a_bzrdir):
 
1312
        """Return the format for the working tree object in a_bzrdir."""
 
1313
        try:
 
1314
            transport = a_bzrdir.get_workingtree_transport(None)
 
1315
            format_string = transport.get("format").read()
 
1316
            return klass._formats[format_string]
 
1317
        except NoSuchFile:
 
1318
            raise errors.NoWorkingTree(base=transport.base)
 
1319
        except KeyError:
 
1320
            raise errors.UnknownFormatError(format_string)
 
1321
 
 
1322
    @classmethod
 
1323
    def get_default_format(klass):
 
1324
        """Return the current default format."""
 
1325
        return klass._default_format
 
1326
 
 
1327
    def get_format_string(self):
 
1328
        """Return the ASCII format string that identifies this format."""
 
1329
        raise NotImplementedError(self.get_format_string)
 
1330
 
 
1331
    def is_supported(self):
 
1332
        """Is this format supported?
 
1333
 
 
1334
        Supported formats can be initialized and opened.
 
1335
        Unsupported formats may not support initialization or committing or 
 
1336
        some other features depending on the reason for not being supported.
 
1337
        """
 
1338
        return True
 
1339
 
 
1340
    @classmethod
 
1341
    def register_format(klass, format):
 
1342
        klass._formats[format.get_format_string()] = format
 
1343
 
 
1344
    @classmethod
 
1345
    def set_default_format(klass, format):
 
1346
        klass._default_format = format
 
1347
 
 
1348
    @classmethod
 
1349
    def unregister_format(klass, format):
 
1350
        assert klass._formats[format.get_format_string()] is format
 
1351
        del klass._formats[format.get_format_string()]
 
1352
 
 
1353
 
 
1354
 
 
1355
class WorkingTreeFormat2(WorkingTreeFormat):
 
1356
    """The second working tree format. 
 
1357
 
 
1358
    This format modified the hash cache from the format 1 hash cache.
 
1359
    """
 
1360
 
 
1361
    def initialize(self, a_bzrdir, revision_id=None):
 
1362
        """See WorkingTreeFormat.initialize()."""
 
1363
        if not isinstance(a_bzrdir.transport, LocalTransport):
 
1364
            raise errors.NotLocalUrl(a_bzrdir.transport.base)
 
1365
        branch = a_bzrdir.open_branch()
 
1366
        if revision_id is not None:
 
1367
            branch.lock_write()
 
1368
            try:
 
1369
                revision_history = branch.revision_history()
 
1370
                try:
 
1371
                    position = revision_history.index(revision_id)
 
1372
                except ValueError:
 
1373
                    raise errors.NoSuchRevision(branch, revision_id)
 
1374
                branch.set_revision_history(revision_history[:position + 1])
 
1375
            finally:
 
1376
                branch.unlock()
 
1377
        revision = branch.last_revision()
 
1378
        inv = Inventory() 
 
1379
        wt = WorkingTree(a_bzrdir.root_transport.base,
 
1380
                         branch,
 
1381
                         inv,
 
1382
                         _internal=True,
 
1383
                         _format=self,
 
1384
                         _bzrdir=a_bzrdir)
 
1385
        wt._write_inventory(inv)
 
1386
        wt.set_root_id(inv.root.file_id)
 
1387
        wt.set_last_revision(revision)
 
1388
        wt.set_pending_merges([])
 
1389
        build_tree(wt.basis_tree(), wt)
 
1390
        return wt
 
1391
 
 
1392
    def __init__(self):
 
1393
        super(WorkingTreeFormat2, self).__init__()
 
1394
        self._matchingbzrdir = bzrdir.BzrDirFormat6()
 
1395
 
 
1396
    def open(self, a_bzrdir, _found=False):
 
1397
        """Return the WorkingTree object for a_bzrdir
 
1398
 
 
1399
        _found is a private parameter, do not use it. It is used to indicate
 
1400
               if format probing has already been done.
 
1401
        """
 
1402
        if not _found:
 
1403
            # we are being called directly and must probe.
 
1404
            raise NotImplementedError
 
1405
        if not isinstance(a_bzrdir.transport, LocalTransport):
 
1406
            raise errors.NotLocalUrl(a_bzrdir.transport.base)
 
1407
        return WorkingTree(a_bzrdir.root_transport.base,
 
1408
                           _internal=True,
 
1409
                           _format=self,
 
1410
                           _bzrdir=a_bzrdir)
 
1411
 
 
1412
 
 
1413
class WorkingTreeFormat3(WorkingTreeFormat):
 
1414
    """The second working tree format updated to record a format marker.
 
1415
 
 
1416
    This format modified the hash cache from the format 1 hash cache.
 
1417
    """
 
1418
 
 
1419
    def get_format_string(self):
 
1420
        """See WorkingTreeFormat.get_format_string()."""
 
1421
        return "Bazaar-NG Working Tree format 3"
 
1422
 
 
1423
    def initialize(self, a_bzrdir, revision_id=None):
 
1424
        """See WorkingTreeFormat.initialize().
 
1425
        
 
1426
        revision_id allows creating a working tree at a differnet
 
1427
        revision than the branch is at.
 
1428
        """
 
1429
        if not isinstance(a_bzrdir.transport, LocalTransport):
 
1430
            raise errors.NotLocalUrl(a_bzrdir.transport.base)
 
1431
        transport = a_bzrdir.get_workingtree_transport(self)
 
1432
        control_files = LockableFiles(transport, 'lock', TransportLock)
 
1433
        control_files.put_utf8('format', self.get_format_string())
 
1434
        branch = a_bzrdir.open_branch()
 
1435
        if revision_id is None:
 
1436
            revision_id = branch.last_revision()
 
1437
        inv = Inventory() 
 
1438
        wt = WorkingTree3(a_bzrdir.root_transport.base,
 
1439
                         branch,
 
1440
                         inv,
 
1441
                         _internal=True,
 
1442
                         _format=self,
 
1443
                         _bzrdir=a_bzrdir)
 
1444
        wt._write_inventory(inv)
 
1445
        wt.set_root_id(inv.root.file_id)
 
1446
        wt.set_last_revision(revision_id)
 
1447
        wt.set_pending_merges([])
 
1448
        build_tree(wt.basis_tree(), wt)
 
1449
        return wt
 
1450
 
 
1451
    def __init__(self):
 
1452
        super(WorkingTreeFormat3, self).__init__()
 
1453
        self._matchingbzrdir = bzrdir.BzrDirMetaFormat1()
 
1454
 
 
1455
    def open(self, a_bzrdir, _found=False):
 
1456
        """Return the WorkingTree object for a_bzrdir
 
1457
 
 
1458
        _found is a private parameter, do not use it. It is used to indicate
 
1459
               if format probing has already been done.
 
1460
        """
 
1461
        if not _found:
 
1462
            # we are being called directly and must probe.
 
1463
            raise NotImplementedError
 
1464
        if not isinstance(a_bzrdir.transport, LocalTransport):
 
1465
            raise errors.NotLocalUrl(a_bzrdir.transport.base)
 
1466
        return WorkingTree3(a_bzrdir.root_transport.base,
 
1467
                           _internal=True,
 
1468
                           _format=self,
 
1469
                           _bzrdir=a_bzrdir)
 
1470
 
 
1471
    def __str__(self):
 
1472
        return self.get_format_string()
 
1473
 
 
1474
 
 
1475
# formats which have no format string are not discoverable
 
1476
# and not independently creatable, so are not registered.
 
1477
__default_format = WorkingTreeFormat3()
 
1478
WorkingTreeFormat.register_format(__default_format)
 
1479
WorkingTreeFormat.set_default_format(__default_format)
 
1480
_legacy_formats = [WorkingTreeFormat2(),
 
1481
                   ]
 
1482
 
 
1483
 
 
1484
class WorkingTreeTestProviderAdapter(object):
 
1485
    """A tool to generate a suite testing multiple workingtree formats at once.
 
1486
 
 
1487
    This is done by copying the test once for each transport and injecting
 
1488
    the transport_server, transport_readonly_server, and workingtree_format
 
1489
    classes into each copy. Each copy is also given a new id() to make it
 
1490
    easy to identify.
 
1491
    """
 
1492
 
 
1493
    def __init__(self, transport_server, transport_readonly_server, formats):
 
1494
        self._transport_server = transport_server
 
1495
        self._transport_readonly_server = transport_readonly_server
 
1496
        self._formats = formats
 
1497
    
 
1498
    def adapt(self, test):
 
1499
        from bzrlib.tests import TestSuite
 
1500
        result = TestSuite()
 
1501
        for workingtree_format, bzrdir_format in self._formats:
 
1502
            new_test = deepcopy(test)
 
1503
            new_test.transport_server = self._transport_server
 
1504
            new_test.transport_readonly_server = self._transport_readonly_server
 
1505
            new_test.bzrdir_format = bzrdir_format
 
1506
            new_test.workingtree_format = workingtree_format
 
1507
            def make_new_test_id():
 
1508
                new_id = "%s(%s)" % (new_test.id(), workingtree_format.__class__.__name__)
 
1509
                return lambda: new_id
 
1510
            new_test.id = make_new_test_id()
 
1511
            result.addTest(new_test)
 
1512
        return result