~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2005-10-01 06:48:01 UTC
  • mto: (1185.12.13)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: aaron.bentley@utoronto.ca-20051001064801-7400c2ed0fe26080
Made iter_conflicts a WorkingTree method

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
 
# DO NOT change this to cStringIO - it results in control files 
18
 
# written as UCS4
19
 
# FIXIT! (Only deal with byte streams OR unicode at any one layer.)
20
 
# RBC 20051018
21
 
from StringIO import StringIO
 
17
 
22
18
import sys
23
19
import os
24
20
 
25
21
import bzrlib
26
 
from bzrlib import BZRDIR
27
 
from bzrlib.commands import Command, display_command
28
 
from bzrlib.branch import Branch
29
 
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError, NotBranchError
30
 
from bzrlib.errors import DivergedBranches
31
 
from bzrlib.option import Option
32
 
from bzrlib.revisionspec import RevisionSpec
33
22
import bzrlib.trace
34
23
from bzrlib.trace import mutter, note, log_error, warning
35
 
from bzrlib.workingtree import WorkingTree
36
 
 
37
 
 
38
 
def branch_files(file_list, default_branch='.'):
39
 
    """\
40
 
    Return a branch and list of branch-relative paths.
41
 
    If supplied file_list is empty or None, the branch default will be used,
42
 
    and returned file_list will match the original.
43
 
    """
44
 
    if file_list is None or len(file_list) == 0:
45
 
        return Branch.open_containing(default_branch)[0], file_list
46
 
    b = Branch.open_containing(file_list[0])[0]
47
 
    
48
 
    # note that if this is a remote branch, we would want
49
 
    # relpath against the transport. RBC 20051018
50
 
    # Most branch ops can't meaningfully operate on files in remote branches;
51
 
    # the above comment was in cmd_status.  ADHB 20051026
52
 
    tree = WorkingTree(b.base, b)
53
 
    new_list = []
54
 
    for filename in file_list:
55
 
        try:
56
 
            new_list.append(tree.relpath(filename))
57
 
        except NotBranchError:
58
 
            raise BzrCommandError("%s is not in the same branch as %s" % 
59
 
                                  (filename, file_list[0]))
60
 
    return b, new_list
61
 
 
62
 
 
63
 
# TODO: Make sure no commands unconditionally use the working directory as a
64
 
# branch.  If a filename argument is used, the first of them should be used to
65
 
# specify the branch.  (Perhaps this can be factored out into some kind of
66
 
# Argument class, representing a file in a branch, where the first occurrence
67
 
# opens the branch?)
 
24
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError, NotBranchError
 
25
from bzrlib.branch import Branch
 
26
from bzrlib import BZRDIR
 
27
from bzrlib.commands import Command
 
28
 
68
29
 
69
30
class cmd_status(Command):
70
31
    """Display status summary.
105
66
    If a revision argument is given, the status is calculated against
106
67
    that revision, or between two revisions if two are provided.
107
68
    """
108
 
    
109
69
    # XXX: FIXME: bzr status should accept a -r option to show changes
110
70
    # relative to a revision, or between revisions
111
71
 
112
 
    # TODO: --no-recurse, --recurse options
113
 
    
114
72
    takes_args = ['file*']
115
 
    takes_options = ['all', 'show-ids']
 
73
    takes_options = ['all', 'show-ids', 'revision']
116
74
    aliases = ['st', 'stat']
117
75
    
118
 
    @display_command
119
76
    def run(self, all=False, show_ids=False, file_list=None, revision=None):
120
 
        b, file_list = branch_files(file_list)
 
77
        if file_list:
 
78
            b = Branch.open_containing(file_list[0])
 
79
            file_list = [b.relpath(x) for x in file_list]
 
80
            # special case: only one path was given and it's the root
 
81
            # of the branch
 
82
            if file_list == ['']:
 
83
                file_list = None
 
84
        else:
 
85
            b = Branch.open_containing('.')
121
86
            
122
87
        from bzrlib.status import show_status
123
88
        show_status(b, show_unchanged=all, show_ids=show_ids,
135
100
    takes_args = ['revision_id?']
136
101
    takes_options = ['revision']
137
102
    
138
 
    @display_command
139
103
    def run(self, revision_id=None, revision=None):
 
104
        from bzrlib.revisionspec import RevisionSpec
140
105
 
141
106
        if revision_id is not None and revision is not None:
142
107
            raise BzrCommandError('You can only supply one of revision_id or --revision')
143
108
        if revision_id is None and revision is None:
144
109
            raise BzrCommandError('You must supply either --revision or a revision_id')
145
 
        b = Branch.open_containing('.')[0]
 
110
        b = Branch.open_containing('.')
146
111
        if revision_id is not None:
147
112
            sys.stdout.write(b.get_revision_xml_file(revision_id).read())
148
113
        elif revision is not None:
157
122
    """Show current revision number.
158
123
 
159
124
    This is equal to the number of revisions on this branch."""
160
 
    @display_command
161
125
    def run(self):
162
 
        print Branch.open_containing('.')[0].revno()
 
126
        print Branch.open_containing('.').revno()
163
127
 
164
128
 
165
129
class cmd_revision_info(Command):
168
132
    hidden = True
169
133
    takes_args = ['revision_info*']
170
134
    takes_options = ['revision']
171
 
    @display_command
172
135
    def run(self, revision=None, revision_info_list=[]):
 
136
        from bzrlib.revisionspec import RevisionSpec
173
137
 
174
138
        revs = []
175
139
        if revision is not None:
180
144
        if len(revs) == 0:
181
145
            raise BzrCommandError('You must supply a revision identifier')
182
146
 
183
 
        b = Branch.open_containing('.')[0]
 
147
        b = Branch.open_containing('.')
184
148
 
185
149
        for rev in revs:
186
150
            revinfo = rev.in_history(b)
214
178
    get added when you add a file in the directory.
215
179
    """
216
180
    takes_args = ['file*']
217
 
    takes_options = ['no-recurse', 'quiet']
 
181
    takes_options = ['verbose', 'no-recurse']
218
182
    
219
 
    def run(self, file_list, no_recurse=False, quiet=False):
220
 
        from bzrlib.add import smart_add, add_reporter_print, add_reporter_null
221
 
        if quiet:
222
 
            reporter = add_reporter_null
223
 
        else:
224
 
            reporter = add_reporter_print
225
 
        smart_add(file_list, not no_recurse, reporter)
 
183
    def run(self, file_list, verbose=False, no_recurse=False):
 
184
        # verbose currently has no effect
 
185
        from bzrlib.add import smart_add, add_reporter_print
 
186
        smart_add(file_list, not no_recurse, add_reporter_print)
 
187
 
226
188
 
227
189
 
228
190
class cmd_mkdir(Command):
238
200
        for d in dir_list:
239
201
            os.mkdir(d)
240
202
            if not b:
241
 
                b = Branch.open_containing(d)[0]
 
203
                b = Branch.open_containing(d)
242
204
            b.add([d])
243
205
            print 'added', d
244
206
 
248
210
    takes_args = ['filename']
249
211
    hidden = True
250
212
    
251
 
    @display_command
252
213
    def run(self, filename):
253
 
        branch, relpath = Branch.open_containing(filename)
254
 
        print relpath
 
214
        print Branch.open_containing(filename).relpath(filename)
 
215
 
255
216
 
256
217
 
257
218
class cmd_inventory(Command):
258
219
    """Show inventory of the current working copy or a revision."""
259
220
    takes_options = ['revision', 'show-ids']
260
221
    
261
 
    @display_command
262
222
    def run(self, revision=None, show_ids=False):
263
 
        b = Branch.open_containing('.')[0]
 
223
        b = Branch.open_containing('.')
264
224
        if revision is None:
265
225
            inv = b.read_working_inventory()
266
226
        else:
286
246
    """
287
247
    takes_args = ['source$', 'dest']
288
248
    def run(self, source_list, dest):
289
 
        b, source_list = branch_files(source_list)
 
249
        b = Branch.open_containing('.')
290
250
 
291
251
        # TODO: glob expansion on windows?
292
 
        tree = WorkingTree(b.base, b)
293
 
        b.move(source_list, tree.relpath(dest))
 
252
        b.move([b.relpath(s) for s in source_list], b.relpath(dest))
294
253
 
295
254
 
296
255
class cmd_rename(Command):
304
263
 
305
264
    See also the 'move' command, which moves files into a different
306
265
    directory without changing their name.
307
 
    """
308
 
    # TODO: Some way to rename multiple files without invoking 
309
 
    # bzr for each one?"""
 
266
 
 
267
    TODO: Some way to rename multiple files without invoking bzr for each
 
268
    one?"""
310
269
    takes_args = ['from_name', 'to_name']
311
270
    
312
271
    def run(self, from_name, to_name):
313
 
        b, (from_name, to_name) = branch_files((from_name, to_name))
314
 
        b.rename_one(from_name, to_name)
 
272
        b = Branch.open_containing('.')
 
273
        b.rename_one(b.relpath(from_name), b.relpath(to_name))
 
274
 
315
275
 
316
276
 
317
277
class cmd_mv(Command):
331
291
    def run(self, names_list):
332
292
        if len(names_list) < 2:
333
293
            raise BzrCommandError("missing file argument")
334
 
        b, rel_names = branch_files(names_list)
 
294
        b = Branch.open_containing(names_list[0])
 
295
 
 
296
        rel_names = [b.relpath(x) for x in names_list]
335
297
        
336
298
        if os.path.isdir(names_list[-1]):
337
299
            # move into existing directory
345
307
            print "%s => %s" % (rel_names[0], rel_names[1])
346
308
            
347
309
    
 
310
 
 
311
 
348
312
class cmd_pull(Command):
349
313
    """Pull any changes from another branch into the current one.
350
314
 
351
 
    If there is no default location set, the first pull will set it.  After
352
 
    that, you can omit the location to use the default.  To change the
353
 
    default, use --remember.
 
315
    If the location is omitted, the last-used location will be used.
 
316
    Both the revision history and the working directory will be
 
317
    updated.
354
318
 
355
319
    This command only works on branches that have not diverged.  Branches are
356
320
    considered diverged if both branches have had commits without first
357
321
    pulling from the other.
358
322
 
359
323
    If branches have diverged, you can use 'bzr merge' to pull the text changes
360
 
    from one into the other.  Once one branch has merged, the other should
361
 
    be able to pull it again.
362
 
 
363
 
    If you want to forget your local changes and just update your branch to
364
 
    match the remote one, use --overwrite.
 
324
    from one into the other.
365
325
    """
366
 
    takes_options = ['remember', 'overwrite']
367
326
    takes_args = ['location?']
368
327
 
369
 
    def run(self, location=None, remember=False, overwrite=False):
 
328
    def run(self, location=None):
370
329
        from bzrlib.merge import merge
 
330
        import tempfile
371
331
        from shutil import rmtree
372
332
        import errno
373
333
        
374
 
        br_to = Branch.open_containing('.')[0]
 
334
        br_to = Branch.open_containing('.')
375
335
        stored_loc = br_to.get_parent()
376
336
        if location is None:
377
337
            if stored_loc is None:
378
338
                raise BzrCommandError("No pull location known or specified.")
379
339
            else:
380
 
                print "Using saved location: %s" % stored_loc
381
 
                location = stored_loc
382
 
        if br_to.get_parent() is None or remember:
383
 
            br_to.set_parent(location)
384
 
        br_from = Branch.open(location)
385
 
        try:
386
 
            br_to.working_tree().pull(br_from, overwrite)
387
 
        except DivergedBranches:
388
 
            raise BzrCommandError("These branches have diverged."
389
 
                                  "  Try merge.")
390
 
 
391
 
 
392
 
class cmd_push(Command):
393
 
    """Push this branch into another branch.
394
 
    
395
 
    The remote branch will not have its working tree populated because this
396
 
    is both expensive, and may not be supported on the remote file system.
397
 
    
398
 
    Some smart servers or protocols *may* put the working tree in place.
399
 
 
400
 
    If there is no default push location set, the first push will set it.
401
 
    After that, you can omit the location to use the default.  To change the
402
 
    default, use --remember.
403
 
 
404
 
    This command only works on branches that have not diverged.  Branches are
405
 
    considered diverged if the branch being pushed to is not an older version
406
 
    of this branch.
407
 
 
408
 
    If branches have diverged, you can use 'bzr push --overwrite' to replace
409
 
    the other branch completely.
410
 
    
411
 
    If you want to ensure you have the different changes in the other branch,
412
 
    do a merge (see bzr help merge) from the other branch, and commit that
413
 
    before doing a 'push --overwrite'.
414
 
    """
415
 
    takes_options = ['remember', 'overwrite']
416
 
    takes_args = ['location?']
417
 
 
418
 
    def run(self, location=None, remember=False, overwrite=False):
419
 
        import errno
420
 
        from shutil import rmtree
421
 
        from bzrlib.transport import get_transport
422
 
        
423
 
        br_from = Branch.open_containing('.')[0]
424
 
        stored_loc = br_from.get_push_location()
425
 
        if location is None:
426
 
            if stored_loc is None:
427
 
                raise BzrCommandError("No push location known or specified.")
428
 
            else:
429
 
                print "Using saved location: %s" % stored_loc
430
 
                location = stored_loc
431
 
        if br_from.get_push_location() is None or remember:
432
 
            br_from.set_push_location(location)
433
 
        try:
434
 
            br_to = Branch.open(location)
435
 
        except NotBranchError:
436
 
            # create a branch.
437
 
            transport = get_transport(location).clone('..')
438
 
            transport.mkdir(transport.relpath(location))
439
 
            br_to = Branch.initialize(location)
440
 
        try:
441
 
            br_to.pull(br_from, overwrite)
442
 
        except DivergedBranches:
443
 
            raise BzrCommandError("These branches have diverged."
444
 
                                  "  Try a merge then push with overwrite.")
 
340
                print "Using last location: %s" % stored_loc
 
341
                location = stored_loc
 
342
        cache_root = tempfile.mkdtemp()
 
343
        from bzrlib.errors import DivergedBranches
 
344
        br_from = Branch.open_containing(location)
 
345
        location = br_from.base
 
346
        old_revno = br_to.revno()
 
347
        try:
 
348
            from bzrlib.errors import DivergedBranches
 
349
            br_from = Branch.open(location)
 
350
            br_from.setup_caching(cache_root)
 
351
            location = br_from.base
 
352
            old_revno = br_to.revno()
 
353
            try:
 
354
                br_to.update_revisions(br_from)
 
355
            except DivergedBranches:
 
356
                raise BzrCommandError("These branches have diverged."
 
357
                    "  Try merge.")
 
358
                
 
359
            merge(('.', -1), ('.', old_revno), check_clean=False)
 
360
            if location != stored_loc:
 
361
                br_to.set_parent(location)
 
362
        finally:
 
363
            rmtree(cache_root)
 
364
 
445
365
 
446
366
 
447
367
class cmd_branch(Command):
463
383
 
464
384
    def run(self, from_location, to_location=None, revision=None, basis=None):
465
385
        from bzrlib.clone import copy_branch
 
386
        import tempfile
466
387
        import errno
467
388
        from shutil import rmtree
468
 
        if revision is None:
469
 
            revision = [None]
470
 
        elif len(revision) > 1:
471
 
            raise BzrCommandError(
472
 
                'bzr branch --revision takes exactly 1 revision value')
473
 
        try:
474
 
            br_from = Branch.open(from_location)
475
 
        except OSError, e:
476
 
            if e.errno == errno.ENOENT:
477
 
                raise BzrCommandError('Source location "%s" does not'
478
 
                                      ' exist.' % to_location)
479
 
            else:
480
 
                raise
481
 
        br_from.lock_read()
482
 
        try:
 
389
        cache_root = tempfile.mkdtemp()
 
390
        try:
 
391
            if revision is None:
 
392
                revision = [None]
 
393
            elif len(revision) > 1:
 
394
                raise BzrCommandError(
 
395
                    'bzr branch --revision takes exactly 1 revision value')
 
396
            try:
 
397
                br_from = Branch.open(from_location)
 
398
            except OSError, e:
 
399
                if e.errno == errno.ENOENT:
 
400
                    raise BzrCommandError('Source location "%s" does not'
 
401
                                          ' exist.' % to_location)
 
402
                else:
 
403
                    raise
 
404
            br_from.setup_caching(cache_root)
483
405
            if basis is not None:
484
 
                basis_branch = Branch.open_containing(basis)[0]
 
406
                basis_branch = Branch.open_containing(basis)
485
407
            else:
486
408
                basis_branch = None
487
409
            if len(revision) == 1 and revision[0] is not None:
490
412
                revision_id = None
491
413
            if to_location is None:
492
414
                to_location = os.path.basename(from_location.rstrip("/\\"))
493
 
                name = None
494
 
            else:
495
 
                name = os.path.basename(to_location) + '\n'
496
415
            try:
497
416
                os.mkdir(to_location)
498
417
            except OSError, e:
508
427
                copy_branch(br_from, to_location, revision_id, basis_branch)
509
428
            except bzrlib.errors.NoSuchRevision:
510
429
                rmtree(to_location)
511
 
                msg = "The branch %s has no revision %s." % (from_location, revision[0])
 
430
                msg = "The branch %s has no revision %d." % (from_location, revision[0])
512
431
                raise BzrCommandError(msg)
513
432
            except bzrlib.errors.UnlistableBranch:
514
 
                rmtree(to_location)
515
433
                msg = "The branch %s cannot be used as a --basis"
516
 
                raise BzrCommandError(msg)
517
 
            if name:
518
 
                branch = Branch.open(to_location)
519
 
                name = StringIO(name)
520
 
                branch.put_controlfile('branch-name', name)
521
434
        finally:
522
 
            br_from.unlock()
 
435
            rmtree(cache_root)
523
436
 
524
437
 
525
438
class cmd_renames(Command):
526
439
    """Show list of renamed files.
 
440
 
 
441
    TODO: Option to show renames between two historical versions.
 
442
 
 
443
    TODO: Only show renames under dir, rather than in the whole branch.
527
444
    """
528
 
    # TODO: Option to show renames between two historical versions.
529
 
 
530
 
    # TODO: Only show renames under dir, rather than in the whole branch.
531
445
    takes_args = ['dir?']
532
446
 
533
 
    @display_command
534
447
    def run(self, dir='.'):
535
 
        b = Branch.open_containing(dir)[0]
 
448
        b = Branch.open_containing(dir)
536
449
        old_inv = b.basis_tree().inventory
537
450
        new_inv = b.read_working_inventory()
538
451
 
546
459
    """Show statistical information about a branch."""
547
460
    takes_args = ['branch?']
548
461
    
549
 
    @display_command
550
462
    def run(self, branch=None):
551
463
        import info
552
 
        b = Branch.open_containing(branch)[0]
 
464
 
 
465
        b = Branch.open_containing(branch)
553
466
        info.show_info(b)
554
467
 
555
468
 
561
474
    """
562
475
    takes_args = ['file+']
563
476
    takes_options = ['verbose']
564
 
    aliases = ['rm']
565
477
    
566
478
    def run(self, file_list, verbose=False):
567
 
        b, file_list = branch_files(file_list)
568
 
        tree = b.working_tree()
569
 
        tree.remove(file_list, verbose=verbose)
 
479
        b = Branch.open_containing(file_list[0])
 
480
        b.remove([b.relpath(f) for f in file_list], verbose=verbose)
570
481
 
571
482
 
572
483
class cmd_file_id(Command):
578
489
    """
579
490
    hidden = True
580
491
    takes_args = ['filename']
581
 
    @display_command
582
492
    def run(self, filename):
583
 
        b, relpath = Branch.open_containing(filename)
584
 
        i = b.inventory.path2id(relpath)
 
493
        b = Branch.open_containing(filename)
 
494
        i = b.inventory.path2id(b.relpath(filename))
585
495
        if i == None:
586
496
            raise BzrError("%r is not a versioned file" % filename)
587
497
        else:
595
505
    starting at the branch root."""
596
506
    hidden = True
597
507
    takes_args = ['filename']
598
 
    @display_command
599
508
    def run(self, filename):
600
 
        b, relpath = Branch.open_containing(filename)
 
509
        b = Branch.open_containing(filename)
601
510
        inv = b.inventory
602
 
        fid = inv.path2id(relpath)
 
511
        fid = inv.path2id(b.relpath(filename))
603
512
        if fid == None:
604
513
            raise BzrError("%r is not a versioned file" % filename)
605
514
        for fip in inv.get_idpath(fid):
609
518
class cmd_revision_history(Command):
610
519
    """Display list of revision ids on this branch."""
611
520
    hidden = True
612
 
    @display_command
613
521
    def run(self):
614
 
        for patchid in Branch.open_containing('.')[0].revision_history():
 
522
        for patchid in Branch.open_containing('.').revision_history():
615
523
            print patchid
616
524
 
617
525
 
618
526
class cmd_ancestry(Command):
619
527
    """List all revisions merged into this branch."""
620
528
    hidden = True
621
 
    @display_command
622
529
    def run(self):
623
 
        b = Branch.open_containing('.')[0]
 
530
        b = find_branch('.')
624
531
        for revision_id in b.get_ancestry(b.last_revision()):
625
532
            print revision_id
626
533
 
627
534
 
628
535
class cmd_directories(Command):
629
536
    """Display list of versioned directories in this branch."""
630
 
    @display_command
631
537
    def run(self):
632
 
        for name, ie in Branch.open_containing('.')[0].read_working_inventory().directories():
 
538
        for name, ie in Branch.open_containing('.').read_working_inventory().directories():
633
539
            if name == '':
634
540
                print '.'
635
541
            else:
645
551
    Recipe for importing a tree of files:
646
552
        cd ~/project
647
553
        bzr init
648
 
        bzr add .
 
554
        bzr add -v .
649
555
        bzr status
650
556
        bzr commit -m 'imported project'
651
557
    """
652
558
    def run(self):
 
559
        from bzrlib.branch import Branch
653
560
        Branch.initialize('.')
654
561
 
655
562
 
659
566
    If files are listed, only the changes in those files are listed.
660
567
    Otherwise, all changes for the tree are listed.
661
568
 
 
569
    TODO: Allow diff across branches.
 
570
 
 
571
    TODO: Option to use external diff command; could be GNU diff, wdiff,
 
572
          or a graphical diff.
 
573
 
 
574
    TODO: Python difflib is not exactly the same as unidiff; should
 
575
          either fix it up or prefer to use an external diff.
 
576
 
 
577
    TODO: If a directory is given, diff everything under that.
 
578
 
 
579
    TODO: Selected-file diff is inefficient and doesn't show you
 
580
          deleted files.
 
581
 
 
582
    TODO: This probably handles non-Unix newlines poorly.
 
583
 
662
584
    examples:
663
585
        bzr diff
664
586
        bzr diff -r1
665
587
        bzr diff -r1..2
666
588
    """
667
 
    # TODO: Allow diff across branches.
668
 
    # TODO: Option to use external diff command; could be GNU diff, wdiff,
669
 
    #       or a graphical diff.
670
 
 
671
 
    # TODO: Python difflib is not exactly the same as unidiff; should
672
 
    #       either fix it up or prefer to use an external diff.
673
 
 
674
 
    # TODO: If a directory is given, diff everything under that.
675
 
 
676
 
    # TODO: Selected-file diff is inefficient and doesn't show you
677
 
    #       deleted files.
678
 
 
679
 
    # TODO: This probably handles non-Unix newlines poorly.
680
589
    
681
590
    takes_args = ['file*']
682
591
    takes_options = ['revision', 'diff-options']
683
592
    aliases = ['di', 'dif']
684
593
 
685
 
    @display_command
686
594
    def run(self, revision=None, file_list=None, diff_options=None):
687
595
        from bzrlib.diff import show_diff
688
 
        
689
 
        b, file_list = branch_files(file_list)
 
596
 
 
597
        if file_list:
 
598
            b = Branch.open_containing(file_list[0])
 
599
            file_list = [b.relpath(f) for f in file_list]
 
600
            if file_list == ['']:
 
601
                # just pointing to top-of-tree
 
602
                file_list = None
 
603
        else:
 
604
            b = Branch.open_containing('.')
 
605
 
690
606
        if revision is not None:
691
607
            if len(revision) == 1:
692
 
                return show_diff(b, revision[0], specific_files=file_list,
693
 
                                 external_diff_options=diff_options)
 
608
                show_diff(b, revision[0], specific_files=file_list,
 
609
                          external_diff_options=diff_options)
694
610
            elif len(revision) == 2:
695
 
                return show_diff(b, revision[0], specific_files=file_list,
696
 
                                 external_diff_options=diff_options,
697
 
                                 revision2=revision[1])
 
611
                show_diff(b, revision[0], specific_files=file_list,
 
612
                          external_diff_options=diff_options,
 
613
                          revision2=revision[1])
698
614
            else:
699
615
                raise BzrCommandError('bzr diff --revision takes exactly one or two revision identifiers')
700
616
        else:
701
 
            return show_diff(b, None, specific_files=file_list,
702
 
                             external_diff_options=diff_options)
 
617
            show_diff(b, None, specific_files=file_list,
 
618
                      external_diff_options=diff_options)
 
619
 
 
620
        
703
621
 
704
622
 
705
623
class cmd_deleted(Command):
706
624
    """List files deleted in the working tree.
 
625
 
 
626
    TODO: Show files deleted since a previous revision, or between two revisions.
707
627
    """
708
 
    # TODO: Show files deleted since a previous revision, or
709
 
    # between two revisions.
710
 
    # TODO: Much more efficient way to do this: read in new
711
 
    # directories with readdir, rather than stating each one.  Same
712
 
    # level of effort but possibly much less IO.  (Or possibly not,
713
 
    # if the directories are very large...)
714
 
    @display_command
715
628
    def run(self, show_ids=False):
716
 
        b = Branch.open_containing('.')[0]
 
629
        b = Branch.open_containing('.')
717
630
        old = b.basis_tree()
718
631
        new = b.working_tree()
 
632
 
 
633
        ## TODO: Much more efficient way to do this: read in new
 
634
        ## directories with readdir, rather than stating each one.  Same
 
635
        ## level of effort but possibly much less IO.  (Or possibly not,
 
636
        ## if the directories are very large...)
 
637
 
719
638
        for path, ie in old.inventory.iter_entries():
720
639
            if not new.has_id(ie.file_id):
721
640
                if show_ids:
727
646
class cmd_modified(Command):
728
647
    """List files modified in working tree."""
729
648
    hidden = True
730
 
    @display_command
731
649
    def run(self):
732
650
        from bzrlib.delta import compare_trees
733
651
 
734
 
        b = Branch.open_containing('.')[0]
 
652
        b = Branch.open_containing('.')
735
653
        td = compare_trees(b.basis_tree(), b.working_tree())
736
654
 
737
 
        for path, id, kind, text_modified, meta_modified in td.modified:
 
655
        for path, id, kind in td.modified:
738
656
            print path
739
657
 
740
658
 
742
660
class cmd_added(Command):
743
661
    """List files added in working tree."""
744
662
    hidden = True
745
 
    @display_command
746
663
    def run(self):
747
 
        b = Branch.open_containing('.')[0]
 
664
        b = Branch.open_containing('.')
748
665
        wt = b.working_tree()
749
666
        basis_inv = b.basis_tree().inventory
750
667
        inv = wt.inventory
764
681
    The root is the nearest enclosing directory with a .bzr control
765
682
    directory."""
766
683
    takes_args = ['filename?']
767
 
    @display_command
768
684
    def run(self, filename=None):
769
685
        """Print the branch root."""
770
 
        b = Branch.open_containing(filename)[0]
 
686
        b = Branch.open_containing(filename)
771
687
        print b.base
772
688
 
773
689
 
777
693
    To request a range of logs, you can use the command -r begin:end
778
694
    -r revision requests a specific revision, -r :end or -r begin: are
779
695
    also valid.
 
696
 
 
697
    --message allows you to give a regular expression, which will be evaluated
 
698
    so that only matching entries will be displayed.
 
699
 
 
700
    TODO: Make --revision support uuid: and hash: [future tag:] notation.
 
701
  
780
702
    """
781
703
 
782
 
    # TODO: Make --revision support uuid: and hash: [future tag:] notation.
783
 
 
784
704
    takes_args = ['filename?']
785
 
    takes_options = [Option('forward', 
786
 
                            help='show from oldest to newest'),
787
 
                     'timezone', 'verbose', 
788
 
                     'show-ids', 'revision',
789
 
                     Option('line', help='format with one line per revision'),
790
 
                     'long', 
791
 
                     Option('message',
792
 
                            help='show revisions whose message matches this regexp',
793
 
                            type=str),
794
 
                     Option('short', help='use moderately short format'),
795
 
                     ]
796
 
    @display_command
 
705
    takes_options = ['forward', 'timezone', 'verbose', 'show-ids', 'revision',
 
706
                     'long', 'message', 'short',]
 
707
    
797
708
    def run(self, filename=None, timezone='original',
798
709
            verbose=False,
799
710
            show_ids=False,
801
712
            revision=None,
802
713
            message=None,
803
714
            long=False,
804
 
            short=False,
805
 
            line=False):
 
715
            short=False):
806
716
        from bzrlib.log import log_formatter, show_log
807
717
        import codecs
808
 
        assert message is None or isinstance(message, basestring), \
809
 
            "invalid message argument %r" % message
 
718
 
810
719
        direction = (forward and 'forward') or 'reverse'
811
720
        
812
721
        if filename:
813
 
            b, fp = Branch.open_containing(filename)
814
 
            if fp != '':
 
722
            b = Branch.open_containing(filename)
 
723
            fp = b.relpath(filename)
 
724
            if fp:
815
725
                file_id = b.read_working_inventory().path2id(fp)
816
726
            else:
817
727
                file_id = None  # points to branch root
818
728
        else:
819
 
            b, relpath = Branch.open_containing('.')
 
729
            b = Branch.open_containing('.')
820
730
            file_id = None
821
731
 
822
732
        if revision is None:
841
751
        # in e.g. the default C locale.
842
752
        outf = codecs.getwriter(bzrlib.user_encoding)(sys.stdout, errors='replace')
843
753
 
844
 
        log_format = 'long'
845
 
        if short:
 
754
        if not short:
 
755
            log_format = 'long'
 
756
        else:
846
757
            log_format = 'short'
847
 
        if line:
848
 
            log_format = 'line'
849
758
        lf = log_formatter(log_format,
850
759
                           show_ids=show_ids,
851
760
                           to_file=outf,
868
777
    A more user-friendly interface is "bzr log FILE"."""
869
778
    hidden = True
870
779
    takes_args = ["filename"]
871
 
    @display_command
872
780
    def run(self, filename):
873
 
        b, relpath = Branch.open_containing(filename)[0]
 
781
        b = Branch.open_containing(filename)
874
782
        inv = b.read_working_inventory()
875
 
        file_id = inv.path2id(relpath)
 
783
        file_id = inv.path2id(b.relpath(filename))
876
784
        for revno, revision_id, what in bzrlib.log.find_touching_revisions(b, file_id):
877
785
            print "%6d %s" % (revno, what)
878
786
 
879
787
 
880
788
class cmd_ls(Command):
881
789
    """List files in a tree.
 
790
 
 
791
    TODO: Take a revision or remote path and list that tree instead.
882
792
    """
883
 
    # TODO: Take a revision or remote path and list that tree instead.
884
793
    hidden = True
885
 
    takes_options = ['verbose', 'revision',
886
 
                     Option('non-recursive',
887
 
                            help='don\'t recurse into sub-directories'),
888
 
                     Option('from-root',
889
 
                            help='Print all paths from the root of the branch.'),
890
 
                     Option('unknown', help='Print unknown files'),
891
 
                     Option('versioned', help='Print versioned files'),
892
 
                     Option('ignored', help='Print ignored files'),
893
 
 
894
 
                     Option('null', help='Null separate the files'),
895
 
                    ]
896
 
    @display_command
897
 
    def run(self, revision=None, verbose=False, 
898
 
            non_recursive=False, from_root=False,
899
 
            unknown=False, versioned=False, ignored=False,
900
 
            null=False):
901
 
 
902
 
        if verbose and null:
903
 
            raise BzrCommandError('Cannot set both --verbose and --null')
904
 
        all = not (unknown or versioned or ignored)
905
 
 
906
 
        selection = {'I':ignored, '?':unknown, 'V':versioned}
907
 
 
908
 
        b, relpath = Branch.open_containing('.')
909
 
        if from_root:
910
 
            relpath = ''
911
 
        elif relpath:
912
 
            relpath += '/'
 
794
    def run(self, revision=None, verbose=False):
 
795
        b = Branch.open_containing('.')
913
796
        if revision == None:
914
797
            tree = b.working_tree()
915
798
        else:
916
 
            tree = b.revision_tree(revision[0].in_history(b).rev_id)
917
 
        for fp, fc, kind, fid, entry in tree.list_files():
918
 
            if fp.startswith(relpath):
919
 
                fp = fp[len(relpath):]
920
 
                if non_recursive and '/' in fp:
921
 
                    continue
922
 
                if not all and not selection[fc]:
923
 
                    continue
924
 
                if verbose:
925
 
                    kindch = entry.kind_character()
926
 
                    print '%-8s %s%s' % (fc, fp, kindch)
927
 
                elif null:
928
 
                    sys.stdout.write(fp)
929
 
                    sys.stdout.write('\0')
930
 
                    sys.stdout.flush()
 
799
            tree = b.revision_tree(revision.in_history(b).rev_id)
 
800
 
 
801
        for fp, fc, kind, fid in tree.list_files():
 
802
            if verbose:
 
803
                if kind == 'directory':
 
804
                    kindch = '/'
 
805
                elif kind == 'file':
 
806
                    kindch = ''
931
807
                else:
932
 
                    print fp
 
808
                    kindch = '???'
 
809
 
 
810
                print '%-8s %s%s' % (fc, fp, kindch)
 
811
            else:
 
812
                print fp
933
813
 
934
814
 
935
815
 
936
816
class cmd_unknowns(Command):
937
817
    """List unknown files."""
938
 
    @display_command
939
818
    def run(self):
940
819
        from bzrlib.osutils import quotefn
941
 
        for f in Branch.open_containing('.')[0].unknowns():
 
820
        for f in Branch.open_containing('.').unknowns():
942
821
            print quotefn(f)
943
822
 
944
823
 
949
828
    To remove patterns from the ignore list, edit the .bzrignore file.
950
829
 
951
830
    If the pattern contains a slash, it is compared to the whole path
952
 
    from the branch root.  Otherwise, it is compared to only the last
953
 
    component of the path.  To match a file only in the root directory,
954
 
    prepend './'.
 
831
    from the branch root.  Otherwise, it is comapred to only the last
 
832
    component of the path.
955
833
 
956
834
    Ignore patterns are case-insensitive on case-insensitive systems.
957
835
 
961
839
        bzr ignore ./Makefile
962
840
        bzr ignore '*.class'
963
841
    """
964
 
    # TODO: Complain if the filename is absolute
965
842
    takes_args = ['name_pattern']
966
843
    
967
844
    def run(self, name_pattern):
968
845
        from bzrlib.atomicfile import AtomicFile
969
846
        import os.path
970
847
 
971
 
        b, relpath = Branch.open_containing('.')
 
848
        b = Branch.open_containing('.')
972
849
        ifn = b.abspath('.bzrignore')
973
850
 
974
851
        if os.path.exists(ifn):
1007
884
    """List ignored files and the patterns that matched them.
1008
885
 
1009
886
    See also: bzr ignore"""
1010
 
    @display_command
1011
887
    def run(self):
1012
 
        tree = Branch.open_containing('.')[0].working_tree()
1013
 
        for path, file_class, kind, file_id, entry in tree.list_files():
 
888
        tree = Branch.open_containing('.').working_tree()
 
889
        for path, file_class, kind, file_id in tree.list_files():
1014
890
            if file_class != 'I':
1015
891
                continue
1016
892
            ## XXX: Slightly inefficient since this was already calculated
1027
903
    hidden = True
1028
904
    takes_args = ['revno']
1029
905
    
1030
 
    @display_command
1031
906
    def run(self, revno):
1032
907
        try:
1033
908
            revno = int(revno)
1034
909
        except ValueError:
1035
910
            raise BzrCommandError("not a valid revision-number: %r" % revno)
1036
911
 
1037
 
        print Branch.open_containing('.')[0].get_rev_id(revno)
 
912
        print Branch.open_containing('.').get_rev_id(revno)
1038
913
 
1039
914
 
1040
915
class cmd_export(Command):
1053
928
    takes_options = ['revision', 'format', 'root']
1054
929
    def run(self, dest, revision=None, format=None, root=None):
1055
930
        import os.path
1056
 
        b = Branch.open_containing('.')[0]
 
931
        b = Branch.open_containing('.')
1057
932
        if revision is None:
1058
933
            rev_id = b.last_revision()
1059
934
        else:
1087
962
    takes_options = ['revision']
1088
963
    takes_args = ['filename']
1089
964
 
1090
 
    @display_command
1091
965
    def run(self, filename, revision=None):
1092
966
        if revision is None:
1093
967
            raise BzrCommandError("bzr cat requires a revision number")
1094
968
        elif len(revision) != 1:
1095
969
            raise BzrCommandError("bzr cat --revision takes exactly one number")
1096
 
        b, relpath = Branch.open_containing(filename)
1097
 
        b.print_file(relpath, revision[0].in_history(b).revno)
 
970
        b = Branch.open_containing('.')
 
971
        b.print_file(b.relpath(filename), revision[0].in_history(b).revno)
1098
972
 
1099
973
 
1100
974
class cmd_local_time_offset(Command):
1101
975
    """Show the offset in seconds from GMT to local time."""
1102
976
    hidden = True    
1103
 
    @display_command
1104
977
    def run(self):
1105
978
        print bzrlib.osutils.local_time_offset()
1106
979
 
1118
991
    A selected-file commit may fail in some cases where the committed
1119
992
    tree would be invalid, such as trying to commit a file in a
1120
993
    newly-added directory that is not itself committed.
 
994
 
 
995
    TODO: Run hooks on tree to-be-committed, and after commit.
 
996
 
 
997
    TODO: Strict commit that fails if there are unknown or deleted files.
1121
998
    """
1122
 
    # TODO: Run hooks on tree to-be-committed, and after commit.
1123
 
 
1124
 
    # TODO: Strict commit that fails if there are deleted files.
1125
 
    #       (what does "deleted files" mean ??)
 
999
    takes_args = ['selected*']
 
1000
    takes_options = ['message', 'file', 'verbose', 'unchanged']
 
1001
    aliases = ['ci', 'checkin']
1126
1002
 
1127
1003
    # TODO: Give better message for -s, --summary, used by tla people
1128
1004
 
1129
1005
    # XXX: verbose currently does nothing
1130
 
 
1131
 
    takes_args = ['selected*']
1132
 
    takes_options = ['message', 'verbose', 
1133
 
                     Option('unchanged',
1134
 
                            help='commit even if nothing has changed'),
1135
 
                     Option('file', type=str, 
1136
 
                            argname='msgfile',
1137
 
                            help='file containing commit message'),
1138
 
                     Option('strict',
1139
 
                            help="refuse to commit if there are unknown "
1140
 
                            "files in the working tree."),
1141
 
                     ]
1142
 
    aliases = ['ci', 'checkin']
1143
 
 
 
1006
    
1144
1007
    def run(self, message=None, file=None, verbose=True, selected_list=None,
1145
 
            unchanged=False, strict=False):
1146
 
        from bzrlib.errors import (PointlessCommit, ConflictsInTree,
1147
 
                StrictCommitFailed)
 
1008
            unchanged=False):
 
1009
        from bzrlib.errors import PointlessCommit
1148
1010
        from bzrlib.msgeditor import edit_commit_message
1149
1011
        from bzrlib.status import show_status
1150
1012
        from cStringIO import StringIO
1151
1013
 
1152
 
        b, selected_list = branch_files(selected_list)
1153
 
        if message is None and not file:
 
1014
        b = Branch.open_containing('.')
 
1015
        if selected_list:
 
1016
            selected_list = [b.relpath(s) for s in selected_list]
 
1017
            
 
1018
        if not message and not file:
1154
1019
            catcher = StringIO()
1155
1020
            show_status(b, specific_files=selected_list,
1156
1021
                        to_file=catcher)
1157
1022
            message = edit_commit_message(catcher.getvalue())
1158
 
 
 
1023
            
1159
1024
            if message is None:
1160
1025
                raise BzrCommandError("please specify a commit message"
1161
1026
                                      " with either --message or --file")
1166
1031
            import codecs
1167
1032
            message = codecs.open(file, 'rt', bzrlib.user_encoding).read()
1168
1033
 
1169
 
        if message == "":
1170
 
                raise BzrCommandError("empty commit message specified")
1171
 
            
1172
1034
        try:
1173
 
            b.commit(message, specific_files=selected_list,
1174
 
                     allow_pointless=unchanged, strict=strict)
 
1035
            b.commit(message,
 
1036
                     specific_files=selected_list,
 
1037
                     allow_pointless=unchanged)
1175
1038
        except PointlessCommit:
1176
1039
            # FIXME: This should really happen before the file is read in;
1177
1040
            # perhaps prepare the commit; get the message; then actually commit
1178
1041
            raise BzrCommandError("no changes to commit",
1179
1042
                                  ["use --unchanged to commit anyhow"])
1180
 
        except ConflictsInTree:
1181
 
            raise BzrCommandError("Conflicts detected in working tree.  "
1182
 
                'Use "bzr conflicts" to list, "bzr resolve FILE" to resolve.')
1183
 
        except StrictCommitFailed:
1184
 
            raise BzrCommandError("Commit refused because there are unknown "
1185
 
                                  "files in the working tree.")
1186
1043
 
1187
1044
 
1188
1045
class cmd_check(Command):
1192
1049
    detect data corruption or bzr bugs.
1193
1050
    """
1194
1051
    takes_args = ['dir?']
1195
 
    takes_options = ['verbose']
1196
1052
 
1197
 
    def run(self, dir='.', verbose=False):
 
1053
    def run(self, dir='.'):
1198
1054
        from bzrlib.check import check
1199
 
        check(Branch.open_containing(dir)[0], verbose)
 
1055
 
 
1056
        check(Branch.open_containing(dir))
1200
1057
 
1201
1058
 
1202
1059
class cmd_scan_cache(Command):
1239
1096
    """Show bzr user id."""
1240
1097
    takes_options = ['email']
1241
1098
    
1242
 
    @display_command
1243
1099
    def run(self, email=False):
1244
1100
        try:
1245
 
            b = bzrlib.branch.Branch.open_containing('.')[0]
1246
 
            config = bzrlib.config.BranchConfig(b)
 
1101
            b = bzrlib.branch.Branch.open_containing('.')
1247
1102
        except NotBranchError:
1248
 
            config = bzrlib.config.GlobalConfig()
 
1103
            b = None
1249
1104
        
1250
1105
        if email:
1251
 
            print config.user_email()
 
1106
            print bzrlib.osutils.user_email(b)
1252
1107
        else:
1253
 
            print config.username()
 
1108
            print bzrlib.osutils.username(b)
1254
1109
 
1255
1110
 
1256
1111
class cmd_selftest(Command):
1257
 
    """Run internal test suite.
1258
 
    
1259
 
    This creates temporary test directories in the working directory,
1260
 
    but not existing data is affected.  These directories are deleted
1261
 
    if the tests pass, or left behind to help in debugging if they
1262
 
    fail.
1263
 
    
1264
 
    If arguments are given, they are regular expressions that say
1265
 
    which tests should run.
1266
 
    """
1267
 
    # TODO: --list should give a list of all available tests
 
1112
    """Run internal test suite"""
1268
1113
    hidden = True
1269
 
    takes_args = ['testspecs*']
1270
 
    takes_options = ['verbose', 
1271
 
                     Option('one', help='stop when one test fails'),
1272
 
                    ]
1273
 
 
1274
 
    def run(self, testspecs_list=None, verbose=False, one=False):
 
1114
    takes_options = ['verbose', 'pattern']
 
1115
    def run(self, verbose=False, pattern=".*"):
1275
1116
        import bzrlib.ui
1276
1117
        from bzrlib.selftest import selftest
1277
1118
        # we don't want progress meters from the tests to go to the
1281
1122
        bzrlib.trace.info('running tests...')
1282
1123
        try:
1283
1124
            bzrlib.ui.ui_factory = bzrlib.ui.SilentUIFactory()
1284
 
            if testspecs_list is not None:
1285
 
                pattern = '|'.join(testspecs_list)
1286
 
            else:
1287
 
                pattern = ".*"
1288
 
            result = selftest(verbose=verbose, 
1289
 
                              pattern=pattern,
1290
 
                              stop_on_failure=one)
 
1125
            result = selftest(verbose=verbose, pattern=pattern)
1291
1126
            if result:
1292
1127
                bzrlib.trace.info('tests passed')
1293
1128
            else:
1313
1148
 
1314
1149
class cmd_version(Command):
1315
1150
    """Show version of bzr."""
1316
 
    @display_command
1317
1151
    def run(self):
1318
1152
        show_version()
1319
1153
 
1320
1154
class cmd_rocks(Command):
1321
1155
    """Statement of optimism."""
1322
1156
    hidden = True
1323
 
    @display_command
1324
1157
    def run(self):
1325
1158
        print "it sure does!"
1326
1159
 
1327
1160
 
1328
1161
class cmd_find_merge_base(Command):
1329
1162
    """Find and print a base revision for merging two branches.
 
1163
 
 
1164
    TODO: Options to specify revisions on either side, as if
 
1165
          merging only part of the history.
1330
1166
    """
1331
 
    # TODO: Options to specify revisions on either side, as if
1332
 
    #       merging only part of the history.
1333
1167
    takes_args = ['branch', 'other']
1334
1168
    hidden = True
1335
1169
    
1336
 
    @display_command
1337
1170
    def run(self, branch, other):
1338
1171
        from bzrlib.revision import common_ancestor, MultipleRevisionSources
1339
1172
        
1340
 
        branch1 = Branch.open_containing(branch)[0]
1341
 
        branch2 = Branch.open_containing(other)[0]
 
1173
        branch1 = Branch.open_containing(branch)
 
1174
        branch2 = Branch.open_containing(other)
1342
1175
 
1343
1176
        history_1 = branch1.revision_history()
1344
1177
        history_2 = branch2.revision_history()
1393
1226
    --force is given.
1394
1227
    """
1395
1228
    takes_args = ['branch?']
1396
 
    takes_options = ['revision', 'force', 'merge-type', 'reprocess',
1397
 
                     Option('show-base', help="Show base revision text in "
1398
 
                            "conflicts")]
 
1229
    takes_options = ['revision', 'force', 'merge-type']
1399
1230
 
1400
 
    def run(self, branch=None, revision=None, force=False, merge_type=None,
1401
 
            show_base=False, reprocess=False):
 
1231
    def run(self, branch='.', revision=None, force=False, 
 
1232
            merge_type=None):
1402
1233
        from bzrlib.merge import merge
1403
1234
        from bzrlib.merge_core import ApplyMerge3
1404
1235
        if merge_type is None:
1405
1236
            merge_type = ApplyMerge3
1406
 
        if branch is None:
1407
 
            branch = Branch.open_containing('.')[0].get_parent()
1408
 
            if branch is None:
1409
 
                raise BzrCommandError("No merge location known or specified.")
1410
 
            else:
1411
 
                print "Using saved location: %s" % branch 
 
1237
 
1412
1238
        if revision is None or len(revision) < 1:
1413
1239
            base = [None, None]
1414
1240
            other = [branch, -1]
1415
1241
        else:
1416
1242
            if len(revision) == 1:
1417
1243
                base = [None, None]
1418
 
                other_branch = Branch.open_containing(branch)[0]
1419
 
                revno = revision[0].in_history(other_branch).revno
1420
 
                other = [branch, revno]
 
1244
                other = [branch, revision[0].in_history(branch).revno]
1421
1245
            else:
1422
1246
                assert len(revision) == 2
1423
1247
                if None in revision:
1424
1248
                    raise BzrCommandError(
1425
1249
                        "Merge doesn't permit that revision specifier.")
1426
 
                b = Branch.open_containing(branch)[0]
 
1250
                from bzrlib.branch import Branch
 
1251
                b = Branch.open(branch)
1427
1252
 
1428
1253
                base = [branch, revision[0].in_history(b).revno]
1429
1254
                other = [branch, revision[1].in_history(b).revno]
1430
1255
 
1431
1256
        try:
1432
 
            conflict_count = merge(other, base, check_clean=(not force),
1433
 
                                   merge_type=merge_type, reprocess=reprocess,
1434
 
                                   show_base=show_base)
1435
 
            if conflict_count != 0:
1436
 
                return 1
1437
 
            else:
1438
 
                return 0
 
1257
            merge(other, base, check_clean=(not force), merge_type=merge_type)
1439
1258
        except bzrlib.errors.AmbiguousBase, e:
1440
1259
            m = ("sorry, bzr can't determine the right merge base yet\n"
1441
1260
                 "candidates are:\n  "
1459
1278
 
1460
1279
    def run(self, revision=None, no_backup=False, file_list=None):
1461
1280
        from bzrlib.merge import merge
 
1281
        from bzrlib.branch import Branch
1462
1282
        from bzrlib.commands import parse_spec
1463
1283
 
1464
1284
        if file_list is not None:
1469
1289
        elif len(revision) != 1:
1470
1290
            raise BzrCommandError('bzr revert --revision takes exactly 1 argument')
1471
1291
        else:
1472
 
            b, file_list = branch_files(file_list)
 
1292
            b = Branch.open_containing('.')
1473
1293
            revno = revision[0].in_history(b).revno
1474
1294
        merge(('.', revno), parse_spec('.'),
1475
1295
              check_clean=False,
1477
1297
              backup_files=not no_backup,
1478
1298
              file_list=file_list)
1479
1299
        if not file_list:
1480
 
            Branch.open_containing('.')[0].set_pending_merges([])
 
1300
            Branch.open_containing('.').set_pending_merges([])
1481
1301
 
1482
1302
 
1483
1303
class cmd_assert_fail(Command):
1495
1315
    takes_args = ['topic?']
1496
1316
    aliases = ['?']
1497
1317
    
1498
 
    @display_command
1499
1318
    def run(self, topic=None, long=False):
1500
1319
        import help
1501
1320
        if topic is None and long:
1511
1330
    aliases = ['s-c']
1512
1331
    hidden = True
1513
1332
    
1514
 
    @display_command
1515
1333
    def run(self, context=None):
1516
1334
        import shellcomplete
1517
1335
        shellcomplete.shellcomplete(context)
1526
1344
    def run(self, from_branch, to_branch):
1527
1345
        from bzrlib.fetch import Fetcher
1528
1346
        from bzrlib.branch import Branch
1529
 
        from_b = Branch.open(from_branch)
1530
 
        to_b = Branch.open(to_branch)
1531
 
        from_b.lock_read()
1532
 
        try:
1533
 
            to_b.lock_write()
1534
 
            try:
1535
 
                Fetcher(to_b, from_b)
1536
 
            finally:
1537
 
                to_b.unlock()
1538
 
        finally:
1539
 
            from_b.unlock()
 
1347
        from_b = Branch(from_branch)
 
1348
        to_b = Branch(to_branch)
 
1349
        Fetcher(to_b, from_b)
 
1350
        
1540
1351
 
1541
1352
 
1542
1353
class cmd_missing(Command):
1551
1362
    # unknown options are parsed as booleans
1552
1363
    takes_options = ['verbose', 'quiet']
1553
1364
 
1554
 
    @display_command
1555
1365
    def run(self, remote=None, verbose=False, quiet=False):
1556
1366
        from bzrlib.errors import BzrCommandError
1557
1367
        from bzrlib.missing import show_missing
1559
1369
        if verbose and quiet:
1560
1370
            raise BzrCommandError('Cannot pass both quiet and verbose')
1561
1371
 
1562
 
        b = Branch.open_containing('.')[0]
 
1372
        b = Branch.open_containing('.')
1563
1373
        parent = b.get_parent()
1564
1374
        if remote is None:
1565
1375
            if parent is None:
1572
1382
            # We only update parent if it did not exist, missing
1573
1383
            # should not change the parent
1574
1384
            b.set_parent(remote)
1575
 
        br_remote = Branch.open_containing(remote)[0]
 
1385
        br_remote = Branch.open_containing(remote)
1576
1386
        return show_missing(b, br_remote, verbose=verbose, quiet=quiet)
1577
1387
 
1578
1388
 
1579
1389
class cmd_plugins(Command):
1580
1390
    """List plugins"""
1581
1391
    hidden = True
1582
 
    @display_command
1583
1392
    def run(self):
1584
1393
        import bzrlib.plugin
1585
1394
        from inspect import getdoc
1596
1405
                print '\t', d.split('\n')[0]
1597
1406
 
1598
1407
 
1599
 
class cmd_testament(Command):
1600
 
    """Show testament (signing-form) of a revision."""
1601
 
    takes_options = ['revision', 'long']
1602
 
    takes_args = ['branch?']
1603
 
    @display_command
1604
 
    def run(self, branch='.', revision=None, long=False):
1605
 
        from bzrlib.testament import Testament
1606
 
        b = Branch.open_containing(branch)[0]
1607
 
        b.lock_read()
1608
 
        try:
1609
 
            if revision is None:
1610
 
                rev_id = b.last_revision()
1611
 
            else:
1612
 
                rev_id = revision[0].in_history(b).rev_id
1613
 
            t = Testament.from_revision(b, rev_id)
1614
 
            if long:
1615
 
                sys.stdout.writelines(t.as_text_lines())
1616
 
            else:
1617
 
                sys.stdout.write(t.as_short_text())
1618
 
        finally:
1619
 
            b.unlock()
1620
 
 
1621
 
 
1622
 
class cmd_annotate(Command):
1623
 
    """Show the origin of each line in a file.
1624
 
 
1625
 
    This prints out the given file with an annotation on the left side
1626
 
    indicating which revision, author and date introduced the change.
1627
 
 
1628
 
    If the origin is the same for a run of consecutive lines, it is 
1629
 
    shown only at the top, unless the --all option is given.
1630
 
    """
1631
 
    # TODO: annotate directories; showing when each file was last changed
1632
 
    # TODO: annotate a previous version of a file
1633
 
    # TODO: if the working copy is modified, show annotations on that 
1634
 
    #       with new uncommitted lines marked
1635
 
    aliases = ['blame', 'praise']
1636
 
    takes_args = ['filename']
1637
 
    takes_options = [Option('all', help='show annotations on all lines'),
1638
 
                     Option('long', help='show date in annotations'),
1639
 
                     ]
1640
 
 
1641
 
    @display_command
1642
 
    def run(self, filename, all=False, long=False):
1643
 
        from bzrlib.annotate import annotate_file
1644
 
        b, relpath = Branch.open_containing(filename)
1645
 
        b.lock_read()
1646
 
        try:
1647
 
            tree = WorkingTree(b.base, b)
1648
 
            tree = b.revision_tree(b.last_revision())
1649
 
            file_id = tree.inventory.path2id(relpath)
1650
 
            file_version = tree.inventory[file_id].revision
1651
 
            annotate_file(b, file_version, file_id, long, all, sys.stdout)
1652
 
        finally:
1653
 
            b.unlock()
1654
 
 
1655
 
 
1656
 
class cmd_re_sign(Command):
1657
 
    """Create a digital signature for an existing revision."""
1658
 
    # TODO be able to replace existing ones.
1659
 
 
1660
 
    hidden = True # is this right ?
1661
 
    takes_args = ['revision_id?']
1662
 
    takes_options = ['revision']
1663
 
    
1664
 
    def run(self, revision_id=None, revision=None):
1665
 
        import bzrlib.config as config
1666
 
        import bzrlib.gpg as gpg
1667
 
        if revision_id is not None and revision is not None:
1668
 
            raise BzrCommandError('You can only supply one of revision_id or --revision')
1669
 
        if revision_id is None and revision is None:
1670
 
            raise BzrCommandError('You must supply either --revision or a revision_id')
1671
 
        b = Branch.open_containing('.')[0]
1672
 
        gpg_strategy = gpg.GPGStrategy(config.BranchConfig(b))
1673
 
        if revision_id is not None:
1674
 
            b.sign_revision(revision_id, gpg_strategy)
1675
 
        elif revision is not None:
1676
 
            if len(revision) == 1:
1677
 
                revno, rev_id = revision[0].in_history(b)
1678
 
                b.sign_revision(rev_id, gpg_strategy)
1679
 
            elif len(revision) == 2:
1680
 
                # are they both on rh- if so we can walk between them
1681
 
                # might be nice to have a range helper for arbitrary
1682
 
                # revision paths. hmm.
1683
 
                from_revno, from_revid = revision[0].in_history(b)
1684
 
                to_revno, to_revid = revision[1].in_history(b)
1685
 
                if to_revid is None:
1686
 
                    to_revno = b.revno()
1687
 
                if from_revno is None or to_revno is None:
1688
 
                    raise BzrCommandError('Cannot sign a range of non-revision-history revisions')
1689
 
                for revno in range(from_revno, to_revno + 1):
1690
 
                    b.sign_revision(b.get_rev_id(revno), gpg_strategy)
1691
 
            else:
1692
 
                raise BzrCommandError('Please supply either one revision, or a range.')
1693
 
 
1694
 
 
1695
 
# these get imported and then picked up by the scan for cmd_*
1696
 
# TODO: Some more consistent way to split command definitions across files;
1697
 
# we do need to load at least some information about them to know of 
1698
 
# aliases.
1699
 
from bzrlib.conflicts import cmd_resolve, cmd_conflicts