~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin Pool
  • Date: 2005-05-03 08:00:27 UTC
  • Revision ID: mbp@sourcefrog.net-20050503080027-908edb5b39982198
doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import bzrlib
25
25
from inventory import Inventory
26
26
from trace import mutter, note
27
 
from tree import Tree, EmptyTree, RevisionTree
 
27
from tree import Tree, EmptyTree, RevisionTree, WorkingTree
28
28
from inventory import InventoryEntry, Inventory
29
29
from osutils import isdir, quotefn, isfile, uuid, sha_file, username, \
30
30
     format_date, compact_date, pumpfile, user_email, rand_bytes, splitpath, \
33
33
from revision import Revision
34
34
from errors import bailout, BzrError
35
35
from textui import show_status
 
36
from diff import diff_trees
36
37
 
37
38
BZR_BRANCH_FORMAT = "Bazaar-NG branch, format 0.0.4\n"
38
39
## TODO: Maybe include checks for common corruption of newlines, etc?
39
40
 
40
41
 
41
42
 
42
 
def find_branch(f, **args):
43
 
    if f and (f.startswith('http://') or f.startswith('https://')):
44
 
        import remotebranch 
45
 
        return remotebranch.RemoteBranch(f, **args)
46
 
    else:
47
 
        return Branch(f, **args)
48
 
        
49
 
 
50
43
def find_branch_root(f=None):
51
44
    """Find the branch root enclosing f, or pwd.
52
45
 
53
 
    f may be a filename or a URL.
54
 
 
55
46
    It is not necessary that f exists.
56
47
 
57
48
    Basically we keep looking up until we find the control directory or
62
53
        f = os.path.realpath(f)
63
54
    else:
64
55
        f = os.path.abspath(f)
65
 
    if not os.path.exists(f):
66
 
        raise BzrError('%r does not exist' % f)
67
 
        
68
56
 
69
57
    orig_f = f
70
58
 
85
73
class Branch:
86
74
    """Branch holding a history of revisions.
87
75
 
88
 
    base
89
 
        Base directory of the branch.
 
76
    TODO: Perhaps use different stores for different classes of object,
 
77
           so that we can keep track of how much space each one uses,
 
78
           or garbage-collect them.
 
79
 
 
80
    TODO: Add a RemoteBranch subclass.  For the basic case of read-only
 
81
           HTTP access this should be very easy by, 
 
82
           just redirecting controlfile access into HTTP requests.
 
83
           We would need a RemoteStore working similarly.
 
84
 
 
85
    TODO: Keep the on-disk branch locked while the object exists.
 
86
 
 
87
    TODO: mkdir() method.
90
88
    """
91
 
    _lockmode = None
92
 
    
93
 
    def __init__(self, base, init=False, find_root=True, lock_mode='w'):
 
89
    def __init__(self, base, init=False, find_root=True):
94
90
        """Create new branch object at a particular location.
95
91
 
96
92
        base -- Base directory for the branch.
117
113
                        ['use "bzr init" to initialize a new working tree',
118
114
                         'current bzr can only operate from top-of-tree'])
119
115
        self._check_format()
120
 
        self.lock(lock_mode)
121
116
 
122
117
        self.text_store = ImmutableStore(self.controlfilename('text-store'))
123
118
        self.revision_store = ImmutableStore(self.controlfilename('revision-store'))
131
126
    __repr__ = __str__
132
127
 
133
128
 
134
 
 
135
 
    def lock(self, mode='w'):
136
 
        """Lock the on-disk branch, excluding other processes."""
137
 
        try:
138
 
            import fcntl, errno
139
 
 
140
 
            if mode == 'w':
141
 
                lm = fcntl.LOCK_EX
142
 
                om = os.O_WRONLY | os.O_CREAT
143
 
            elif mode == 'r':
144
 
                lm = fcntl.LOCK_SH
145
 
                om = os.O_RDONLY
146
 
            else:
147
 
                raise BzrError("invalid locking mode %r" % mode)
148
 
 
149
 
            try:
150
 
                lockfile = os.open(self.controlfilename('branch-lock'), om)
151
 
            except OSError, e:
152
 
                if e.errno == errno.ENOENT:
153
 
                    # might not exist on branches from <0.0.4
154
 
                    self.controlfile('branch-lock', 'w').close()
155
 
                    lockfile = os.open(self.controlfilename('branch-lock'), om)
156
 
                else:
157
 
                    raise e
158
 
            
159
 
            fcntl.lockf(lockfile, lm)
160
 
            def unlock():
161
 
                fcntl.lockf(lockfile, fcntl.LOCK_UN)
162
 
                os.close(lockfile)
163
 
                self._lockmode = None
164
 
            self.unlock = unlock
165
 
            self._lockmode = mode
166
 
        except ImportError:
167
 
            warning("please write a locking method for platform %r" % sys.platform)
168
 
            def unlock():
169
 
                self._lockmode = None
170
 
            self.unlock = unlock
171
 
            self._lockmode = mode
172
 
 
173
 
 
174
 
    def _need_readlock(self):
175
 
        if self._lockmode not in ['r', 'w']:
176
 
            raise BzrError('need read lock on branch, only have %r' % self._lockmode)
177
 
 
178
 
    def _need_writelock(self):
179
 
        if self._lockmode not in ['w']:
180
 
            raise BzrError('need write lock on branch, only have %r' % self._lockmode)
181
 
 
182
 
 
183
129
    def abspath(self, name):
184
130
        """Return absolute filename for something in the branch"""
185
131
        return os.path.join(self.base, name)
212
158
        and binary.  binary files are untranslated byte streams.  Text
213
159
        control files are stored with Unix newlines and in UTF-8, even
214
160
        if the platform or locale defaults are different.
215
 
 
216
 
        Controlfiles should almost never be opened in write mode but
217
 
        rather should be atomically copied and replaced using atomicfile.
218
161
        """
219
162
 
220
163
        fn = self.controlfilename(file_or_path)
241
184
        for d in ('text-store', 'inventory-store', 'revision-store'):
242
185
            os.mkdir(self.controlfilename(d))
243
186
        for f in ('revision-history', 'merged-patches',
244
 
                  'pending-merged-patches', 'branch-name',
245
 
                  'branch-lock'):
 
187
                  'pending-merged-patches', 'branch-name'):
246
188
            self.controlfile(f, 'w').write('')
247
189
        mutter('created control directory in ' + self.base)
248
190
        Inventory().write_xml(self.controlfile('inventory','w'))
269
211
 
270
212
    def read_working_inventory(self):
271
213
        """Read the working inventory."""
272
 
        self._need_readlock()
273
214
        before = time.time()
274
215
        # ElementTree does its own conversion from UTF-8, so open in
275
216
        # binary.
285
226
        That is to say, the inventory describing changes underway, that
286
227
        will be committed to the next revision.
287
228
        """
288
 
        self._need_writelock()
289
229
        ## TODO: factor out to atomicfile?  is rename safe on windows?
290
230
        ## TODO: Maybe some kind of clean/dirty marker on inventory?
291
231
        tmpfname = self.controlfilename('inventory.tmp')
303
243
                         """Inventory for the working copy.""")
304
244
 
305
245
 
306
 
    def add(self, files, verbose=False, ids=None):
 
246
    def add(self, files, verbose=False):
307
247
        """Make files versioned.
308
248
 
309
249
        Note that the command line normally calls smart_add instead.
322
262
        TODO: Adding a directory should optionally recurse down and
323
263
               add all non-ignored children.  Perhaps do that in a
324
264
               higher-level method.
 
265
 
 
266
        >>> b = ScratchBranch(files=['foo'])
 
267
        >>> 'foo' in b.unknowns()
 
268
        True
 
269
        >>> b.show_status()
 
270
        ?       foo
 
271
        >>> b.add('foo')
 
272
        >>> 'foo' in b.unknowns()
 
273
        False
 
274
        >>> bool(b.inventory.path2id('foo'))
 
275
        True
 
276
        >>> b.show_status()
 
277
        A       foo
 
278
 
 
279
        >>> b.add('foo')
 
280
        Traceback (most recent call last):
 
281
        ...
 
282
        BzrError: ('foo is already versioned', [])
 
283
 
 
284
        >>> b.add(['nothere'])
 
285
        Traceback (most recent call last):
 
286
        BzrError: ('cannot add: not a regular file or directory: nothere', [])
325
287
        """
326
 
        self._need_writelock()
327
288
 
328
289
        # TODO: Re-adding a file that is removed in the working copy
329
290
        # should probably put it back with the previous ID.
330
291
        if isinstance(files, types.StringTypes):
331
 
            assert(ids is None or isinstance(ids, types.StringTypes))
332
292
            files = [files]
333
 
            if ids is not None:
334
 
                ids = [ids]
335
 
 
336
 
        if ids is None:
337
 
            ids = [None] * len(files)
338
 
        else:
339
 
            assert(len(ids) == len(files))
340
293
        
341
294
        inv = self.read_working_inventory()
342
 
        for f,file_id in zip(files, ids):
 
295
        for f in files:
343
296
            if is_control_file(f):
344
297
                bailout("cannot add control file %s" % quotefn(f))
345
298
 
359
312
            if kind != 'file' and kind != 'directory':
360
313
                bailout('cannot add: not a regular file or directory: %s' % quotefn(f))
361
314
 
362
 
            if file_id is None:
363
 
                file_id = gen_file_id(f)
 
315
            file_id = gen_file_id(f)
364
316
            inv.add_path(f, kind=kind, file_id=file_id)
365
317
 
366
318
            if verbose:
373
325
 
374
326
    def print_file(self, file, revno):
375
327
        """Print `file` to stdout."""
376
 
        self._need_readlock()
377
328
        tree = self.revision_tree(self.lookup_revision(revno))
378
329
        # use inventory as it was in that revision
379
330
        file_id = tree.inventory.path2id(file)
389
340
 
390
341
        TODO: Refuse to remove modified files unless --force is given?
391
342
 
 
343
        >>> b = ScratchBranch(files=['foo'])
 
344
        >>> b.add('foo')
 
345
        >>> b.inventory.has_filename('foo')
 
346
        True
 
347
        >>> b.remove('foo')
 
348
        >>> b.working_tree().has_filename('foo')
 
349
        True
 
350
        >>> b.inventory.has_filename('foo')
 
351
        False
 
352
        
 
353
        >>> b = ScratchBranch(files=['foo'])
 
354
        >>> b.add('foo')
 
355
        >>> b.commit('one')
 
356
        >>> b.remove('foo')
 
357
        >>> b.commit('two')
 
358
        >>> b.inventory.has_filename('foo') 
 
359
        False
 
360
        >>> b.basis_tree().has_filename('foo') 
 
361
        False
 
362
        >>> b.working_tree().has_filename('foo') 
 
363
        True
 
364
 
392
365
        TODO: Do something useful with directories.
393
366
 
394
367
        TODO: Should this remove the text or not?  Tough call; not
398
371
        """
399
372
        ## TODO: Normalize names
400
373
        ## TODO: Remove nested loops; better scalability
401
 
        self._need_writelock()
402
374
 
403
375
        if isinstance(files, types.StringTypes):
404
376
            files = [files]
423
395
 
424
396
        self._write_inventory(inv)
425
397
 
426
 
    def set_inventory(self, new_inventory_list):
427
 
        inv = Inventory()
428
 
        for path, file_id, parent, kind in new_inventory_list:
429
 
            name = os.path.basename(path)
430
 
            if name == "":
431
 
                continue
432
 
            inv.add(InventoryEntry(file_id, name, kind, parent))
433
 
        self._write_inventory(inv)
434
 
 
435
398
 
436
399
    def unknowns(self):
437
400
        """Return all unknown files.
452
415
        return self.working_tree().unknowns()
453
416
 
454
417
 
 
418
    def commit(self, message, timestamp=None, timezone=None,
 
419
               committer=None,
 
420
               verbose=False):
 
421
        """Commit working copy as a new revision.
 
422
        
 
423
        The basic approach is to add all the file texts into the
 
424
        store, then the inventory, then make a new revision pointing
 
425
        to that inventory and store that.
 
426
        
 
427
        This is not quite safe if the working copy changes during the
 
428
        commit; for the moment that is simply not allowed.  A better
 
429
        approach is to make a temporary copy of the files before
 
430
        computing their hashes, and then add those hashes in turn to
 
431
        the inventory.  This should mean at least that there are no
 
432
        broken hash pointers.  There is no way we can get a snapshot
 
433
        of the whole directory at an instant.  This would also have to
 
434
        be robust against files disappearing, moving, etc.  So the
 
435
        whole thing is a bit hard.
 
436
 
 
437
        timestamp -- if not None, seconds-since-epoch for a
 
438
             postdated/predated commit.
 
439
        """
 
440
 
 
441
        ## TODO: Show branch names
 
442
 
 
443
        # TODO: Don't commit if there are no changes, unless forced?
 
444
 
 
445
        # First walk over the working inventory; and both update that
 
446
        # and also build a new revision inventory.  The revision
 
447
        # inventory needs to hold the text-id, sha1 and size of the
 
448
        # actual file versions committed in the revision.  (These are
 
449
        # not present in the working inventory.)  We also need to
 
450
        # detect missing/deleted files, and remove them from the
 
451
        # working inventory.
 
452
 
 
453
        work_inv = self.read_working_inventory()
 
454
        inv = Inventory()
 
455
        basis = self.basis_tree()
 
456
        basis_inv = basis.inventory
 
457
        missing_ids = []
 
458
        for path, entry in work_inv.iter_entries():
 
459
            ## TODO: Cope with files that have gone missing.
 
460
 
 
461
            ## TODO: Check that the file kind has not changed from the previous
 
462
            ## revision of this file (if any).
 
463
 
 
464
            entry = entry.copy()
 
465
 
 
466
            p = self.abspath(path)
 
467
            file_id = entry.file_id
 
468
            mutter('commit prep file %s, id %r ' % (p, file_id))
 
469
 
 
470
            if not os.path.exists(p):
 
471
                mutter("    file is missing, removing from inventory")
 
472
                if verbose:
 
473
                    show_status('D', entry.kind, quotefn(path))
 
474
                missing_ids.append(file_id)
 
475
                continue
 
476
 
 
477
            # TODO: Handle files that have been deleted
 
478
 
 
479
            # TODO: Maybe a special case for empty files?  Seems a
 
480
            # waste to store them many times.
 
481
 
 
482
            inv.add(entry)
 
483
 
 
484
            if basis_inv.has_id(file_id):
 
485
                old_kind = basis_inv[file_id].kind
 
486
                if old_kind != entry.kind:
 
487
                    bailout("entry %r changed kind from %r to %r"
 
488
                            % (file_id, old_kind, entry.kind))
 
489
 
 
490
            if entry.kind == 'directory':
 
491
                if not isdir(p):
 
492
                    bailout("%s is entered as directory but not a directory" % quotefn(p))
 
493
            elif entry.kind == 'file':
 
494
                if not isfile(p):
 
495
                    bailout("%s is entered as file but is not a file" % quotefn(p))
 
496
 
 
497
                content = file(p, 'rb').read()
 
498
 
 
499
                entry.text_sha1 = sha_string(content)
 
500
                entry.text_size = len(content)
 
501
 
 
502
                old_ie = basis_inv.has_id(file_id) and basis_inv[file_id]
 
503
                if (old_ie
 
504
                    and (old_ie.text_size == entry.text_size)
 
505
                    and (old_ie.text_sha1 == entry.text_sha1)):
 
506
                    ## assert content == basis.get_file(file_id).read()
 
507
                    entry.text_id = basis_inv[file_id].text_id
 
508
                    mutter('    unchanged from previous text_id {%s}' %
 
509
                           entry.text_id)
 
510
                    
 
511
                else:
 
512
                    entry.text_id = gen_file_id(entry.name)
 
513
                    self.text_store.add(content, entry.text_id)
 
514
                    mutter('    stored with text_id {%s}' % entry.text_id)
 
515
                    if verbose:
 
516
                        if not old_ie:
 
517
                            state = 'A'
 
518
                        elif (old_ie.name == entry.name
 
519
                              and old_ie.parent_id == entry.parent_id):
 
520
                            state = 'M'
 
521
                        else:
 
522
                            state = 'R'
 
523
 
 
524
                        show_status(state, entry.kind, quotefn(path))
 
525
 
 
526
        for file_id in missing_ids:
 
527
            # have to do this later so we don't mess up the iterator.
 
528
            # since parents may be removed before their children we
 
529
            # have to test.
 
530
 
 
531
            # FIXME: There's probably a better way to do this; perhaps
 
532
            # the workingtree should know how to filter itself.
 
533
            if work_inv.has_id(file_id):
 
534
                del work_inv[file_id]
 
535
 
 
536
 
 
537
        inv_id = rev_id = _gen_revision_id(time.time())
 
538
        
 
539
        inv_tmp = tempfile.TemporaryFile()
 
540
        inv.write_xml(inv_tmp)
 
541
        inv_tmp.seek(0)
 
542
        self.inventory_store.add(inv_tmp, inv_id)
 
543
        mutter('new inventory_id is {%s}' % inv_id)
 
544
 
 
545
        self._write_inventory(work_inv)
 
546
 
 
547
        if timestamp == None:
 
548
            timestamp = time.time()
 
549
 
 
550
        if committer == None:
 
551
            committer = username()
 
552
 
 
553
        if timezone == None:
 
554
            timezone = local_time_offset()
 
555
 
 
556
        mutter("building commit log message")
 
557
        rev = Revision(timestamp=timestamp,
 
558
                       timezone=timezone,
 
559
                       committer=committer,
 
560
                       precursor = self.last_patch(),
 
561
                       message = message,
 
562
                       inventory_id=inv_id,
 
563
                       revision_id=rev_id)
 
564
 
 
565
        rev_tmp = tempfile.TemporaryFile()
 
566
        rev.write_xml(rev_tmp)
 
567
        rev_tmp.seek(0)
 
568
        self.revision_store.add(rev_tmp, rev_id)
 
569
        mutter("new revision_id is {%s}" % rev_id)
 
570
        
 
571
        ## XXX: Everything up to here can simply be orphaned if we abort
 
572
        ## the commit; it will leave junk files behind but that doesn't
 
573
        ## matter.
 
574
 
 
575
        ## TODO: Read back the just-generated changeset, and make sure it
 
576
        ## applies and recreates the right state.
 
577
 
 
578
        ## TODO: Also calculate and store the inventory SHA1
 
579
        mutter("committing patch r%d" % (self.revno() + 1))
 
580
 
 
581
 
 
582
        self.append_revision(rev_id)
 
583
        
 
584
        if verbose:
 
585
            note("commited r%d" % self.revno())
 
586
 
 
587
 
455
588
    def append_revision(self, revision_id):
456
589
        mutter("add {%s} to revision-history" % revision_id)
457
590
        rev_history = self.revision_history()
473
606
 
474
607
    def get_revision(self, revision_id):
475
608
        """Return the Revision object for a named revision"""
476
 
        self._need_readlock()
477
609
        r = Revision.read_xml(self.revision_store[revision_id])
478
610
        assert r.revision_id == revision_id
479
611
        return r
485
617
        TODO: Perhaps for this and similar methods, take a revision
486
618
               parameter which can be either an integer revno or a
487
619
               string hash."""
488
 
        self._need_readlock()
489
620
        i = Inventory.read_xml(self.inventory_store[inventory_id])
490
621
        return i
491
622
 
492
623
 
493
624
    def get_revision_inventory(self, revision_id):
494
625
        """Return inventory of a past revision."""
495
 
        self._need_readlock()
496
626
        if revision_id == None:
497
627
            return Inventory()
498
628
        else:
505
635
        >>> ScratchBranch().revision_history()
506
636
        []
507
637
        """
508
 
        self._need_readlock()
509
638
        return [l.rstrip('\r\n') for l in self.controlfile('revision-history', 'r').readlines()]
510
639
 
511
640
 
512
 
    def enum_history(self, direction):
513
 
        """Return (revno, revision_id) for history of branch.
514
 
 
515
 
        direction
516
 
            'forward' is from earliest to latest
517
 
            'reverse' is from latest to earliest
518
 
        """
519
 
        rh = self.revision_history()
520
 
        if direction == 'forward':
521
 
            i = 1
522
 
            for rid in rh:
523
 
                yield i, rid
524
 
                i += 1
525
 
        elif direction == 'reverse':
526
 
            i = len(rh)
527
 
            while i > 0:
528
 
                yield i, rh[i-1]
529
 
                i -= 1
530
 
        else:
531
 
            raise BzrError('invalid history direction %r' % direction)
532
 
 
533
 
 
534
641
    def revno(self):
535
642
        """Return current revision number for this branch.
536
643
 
537
644
        That is equivalent to the number of revisions committed to
538
645
        this branch.
 
646
 
 
647
        >>> b = ScratchBranch()
 
648
        >>> b.revno()
 
649
        0
 
650
        >>> b.commit('no foo')
 
651
        >>> b.revno()
 
652
        1
539
653
        """
540
654
        return len(self.revision_history())
541
655
 
542
656
 
543
657
    def last_patch(self):
544
658
        """Return last patch hash, or None if no history.
 
659
 
 
660
        >>> ScratchBranch().last_patch() == None
 
661
        True
545
662
        """
546
663
        ph = self.revision_history()
547
664
        if ph:
548
665
            return ph[-1]
549
666
        else:
550
667
            return None
551
 
 
552
 
 
553
 
    def commit(self, *args, **kw):
554
 
        """Deprecated"""
555
 
        from bzrlib.commit import commit
556
 
        commit(self, *args, **kw)
557
668
        
558
669
 
559
670
    def lookup_revision(self, revno):
573
684
 
574
685
        `revision_id` may be None for the null revision, in which case
575
686
        an `EmptyTree` is returned."""
576
 
        self._need_readlock()
 
687
 
577
688
        if revision_id == None:
578
689
            return EmptyTree()
579
690
        else:
583
694
 
584
695
    def working_tree(self):
585
696
        """Return a `Tree` for the working copy."""
586
 
        from workingtree import WorkingTree
587
697
        return WorkingTree(self.base, self.read_working_inventory())
588
698
 
589
699
 
591
701
        """Return `Tree` object for last revision.
592
702
 
593
703
        If there are no revisions yet, return an `EmptyTree`.
 
704
 
 
705
        >>> b = ScratchBranch(files=['foo'])
 
706
        >>> b.basis_tree().has_filename('foo')
 
707
        False
 
708
        >>> b.working_tree().has_filename('foo')
 
709
        True
 
710
        >>> b.add('foo')
 
711
        >>> b.commit('add foo')
 
712
        >>> b.basis_tree().has_filename('foo')
 
713
        True
594
714
        """
595
715
        r = self.last_patch()
596
716
        if r == None:
600
720
 
601
721
 
602
722
 
 
723
    def write_log(self, show_timezone='original', verbose=False):
 
724
        """Write out human-readable log of commits to this branch
 
725
 
 
726
        utc -- If true, show dates in universal time, not local time."""
 
727
        ## TODO: Option to choose either original, utc or local timezone
 
728
        revno = 1
 
729
        precursor = None
 
730
        for p in self.revision_history():
 
731
            print '-' * 40
 
732
            print 'revno:', revno
 
733
            ## TODO: Show hash if --id is given.
 
734
            ##print 'revision-hash:', p
 
735
            rev = self.get_revision(p)
 
736
            print 'committer:', rev.committer
 
737
            print 'timestamp: %s' % (format_date(rev.timestamp, rev.timezone or 0,
 
738
                                                 show_timezone))
 
739
 
 
740
            ## opportunistic consistency check, same as check_patch_chaining
 
741
            if rev.precursor != precursor:
 
742
                bailout("mismatched precursor!")
 
743
 
 
744
            print 'message:'
 
745
            if not rev.message:
 
746
                print '  (no message)'
 
747
            else:
 
748
                for l in rev.message.split('\n'):
 
749
                    print '  ' + l
 
750
 
 
751
            if verbose == True and precursor != None:
 
752
                print 'changed files:'
 
753
                tree = self.revision_tree(p)
 
754
                prevtree = self.revision_tree(precursor)
 
755
                
 
756
                for file_state, fid, old_name, new_name, kind in \
 
757
                                        diff_trees(prevtree, tree, ):
 
758
                    if file_state == 'A' or file_state == 'M':
 
759
                        show_status(file_state, kind, new_name)
 
760
                    elif file_state == 'D':
 
761
                        show_status(file_state, kind, old_name)
 
762
                    elif file_state == 'R':
 
763
                        show_status(file_state, kind,
 
764
                            old_name + ' => ' + new_name)
 
765
                
 
766
            revno += 1
 
767
            precursor = p
 
768
 
 
769
 
603
770
    def rename_one(self, from_rel, to_rel):
604
771
        """Rename one file.
605
772
 
606
773
        This can change the directory or the filename or both.
607
 
        """
608
 
        self._need_writelock()
 
774
         """
609
775
        tree = self.working_tree()
610
776
        inv = tree.inventory
611
777
        if not tree.has_filename(from_rel):
660
826
        Note that to_name is only the last component of the new name;
661
827
        this doesn't change the directory.
662
828
        """
663
 
        self._need_writelock()
664
829
        ## TODO: Option to move IDs only
665
830
        assert not isinstance(from_paths, basestring)
666
831
        tree = self.working_tree()
711
876
 
712
877
 
713
878
 
 
879
    def show_status(self, show_all=False):
 
880
        """Display single-line status for non-ignored working files.
 
881
 
 
882
        The list is show sorted in order by file name.
 
883
 
 
884
        >>> b = ScratchBranch(files=['foo', 'foo~'])
 
885
        >>> b.show_status()
 
886
        ?       foo
 
887
        >>> b.add('foo')
 
888
        >>> b.show_status()
 
889
        A       foo
 
890
        >>> b.commit("add foo")
 
891
        >>> b.show_status()
 
892
        >>> os.unlink(b.abspath('foo'))
 
893
        >>> b.show_status()
 
894
        D       foo
 
895
        
 
896
        TODO: Get state for single files.
 
897
        """
 
898
 
 
899
        # We have to build everything into a list first so that it can
 
900
        # sorted by name, incorporating all the different sources.
 
901
 
 
902
        # FIXME: Rather than getting things in random order and then sorting,
 
903
        # just step through in order.
 
904
 
 
905
        # Interesting case: the old ID for a file has been removed,
 
906
        # but a new file has been created under that name.
 
907
 
 
908
        old = self.basis_tree()
 
909
        new = self.working_tree()
 
910
 
 
911
        for fs, fid, oldname, newname, kind in diff_trees(old, new):
 
912
            if fs == 'R':
 
913
                show_status(fs, kind,
 
914
                            oldname + ' => ' + newname)
 
915
            elif fs == 'A' or fs == 'M':
 
916
                show_status(fs, kind, newname)
 
917
            elif fs == 'D':
 
918
                show_status(fs, kind, oldname)
 
919
            elif fs == '.':
 
920
                if show_all:
 
921
                    show_status(fs, kind, newname)
 
922
            elif fs == 'I':
 
923
                if show_all:
 
924
                    show_status(fs, kind, newname)
 
925
            elif fs == '?':
 
926
                show_status(fs, kind, newname)
 
927
            else:
 
928
                bailout("weird file state %r" % ((fs, fid),))
 
929
                
 
930
 
714
931
 
715
932
class ScratchBranch(Branch):
716
933
    """Special test class: a branch that cleans up after itself.
719
936
    >>> isdir(b.base)
720
937
    True
721
938
    >>> bd = b.base
722
 
    >>> b.destroy()
 
939
    >>> del b
723
940
    >>> isdir(bd)
724
941
    False
725
942
    """
739
956
 
740
957
 
741
958
    def __del__(self):
742
 
        self.destroy()
743
 
 
744
 
    def destroy(self):
745
959
        """Destroy the test branch, removing the scratch directory."""
746
960
        try:
747
 
            mutter("delete ScratchBranch %s" % self.base)
748
961
            shutil.rmtree(self.base)
749
 
        except OSError, e:
 
962
        except OSError:
750
963
            # Work around for shutil.rmtree failing on Windows when
751
964
            # readonly files are encountered
752
 
            mutter("hit exception in destroying ScratchBranch: %s" % e)
753
965
            for root, dirs, files in os.walk(self.base, topdown=False):
754
966
                for name in files:
755
967
                    os.chmod(os.path.join(root, name), 0700)
756
968
            shutil.rmtree(self.base)
757
 
        self.base = None
758
969
 
759
970
    
760
971
 
777
988
 
778
989
 
779
990
 
 
991
def _gen_revision_id(when):
 
992
    """Return new revision-id."""
 
993
    s = '%s-%s-' % (user_email(), compact_date(when))
 
994
    s += hexlify(rand_bytes(8))
 
995
    return s
 
996
 
 
997
 
780
998
def gen_file_id(name):
781
999
    """Return new file id.
782
1000