~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-19 17:53:37 UTC
  • mto: This revision was merged to the branch mainline in revision 4466.
  • Revision ID: john@arbash-meinel.com-20090619175337-uozt3bntdd48lh4z
Update time_graph to use X:1 ratios rather than 0.xxx ratios.
It is just easier to track now that the new code is much faster.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
20
20
 
21
21
from bzrlib.lazy_import import lazy_import
22
22
lazy_import(globals(), """
 
23
import codecs
23
24
import cStringIO
24
25
import sys
25
26
import time
30
31
    bundle,
31
32
    btree_index,
32
33
    bzrdir,
33
 
    directory_service,
34
34
    delta,
35
 
    config as _mod_config,
 
35
    config,
36
36
    errors,
37
37
    globbing,
38
38
    hooks,
43
43
    reconfigure,
44
44
    rename_map,
45
45
    revision as _mod_revision,
46
 
    static_tuple,
47
46
    symbol_versioning,
48
 
    timestamp,
49
47
    transport,
 
48
    tree as _mod_tree,
50
49
    ui,
51
50
    urlutils,
52
51
    views,
53
52
    )
54
53
from bzrlib.branch import Branch
55
54
from bzrlib.conflicts import ConflictList
56
 
from bzrlib.transport import memory
57
55
from bzrlib.revisionspec import RevisionSpec, RevisionInfo
58
56
from bzrlib.smtp_connection import SMTPConnection
59
57
from bzrlib.workingtree import WorkingTree
60
58
""")
61
59
 
62
 
from bzrlib.commands import (
63
 
    Command,
64
 
    builtin_command_registry,
65
 
    display_command,
66
 
    )
 
60
from bzrlib.commands import Command, display_command
67
61
from bzrlib.option import (
68
62
    ListOption,
69
63
    Option,
74
68
from bzrlib.trace import mutter, note, warning, is_quiet, get_verbosity_level
75
69
 
76
70
 
77
 
@symbol_versioning.deprecated_function(symbol_versioning.deprecated_in((2, 3, 0)))
78
71
def tree_files(file_list, default_branch=u'.', canonicalize=True,
79
72
    apply_view=True):
80
 
    return internal_tree_files(file_list, default_branch, canonicalize,
81
 
        apply_view)
 
73
    try:
 
74
        return internal_tree_files(file_list, default_branch, canonicalize,
 
75
            apply_view)
 
76
    except errors.FileInWrongBranch, e:
 
77
        raise errors.BzrCommandError("%s is not in the same branch as %s" %
 
78
                                     (e.path, file_list[0]))
82
79
 
83
80
 
84
81
def tree_files_for_add(file_list):
124
121
 
125
122
 
126
123
def _get_one_revision_tree(command_name, revisions, branch=None, tree=None):
127
 
    """Get a revision tree. Not suitable for commands that change the tree.
128
 
    
129
 
    Specifically, the basis tree in dirstate trees is coupled to the dirstate
130
 
    and doing a commit/uncommit/pull will at best fail due to changing the
131
 
    basis revision data.
132
 
 
133
 
    If tree is passed in, it should be already locked, for lifetime management
134
 
    of the trees internal cached state.
135
 
    """
136
124
    if branch is None:
137
125
        branch = tree.branch
138
126
    if revisions is None:
148
136
 
149
137
# XXX: Bad function name; should possibly also be a class method of
150
138
# WorkingTree rather than a function.
151
 
@symbol_versioning.deprecated_function(symbol_versioning.deprecated_in((2, 3, 0)))
152
139
def internal_tree_files(file_list, default_branch=u'.', canonicalize=True,
153
140
    apply_view=True):
154
141
    """Convert command-line paths to a WorkingTree and relative paths.
155
142
 
156
 
    Deprecated: use WorkingTree.open_containing_paths instead.
157
 
 
158
143
    This is typically used for command-line processors that take one or
159
144
    more filenames, and infer the workingtree that contains them.
160
145
 
170
155
 
171
156
    :return: workingtree, [relative_paths]
172
157
    """
173
 
    return WorkingTree.open_containing_paths(
174
 
        file_list, default_directory='.',
175
 
        canonicalize=True,
176
 
        apply_view=True)
 
158
    if file_list is None or len(file_list) == 0:
 
159
        tree = WorkingTree.open_containing(default_branch)[0]
 
160
        if tree.supports_views() and apply_view:
 
161
            view_files = tree.views.lookup_view()
 
162
            if view_files:
 
163
                file_list = view_files
 
164
                view_str = views.view_display_str(view_files)
 
165
                note("Ignoring files outside view. View is %s" % view_str)
 
166
        return tree, file_list
 
167
    tree = WorkingTree.open_containing(osutils.realpath(file_list[0]))[0]
 
168
    return tree, safe_relpath_files(tree, file_list, canonicalize,
 
169
        apply_view=apply_view)
 
170
 
 
171
 
 
172
def safe_relpath_files(tree, file_list, canonicalize=True, apply_view=True):
 
173
    """Convert file_list into a list of relpaths in tree.
 
174
 
 
175
    :param tree: A tree to operate on.
 
176
    :param file_list: A list of user provided paths or None.
 
177
    :param apply_view: if True and a view is set, apply it or check that
 
178
        specified files are within it
 
179
    :return: A list of relative paths.
 
180
    :raises errors.PathNotChild: When a provided path is in a different tree
 
181
        than tree.
 
182
    """
 
183
    if file_list is None:
 
184
        return None
 
185
    if tree.supports_views() and apply_view:
 
186
        view_files = tree.views.lookup_view()
 
187
    else:
 
188
        view_files = []
 
189
    new_list = []
 
190
    # tree.relpath exists as a "thunk" to osutils, but canonical_relpath
 
191
    # doesn't - fix that up here before we enter the loop.
 
192
    if canonicalize:
 
193
        fixer = lambda p: osutils.canonical_relpath(tree.basedir, p)
 
194
    else:
 
195
        fixer = tree.relpath
 
196
    for filename in file_list:
 
197
        try:
 
198
            relpath = fixer(osutils.dereference_path(filename))
 
199
            if  view_files and not osutils.is_inside_any(view_files, relpath):
 
200
                raise errors.FileOutsideView(filename, view_files)
 
201
            new_list.append(relpath)
 
202
        except errors.PathNotChild:
 
203
            raise errors.FileInWrongBranch(tree.branch, filename)
 
204
    return new_list
177
205
 
178
206
 
179
207
def _get_view_info_for_change_reporter(tree):
188
216
    return view_info
189
217
 
190
218
 
191
 
def _open_directory_or_containing_tree_or_branch(filename, directory):
192
 
    """Open the tree or branch containing the specified file, unless
193
 
    the --directory option is used to specify a different branch."""
194
 
    if directory is not None:
195
 
        return (None, Branch.open(directory), filename)
196
 
    return bzrdir.BzrDir.open_containing_tree_or_branch(filename)
197
 
 
198
 
 
199
219
# TODO: Make sure no commands unconditionally use the working directory as a
200
220
# branch.  If a filename argument is used, the first of them should be used to
201
221
# specify the branch.  (Perhaps this can be factored out into some kind of
203
223
# opens the branch?)
204
224
 
205
225
class cmd_status(Command):
206
 
    __doc__ = """Display status summary.
 
226
    """Display status summary.
207
227
 
208
228
    This reports on versioned and unknown files, reporting them
209
229
    grouped by state.  Possible states are:
229
249
    unknown
230
250
        Not versioned and not matching an ignore pattern.
231
251
 
232
 
    Additionally for directories, symlinks and files with an executable
233
 
    bit, Bazaar indicates their type using a trailing character: '/', '@'
234
 
    or '*' respectively.
235
 
 
236
252
    To see ignored files use 'bzr ignored'.  For details on the
237
253
    changes to file texts, use 'bzr diff'.
238
254
 
279
295
            raise errors.BzrCommandError('bzr status --revision takes exactly'
280
296
                                         ' one or two revision specifiers')
281
297
 
282
 
        tree, relfile_list = WorkingTree.open_containing_paths(file_list)
 
298
        tree, relfile_list = tree_files(file_list)
283
299
        # Avoid asking for specific files when that is not needed.
284
300
        if relfile_list == ['']:
285
301
            relfile_list = None
296
312
 
297
313
 
298
314
class cmd_cat_revision(Command):
299
 
    __doc__ = """Write out metadata for a revision.
 
315
    """Write out metadata for a revision.
300
316
 
301
317
    The revision to print can either be specified by a specific
302
318
    revision identifier, or you can use --revision.
304
320
 
305
321
    hidden = True
306
322
    takes_args = ['revision_id?']
307
 
    takes_options = ['directory', 'revision']
 
323
    takes_options = ['revision']
308
324
    # cat-revision is more for frontends so should be exact
309
325
    encoding = 'strict'
310
326
 
311
 
    def print_revision(self, revisions, revid):
312
 
        stream = revisions.get_record_stream([(revid,)], 'unordered', True)
313
 
        record = stream.next()
314
 
        if record.storage_kind == 'absent':
315
 
            raise errors.NoSuchRevision(revisions, revid)
316
 
        revtext = record.get_bytes_as('fulltext')
317
 
        self.outf.write(revtext.decode('utf-8'))
318
 
 
319
327
    @display_command
320
 
    def run(self, revision_id=None, revision=None, directory=u'.'):
 
328
    def run(self, revision_id=None, revision=None):
321
329
        if revision_id is not None and revision is not None:
322
330
            raise errors.BzrCommandError('You can only supply one of'
323
331
                                         ' revision_id or --revision')
324
332
        if revision_id is None and revision is None:
325
333
            raise errors.BzrCommandError('You must supply either'
326
334
                                         ' --revision or a revision_id')
327
 
        b = WorkingTree.open_containing(directory)[0].branch
328
 
 
329
 
        revisions = b.repository.revisions
330
 
        if revisions is None:
331
 
            raise errors.BzrCommandError('Repository %r does not support '
332
 
                'access to raw revision texts')
333
 
 
334
 
        b.repository.lock_read()
335
 
        try:
336
 
            # TODO: jam 20060112 should cat-revision always output utf-8?
337
 
            if revision_id is not None:
338
 
                revision_id = osutils.safe_revision_id(revision_id, warn=False)
339
 
                try:
340
 
                    self.print_revision(revisions, revision_id)
341
 
                except errors.NoSuchRevision:
342
 
                    msg = "The repository %s contains no revision %s." % (
343
 
                        b.repository.base, revision_id)
344
 
                    raise errors.BzrCommandError(msg)
345
 
            elif revision is not None:
346
 
                for rev in revision:
347
 
                    if rev is None:
348
 
                        raise errors.BzrCommandError(
349
 
                            'You cannot specify a NULL revision.')
350
 
                    rev_id = rev.as_revision_id(b)
351
 
                    self.print_revision(revisions, rev_id)
352
 
        finally:
353
 
            b.repository.unlock()
354
 
        
 
335
        b = WorkingTree.open_containing(u'.')[0].branch
 
336
 
 
337
        # TODO: jam 20060112 should cat-revision always output utf-8?
 
338
        if revision_id is not None:
 
339
            revision_id = osutils.safe_revision_id(revision_id, warn=False)
 
340
            try:
 
341
                self.outf.write(b.repository.get_revision_xml(revision_id).decode('utf-8'))
 
342
            except errors.NoSuchRevision:
 
343
                msg = "The repository %s contains no revision %s." % (b.repository.base,
 
344
                    revision_id)
 
345
                raise errors.BzrCommandError(msg)
 
346
        elif revision is not None:
 
347
            for rev in revision:
 
348
                if rev is None:
 
349
                    raise errors.BzrCommandError('You cannot specify a NULL'
 
350
                                                 ' revision.')
 
351
                rev_id = rev.as_revision_id(b)
 
352
                self.outf.write(b.repository.get_revision_xml(rev_id).decode('utf-8'))
 
353
 
355
354
 
356
355
class cmd_dump_btree(Command):
357
 
    __doc__ = """Dump the contents of a btree index file to stdout.
 
356
    """Dump the contents of a btree index file to stdout.
358
357
 
359
358
    PATH is a btree index file, it can be any URL. This includes things like
360
359
    .bzr/repository/pack-names, or .bzr/repository/indices/a34b3a...ca4a4.iix
424
423
        for node in bt.iter_all_entries():
425
424
            # Node is made up of:
426
425
            # (index, key, value, [references])
427
 
            try:
428
 
                refs = node[3]
429
 
            except IndexError:
430
 
                refs_as_tuples = None
431
 
            else:
432
 
                refs_as_tuples = static_tuple.as_tuples(refs)
433
 
            as_tuple = (tuple(node[1]), node[2], refs_as_tuples)
434
 
            self.outf.write('%s\n' % (as_tuple,))
 
426
            self.outf.write('%s\n' % (node[1:],))
435
427
 
436
428
 
437
429
class cmd_remove_tree(Command):
438
 
    __doc__ = """Remove the working tree from a given branch/checkout.
 
430
    """Remove the working tree from a given branch/checkout.
439
431
 
440
432
    Since a lightweight checkout is little more than a working tree
441
433
    this will refuse to run against one.
443
435
    To re-create the working tree, use "bzr checkout".
444
436
    """
445
437
    _see_also = ['checkout', 'working-trees']
446
 
    takes_args = ['location*']
 
438
    takes_args = ['location?']
447
439
    takes_options = [
448
440
        Option('force',
449
441
               help='Remove the working tree even if it has '
450
 
                    'uncommitted or shelved changes.'),
 
442
                    'uncommitted changes.'),
451
443
        ]
452
444
 
453
 
    def run(self, location_list, force=False):
454
 
        if not location_list:
455
 
            location_list=['.']
456
 
 
457
 
        for location in location_list:
458
 
            d = bzrdir.BzrDir.open(location)
459
 
            
460
 
            try:
461
 
                working = d.open_workingtree()
462
 
            except errors.NoWorkingTree:
463
 
                raise errors.BzrCommandError("No working tree to remove")
464
 
            except errors.NotLocalUrl:
465
 
                raise errors.BzrCommandError("You cannot remove the working tree"
466
 
                                             " of a remote path")
467
 
            if not force:
468
 
                if (working.has_changes()):
469
 
                    raise errors.UncommittedChanges(working)
470
 
                if working.get_shelf_manager().last_shelf() is not None:
471
 
                    raise errors.ShelvedChanges(working)
472
 
 
473
 
            if working.user_url != working.branch.user_url:
474
 
                raise errors.BzrCommandError("You cannot remove the working tree"
475
 
                                             " from a lightweight checkout")
476
 
 
477
 
            d.destroy_workingtree()
 
445
    def run(self, location='.', force=False):
 
446
        d = bzrdir.BzrDir.open(location)
 
447
 
 
448
        try:
 
449
            working = d.open_workingtree()
 
450
        except errors.NoWorkingTree:
 
451
            raise errors.BzrCommandError("No working tree to remove")
 
452
        except errors.NotLocalUrl:
 
453
            raise errors.BzrCommandError("You cannot remove the working tree of a "
 
454
                                         "remote path")
 
455
        if not force:
 
456
            changes = working.changes_from(working.basis_tree())
 
457
            if changes.has_changed():
 
458
                raise errors.UncommittedChanges(working)
 
459
 
 
460
        working_path = working.bzrdir.root_transport.base
 
461
        branch_path = working.branch.bzrdir.root_transport.base
 
462
        if working_path != branch_path:
 
463
            raise errors.BzrCommandError("You cannot remove the working tree from "
 
464
                                         "a lightweight checkout")
 
465
 
 
466
        d.destroy_workingtree()
478
467
 
479
468
 
480
469
class cmd_revno(Command):
481
 
    __doc__ = """Show current revision number.
 
470
    """Show current revision number.
482
471
 
483
472
    This is equal to the number of revisions on this branch.
484
473
    """
485
474
 
486
475
    _see_also = ['info']
487
476
    takes_args = ['location?']
488
 
    takes_options = [
489
 
        Option('tree', help='Show revno of working tree'),
490
 
        ]
491
477
 
492
478
    @display_command
493
 
    def run(self, tree=False, location=u'.'):
494
 
        if tree:
495
 
            try:
496
 
                wt = WorkingTree.open_containing(location)[0]
497
 
                self.add_cleanup(wt.lock_read().unlock)
498
 
            except (errors.NoWorkingTree, errors.NotLocalUrl):
499
 
                raise errors.NoWorkingTree(location)
500
 
            revid = wt.last_revision()
501
 
            try:
502
 
                revno_t = wt.branch.revision_id_to_dotted_revno(revid)
503
 
            except errors.NoSuchRevision:
504
 
                revno_t = ('???',)
505
 
            revno = ".".join(str(n) for n in revno_t)
506
 
        else:
507
 
            b = Branch.open_containing(location)[0]
508
 
            self.add_cleanup(b.lock_read().unlock)
509
 
            revno = b.revno()
510
 
        self.cleanup_now()
511
 
        self.outf.write(str(revno) + '\n')
 
479
    def run(self, location=u'.'):
 
480
        self.outf.write(str(Branch.open_containing(location)[0].revno()))
 
481
        self.outf.write('\n')
512
482
 
513
483
 
514
484
class cmd_revision_info(Command):
515
 
    __doc__ = """Show revision number and revision id for a given revision identifier.
 
485
    """Show revision number and revision id for a given revision identifier.
516
486
    """
517
487
    hidden = True
518
488
    takes_args = ['revision_info*']
519
489
    takes_options = [
520
490
        'revision',
521
 
        custom_help('directory',
 
491
        Option('directory',
522
492
            help='Branch to examine, '
523
 
                 'rather than the one containing the working directory.'),
524
 
        Option('tree', help='Show revno of working tree'),
 
493
                 'rather than the one containing the working directory.',
 
494
            short_name='d',
 
495
            type=unicode,
 
496
            ),
525
497
        ]
526
498
 
527
499
    @display_command
528
 
    def run(self, revision=None, directory=u'.', tree=False,
529
 
            revision_info_list=[]):
 
500
    def run(self, revision=None, directory=u'.', revision_info_list=[]):
530
501
 
531
 
        try:
532
 
            wt = WorkingTree.open_containing(directory)[0]
533
 
            b = wt.branch
534
 
            self.add_cleanup(wt.lock_read().unlock)
535
 
        except (errors.NoWorkingTree, errors.NotLocalUrl):
536
 
            wt = None
537
 
            b = Branch.open_containing(directory)[0]
538
 
            self.add_cleanup(b.lock_read().unlock)
539
 
        revision_ids = []
 
502
        revs = []
540
503
        if revision is not None:
541
 
            revision_ids.extend(rev.as_revision_id(b) for rev in revision)
 
504
            revs.extend(revision)
542
505
        if revision_info_list is not None:
543
 
            for rev_str in revision_info_list:
544
 
                rev_spec = RevisionSpec.from_string(rev_str)
545
 
                revision_ids.append(rev_spec.as_revision_id(b))
546
 
        # No arguments supplied, default to the last revision
547
 
        if len(revision_ids) == 0:
548
 
            if tree:
549
 
                if wt is None:
550
 
                    raise errors.NoWorkingTree(directory)
551
 
                revision_ids.append(wt.last_revision())
552
 
            else:
553
 
                revision_ids.append(b.last_revision())
554
 
 
555
 
        revinfos = []
556
 
        maxlen = 0
557
 
        for revision_id in revision_ids:
 
506
            for rev in revision_info_list:
 
507
                revs.append(RevisionSpec.from_string(rev))
 
508
 
 
509
        b = Branch.open_containing(directory)[0]
 
510
 
 
511
        if len(revs) == 0:
 
512
            revs.append(RevisionSpec.from_string('-1'))
 
513
 
 
514
        for rev in revs:
 
515
            revision_id = rev.as_revision_id(b)
558
516
            try:
559
 
                dotted_revno = b.revision_id_to_dotted_revno(revision_id)
560
 
                revno = '.'.join(str(i) for i in dotted_revno)
 
517
                revno = '%4d' % (b.revision_id_to_revno(revision_id))
561
518
            except errors.NoSuchRevision:
562
 
                revno = '???'
563
 
            maxlen = max(maxlen, len(revno))
564
 
            revinfos.append([revno, revision_id])
565
 
 
566
 
        self.cleanup_now()
567
 
        for ri in revinfos:
568
 
            self.outf.write('%*s %s\n' % (maxlen, ri[0], ri[1]))
 
519
                dotted_map = b.get_revision_id_to_revno_map()
 
520
                revno = '.'.join(str(i) for i in dotted_map[revision_id])
 
521
            print '%s %s' % (revno, revision_id)
569
522
 
570
523
 
571
524
class cmd_add(Command):
572
 
    __doc__ = """Add specified files or directories.
 
525
    """Add specified files or directories.
573
526
 
574
527
    In non-recursive mode, all the named items are added, regardless
575
528
    of whether they were previously ignored.  A warning is given if
601
554
    branches that will be merged later (without showing the two different
602
555
    adds as a conflict). It is also useful when merging another project
603
556
    into a subdirectory of this one.
604
 
    
605
 
    Any files matching patterns in the ignore list will not be added
606
 
    unless they are explicitly mentioned.
607
557
    """
608
558
    takes_args = ['file*']
609
559
    takes_options = [
617
567
               help='Lookup file ids from this tree.'),
618
568
        ]
619
569
    encoding_type = 'replace'
620
 
    _see_also = ['remove', 'ignore']
 
570
    _see_also = ['remove']
621
571
 
622
572
    def run(self, file_list, no_recurse=False, dry_run=False, verbose=False,
623
573
            file_ids_from=None):
640
590
                should_print=(not is_quiet()))
641
591
 
642
592
        if base_tree:
643
 
            self.add_cleanup(base_tree.lock_read().unlock)
644
 
        tree, file_list = tree_files_for_add(file_list)
645
 
        added, ignored = tree.smart_add(file_list, not
646
 
            no_recurse, action=action, save=not dry_run)
647
 
        self.cleanup_now()
 
593
            base_tree.lock_read()
 
594
        try:
 
595
            file_list = self._maybe_expand_globs(file_list)
 
596
            tree, file_list = tree_files_for_add(file_list)
 
597
            added, ignored = tree.smart_add(file_list, not
 
598
                no_recurse, action=action, save=not dry_run)
 
599
        finally:
 
600
            if base_tree is not None:
 
601
                base_tree.unlock()
648
602
        if len(ignored) > 0:
649
603
            if verbose:
650
604
                for glob in sorted(ignored.keys()):
651
605
                    for path in ignored[glob]:
652
606
                        self.outf.write("ignored %s matching \"%s\"\n"
653
607
                                        % (path, glob))
 
608
            else:
 
609
                match_len = 0
 
610
                for glob, paths in ignored.items():
 
611
                    match_len += len(paths)
 
612
                self.outf.write("ignored %d file(s).\n" % match_len)
 
613
            self.outf.write("If you wish to add ignored files, "
 
614
                            "please add them explicitly by name. "
 
615
                            "(\"bzr ignored\" gives a list)\n")
654
616
 
655
617
 
656
618
class cmd_mkdir(Command):
657
 
    __doc__ = """Create a new versioned directory.
 
619
    """Create a new versioned directory.
658
620
 
659
621
    This is equivalent to creating the directory and then adding it.
660
622
    """
664
626
 
665
627
    def run(self, dir_list):
666
628
        for d in dir_list:
 
629
            os.mkdir(d)
667
630
            wt, dd = WorkingTree.open_containing(d)
668
 
            base = os.path.dirname(dd)
669
 
            id = wt.path2id(base)
670
 
            if id != None:
671
 
                os.mkdir(d)
672
 
                wt.add([dd])
673
 
                self.outf.write('added %s\n' % d)
674
 
            else:
675
 
                raise errors.NotVersionedError(path=base)
 
631
            wt.add([dd])
 
632
            self.outf.write('added %s\n' % d)
676
633
 
677
634
 
678
635
class cmd_relpath(Command):
679
 
    __doc__ = """Show path of a file relative to root"""
 
636
    """Show path of a file relative to root"""
680
637
 
681
638
    takes_args = ['filename']
682
639
    hidden = True
691
648
 
692
649
 
693
650
class cmd_inventory(Command):
694
 
    __doc__ = """Show inventory of the current working copy or a revision.
 
651
    """Show inventory of the current working copy or a revision.
695
652
 
696
653
    It is possible to limit the output to a particular entry
697
654
    type using the --kind option.  For example: --kind file.
717
674
            raise errors.BzrCommandError('invalid kind %r specified' % (kind,))
718
675
 
719
676
        revision = _get_one_revision('inventory', revision)
720
 
        work_tree, file_list = WorkingTree.open_containing_paths(file_list)
721
 
        self.add_cleanup(work_tree.lock_read().unlock)
722
 
        if revision is not None:
723
 
            tree = revision.as_tree(work_tree.branch)
724
 
 
725
 
            extra_trees = [work_tree]
726
 
            self.add_cleanup(tree.lock_read().unlock)
727
 
        else:
728
 
            tree = work_tree
729
 
            extra_trees = []
730
 
 
731
 
        if file_list is not None:
732
 
            file_ids = tree.paths2ids(file_list, trees=extra_trees,
733
 
                                      require_versioned=True)
734
 
            # find_ids_across_trees may include some paths that don't
735
 
            # exist in 'tree'.
736
 
            entries = sorted((tree.id2path(file_id), tree.inventory[file_id])
737
 
                             for file_id in file_ids if file_id in tree)
738
 
        else:
739
 
            entries = tree.inventory.entries()
740
 
 
741
 
        self.cleanup_now()
 
677
        work_tree, file_list = tree_files(file_list)
 
678
        work_tree.lock_read()
 
679
        try:
 
680
            if revision is not None:
 
681
                tree = revision.as_tree(work_tree.branch)
 
682
 
 
683
                extra_trees = [work_tree]
 
684
                tree.lock_read()
 
685
            else:
 
686
                tree = work_tree
 
687
                extra_trees = []
 
688
 
 
689
            if file_list is not None:
 
690
                file_ids = tree.paths2ids(file_list, trees=extra_trees,
 
691
                                          require_versioned=True)
 
692
                # find_ids_across_trees may include some paths that don't
 
693
                # exist in 'tree'.
 
694
                entries = sorted((tree.id2path(file_id), tree.inventory[file_id])
 
695
                                 for file_id in file_ids if file_id in tree)
 
696
            else:
 
697
                entries = tree.inventory.entries()
 
698
        finally:
 
699
            tree.unlock()
 
700
            if tree is not work_tree:
 
701
                work_tree.unlock()
 
702
 
742
703
        for path, entry in entries:
743
704
            if kind and kind != entry.kind:
744
705
                continue
750
711
 
751
712
 
752
713
class cmd_mv(Command):
753
 
    __doc__ = """Move or rename a file.
 
714
    """Move or rename a file.
754
715
 
755
716
    :Usage:
756
717
        bzr mv OLDNAME NEWNAME
788
749
            names_list = []
789
750
        if len(names_list) < 2:
790
751
            raise errors.BzrCommandError("missing file argument")
791
 
        tree, rel_names = WorkingTree.open_containing_paths(names_list, canonicalize=False)
792
 
        self.add_cleanup(tree.lock_tree_write().unlock)
793
 
        self._run(tree, names_list, rel_names, after)
 
752
        tree, rel_names = tree_files(names_list, canonicalize=False)
 
753
        tree.lock_write()
 
754
        try:
 
755
            self._run(tree, names_list, rel_names, after)
 
756
        finally:
 
757
            tree.unlock()
794
758
 
795
759
    def run_auto(self, names_list, after, dry_run):
796
760
        if names_list is not None and len(names_list) > 1:
799
763
        if after:
800
764
            raise errors.BzrCommandError('--after cannot be specified with'
801
765
                                         ' --auto.')
802
 
        work_tree, file_list = WorkingTree.open_containing_paths(
803
 
            names_list, default_directory='.')
804
 
        self.add_cleanup(work_tree.lock_tree_write().unlock)
805
 
        rename_map.RenameMap.guess_renames(work_tree, dry_run)
 
766
        work_tree, file_list = tree_files(names_list, default_branch='.')
 
767
        work_tree.lock_write()
 
768
        try:
 
769
            rename_map.RenameMap.guess_renames(work_tree, dry_run)
 
770
        finally:
 
771
            work_tree.unlock()
806
772
 
807
773
    def _run(self, tree, names_list, rel_names, after):
808
774
        into_existing = osutils.isdir(names_list[-1])
829
795
            # All entries reference existing inventory items, so fix them up
830
796
            # for cicp file-systems.
831
797
            rel_names = tree.get_canonical_inventory_paths(rel_names)
832
 
            for src, dest in tree.move(rel_names[:-1], rel_names[-1], after=after):
833
 
                if not is_quiet():
834
 
                    self.outf.write("%s => %s\n" % (src, dest))
 
798
            for pair in tree.move(rel_names[:-1], rel_names[-1], after=after):
 
799
                self.outf.write("%s => %s\n" % pair)
835
800
        else:
836
801
            if len(names_list) != 2:
837
802
                raise errors.BzrCommandError('to mv multiple files the'
881
846
            dest = osutils.pathjoin(dest_parent, dest_tail)
882
847
            mutter("attempting to move %s => %s", src, dest)
883
848
            tree.rename_one(src, dest, after=after)
884
 
            if not is_quiet():
885
 
                self.outf.write("%s => %s\n" % (src, dest))
 
849
            self.outf.write("%s => %s\n" % (src, dest))
886
850
 
887
851
 
888
852
class cmd_pull(Command):
889
 
    __doc__ = """Turn this branch into a mirror of another branch.
 
853
    """Turn this branch into a mirror of another branch.
890
854
 
891
 
    By default, this command only works on branches that have not diverged.
892
 
    Branches are considered diverged if the destination branch's most recent 
893
 
    commit is one that has not been merged (directly or indirectly) into the 
894
 
    parent.
 
855
    This command only works on branches that have not diverged.  Branches are
 
856
    considered diverged if the destination branch's most recent commit is one
 
857
    that has not been merged (directly or indirectly) into the parent.
895
858
 
896
859
    If branches have diverged, you can use 'bzr merge' to integrate the changes
897
860
    from one into the other.  Once one branch has merged, the other should
898
861
    be able to pull it again.
899
862
 
900
 
    If you want to replace your local changes and just want your branch to
901
 
    match the remote one, use pull --overwrite. This will work even if the two
902
 
    branches have diverged.
 
863
    If you want to forget your local changes and just update your branch to
 
864
    match the remote one, use pull --overwrite.
903
865
 
904
866
    If there is no default location set, the first pull will set it.  After
905
867
    that, you can omit the location to use the default.  To change the
915
877
    takes_options = ['remember', 'overwrite', 'revision',
916
878
        custom_help('verbose',
917
879
            help='Show logs of pulled revisions.'),
918
 
        custom_help('directory',
 
880
        Option('directory',
919
881
            help='Branch to pull into, '
920
 
                 'rather than the one containing the working directory.'),
 
882
                 'rather than the one containing the working directory.',
 
883
            short_name='d',
 
884
            type=unicode,
 
885
            ),
921
886
        Option('local',
922
887
            help="Perform a local pull in a bound "
923
888
                 "branch.  Local pulls are not applied to "
938
903
        try:
939
904
            tree_to = WorkingTree.open_containing(directory)[0]
940
905
            branch_to = tree_to.branch
941
 
            self.add_cleanup(tree_to.lock_write().unlock)
942
906
        except errors.NoWorkingTree:
943
907
            tree_to = None
944
908
            branch_to = Branch.open_containing(directory)[0]
945
 
            self.add_cleanup(branch_to.lock_write().unlock)
946
 
 
 
909
        
947
910
        if local and not branch_to.get_bound_location():
948
911
            raise errors.LocalRequiresBoundBranch()
949
912
 
979
942
        else:
980
943
            branch_from = Branch.open(location,
981
944
                possible_transports=possible_transports)
982
 
            self.add_cleanup(branch_from.lock_read().unlock)
983
945
 
984
946
            if branch_to.get_parent() is None or remember:
985
947
                branch_to.set_parent(branch_from.base)
986
948
 
987
 
        if revision is not None:
988
 
            revision_id = revision.as_revision_id(branch_from)
989
 
 
990
 
        if tree_to is not None:
991
 
            view_info = _get_view_info_for_change_reporter(tree_to)
992
 
            change_reporter = delta._ChangeReporter(
993
 
                unversioned_filter=tree_to.is_ignored,
994
 
                view_info=view_info)
995
 
            result = tree_to.pull(
996
 
                branch_from, overwrite, revision_id, change_reporter,
997
 
                possible_transports=possible_transports, local=local)
998
 
        else:
999
 
            result = branch_to.pull(
1000
 
                branch_from, overwrite, revision_id, local=local)
1001
 
 
1002
 
        result.report(self.outf)
1003
 
        if verbose and result.old_revid != result.new_revid:
1004
 
            log.show_branch_change(
1005
 
                branch_to, self.outf, result.old_revno,
1006
 
                result.old_revid)
 
949
        if branch_from is not branch_to:
 
950
            branch_from.lock_read()
 
951
        try:
 
952
            if revision is not None:
 
953
                revision_id = revision.as_revision_id(branch_from)
 
954
 
 
955
            branch_to.lock_write()
 
956
            try:
 
957
                if tree_to is not None:
 
958
                    view_info = _get_view_info_for_change_reporter(tree_to)
 
959
                    change_reporter = delta._ChangeReporter(
 
960
                        unversioned_filter=tree_to.is_ignored,
 
961
                        view_info=view_info)
 
962
                    result = tree_to.pull(
 
963
                        branch_from, overwrite, revision_id, change_reporter,
 
964
                        possible_transports=possible_transports, local=local)
 
965
                else:
 
966
                    result = branch_to.pull(
 
967
                        branch_from, overwrite, revision_id, local=local)
 
968
 
 
969
                result.report(self.outf)
 
970
                if verbose and result.old_revid != result.new_revid:
 
971
                    log.show_branch_change(
 
972
                        branch_to, self.outf, result.old_revno,
 
973
                        result.old_revid)
 
974
            finally:
 
975
                branch_to.unlock()
 
976
        finally:
 
977
            if branch_from is not branch_to:
 
978
                branch_from.unlock()
1007
979
 
1008
980
 
1009
981
class cmd_push(Command):
1010
 
    __doc__ = """Update a mirror of this branch.
 
982
    """Update a mirror of this branch.
1011
983
 
1012
984
    The target branch will not have its working tree populated because this
1013
985
    is both expensive, and is not supported on remote file systems.
1037
1009
        Option('create-prefix',
1038
1010
               help='Create the path leading up to the branch '
1039
1011
                    'if it does not already exist.'),
1040
 
        custom_help('directory',
 
1012
        Option('directory',
1041
1013
            help='Branch to push from, '
1042
 
                 'rather than the one containing the working directory.'),
 
1014
                 'rather than the one containing the working directory.',
 
1015
            short_name='d',
 
1016
            type=unicode,
 
1017
            ),
1043
1018
        Option('use-existing-dir',
1044
1019
               help='By default push will fail if the target'
1045
1020
                    ' directory exists, but does not already'
1055
1030
            type=unicode),
1056
1031
        Option('strict',
1057
1032
               help='Refuse to push if there are uncommitted changes in'
1058
 
               ' the working tree, --no-strict disables the check.'),
 
1033
               ' the working tree.'),
1059
1034
        ]
1060
1035
    takes_args = ['location?']
1061
1036
    encoding_type = 'replace'
1069
1044
        if directory is None:
1070
1045
            directory = '.'
1071
1046
        # Get the source branch
1072
 
        (tree, br_from,
1073
 
         _unused) = bzrdir.BzrDir.open_containing_tree_or_branch(directory)
 
1047
        tree, br_from = bzrdir.BzrDir.open_tree_or_branch(directory)
 
1048
        if strict is None:
 
1049
            strict = br_from.get_config().get_user_option('push_strict')
 
1050
            if strict is not None:
 
1051
                # FIXME: This should be better supported by config
 
1052
                # -- vila 20090611
 
1053
                bools = dict(yes=True, no=False, on=True, off=False,
 
1054
                             true=True, false=False)
 
1055
                try:
 
1056
                    strict = bools[strict.lower()]
 
1057
                except KeyError:
 
1058
                    strict = None
 
1059
        if strict:
 
1060
            changes = tree.changes_from(tree.basis_tree())
 
1061
            if changes.has_changed():
 
1062
                raise errors.UncommittedChanges(tree)
1074
1063
        # Get the tip's revision_id
1075
1064
        revision = _get_one_revision('push', revision)
1076
1065
        if revision is not None:
1077
1066
            revision_id = revision.in_history(br_from).rev_id
1078
1067
        else:
1079
1068
            revision_id = None
1080
 
        if tree is not None and revision_id is None:
1081
 
            tree.check_changed_or_out_of_date(
1082
 
                strict, 'push_strict',
1083
 
                more_error='Use --no-strict to force the push.',
1084
 
                more_warning='Uncommitted changes will not be pushed.')
 
1069
 
1085
1070
        # Get the stacked_on branch, if any
1086
1071
        if stacked_on is not None:
1087
1072
            stacked_on = urlutils.normalize_url(stacked_on)
1119
1104
 
1120
1105
 
1121
1106
class cmd_branch(Command):
1122
 
    __doc__ = """Create a new branch that is a copy of an existing branch.
 
1107
    """Create a new branch that is a copy of an existing branch.
1123
1108
 
1124
1109
    If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will
1125
1110
    be used.  In other words, "branch ../foo/bar" will attempt to create ./bar.
1134
1119
 
1135
1120
    _see_also = ['checkout']
1136
1121
    takes_args = ['from_location', 'to_location?']
1137
 
    takes_options = ['revision',
1138
 
        Option('hardlink', help='Hard-link working tree files where possible.'),
1139
 
        Option('files-from', type=str,
1140
 
               help="Get file contents from this tree."),
 
1122
    takes_options = ['revision', Option('hardlink',
 
1123
        help='Hard-link working tree files where possible.'),
1141
1124
        Option('no-tree',
1142
1125
            help="Create a branch without a working-tree."),
1143
 
        Option('switch',
1144
 
            help="Switch the checkout in the current directory "
1145
 
                 "to the new branch."),
1146
1126
        Option('stacked',
1147
1127
            help='Create a stacked branch referring to the source branch. '
1148
1128
                'The new branch will depend on the availability of the source '
1149
1129
                'branch for all operations.'),
1150
1130
        Option('standalone',
1151
1131
               help='Do not use a shared repository, even if available.'),
1152
 
        Option('use-existing-dir',
1153
 
               help='By default branch will fail if the target'
1154
 
                    ' directory exists, but does not already'
1155
 
                    ' have a control directory.  This flag will'
1156
 
                    ' allow branch to proceed.'),
1157
 
        Option('bind',
1158
 
            help="Bind new branch to from location."),
1159
1132
        ]
1160
1133
    aliases = ['get', 'clone']
1161
1134
 
1162
1135
    def run(self, from_location, to_location=None, revision=None,
1163
 
            hardlink=False, stacked=False, standalone=False, no_tree=False,
1164
 
            use_existing_dir=False, switch=False, bind=False,
1165
 
            files_from=None):
1166
 
        from bzrlib import switch as _mod_switch
 
1136
            hardlink=False, stacked=False, standalone=False, no_tree=False):
1167
1137
        from bzrlib.tag import _merge_tags_if_possible
 
1138
 
1168
1139
        accelerator_tree, br_from = bzrdir.BzrDir.open_tree_or_branch(
1169
1140
            from_location)
1170
 
        if not (hardlink or files_from):
1171
 
            # accelerator_tree is usually slower because you have to read N
1172
 
            # files (no readahead, lots of seeks, etc), but allow the user to
1173
 
            # explicitly request it
 
1141
        if (accelerator_tree is not None and
 
1142
            accelerator_tree.supports_content_filtering()):
1174
1143
            accelerator_tree = None
1175
 
        if files_from is not None and files_from != from_location:
1176
 
            accelerator_tree = WorkingTree.open(files_from)
1177
1144
        revision = _get_one_revision('branch', revision)
1178
 
        self.add_cleanup(br_from.lock_read().unlock)
1179
 
        if revision is not None:
1180
 
            revision_id = revision.as_revision_id(br_from)
1181
 
        else:
1182
 
            # FIXME - wt.last_revision, fallback to branch, fall back to
1183
 
            # None or perhaps NULL_REVISION to mean copy nothing
1184
 
            # RBC 20060209
1185
 
            revision_id = br_from.last_revision()
1186
 
        if to_location is None:
1187
 
            to_location = urlutils.derive_to_location(from_location)
1188
 
        to_transport = transport.get_transport(to_location)
 
1145
        br_from.lock_read()
1189
1146
        try:
1190
 
            to_transport.mkdir('.')
1191
 
        except errors.FileExists:
1192
 
            if not use_existing_dir:
1193
 
                raise errors.BzrCommandError('Target directory "%s" '
1194
 
                    'already exists.' % to_location)
 
1147
            if revision is not None:
 
1148
                revision_id = revision.as_revision_id(br_from)
1195
1149
            else:
1196
 
                try:
1197
 
                    bzrdir.BzrDir.open_from_transport(to_transport)
1198
 
                except errors.NotBranchError:
1199
 
                    pass
1200
 
                else:
1201
 
                    raise errors.AlreadyBranchError(to_location)
1202
 
        except errors.NoSuchFile:
1203
 
            raise errors.BzrCommandError('Parent of "%s" does not exist.'
1204
 
                                         % to_location)
1205
 
        try:
1206
 
            # preserve whatever source format we have.
1207
 
            dir = br_from.bzrdir.sprout(to_transport.base, revision_id,
1208
 
                                        possible_transports=[to_transport],
1209
 
                                        accelerator_tree=accelerator_tree,
1210
 
                                        hardlink=hardlink, stacked=stacked,
1211
 
                                        force_new_repo=standalone,
1212
 
                                        create_tree_if_local=not no_tree,
1213
 
                                        source_branch=br_from)
1214
 
            branch = dir.open_branch()
1215
 
        except errors.NoSuchRevision:
1216
 
            to_transport.delete_tree('.')
1217
 
            msg = "The branch %s has no revision %s." % (from_location,
1218
 
                revision)
1219
 
            raise errors.BzrCommandError(msg)
1220
 
        _merge_tags_if_possible(br_from, branch)
1221
 
        # If the source branch is stacked, the new branch may
1222
 
        # be stacked whether we asked for that explicitly or not.
1223
 
        # We therefore need a try/except here and not just 'if stacked:'
1224
 
        try:
1225
 
            note('Created new stacked branch referring to %s.' %
1226
 
                branch.get_stacked_on_url())
1227
 
        except (errors.NotStacked, errors.UnstackableBranchFormat,
1228
 
            errors.UnstackableRepositoryFormat), e:
1229
 
            note('Branched %d revision(s).' % branch.revno())
1230
 
        if bind:
1231
 
            # Bind to the parent
1232
 
            parent_branch = Branch.open(from_location)
1233
 
            branch.bind(parent_branch)
1234
 
            note('New branch bound to %s' % from_location)
1235
 
        if switch:
1236
 
            # Switch to the new branch
1237
 
            wt, _ = WorkingTree.open_containing('.')
1238
 
            _mod_switch.switch(wt.bzrdir, branch)
1239
 
            note('Switched to branch: %s',
1240
 
                urlutils.unescape_for_display(branch.base, 'utf-8'))
 
1150
                # FIXME - wt.last_revision, fallback to branch, fall back to
 
1151
                # None or perhaps NULL_REVISION to mean copy nothing
 
1152
                # RBC 20060209
 
1153
                revision_id = br_from.last_revision()
 
1154
            if to_location is None:
 
1155
                to_location = urlutils.derive_to_location(from_location)
 
1156
            to_transport = transport.get_transport(to_location)
 
1157
            try:
 
1158
                to_transport.mkdir('.')
 
1159
            except errors.FileExists:
 
1160
                raise errors.BzrCommandError('Target directory "%s" already'
 
1161
                                             ' exists.' % to_location)
 
1162
            except errors.NoSuchFile:
 
1163
                raise errors.BzrCommandError('Parent of "%s" does not exist.'
 
1164
                                             % to_location)
 
1165
            try:
 
1166
                # preserve whatever source format we have.
 
1167
                dir = br_from.bzrdir.sprout(to_transport.base, revision_id,
 
1168
                                            possible_transports=[to_transport],
 
1169
                                            accelerator_tree=accelerator_tree,
 
1170
                                            hardlink=hardlink, stacked=stacked,
 
1171
                                            force_new_repo=standalone,
 
1172
                                            create_tree_if_local=not no_tree,
 
1173
                                            source_branch=br_from)
 
1174
                branch = dir.open_branch()
 
1175
            except errors.NoSuchRevision:
 
1176
                to_transport.delete_tree('.')
 
1177
                msg = "The branch %s has no revision %s." % (from_location,
 
1178
                    revision)
 
1179
                raise errors.BzrCommandError(msg)
 
1180
            _merge_tags_if_possible(br_from, branch)
 
1181
            # If the source branch is stacked, the new branch may
 
1182
            # be stacked whether we asked for that explicitly or not.
 
1183
            # We therefore need a try/except here and not just 'if stacked:'
 
1184
            try:
 
1185
                note('Created new stacked branch referring to %s.' %
 
1186
                    branch.get_stacked_on_url())
 
1187
            except (errors.NotStacked, errors.UnstackableBranchFormat,
 
1188
                errors.UnstackableRepositoryFormat), e:
 
1189
                note('Branched %d revision(s).' % branch.revno())
 
1190
        finally:
 
1191
            br_from.unlock()
1241
1192
 
1242
1193
 
1243
1194
class cmd_checkout(Command):
1244
 
    __doc__ = """Create a new checkout of an existing branch.
 
1195
    """Create a new checkout of an existing branch.
1245
1196
 
1246
1197
    If BRANCH_LOCATION is omitted, checkout will reconstitute a working tree for
1247
1198
    the branch found in '.'. This is useful if you have removed the working tree
1286
1237
            to_location = branch_location
1287
1238
        accelerator_tree, source = bzrdir.BzrDir.open_tree_or_branch(
1288
1239
            branch_location)
1289
 
        if not (hardlink or files_from):
1290
 
            # accelerator_tree is usually slower because you have to read N
1291
 
            # files (no readahead, lots of seeks, etc), but allow the user to
1292
 
            # explicitly request it
1293
 
            accelerator_tree = None
1294
1240
        revision = _get_one_revision('checkout', revision)
1295
 
        if files_from is not None and files_from != branch_location:
 
1241
        if files_from is not None:
1296
1242
            accelerator_tree = WorkingTree.open(files_from)
1297
1243
        if revision is not None:
1298
1244
            revision_id = revision.as_revision_id(source)
1315
1261
 
1316
1262
 
1317
1263
class cmd_renames(Command):
1318
 
    __doc__ = """Show list of renamed files.
 
1264
    """Show list of renamed files.
1319
1265
    """
1320
1266
    # TODO: Option to show renames between two historical versions.
1321
1267
 
1326
1272
    @display_command
1327
1273
    def run(self, dir=u'.'):
1328
1274
        tree = WorkingTree.open_containing(dir)[0]
1329
 
        self.add_cleanup(tree.lock_read().unlock)
1330
 
        new_inv = tree.inventory
1331
 
        old_tree = tree.basis_tree()
1332
 
        self.add_cleanup(old_tree.lock_read().unlock)
1333
 
        old_inv = old_tree.inventory
1334
 
        renames = []
1335
 
        iterator = tree.iter_changes(old_tree, include_unchanged=True)
1336
 
        for f, paths, c, v, p, n, k, e in iterator:
1337
 
            if paths[0] == paths[1]:
1338
 
                continue
1339
 
            if None in (paths):
1340
 
                continue
1341
 
            renames.append(paths)
1342
 
        renames.sort()
1343
 
        for old_name, new_name in renames:
1344
 
            self.outf.write("%s => %s\n" % (old_name, new_name))
 
1275
        tree.lock_read()
 
1276
        try:
 
1277
            new_inv = tree.inventory
 
1278
            old_tree = tree.basis_tree()
 
1279
            old_tree.lock_read()
 
1280
            try:
 
1281
                old_inv = old_tree.inventory
 
1282
                renames = []
 
1283
                iterator = tree.iter_changes(old_tree, include_unchanged=True)
 
1284
                for f, paths, c, v, p, n, k, e in iterator:
 
1285
                    if paths[0] == paths[1]:
 
1286
                        continue
 
1287
                    if None in (paths):
 
1288
                        continue
 
1289
                    renames.append(paths)
 
1290
                renames.sort()
 
1291
                for old_name, new_name in renames:
 
1292
                    self.outf.write("%s => %s\n" % (old_name, new_name))
 
1293
            finally:
 
1294
                old_tree.unlock()
 
1295
        finally:
 
1296
            tree.unlock()
1345
1297
 
1346
1298
 
1347
1299
class cmd_update(Command):
1348
 
    __doc__ = """Update a tree to have the latest code committed to its branch.
 
1300
    """Update a tree to have the latest code committed to its branch.
1349
1301
 
1350
1302
    This will perform a merge into the working tree, and may generate
1351
1303
    conflicts. If you have any local changes, you will still
1353
1305
 
1354
1306
    If you want to discard your local changes, you can just do a
1355
1307
    'bzr revert' instead of 'bzr commit' after the update.
1356
 
 
1357
 
    If you want to restore a file that has been removed locally, use
1358
 
    'bzr revert' instead of 'bzr update'.
1359
 
 
1360
 
    If the tree's branch is bound to a master branch, it will also update
1361
 
    the branch from the master.
1362
1308
    """
1363
1309
 
1364
1310
    _see_also = ['pull', 'working-trees', 'status-flags']
1365
1311
    takes_args = ['dir?']
1366
 
    takes_options = ['revision']
1367
1312
    aliases = ['up']
1368
1313
 
1369
 
    def run(self, dir='.', revision=None):
1370
 
        if revision is not None and len(revision) != 1:
1371
 
            raise errors.BzrCommandError(
1372
 
                        "bzr update --revision takes exactly one revision")
 
1314
    def run(self, dir='.'):
1373
1315
        tree = WorkingTree.open_containing(dir)[0]
1374
 
        branch = tree.branch
1375
1316
        possible_transports = []
1376
 
        master = branch.get_master_branch(
 
1317
        master = tree.branch.get_master_branch(
1377
1318
            possible_transports=possible_transports)
1378
1319
        if master is not None:
1379
 
            branch_location = master.base
1380
1320
            tree.lock_write()
1381
1321
        else:
1382
 
            branch_location = tree.branch.base
1383
1322
            tree.lock_tree_write()
1384
 
        self.add_cleanup(tree.unlock)
1385
 
        # get rid of the final '/' and be ready for display
1386
 
        branch_location = urlutils.unescape_for_display(
1387
 
            branch_location.rstrip('/'),
1388
 
            self.outf.encoding)
1389
 
        existing_pending_merges = tree.get_parent_ids()[1:]
1390
 
        if master is None:
1391
 
            old_tip = None
1392
 
        else:
1393
 
            # may need to fetch data into a heavyweight checkout
1394
 
            # XXX: this may take some time, maybe we should display a
1395
 
            # message
1396
 
            old_tip = branch.update(possible_transports)
1397
 
        if revision is not None:
1398
 
            revision_id = revision[0].as_revision_id(branch)
1399
 
        else:
1400
 
            revision_id = branch.last_revision()
1401
 
        if revision_id == _mod_revision.ensure_null(tree.last_revision()):
1402
 
            revno = branch.revision_id_to_dotted_revno(revision_id)
1403
 
            note("Tree is up to date at revision %s of branch %s" %
1404
 
                ('.'.join(map(str, revno)), branch_location))
1405
 
            return 0
1406
 
        view_info = _get_view_info_for_change_reporter(tree)
1407
 
        change_reporter = delta._ChangeReporter(
1408
 
            unversioned_filter=tree.is_ignored,
1409
 
            view_info=view_info)
1410
1323
        try:
 
1324
            existing_pending_merges = tree.get_parent_ids()[1:]
 
1325
            last_rev = _mod_revision.ensure_null(tree.last_revision())
 
1326
            if last_rev == _mod_revision.ensure_null(
 
1327
                tree.branch.last_revision()):
 
1328
                # may be up to date, check master too.
 
1329
                if master is None or last_rev == _mod_revision.ensure_null(
 
1330
                    master.last_revision()):
 
1331
                    revno = tree.branch.revision_id_to_revno(last_rev)
 
1332
                    note("Tree is up to date at revision %d." % (revno,))
 
1333
                    return 0
 
1334
            view_info = _get_view_info_for_change_reporter(tree)
1411
1335
            conflicts = tree.update(
1412
 
                change_reporter,
1413
 
                possible_transports=possible_transports,
1414
 
                revision=revision_id,
1415
 
                old_tip=old_tip)
1416
 
        except errors.NoSuchRevision, e:
1417
 
            raise errors.BzrCommandError(
1418
 
                                  "branch has no revision %s\n"
1419
 
                                  "bzr update --revision only works"
1420
 
                                  " for a revision in the branch history"
1421
 
                                  % (e.revision))
1422
 
        revno = tree.branch.revision_id_to_dotted_revno(
1423
 
            _mod_revision.ensure_null(tree.last_revision()))
1424
 
        note('Updated to revision %s of branch %s' %
1425
 
             ('.'.join(map(str, revno)), branch_location))
1426
 
        parent_ids = tree.get_parent_ids()
1427
 
        if parent_ids[1:] and parent_ids[1:] != existing_pending_merges:
1428
 
            note('Your local commits will now show as pending merges with '
1429
 
                 "'bzr status', and can be committed with 'bzr commit'.")
1430
 
        if conflicts != 0:
1431
 
            return 1
1432
 
        else:
1433
 
            return 0
 
1336
                delta._ChangeReporter(unversioned_filter=tree.is_ignored,
 
1337
                view_info=view_info), possible_transports=possible_transports)
 
1338
            revno = tree.branch.revision_id_to_revno(
 
1339
                _mod_revision.ensure_null(tree.last_revision()))
 
1340
            note('Updated to revision %d.' % (revno,))
 
1341
            if tree.get_parent_ids()[1:] != existing_pending_merges:
 
1342
                note('Your local commits will now show as pending merges with '
 
1343
                     "'bzr status', and can be committed with 'bzr commit'.")
 
1344
            if conflicts != 0:
 
1345
                return 1
 
1346
            else:
 
1347
                return 0
 
1348
        finally:
 
1349
            tree.unlock()
1434
1350
 
1435
1351
 
1436
1352
class cmd_info(Command):
1437
 
    __doc__ = """Show information about a working tree, branch or repository.
 
1353
    """Show information about a working tree, branch or repository.
1438
1354
 
1439
1355
    This command will show all known locations and formats associated to the
1440
1356
    tree, branch or repository.
1478
1394
 
1479
1395
 
1480
1396
class cmd_remove(Command):
1481
 
    __doc__ = """Remove files or directories.
 
1397
    """Remove files or directories.
1482
1398
 
1483
 
    This makes Bazaar stop tracking changes to the specified files. Bazaar will
1484
 
    delete them if they can easily be recovered using revert otherwise they
1485
 
    will be backed up (adding an extention of the form .~#~). If no options or
1486
 
    parameters are given Bazaar will scan for files that are being tracked by
1487
 
    Bazaar but missing in your tree and stop tracking them for you.
 
1399
    This makes bzr stop tracking changes to the specified files. bzr will delete
 
1400
    them if they can easily be recovered using revert. If no options or
 
1401
    parameters are given bzr will scan for files that are being tracked by bzr
 
1402
    but missing in your tree and stop tracking them for you.
1488
1403
    """
1489
1404
    takes_args = ['file*']
1490
1405
    takes_options = ['verbose',
1492
1407
        RegistryOption.from_kwargs('file-deletion-strategy',
1493
1408
            'The file deletion mode to be used.',
1494
1409
            title='Deletion Strategy', value_switches=True, enum_switch=False,
1495
 
            safe='Backup changed files (default).',
1496
 
            keep='Delete from bzr but leave the working copy.',
 
1410
            safe='Only delete files if they can be'
 
1411
                 ' safely recovered (default).',
 
1412
            keep="Don't delete any files.",
1497
1413
            force='Delete all the specified files, even if they can not be '
1498
1414
                'recovered and even if they are non-empty directories.')]
1499
1415
    aliases = ['rm', 'del']
1501
1417
 
1502
1418
    def run(self, file_list, verbose=False, new=False,
1503
1419
        file_deletion_strategy='safe'):
1504
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
 
1420
        tree, file_list = tree_files(file_list)
1505
1421
 
1506
1422
        if file_list is not None:
1507
1423
            file_list = [f for f in file_list]
1508
1424
 
1509
 
        self.add_cleanup(tree.lock_write().unlock)
1510
 
        # Heuristics should probably all move into tree.remove_smart or
1511
 
        # some such?
1512
 
        if new:
1513
 
            added = tree.changes_from(tree.basis_tree(),
1514
 
                specific_files=file_list).added
1515
 
            file_list = sorted([f[0] for f in added], reverse=True)
1516
 
            if len(file_list) == 0:
1517
 
                raise errors.BzrCommandError('No matching files.')
1518
 
        elif file_list is None:
1519
 
            # missing files show up in iter_changes(basis) as
1520
 
            # versioned-with-no-kind.
1521
 
            missing = []
1522
 
            for change in tree.iter_changes(tree.basis_tree()):
1523
 
                # Find paths in the working tree that have no kind:
1524
 
                if change[1][1] is not None and change[6][1] is None:
1525
 
                    missing.append(change[1][1])
1526
 
            file_list = sorted(missing, reverse=True)
1527
 
            file_deletion_strategy = 'keep'
1528
 
        tree.remove(file_list, verbose=verbose, to_file=self.outf,
1529
 
            keep_files=file_deletion_strategy=='keep',
1530
 
            force=file_deletion_strategy=='force')
 
1425
        tree.lock_write()
 
1426
        try:
 
1427
            # Heuristics should probably all move into tree.remove_smart or
 
1428
            # some such?
 
1429
            if new:
 
1430
                added = tree.changes_from(tree.basis_tree(),
 
1431
                    specific_files=file_list).added
 
1432
                file_list = sorted([f[0] for f in added], reverse=True)
 
1433
                if len(file_list) == 0:
 
1434
                    raise errors.BzrCommandError('No matching files.')
 
1435
            elif file_list is None:
 
1436
                # missing files show up in iter_changes(basis) as
 
1437
                # versioned-with-no-kind.
 
1438
                missing = []
 
1439
                for change in tree.iter_changes(tree.basis_tree()):
 
1440
                    # Find paths in the working tree that have no kind:
 
1441
                    if change[1][1] is not None and change[6][1] is None:
 
1442
                        missing.append(change[1][1])
 
1443
                file_list = sorted(missing, reverse=True)
 
1444
                file_deletion_strategy = 'keep'
 
1445
            tree.remove(file_list, verbose=verbose, to_file=self.outf,
 
1446
                keep_files=file_deletion_strategy=='keep',
 
1447
                force=file_deletion_strategy=='force')
 
1448
        finally:
 
1449
            tree.unlock()
1531
1450
 
1532
1451
 
1533
1452
class cmd_file_id(Command):
1534
 
    __doc__ = """Print file_id of a particular file or directory.
 
1453
    """Print file_id of a particular file or directory.
1535
1454
 
1536
1455
    The file_id is assigned when the file is first added and remains the
1537
1456
    same through all revisions where the file exists, even when it is
1553
1472
 
1554
1473
 
1555
1474
class cmd_file_path(Command):
1556
 
    __doc__ = """Print path of file_ids to a file or directory.
 
1475
    """Print path of file_ids to a file or directory.
1557
1476
 
1558
1477
    This prints one line for each directory down to the target,
1559
1478
    starting at the branch root.
1575
1494
 
1576
1495
 
1577
1496
class cmd_reconcile(Command):
1578
 
    __doc__ = """Reconcile bzr metadata in a branch.
 
1497
    """Reconcile bzr metadata in a branch.
1579
1498
 
1580
1499
    This can correct data mismatches that may have been caused by
1581
1500
    previous ghost operations or bzr upgrades. You should only
1595
1514
 
1596
1515
    _see_also = ['check']
1597
1516
    takes_args = ['branch?']
1598
 
    takes_options = [
1599
 
        Option('canonicalize-chks',
1600
 
               help='Make sure CHKs are in canonical form (repairs '
1601
 
                    'bug 522637).',
1602
 
               hidden=True),
1603
 
        ]
1604
1517
 
1605
 
    def run(self, branch=".", canonicalize_chks=False):
 
1518
    def run(self, branch="."):
1606
1519
        from bzrlib.reconcile import reconcile
1607
1520
        dir = bzrdir.BzrDir.open(branch)
1608
 
        reconcile(dir, canonicalize_chks=canonicalize_chks)
 
1521
        reconcile(dir)
1609
1522
 
1610
1523
 
1611
1524
class cmd_revision_history(Command):
1612
 
    __doc__ = """Display the list of revision ids on a branch."""
 
1525
    """Display the list of revision ids on a branch."""
1613
1526
 
1614
1527
    _see_also = ['log']
1615
1528
    takes_args = ['location?']
1625
1538
 
1626
1539
 
1627
1540
class cmd_ancestry(Command):
1628
 
    __doc__ = """List all revisions merged into this branch."""
 
1541
    """List all revisions merged into this branch."""
1629
1542
 
1630
1543
    _see_also = ['log', 'revision-history']
1631
1544
    takes_args = ['location?']
1650
1563
 
1651
1564
 
1652
1565
class cmd_init(Command):
1653
 
    __doc__ = """Make a directory into a versioned branch.
 
1566
    """Make a directory into a versioned branch.
1654
1567
 
1655
1568
    Use this to create an empty branch, or before importing an
1656
1569
    existing project.
1684
1597
                lazy_registry=('bzrlib.bzrdir', 'format_registry'),
1685
1598
                converter=lambda name: bzrdir.format_registry.make_bzrdir(name),
1686
1599
                value_switches=True,
1687
 
                title="Branch format",
 
1600
                title="Branch Format",
1688
1601
                ),
1689
1602
         Option('append-revisions-only',
1690
1603
                help='Never change revnos or the existing log.'
1759
1672
 
1760
1673
 
1761
1674
class cmd_init_repository(Command):
1762
 
    __doc__ = """Create a shared repository for branches to share storage space.
 
1675
    """Create a shared repository to hold branches.
1763
1676
 
1764
1677
    New branches created under the repository directory will store their
1765
 
    revisions in the repository, not in the branch directory.  For branches
1766
 
    with shared history, this reduces the amount of storage needed and 
1767
 
    speeds up the creation of new branches.
 
1678
    revisions in the repository, not in the branch directory.
1768
1679
 
1769
 
    If the --no-trees option is given then the branches in the repository
1770
 
    will not have working trees by default.  They will still exist as 
1771
 
    directories on disk, but they will not have separate copies of the 
1772
 
    files at a certain revision.  This can be useful for repositories that
1773
 
    store branches which are interacted with through checkouts or remote
1774
 
    branches, such as on a server.
 
1680
    If the --no-trees option is used then the branches in the repository
 
1681
    will not have working trees by default.
1775
1682
 
1776
1683
    :Examples:
1777
 
        Create a shared repository holding just branches::
 
1684
        Create a shared repositories holding just branches::
1778
1685
 
1779
1686
            bzr init-repo --no-trees repo
1780
1687
            bzr init repo/trunk
1819
1726
 
1820
1727
 
1821
1728
class cmd_diff(Command):
1822
 
    __doc__ = """Show differences in the working tree, between revisions or branches.
 
1729
    """Show differences in the working tree, between revisions or branches.
1823
1730
 
1824
1731
    If no arguments are given, all changes for the current tree are listed.
1825
1732
    If files are given, only the changes in those files are listed.
1846
1753
 
1847
1754
            bzr diff -r1
1848
1755
 
1849
 
        Difference between revision 3 and revision 1::
1850
 
 
1851
 
            bzr diff -r1..3
1852
 
 
1853
 
        Difference between revision 3 and revision 1 for branch xxx::
1854
 
 
1855
 
            bzr diff -r1..3 xxx
1856
 
 
1857
 
        To see the changes introduced in revision X::
1858
 
        
1859
 
            bzr diff -cX
1860
 
 
1861
 
        Note that in the case of a merge, the -c option shows the changes
1862
 
        compared to the left hand parent. To see the changes against
1863
 
        another parent, use::
1864
 
 
1865
 
            bzr diff -r<chosen_parent>..X
1866
 
 
1867
 
        The changes introduced by revision 2 (equivalent to -r1..2)::
1868
 
 
1869
 
            bzr diff -c2
 
1756
        Difference between revision 2 and revision 1::
 
1757
 
 
1758
            bzr diff -r1..2
 
1759
 
 
1760
        Difference between revision 2 and revision 1 for branch xxx::
 
1761
 
 
1762
            bzr diff -r1..2 xxx
1870
1763
 
1871
1764
        Show just the differences for file NEWS::
1872
1765
 
1887
1780
        Same as 'bzr diff' but prefix paths with old/ and new/::
1888
1781
 
1889
1782
            bzr diff --prefix old/:new/
1890
 
            
1891
 
        Show the differences using a custom diff program with options::
1892
 
        
1893
 
            bzr diff --using /usr/bin/diff --diff-options -wu
1894
1783
    """
1895
1784
    _see_also = ['status']
1896
1785
    takes_args = ['file*']
1915
1804
            help='Use this command to compare files.',
1916
1805
            type=unicode,
1917
1806
            ),
1918
 
        RegistryOption('format',
1919
 
            help='Diff format to use.',
1920
 
            lazy_registry=('bzrlib.diff', 'format_registry'),
1921
 
            value_switches=False, title='Diff format'),
1922
1807
        ]
1923
1808
    aliases = ['di', 'dif']
1924
1809
    encoding_type = 'exact'
1925
1810
 
1926
1811
    @display_command
1927
1812
    def run(self, revision=None, file_list=None, diff_options=None,
1928
 
            prefix=None, old=None, new=None, using=None, format=None):
1929
 
        from bzrlib.diff import (get_trees_and_branches_to_diff_locked,
1930
 
            show_diff_trees)
 
1813
            prefix=None, old=None, new=None, using=None):
 
1814
        from bzrlib.diff import _get_trees_to_diff, show_diff_trees
1931
1815
 
1932
1816
        if (prefix is None) or (prefix == '0'):
1933
1817
            # diff -p0 format
1947
1831
            raise errors.BzrCommandError('bzr diff --revision takes exactly'
1948
1832
                                         ' one or two revision specifiers')
1949
1833
 
1950
 
        if using is not None and format is not None:
1951
 
            raise errors.BzrCommandError('--using and --format are mutually '
1952
 
                'exclusive.')
1953
 
 
1954
 
        (old_tree, new_tree,
1955
 
         old_branch, new_branch,
1956
 
         specific_files, extra_trees) = get_trees_and_branches_to_diff_locked(
1957
 
            file_list, revision, old, new, self.add_cleanup, apply_view=True)
1958
 
        # GNU diff on Windows uses ANSI encoding for filenames
1959
 
        path_encoding = osutils.get_diff_header_encoding()
 
1834
        old_tree, new_tree, specific_files, extra_trees = \
 
1835
                _get_trees_to_diff(file_list, revision, old, new,
 
1836
                apply_view=True)
1960
1837
        return show_diff_trees(old_tree, new_tree, sys.stdout,
1961
1838
                               specific_files=specific_files,
1962
1839
                               external_diff_options=diff_options,
1963
1840
                               old_label=old_label, new_label=new_label,
1964
 
                               extra_trees=extra_trees,
1965
 
                               path_encoding=path_encoding,
1966
 
                               using=using,
1967
 
                               format_cls=format)
 
1841
                               extra_trees=extra_trees, using=using)
1968
1842
 
1969
1843
 
1970
1844
class cmd_deleted(Command):
1971
 
    __doc__ = """List files deleted in the working tree.
 
1845
    """List files deleted in the working tree.
1972
1846
    """
1973
1847
    # TODO: Show files deleted since a previous revision, or
1974
1848
    # between two revisions.
1977
1851
    # level of effort but possibly much less IO.  (Or possibly not,
1978
1852
    # if the directories are very large...)
1979
1853
    _see_also = ['status', 'ls']
1980
 
    takes_options = ['directory', 'show-ids']
 
1854
    takes_options = ['show-ids']
1981
1855
 
1982
1856
    @display_command
1983
 
    def run(self, show_ids=False, directory=u'.'):
1984
 
        tree = WorkingTree.open_containing(directory)[0]
1985
 
        self.add_cleanup(tree.lock_read().unlock)
1986
 
        old = tree.basis_tree()
1987
 
        self.add_cleanup(old.lock_read().unlock)
1988
 
        for path, ie in old.inventory.iter_entries():
1989
 
            if not tree.has_id(ie.file_id):
1990
 
                self.outf.write(path)
1991
 
                if show_ids:
1992
 
                    self.outf.write(' ')
1993
 
                    self.outf.write(ie.file_id)
1994
 
                self.outf.write('\n')
 
1857
    def run(self, show_ids=False):
 
1858
        tree = WorkingTree.open_containing(u'.')[0]
 
1859
        tree.lock_read()
 
1860
        try:
 
1861
            old = tree.basis_tree()
 
1862
            old.lock_read()
 
1863
            try:
 
1864
                for path, ie in old.inventory.iter_entries():
 
1865
                    if not tree.has_id(ie.file_id):
 
1866
                        self.outf.write(path)
 
1867
                        if show_ids:
 
1868
                            self.outf.write(' ')
 
1869
                            self.outf.write(ie.file_id)
 
1870
                        self.outf.write('\n')
 
1871
            finally:
 
1872
                old.unlock()
 
1873
        finally:
 
1874
            tree.unlock()
1995
1875
 
1996
1876
 
1997
1877
class cmd_modified(Command):
1998
 
    __doc__ = """List files modified in working tree.
 
1878
    """List files modified in working tree.
1999
1879
    """
2000
1880
 
2001
1881
    hidden = True
2002
1882
    _see_also = ['status', 'ls']
2003
 
    takes_options = ['directory', 'null']
 
1883
    takes_options = [
 
1884
            Option('null',
 
1885
                   help='Write an ascii NUL (\\0) separator '
 
1886
                   'between files rather than a newline.')
 
1887
            ]
2004
1888
 
2005
1889
    @display_command
2006
 
    def run(self, null=False, directory=u'.'):
2007
 
        tree = WorkingTree.open_containing(directory)[0]
 
1890
    def run(self, null=False):
 
1891
        tree = WorkingTree.open_containing(u'.')[0]
2008
1892
        td = tree.changes_from(tree.basis_tree())
2009
1893
        for path, id, kind, text_modified, meta_modified in td.modified:
2010
1894
            if null:
2014
1898
 
2015
1899
 
2016
1900
class cmd_added(Command):
2017
 
    __doc__ = """List files added in working tree.
 
1901
    """List files added in working tree.
2018
1902
    """
2019
1903
 
2020
1904
    hidden = True
2021
1905
    _see_also = ['status', 'ls']
2022
 
    takes_options = ['directory', 'null']
 
1906
    takes_options = [
 
1907
            Option('null',
 
1908
                   help='Write an ascii NUL (\\0) separator '
 
1909
                   'between files rather than a newline.')
 
1910
            ]
2023
1911
 
2024
1912
    @display_command
2025
 
    def run(self, null=False, directory=u'.'):
2026
 
        wt = WorkingTree.open_containing(directory)[0]
2027
 
        self.add_cleanup(wt.lock_read().unlock)
2028
 
        basis = wt.basis_tree()
2029
 
        self.add_cleanup(basis.lock_read().unlock)
2030
 
        basis_inv = basis.inventory
2031
 
        inv = wt.inventory
2032
 
        for file_id in inv:
2033
 
            if file_id in basis_inv:
2034
 
                continue
2035
 
            if inv.is_root(file_id) and len(basis_inv) == 0:
2036
 
                continue
2037
 
            path = inv.id2path(file_id)
2038
 
            if not os.access(osutils.pathjoin(wt.basedir, path), os.F_OK):
2039
 
                continue
2040
 
            if null:
2041
 
                self.outf.write(path + '\0')
2042
 
            else:
2043
 
                self.outf.write(osutils.quotefn(path) + '\n')
 
1913
    def run(self, null=False):
 
1914
        wt = WorkingTree.open_containing(u'.')[0]
 
1915
        wt.lock_read()
 
1916
        try:
 
1917
            basis = wt.basis_tree()
 
1918
            basis.lock_read()
 
1919
            try:
 
1920
                basis_inv = basis.inventory
 
1921
                inv = wt.inventory
 
1922
                for file_id in inv:
 
1923
                    if file_id in basis_inv:
 
1924
                        continue
 
1925
                    if inv.is_root(file_id) and len(basis_inv) == 0:
 
1926
                        continue
 
1927
                    path = inv.id2path(file_id)
 
1928
                    if not os.access(osutils.abspath(path), os.F_OK):
 
1929
                        continue
 
1930
                    if null:
 
1931
                        self.outf.write(path + '\0')
 
1932
                    else:
 
1933
                        self.outf.write(osutils.quotefn(path) + '\n')
 
1934
            finally:
 
1935
                basis.unlock()
 
1936
        finally:
 
1937
            wt.unlock()
2044
1938
 
2045
1939
 
2046
1940
class cmd_root(Command):
2047
 
    __doc__ = """Show the tree root directory.
 
1941
    """Show the tree root directory.
2048
1942
 
2049
1943
    The root is the nearest enclosing directory with a .bzr control
2050
1944
    directory."""
2074
1968
 
2075
1969
 
2076
1970
class cmd_log(Command):
2077
 
    __doc__ = """Show historical log for a branch or subset of a branch.
 
1971
    """Show historical log for a branch or subset of a branch.
2078
1972
 
2079
1973
    log is bzr's default tool for exploring the history of a branch.
2080
1974
    The branch to use is taken from the first parameter. If no parameters
2191
2085
    :Tips & tricks:
2192
2086
 
2193
2087
      GUI tools and IDEs are often better at exploring history than command
2194
 
      line tools: you may prefer qlog or viz from qbzr or bzr-gtk, the
2195
 
      bzr-explorer shell, or the Loggerhead web interface.  See the Plugin
2196
 
      Guide <http://doc.bazaar.canonical.com/plugins/en/> and
2197
 
      <http://wiki.bazaar.canonical.com/IDEIntegration>.  
 
2088
      line tools. You may prefer qlog or glog from the QBzr and Bzr-Gtk packages
 
2089
      respectively for example. (TortoiseBzr uses qlog for displaying logs.) See
 
2090
      http://bazaar-vcs.org/BzrPlugins and http://bazaar-vcs.org/IDEIntegration.
 
2091
 
 
2092
      Web interfaces are often better at exploring history than command line
 
2093
      tools, particularly for branches on servers. You may prefer Loggerhead
 
2094
      or one of its alternatives. See http://bazaar-vcs.org/WebInterface.
2198
2095
 
2199
2096
      You may find it useful to add the aliases below to ``bazaar.conf``::
2200
2097
 
2241
2138
                   help='Show just the specified revision.'
2242
2139
                   ' See also "help revisionspec".'),
2243
2140
            'log-format',
2244
 
            RegistryOption('authors',
2245
 
                'What names to list as authors - first, all or committer.',
2246
 
                title='Authors',
2247
 
                lazy_registry=('bzrlib.log', 'author_list_registry'),
2248
 
            ),
2249
2141
            Option('levels',
2250
2142
                   short_name='n',
2251
2143
                   help='Number of levels to display - 0 for all, 1 for flat.',
2266
2158
                   help='Show changes made in each revision as a patch.'),
2267
2159
            Option('include-merges',
2268
2160
                   help='Show merged revisions like --levels 0 does.'),
2269
 
            Option('exclude-common-ancestry',
2270
 
                   help='Display only the revisions that are not part'
2271
 
                   ' of both ancestries (require -rX..Y)'
2272
 
                   )
2273
2161
            ]
2274
2162
    encoding_type = 'replace'
2275
2163
 
2285
2173
            message=None,
2286
2174
            limit=None,
2287
2175
            show_diff=False,
2288
 
            include_merges=False,
2289
 
            authors=None,
2290
 
            exclude_common_ancestry=False,
2291
 
            ):
 
2176
            include_merges=False):
2292
2177
        from bzrlib.log import (
2293
2178
            Logger,
2294
2179
            make_log_request_dict,
2295
2180
            _get_info_for_log_files,
2296
2181
            )
2297
2182
        direction = (forward and 'forward') or 'reverse'
2298
 
        if (exclude_common_ancestry
2299
 
            and (revision is None or len(revision) != 2)):
2300
 
            raise errors.BzrCommandError(
2301
 
                '--exclude-common-ancestry requires -r with two revisions')
2302
2183
        if include_merges:
2303
2184
            if levels is None:
2304
2185
                levels = 0
2319
2200
        filter_by_dir = False
2320
2201
        if file_list:
2321
2202
            # find the file ids to log and check for directory filtering
2322
 
            b, file_info_list, rev1, rev2 = _get_info_for_log_files(
2323
 
                revision, file_list, self.add_cleanup)
 
2203
            b, file_info_list, rev1, rev2 = _get_info_for_log_files(revision,
 
2204
                file_list)
2324
2205
            for relpath, file_id, kind in file_info_list:
2325
2206
                if file_id is None:
2326
2207
                    raise errors.BzrCommandError(
2344
2225
                location = '.'
2345
2226
            dir, relpath = bzrdir.BzrDir.open_containing(location)
2346
2227
            b = dir.open_branch()
2347
 
            self.add_cleanup(b.lock_read().unlock)
2348
2228
            rev1, rev2 = _get_revision_range(revision, b, self.name())
2349
2229
 
2350
2230
        # Decide on the type of delta & diff filtering to use
2360
2240
        else:
2361
2241
            diff_type = 'full'
2362
2242
 
2363
 
        # Build the log formatter
2364
 
        if log_format is None:
2365
 
            log_format = log.log_formatter_registry.get_default(b)
2366
 
        # Make a non-encoding output to include the diffs - bug 328007
2367
 
        unencoded_output = ui.ui_factory.make_output_stream(encoding_type='exact')
2368
 
        lf = log_format(show_ids=show_ids, to_file=self.outf,
2369
 
                        to_exact_file=unencoded_output,
2370
 
                        show_timezone=timezone,
2371
 
                        delta_format=get_verbosity_level(),
2372
 
                        levels=levels,
2373
 
                        show_advice=levels is None,
2374
 
                        author_list_handler=authors)
2375
 
 
2376
 
        # Choose the algorithm for doing the logging. It's annoying
2377
 
        # having multiple code paths like this but necessary until
2378
 
        # the underlying repository format is faster at generating
2379
 
        # deltas or can provide everything we need from the indices.
2380
 
        # The default algorithm - match-using-deltas - works for
2381
 
        # multiple files and directories and is faster for small
2382
 
        # amounts of history (200 revisions say). However, it's too
2383
 
        # slow for logging a single file in a repository with deep
2384
 
        # history, i.e. > 10K revisions. In the spirit of "do no
2385
 
        # evil when adding features", we continue to use the
2386
 
        # original algorithm - per-file-graph - for the "single
2387
 
        # file that isn't a directory without showing a delta" case.
2388
 
        partial_history = revision and b.repository._format.supports_chks
2389
 
        match_using_deltas = (len(file_ids) != 1 or filter_by_dir
2390
 
            or delta_type or partial_history)
2391
 
 
2392
 
        # Build the LogRequest and execute it
2393
 
        if len(file_ids) == 0:
2394
 
            file_ids = None
2395
 
        rqst = make_log_request_dict(
2396
 
            direction=direction, specific_fileids=file_ids,
2397
 
            start_revision=rev1, end_revision=rev2, limit=limit,
2398
 
            message_search=message, delta_type=delta_type,
2399
 
            diff_type=diff_type, _match_using_deltas=match_using_deltas,
2400
 
            exclude_common_ancestry=exclude_common_ancestry,
2401
 
            )
2402
 
        Logger(b, rqst).show(lf)
 
2243
        b.lock_read()
 
2244
        try:
 
2245
            # Build the log formatter
 
2246
            if log_format is None:
 
2247
                log_format = log.log_formatter_registry.get_default(b)
 
2248
            lf = log_format(show_ids=show_ids, to_file=self.outf,
 
2249
                            show_timezone=timezone,
 
2250
                            delta_format=get_verbosity_level(),
 
2251
                            levels=levels,
 
2252
                            show_advice=levels is None)
 
2253
 
 
2254
            # Choose the algorithm for doing the logging. It's annoying
 
2255
            # having multiple code paths like this but necessary until
 
2256
            # the underlying repository format is faster at generating
 
2257
            # deltas or can provide everything we need from the indices.
 
2258
            # The default algorithm - match-using-deltas - works for
 
2259
            # multiple files and directories and is faster for small
 
2260
            # amounts of history (200 revisions say). However, it's too
 
2261
            # slow for logging a single file in a repository with deep
 
2262
            # history, i.e. > 10K revisions. In the spirit of "do no
 
2263
            # evil when adding features", we continue to use the
 
2264
            # original algorithm - per-file-graph - for the "single
 
2265
            # file that isn't a directory without showing a delta" case.
 
2266
            partial_history = revision and b.repository._format.supports_chks
 
2267
            match_using_deltas = (len(file_ids) != 1 or filter_by_dir
 
2268
                or delta_type or partial_history)
 
2269
 
 
2270
            # Build the LogRequest and execute it
 
2271
            if len(file_ids) == 0:
 
2272
                file_ids = None
 
2273
            rqst = make_log_request_dict(
 
2274
                direction=direction, specific_fileids=file_ids,
 
2275
                start_revision=rev1, end_revision=rev2, limit=limit,
 
2276
                message_search=message, delta_type=delta_type,
 
2277
                diff_type=diff_type, _match_using_deltas=match_using_deltas)
 
2278
            Logger(b, rqst).show(lf)
 
2279
        finally:
 
2280
            b.unlock()
2403
2281
 
2404
2282
 
2405
2283
def _get_revision_range(revisionspec_list, branch, command_name):
2423
2301
            raise errors.BzrCommandError(
2424
2302
                "bzr %s doesn't accept two revisions in different"
2425
2303
                " branches." % command_name)
2426
 
        if start_spec.spec is None:
2427
 
            # Avoid loading all the history.
2428
 
            rev1 = RevisionInfo(branch, None, None)
2429
 
        else:
2430
 
            rev1 = start_spec.in_history(branch)
 
2304
        rev1 = start_spec.in_history(branch)
2431
2305
        # Avoid loading all of history when we know a missing
2432
2306
        # end of range means the last revision ...
2433
2307
        if end_spec.spec is None:
2462
2336
 
2463
2337
 
2464
2338
class cmd_touching_revisions(Command):
2465
 
    __doc__ = """Return revision-ids which affected a particular file.
 
2339
    """Return revision-ids which affected a particular file.
2466
2340
 
2467
2341
    A more user-friendly interface is "bzr log FILE".
2468
2342
    """
2473
2347
    @display_command
2474
2348
    def run(self, filename):
2475
2349
        tree, relpath = WorkingTree.open_containing(filename)
 
2350
        b = tree.branch
2476
2351
        file_id = tree.path2id(relpath)
2477
 
        b = tree.branch
2478
 
        self.add_cleanup(b.lock_read().unlock)
2479
 
        touching_revs = log.find_touching_revisions(b, file_id)
2480
 
        for revno, revision_id, what in touching_revs:
 
2352
        for revno, revision_id, what in log.find_touching_revisions(b, file_id):
2481
2353
            self.outf.write("%6d %s\n" % (revno, what))
2482
2354
 
2483
2355
 
2484
2356
class cmd_ls(Command):
2485
 
    __doc__ = """List files in a tree.
 
2357
    """List files in a tree.
2486
2358
    """
2487
2359
 
2488
2360
    _see_also = ['status', 'cat']
2494
2366
                   help='Recurse into subdirectories.'),
2495
2367
            Option('from-root',
2496
2368
                   help='Print paths relative to the root of the branch.'),
2497
 
            Option('unknown', short_name='u',
2498
 
                help='Print unknown files.'),
 
2369
            Option('unknown', help='Print unknown files.'),
2499
2370
            Option('versioned', help='Print versioned files.',
2500
2371
                   short_name='V'),
2501
 
            Option('ignored', short_name='i',
2502
 
                help='Print ignored files.'),
2503
 
            Option('kind', short_name='k',
 
2372
            Option('ignored', help='Print ignored files.'),
 
2373
            Option('null',
 
2374
                   help='Write an ascii NUL (\\0) separator '
 
2375
                   'between files rather than a newline.'),
 
2376
            Option('kind',
2504
2377
                   help='List entries of a particular kind: file, directory, symlink.',
2505
2378
                   type=unicode),
2506
 
            'null',
2507
2379
            'show-ids',
2508
 
            'directory',
2509
2380
            ]
2510
2381
    @display_command
2511
2382
    def run(self, revision=None, verbose=False,
2512
2383
            recursive=False, from_root=False,
2513
2384
            unknown=False, versioned=False, ignored=False,
2514
 
            null=False, kind=None, show_ids=False, path=None, directory=None):
 
2385
            null=False, kind=None, show_ids=False, path=None):
2515
2386
 
2516
2387
        if kind and kind not in ('file', 'directory', 'symlink'):
2517
2388
            raise errors.BzrCommandError('invalid kind specified')
2524
2395
 
2525
2396
        if path is None:
2526
2397
            fs_path = '.'
 
2398
            prefix = ''
2527
2399
        else:
2528
2400
            if from_root:
2529
2401
                raise errors.BzrCommandError('cannot specify both --from-root'
2530
2402
                                             ' and PATH')
2531
2403
            fs_path = path
2532
 
        tree, branch, relpath = \
2533
 
            _open_directory_or_containing_tree_or_branch(fs_path, directory)
2534
 
 
2535
 
        # Calculate the prefix to use
2536
 
        prefix = None
 
2404
            prefix = path
 
2405
        tree, branch, relpath = bzrdir.BzrDir.open_containing_tree_or_branch(
 
2406
            fs_path)
2537
2407
        if from_root:
2538
 
            if relpath:
2539
 
                prefix = relpath + '/'
2540
 
        elif fs_path != '.' and not fs_path.endswith('/'):
2541
 
            prefix = fs_path + '/'
2542
 
 
 
2408
            relpath = u''
 
2409
        elif relpath:
 
2410
            relpath += '/'
2543
2411
        if revision is not None or tree is None:
2544
2412
            tree = _get_one_revision_tree('ls', revision, branch=branch)
2545
2413
 
2551
2419
                view_str = views.view_display_str(view_files)
2552
2420
                note("Ignoring files outside view. View is %s" % view_str)
2553
2421
 
2554
 
        self.add_cleanup(tree.lock_read().unlock)
2555
 
        for fp, fc, fkind, fid, entry in tree.list_files(include_root=False,
2556
 
            from_dir=relpath, recursive=recursive):
2557
 
            # Apply additional masking
2558
 
            if not all and not selection[fc]:
2559
 
                continue
2560
 
            if kind is not None and fkind != kind:
2561
 
                continue
2562
 
            if apply_view:
2563
 
                try:
2564
 
                    if relpath:
2565
 
                        fullpath = osutils.pathjoin(relpath, fp)
2566
 
                    else:
2567
 
                        fullpath = fp
2568
 
                    views.check_path_in_view(tree, fullpath)
2569
 
                except errors.FileOutsideView:
2570
 
                    continue
2571
 
 
2572
 
            # Output the entry
2573
 
            if prefix:
2574
 
                fp = osutils.pathjoin(prefix, fp)
2575
 
            kindch = entry.kind_character()
2576
 
            outstring = fp + kindch
2577
 
            ui.ui_factory.clear_term()
2578
 
            if verbose:
2579
 
                outstring = '%-8s %s' % (fc, outstring)
2580
 
                if show_ids and fid is not None:
2581
 
                    outstring = "%-50s %s" % (outstring, fid)
2582
 
                self.outf.write(outstring + '\n')
2583
 
            elif null:
2584
 
                self.outf.write(fp + '\0')
2585
 
                if show_ids:
2586
 
                    if fid is not None:
2587
 
                        self.outf.write(fid)
2588
 
                    self.outf.write('\0')
2589
 
                self.outf.flush()
2590
 
            else:
2591
 
                if show_ids:
2592
 
                    if fid is not None:
2593
 
                        my_id = fid
2594
 
                    else:
2595
 
                        my_id = ''
2596
 
                    self.outf.write('%-50s %s\n' % (outstring, my_id))
2597
 
                else:
2598
 
                    self.outf.write(outstring + '\n')
 
2422
        tree.lock_read()
 
2423
        try:
 
2424
            for fp, fc, fkind, fid, entry in tree.list_files(include_root=False):
 
2425
                if fp.startswith(relpath):
 
2426
                    rp = fp[len(relpath):]
 
2427
                    fp = osutils.pathjoin(prefix, rp)
 
2428
                    if not recursive and '/' in rp:
 
2429
                        continue
 
2430
                    if not all and not selection[fc]:
 
2431
                        continue
 
2432
                    if kind is not None and fkind != kind:
 
2433
                        continue
 
2434
                    if apply_view:
 
2435
                        try:
 
2436
                            views.check_path_in_view(tree, fp)
 
2437
                        except errors.FileOutsideView:
 
2438
                            continue
 
2439
                    kindch = entry.kind_character()
 
2440
                    outstring = fp + kindch
 
2441
                    ui.ui_factory.clear_term()
 
2442
                    if verbose:
 
2443
                        outstring = '%-8s %s' % (fc, outstring)
 
2444
                        if show_ids and fid is not None:
 
2445
                            outstring = "%-50s %s" % (outstring, fid)
 
2446
                        self.outf.write(outstring + '\n')
 
2447
                    elif null:
 
2448
                        self.outf.write(fp + '\0')
 
2449
                        if show_ids:
 
2450
                            if fid is not None:
 
2451
                                self.outf.write(fid)
 
2452
                            self.outf.write('\0')
 
2453
                        self.outf.flush()
 
2454
                    else:
 
2455
                        if fid is not None:
 
2456
                            my_id = fid
 
2457
                        else:
 
2458
                            my_id = ''
 
2459
                        if show_ids:
 
2460
                            self.outf.write('%-50s %s\n' % (outstring, my_id))
 
2461
                        else:
 
2462
                            self.outf.write(outstring + '\n')
 
2463
        finally:
 
2464
            tree.unlock()
2599
2465
 
2600
2466
 
2601
2467
class cmd_unknowns(Command):
2602
 
    __doc__ = """List unknown files.
 
2468
    """List unknown files.
2603
2469
    """
2604
2470
 
2605
2471
    hidden = True
2606
2472
    _see_also = ['ls']
2607
 
    takes_options = ['directory']
2608
2473
 
2609
2474
    @display_command
2610
 
    def run(self, directory=u'.'):
2611
 
        for f in WorkingTree.open_containing(directory)[0].unknowns():
 
2475
    def run(self):
 
2476
        for f in WorkingTree.open_containing(u'.')[0].unknowns():
2612
2477
            self.outf.write(osutils.quotefn(f) + '\n')
2613
2478
 
2614
2479
 
2615
2480
class cmd_ignore(Command):
2616
 
    __doc__ = """Ignore specified files or patterns.
 
2481
    """Ignore specified files or patterns.
2617
2482
 
2618
2483
    See ``bzr help patterns`` for details on the syntax of patterns.
2619
2484
 
2620
 
    If a .bzrignore file does not exist, the ignore command
2621
 
    will create one and add the specified files or patterns to the newly
2622
 
    created file. The ignore command will also automatically add the 
2623
 
    .bzrignore file to be versioned. Creating a .bzrignore file without
2624
 
    the use of the ignore command will require an explicit add command.
2625
 
 
2626
2485
    To remove patterns from the ignore list, edit the .bzrignore file.
2627
2486
    After adding, editing or deleting that file either indirectly by
2628
2487
    using this command or directly by using an editor, be sure to commit
2629
2488
    it.
2630
 
    
2631
 
    Bazaar also supports a global ignore file ~/.bazaar/ignore. On Windows
2632
 
    the global ignore file can be found in the application data directory as
2633
 
    C:\\Documents and Settings\\<user>\\Application Data\\Bazaar\\2.0\\ignore.
2634
 
    Global ignores are not touched by this command. The global ignore file
2635
 
    can be edited directly using an editor.
2636
 
 
2637
 
    Patterns prefixed with '!' are exceptions to ignore patterns and take
2638
 
    precedence over regular ignores.  Such exceptions are used to specify
2639
 
    files that should be versioned which would otherwise be ignored.
2640
 
    
2641
 
    Patterns prefixed with '!!' act as regular ignore patterns, but have
2642
 
    precedence over the '!' exception patterns.
2643
2489
 
2644
2490
    Note: ignore patterns containing shell wildcards must be quoted from
2645
2491
    the shell on Unix.
2649
2495
 
2650
2496
            bzr ignore ./Makefile
2651
2497
 
2652
 
        Ignore .class files in all directories...::
 
2498
        Ignore class files in all directories::
2653
2499
 
2654
2500
            bzr ignore "*.class"
2655
2501
 
2656
 
        ...but do not ignore "special.class"::
2657
 
 
2658
 
            bzr ignore "!special.class"
2659
 
 
2660
2502
        Ignore .o files under the lib directory::
2661
2503
 
2662
2504
            bzr ignore "lib/**/*.o"
2668
2510
        Ignore everything but the "debian" toplevel directory::
2669
2511
 
2670
2512
            bzr ignore "RE:(?!debian/).*"
2671
 
        
2672
 
        Ignore everything except the "local" toplevel directory,
2673
 
        but always ignore "*~" autosave files, even under local/::
2674
 
        
2675
 
            bzr ignore "*"
2676
 
            bzr ignore "!./local"
2677
 
            bzr ignore "!!*~"
2678
2513
    """
2679
2514
 
2680
2515
    _see_also = ['status', 'ignored', 'patterns']
2681
2516
    takes_args = ['name_pattern*']
2682
 
    takes_options = ['directory',
2683
 
        Option('default-rules',
2684
 
               help='Display the default ignore rules that bzr uses.')
 
2517
    takes_options = [
 
2518
        Option('old-default-rules',
 
2519
               help='Write out the ignore rules bzr < 0.9 always used.')
2685
2520
        ]
2686
2521
 
2687
 
    def run(self, name_pattern_list=None, default_rules=None,
2688
 
            directory=u'.'):
 
2522
    def run(self, name_pattern_list=None, old_default_rules=None):
2689
2523
        from bzrlib import ignores
2690
 
        if default_rules is not None:
2691
 
            # dump the default rules and exit
2692
 
            for pattern in ignores.USER_DEFAULTS:
2693
 
                self.outf.write("%s\n" % pattern)
 
2524
        if old_default_rules is not None:
 
2525
            # dump the rules and exit
 
2526
            for pattern in ignores.OLD_DEFAULTS:
 
2527
                print pattern
2694
2528
            return
2695
2529
        if not name_pattern_list:
2696
2530
            raise errors.BzrCommandError("ignore requires at least one "
2697
 
                "NAME_PATTERN or --default-rules.")
 
2531
                                  "NAME_PATTERN or --old-default-rules")
2698
2532
        name_pattern_list = [globbing.normalize_pattern(p)
2699
2533
                             for p in name_pattern_list]
2700
 
        bad_patterns = ''
2701
 
        for p in name_pattern_list:
2702
 
            if not globbing.Globster.is_pattern_valid(p):
2703
 
                bad_patterns += ('\n  %s' % p)
2704
 
        if bad_patterns:
2705
 
            msg = ('Invalid ignore pattern(s) found. %s' % bad_patterns)
2706
 
            ui.ui_factory.show_error(msg)
2707
 
            raise errors.InvalidPattern('')
2708
2534
        for name_pattern in name_pattern_list:
2709
2535
            if (name_pattern[0] == '/' or
2710
2536
                (len(name_pattern) > 1 and name_pattern[1] == ':')):
2711
2537
                raise errors.BzrCommandError(
2712
2538
                    "NAME_PATTERN should not be an absolute path")
2713
 
        tree, relpath = WorkingTree.open_containing(directory)
 
2539
        tree, relpath = WorkingTree.open_containing(u'.')
2714
2540
        ignores.tree_ignores_add_patterns(tree, name_pattern_list)
2715
2541
        ignored = globbing.Globster(name_pattern_list)
2716
2542
        matches = []
2717
 
        self.add_cleanup(tree.lock_read().unlock)
 
2543
        tree.lock_read()
2718
2544
        for entry in tree.list_files():
2719
2545
            id = entry[3]
2720
2546
            if id is not None:
2721
2547
                filename = entry[0]
2722
2548
                if ignored.match(filename):
2723
 
                    matches.append(filename)
 
2549
                    matches.append(filename.encode('utf-8'))
 
2550
        tree.unlock()
2724
2551
        if len(matches) > 0:
2725
 
            self.outf.write("Warning: the following files are version controlled and"
2726
 
                  " match your ignore pattern:\n%s"
2727
 
                  "\nThese files will continue to be version controlled"
2728
 
                  " unless you 'bzr remove' them.\n" % ("\n".join(matches),))
 
2552
            print "Warning: the following files are version controlled and" \
 
2553
                  " match your ignore pattern:\n%s" \
 
2554
                  "\nThese files will continue to be version controlled" \
 
2555
                  " unless you 'bzr remove' them." % ("\n".join(matches),)
2729
2556
 
2730
2557
 
2731
2558
class cmd_ignored(Command):
2732
 
    __doc__ = """List ignored files and the patterns that matched them.
 
2559
    """List ignored files and the patterns that matched them.
2733
2560
 
2734
2561
    List all the ignored files and the ignore pattern that caused the file to
2735
2562
    be ignored.
2741
2568
 
2742
2569
    encoding_type = 'replace'
2743
2570
    _see_also = ['ignore', 'ls']
2744
 
    takes_options = ['directory']
2745
2571
 
2746
2572
    @display_command
2747
 
    def run(self, directory=u'.'):
2748
 
        tree = WorkingTree.open_containing(directory)[0]
2749
 
        self.add_cleanup(tree.lock_read().unlock)
2750
 
        for path, file_class, kind, file_id, entry in tree.list_files():
2751
 
            if file_class != 'I':
2752
 
                continue
2753
 
            ## XXX: Slightly inefficient since this was already calculated
2754
 
            pat = tree.is_ignored(path)
2755
 
            self.outf.write('%-50s %s\n' % (path, pat))
 
2573
    def run(self):
 
2574
        tree = WorkingTree.open_containing(u'.')[0]
 
2575
        tree.lock_read()
 
2576
        try:
 
2577
            for path, file_class, kind, file_id, entry in tree.list_files():
 
2578
                if file_class != 'I':
 
2579
                    continue
 
2580
                ## XXX: Slightly inefficient since this was already calculated
 
2581
                pat = tree.is_ignored(path)
 
2582
                self.outf.write('%-50s %s\n' % (path, pat))
 
2583
        finally:
 
2584
            tree.unlock()
2756
2585
 
2757
2586
 
2758
2587
class cmd_lookup_revision(Command):
2759
 
    __doc__ = """Lookup the revision-id from a revision-number
 
2588
    """Lookup the revision-id from a revision-number
2760
2589
 
2761
2590
    :Examples:
2762
2591
        bzr lookup-revision 33
2763
2592
    """
2764
2593
    hidden = True
2765
2594
    takes_args = ['revno']
2766
 
    takes_options = ['directory']
2767
2595
 
2768
2596
    @display_command
2769
 
    def run(self, revno, directory=u'.'):
 
2597
    def run(self, revno):
2770
2598
        try:
2771
2599
            revno = int(revno)
2772
2600
        except ValueError:
2773
 
            raise errors.BzrCommandError("not a valid revision-number: %r"
2774
 
                                         % revno)
2775
 
        revid = WorkingTree.open_containing(directory)[0].branch.get_rev_id(revno)
2776
 
        self.outf.write("%s\n" % revid)
 
2601
            raise errors.BzrCommandError("not a valid revision-number: %r" % revno)
 
2602
 
 
2603
        print WorkingTree.open_containing(u'.')[0].branch.get_rev_id(revno)
2777
2604
 
2778
2605
 
2779
2606
class cmd_export(Command):
2780
 
    __doc__ = """Export current or past revision to a destination directory or archive.
 
2607
    """Export current or past revision to a destination directory or archive.
2781
2608
 
2782
2609
    If no revision is specified this exports the last committed revision.
2783
2610
 
2805
2632
      =================       =========================
2806
2633
    """
2807
2634
    takes_args = ['dest', 'branch_or_subdir?']
2808
 
    takes_options = ['directory',
 
2635
    takes_options = [
2809
2636
        Option('format',
2810
2637
               help="Type of file to export to.",
2811
2638
               type=unicode),
2815
2642
        Option('root',
2816
2643
               type=str,
2817
2644
               help="Name of the root directory inside the exported file."),
2818
 
        Option('per-file-timestamps',
2819
 
               help='Set modification time of files to that of the last '
2820
 
                    'revision in which it was changed.'),
2821
2645
        ]
2822
2646
    def run(self, dest, branch_or_subdir=None, revision=None, format=None,
2823
 
        root=None, filters=False, per_file_timestamps=False, directory=u'.'):
 
2647
        root=None, filters=False):
2824
2648
        from bzrlib.export import export
2825
2649
 
2826
2650
        if branch_or_subdir is None:
2827
 
            tree = WorkingTree.open_containing(directory)[0]
 
2651
            tree = WorkingTree.open_containing(u'.')[0]
2828
2652
            b = tree.branch
2829
2653
            subdir = None
2830
2654
        else:
2833
2657
 
2834
2658
        rev_tree = _get_one_revision_tree('export', revision, branch=b, tree=tree)
2835
2659
        try:
2836
 
            export(rev_tree, dest, format, root, subdir, filtered=filters,
2837
 
                   per_file_timestamps=per_file_timestamps)
 
2660
            export(rev_tree, dest, format, root, subdir, filtered=filters)
2838
2661
        except errors.NoSuchExportFormat, e:
2839
2662
            raise errors.BzrCommandError('Unsupported export format: %s' % e.format)
2840
2663
 
2841
2664
 
2842
2665
class cmd_cat(Command):
2843
 
    __doc__ = """Write the contents of a file as of a given revision to standard output.
 
2666
    """Write the contents of a file as of a given revision to standard output.
2844
2667
 
2845
2668
    If no revision is nominated, the last revision is used.
2846
2669
 
2849
2672
    """
2850
2673
 
2851
2674
    _see_also = ['ls']
2852
 
    takes_options = ['directory',
 
2675
    takes_options = [
2853
2676
        Option('name-from-revision', help='The path name in the old tree.'),
2854
2677
        Option('filters', help='Apply content filters to display the '
2855
2678
                'convenience form.'),
2860
2683
 
2861
2684
    @display_command
2862
2685
    def run(self, filename, revision=None, name_from_revision=False,
2863
 
            filters=False, directory=None):
 
2686
            filters=False):
2864
2687
        if revision is not None and len(revision) != 1:
2865
2688
            raise errors.BzrCommandError("bzr cat --revision takes exactly"
2866
2689
                                         " one revision specifier")
2867
2690
        tree, branch, relpath = \
2868
 
            _open_directory_or_containing_tree_or_branch(filename, directory)
2869
 
        self.add_cleanup(branch.lock_read().unlock)
2870
 
        return self._run(tree, branch, relpath, filename, revision,
2871
 
                         name_from_revision, filters)
 
2691
            bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
2692
        branch.lock_read()
 
2693
        try:
 
2694
            return self._run(tree, branch, relpath, filename, revision,
 
2695
                             name_from_revision, filters)
 
2696
        finally:
 
2697
            branch.unlock()
2872
2698
 
2873
2699
    def _run(self, tree, b, relpath, filename, revision, name_from_revision,
2874
2700
        filtered):
2875
2701
        if tree is None:
2876
2702
            tree = b.basis_tree()
2877
2703
        rev_tree = _get_one_revision_tree('cat', revision, branch=b)
2878
 
        self.add_cleanup(rev_tree.lock_read().unlock)
2879
2704
 
2880
2705
        old_file_id = rev_tree.path2id(relpath)
2881
2706
 
2916
2741
            chunks = content.splitlines(True)
2917
2742
            content = filtered_output_bytes(chunks, filters,
2918
2743
                ContentFilterContext(relpath, rev_tree))
2919
 
            self.cleanup_now()
2920
2744
            self.outf.writelines(content)
2921
2745
        else:
2922
 
            self.cleanup_now()
2923
2746
            self.outf.write(content)
2924
2747
 
2925
2748
 
2926
2749
class cmd_local_time_offset(Command):
2927
 
    __doc__ = """Show the offset in seconds from GMT to local time."""
 
2750
    """Show the offset in seconds from GMT to local time."""
2928
2751
    hidden = True
2929
2752
    @display_command
2930
2753
    def run(self):
2931
 
        self.outf.write("%s\n" % osutils.local_time_offset())
 
2754
        print osutils.local_time_offset()
2932
2755
 
2933
2756
 
2934
2757
 
2935
2758
class cmd_commit(Command):
2936
 
    __doc__ = """Commit changes into a new revision.
 
2759
    """Commit changes into a new revision.
2937
2760
 
2938
2761
    An explanatory message needs to be given for each commit. This is
2939
2762
    often done by using the --message option (getting the message from the
3032
2855
             Option('strict',
3033
2856
                    help="Refuse to commit if there are unknown "
3034
2857
                    "files in the working tree."),
3035
 
             Option('commit-time', type=str,
3036
 
                    help="Manually set a commit time using commit date "
3037
 
                    "format, e.g. '2009-10-10 08:00:00 +0100'."),
3038
2858
             ListOption('fixes', type=str,
3039
2859
                    help="Mark a bug as being fixed by this revision "
3040
2860
                         "(see \"bzr help bugs\")."),
3047
2867
                         "the master branch until a normal commit "
3048
2868
                         "is performed."
3049
2869
                    ),
3050
 
             Option('show-diff', short_name='p',
3051
 
                    help='When no message is supplied, show the diff along'
3052
 
                    ' with the status summary in the message editor.'),
 
2870
              Option('show-diff',
 
2871
                     help='When no message is supplied, show the diff along'
 
2872
                     ' with the status summary in the message editor.'),
3053
2873
             ]
3054
2874
    aliases = ['ci', 'checkin']
3055
2875
 
3074
2894
 
3075
2895
    def run(self, message=None, file=None, verbose=False, selected_list=None,
3076
2896
            unchanged=False, strict=False, local=False, fixes=None,
3077
 
            author=None, show_diff=False, exclude=None, commit_time=None):
 
2897
            author=None, show_diff=False, exclude=None):
3078
2898
        from bzrlib.errors import (
3079
2899
            PointlessCommit,
3080
2900
            ConflictsInTree,
3086
2906
            make_commit_message_template_encoded
3087
2907
        )
3088
2908
 
3089
 
        commit_stamp = offset = None
3090
 
        if commit_time is not None:
3091
 
            try:
3092
 
                commit_stamp, offset = timestamp.parse_patch_date(commit_time)
3093
 
            except ValueError, e:
3094
 
                raise errors.BzrCommandError(
3095
 
                    "Could not parse --commit-time: " + str(e))
3096
 
 
3097
2909
        # TODO: Need a blackbox test for invoking the external editor; may be
3098
2910
        # slightly problematic to run this cross-platform.
3099
2911
 
3102
2914
 
3103
2915
        properties = {}
3104
2916
 
3105
 
        tree, selected_list = WorkingTree.open_containing_paths(selected_list)
 
2917
        tree, selected_list = tree_files(selected_list)
3106
2918
        if selected_list == ['']:
3107
2919
            # workaround - commit of root of tree should be exactly the same
3108
2920
            # as just default commit in that tree, and succeed even though
3119
2931
        if local and not tree.branch.get_bound_location():
3120
2932
            raise errors.LocalRequiresBoundBranch()
3121
2933
 
3122
 
        if message is not None:
3123
 
            try:
3124
 
                file_exists = osutils.lexists(message)
3125
 
            except UnicodeError:
3126
 
                # The commit message contains unicode characters that can't be
3127
 
                # represented in the filesystem encoding, so that can't be a
3128
 
                # file.
3129
 
                file_exists = False
3130
 
            if file_exists:
3131
 
                warning_msg = (
3132
 
                    'The commit message is a file name: "%(f)s".\n'
3133
 
                    '(use --file "%(f)s" to take commit message from that file)'
3134
 
                    % { 'f': message })
3135
 
                ui.ui_factory.show_warning(warning_msg)
3136
 
            if '\r' in message:
3137
 
                message = message.replace('\r\n', '\n')
3138
 
                message = message.replace('\r', '\n')
3139
 
            if file:
3140
 
                raise errors.BzrCommandError(
3141
 
                    "please specify either --message or --file")
3142
 
 
3143
2934
        def get_message(commit_obj):
3144
2935
            """Callback to get commit message"""
3145
 
            if file:
3146
 
                f = open(file)
3147
 
                try:
3148
 
                    my_message = f.read().decode(osutils.get_user_encoding())
3149
 
                finally:
3150
 
                    f.close()
3151
 
            elif message is not None:
3152
 
                my_message = message
3153
 
            else:
3154
 
                # No message supplied: make one up.
3155
 
                # text is the status of the tree
3156
 
                text = make_commit_message_template_encoded(tree,
 
2936
            my_message = message
 
2937
            if my_message is None and not file:
 
2938
                t = make_commit_message_template_encoded(tree,
3157
2939
                        selected_list, diff=show_diff,
3158
2940
                        output_encoding=osutils.get_user_encoding())
3159
 
                # start_message is the template generated from hooks
3160
 
                # XXX: Warning - looks like hooks return unicode,
3161
 
                # make_commit_message_template_encoded returns user encoding.
3162
 
                # We probably want to be using edit_commit_message instead to
3163
 
                # avoid this.
3164
2941
                start_message = generate_commit_message_template(commit_obj)
3165
 
                my_message = edit_commit_message_encoded(text,
 
2942
                my_message = edit_commit_message_encoded(t,
3166
2943
                    start_message=start_message)
3167
2944
                if my_message is None:
3168
2945
                    raise errors.BzrCommandError("please specify a commit"
3169
2946
                        " message with either --message or --file")
 
2947
            elif my_message and file:
 
2948
                raise errors.BzrCommandError(
 
2949
                    "please specify either --message or --file")
 
2950
            if file:
 
2951
                my_message = codecs.open(file, 'rt',
 
2952
                                         osutils.get_user_encoding()).read()
3170
2953
            if my_message == "":
3171
2954
                raise errors.BzrCommandError("empty commit message specified")
3172
2955
            return my_message
3173
2956
 
3174
 
        # The API permits a commit with a filter of [] to mean 'select nothing'
3175
 
        # but the command line should not do that.
3176
 
        if not selected_list:
3177
 
            selected_list = None
3178
2957
        try:
3179
2958
            tree.commit(message_callback=get_message,
3180
2959
                        specific_files=selected_list,
3181
2960
                        allow_pointless=unchanged, strict=strict, local=local,
3182
2961
                        reporter=None, verbose=verbose, revprops=properties,
3183
 
                        authors=author, timestamp=commit_stamp,
3184
 
                        timezone=offset,
3185
 
                        exclude=tree.safe_relpath_files(exclude))
 
2962
                        authors=author,
 
2963
                        exclude=safe_relpath_files(tree, exclude))
3186
2964
        except PointlessCommit:
 
2965
            # FIXME: This should really happen before the file is read in;
 
2966
            # perhaps prepare the commit; get the message; then actually commit
3187
2967
            raise errors.BzrCommandError("No changes to commit."
3188
2968
                              " Use --unchanged to commit anyhow.")
3189
2969
        except ConflictsInTree:
3194
2974
            raise errors.BzrCommandError("Commit refused because there are"
3195
2975
                              " unknown files in the working tree.")
3196
2976
        except errors.BoundBranchOutOfDate, e:
3197
 
            e.extra_help = ("\n"
3198
 
                'To commit to master branch, run update and then commit.\n'
3199
 
                'You can also pass --local to commit to continue working '
3200
 
                'disconnected.')
3201
 
            raise
 
2977
            raise errors.BzrCommandError(str(e) + "\n"
 
2978
            'To commit to master branch, run update and then commit.\n'
 
2979
            'You can also pass --local to commit to continue working '
 
2980
            'disconnected.')
3202
2981
 
3203
2982
 
3204
2983
class cmd_check(Command):
3205
 
    __doc__ = """Validate working tree structure, branch consistency and repository history.
 
2984
    """Validate working tree structure, branch consistency and repository history.
3206
2985
 
3207
2986
    This command checks various invariants about branch and repository storage
3208
2987
    to detect data corruption or bzr bugs.
3210
2989
    The working tree and branch checks will only give output if a problem is
3211
2990
    detected. The output fields of the repository check are:
3212
2991
 
3213
 
    revisions
3214
 
        This is just the number of revisions checked.  It doesn't
3215
 
        indicate a problem.
3216
 
 
3217
 
    versionedfiles
3218
 
        This is just the number of versionedfiles checked.  It
3219
 
        doesn't indicate a problem.
3220
 
 
3221
 
    unreferenced ancestors
3222
 
        Texts that are ancestors of other texts, but
3223
 
        are not properly referenced by the revision ancestry.  This is a
3224
 
        subtle problem that Bazaar can work around.
3225
 
 
3226
 
    unique file texts
3227
 
        This is the total number of unique file contents
3228
 
        seen in the checked revisions.  It does not indicate a problem.
3229
 
 
3230
 
    repeated file texts
3231
 
        This is the total number of repeated texts seen
3232
 
        in the checked revisions.  Texts can be repeated when their file
3233
 
        entries are modified, but the file contents are not.  It does not
3234
 
        indicate a problem.
 
2992
        revisions: This is just the number of revisions checked.  It doesn't
 
2993
            indicate a problem.
 
2994
        versionedfiles: This is just the number of versionedfiles checked.  It
 
2995
            doesn't indicate a problem.
 
2996
        unreferenced ancestors: Texts that are ancestors of other texts, but
 
2997
            are not properly referenced by the revision ancestry.  This is a
 
2998
            subtle problem that Bazaar can work around.
 
2999
        unique file texts: This is the total number of unique file contents
 
3000
            seen in the checked revisions.  It does not indicate a problem.
 
3001
        repeated file texts: This is the total number of repeated texts seen
 
3002
            in the checked revisions.  Texts can be repeated when their file
 
3003
            entries are modified, but the file contents are not.  It does not
 
3004
            indicate a problem.
3235
3005
 
3236
3006
    If no restrictions are specified, all Bazaar data that is found at the given
3237
3007
    location will be checked.
3272
3042
 
3273
3043
 
3274
3044
class cmd_upgrade(Command):
3275
 
    __doc__ = """Upgrade branch storage to current format.
 
3045
    """Upgrade branch storage to current format.
3276
3046
 
3277
3047
    The check command or bzr developers may sometimes advise you to run
3278
3048
    this command. When the default format has changed you may also be warned
3296
3066
 
3297
3067
 
3298
3068
class cmd_whoami(Command):
3299
 
    __doc__ = """Show or set bzr user id.
 
3069
    """Show or set bzr user id.
3300
3070
 
3301
3071
    :Examples:
3302
3072
        Show the email of the current user::
3307
3077
 
3308
3078
            bzr whoami "Frank Chu <fchu@example.com>"
3309
3079
    """
3310
 
    takes_options = [ 'directory',
3311
 
                      Option('email',
 
3080
    takes_options = [ Option('email',
3312
3081
                             help='Display email address only.'),
3313
3082
                      Option('branch',
3314
3083
                             help='Set identity for the current branch instead of '
3318
3087
    encoding_type = 'replace'
3319
3088
 
3320
3089
    @display_command
3321
 
    def run(self, email=False, branch=False, name=None, directory=None):
 
3090
    def run(self, email=False, branch=False, name=None):
3322
3091
        if name is None:
3323
 
            if directory is None:
3324
 
                # use branch if we're inside one; otherwise global config
3325
 
                try:
3326
 
                    c = Branch.open_containing(u'.')[0].get_config()
3327
 
                except errors.NotBranchError:
3328
 
                    c = _mod_config.GlobalConfig()
3329
 
            else:
3330
 
                c = Branch.open(directory).get_config()
 
3092
            # use branch if we're inside one; otherwise global config
 
3093
            try:
 
3094
                c = Branch.open_containing('.')[0].get_config()
 
3095
            except errors.NotBranchError:
 
3096
                c = config.GlobalConfig()
3331
3097
            if email:
3332
3098
                self.outf.write(c.user_email() + '\n')
3333
3099
            else:
3336
3102
 
3337
3103
        # display a warning if an email address isn't included in the given name.
3338
3104
        try:
3339
 
            _mod_config.extract_email_address(name)
 
3105
            config.extract_email_address(name)
3340
3106
        except errors.NoEmailInUsername, e:
3341
3107
            warning('"%s" does not seem to contain an email address.  '
3342
3108
                    'This is allowed, but not recommended.', name)
3343
3109
 
3344
3110
        # use global config unless --branch given
3345
3111
        if branch:
3346
 
            if directory is None:
3347
 
                c = Branch.open_containing(u'.')[0].get_config()
3348
 
            else:
3349
 
                c = Branch.open(directory).get_config()
 
3112
            c = Branch.open_containing('.')[0].get_config()
3350
3113
        else:
3351
 
            c = _mod_config.GlobalConfig()
 
3114
            c = config.GlobalConfig()
3352
3115
        c.set_user_option('email', name)
3353
3116
 
3354
3117
 
3355
3118
class cmd_nick(Command):
3356
 
    __doc__ = """Print or set the branch nickname.
 
3119
    """Print or set the branch nickname.
3357
3120
 
3358
3121
    If unset, the tree root directory name is used as the nickname.
3359
3122
    To print the current nickname, execute with no argument.
3364
3127
 
3365
3128
    _see_also = ['info']
3366
3129
    takes_args = ['nickname?']
3367
 
    takes_options = ['directory']
3368
 
    def run(self, nickname=None, directory=u'.'):
3369
 
        branch = Branch.open_containing(directory)[0]
 
3130
    def run(self, nickname=None):
 
3131
        branch = Branch.open_containing(u'.')[0]
3370
3132
        if nickname is None:
3371
3133
            self.printme(branch)
3372
3134
        else:
3374
3136
 
3375
3137
    @display_command
3376
3138
    def printme(self, branch):
3377
 
        self.outf.write('%s\n' % branch.nick)
 
3139
        print branch.nick
3378
3140
 
3379
3141
 
3380
3142
class cmd_alias(Command):
3381
 
    __doc__ = """Set/unset and display aliases.
 
3143
    """Set/unset and display aliases.
3382
3144
 
3383
3145
    :Examples:
3384
3146
        Show the current aliases::
3421
3183
                'bzr alias --remove expects an alias to remove.')
3422
3184
        # If alias is not found, print something like:
3423
3185
        # unalias: foo: not found
3424
 
        c = _mod_config.GlobalConfig()
 
3186
        c = config.GlobalConfig()
3425
3187
        c.unset_alias(alias_name)
3426
3188
 
3427
3189
    @display_command
3428
3190
    def print_aliases(self):
3429
3191
        """Print out the defined aliases in a similar format to bash."""
3430
 
        aliases = _mod_config.GlobalConfig().get_aliases()
 
3192
        aliases = config.GlobalConfig().get_aliases()
3431
3193
        for key, value in sorted(aliases.iteritems()):
3432
3194
            self.outf.write('bzr alias %s="%s"\n' % (key, value))
3433
3195
 
3443
3205
 
3444
3206
    def set_alias(self, alias_name, alias_command):
3445
3207
        """Save the alias in the global config."""
3446
 
        c = _mod_config.GlobalConfig()
 
3208
        c = config.GlobalConfig()
3447
3209
        c.set_alias(alias_name, alias_command)
3448
3210
 
3449
3211
 
3450
3212
class cmd_selftest(Command):
3451
 
    __doc__ = """Run internal test suite.
 
3213
    """Run internal test suite.
3452
3214
 
3453
3215
    If arguments are given, they are regular expressions that say which tests
3454
3216
    should run.  Tests matching any expression are run, and other tests are
3481
3243
    Tests that need working space on disk use a common temporary directory,
3482
3244
    typically inside $TMPDIR or /tmp.
3483
3245
 
3484
 
    If you set BZR_TEST_PDB=1 when running selftest, failing tests will drop
3485
 
    into a pdb postmortem session.
3486
 
 
3487
 
    The --coverage=DIRNAME global option produces a report with covered code
3488
 
    indicated.
3489
 
 
3490
3246
    :Examples:
3491
3247
        Run only tests relating to 'ignore'::
3492
3248
 
3501
3257
    def get_transport_type(typestring):
3502
3258
        """Parse and return a transport specifier."""
3503
3259
        if typestring == "sftp":
3504
 
            from bzrlib.tests import stub_sftp
3505
 
            return stub_sftp.SFTPAbsoluteServer
 
3260
            from bzrlib.transport.sftp import SFTPAbsoluteServer
 
3261
            return SFTPAbsoluteServer
3506
3262
        if typestring == "memory":
3507
 
            from bzrlib.tests import test_server
3508
 
            return memory.MemoryServer
 
3263
            from bzrlib.transport.memory import MemoryServer
 
3264
            return MemoryServer
3509
3265
        if typestring == "fakenfs":
3510
 
            from bzrlib.tests import test_server
3511
 
            return test_server.FakeNFSServer
 
3266
            from bzrlib.transport.fakenfs import FakeNFSServer
 
3267
            return FakeNFSServer
3512
3268
        msg = "No known transport type %s. Supported types are: sftp\n" %\
3513
3269
            (typestring)
3514
3270
        raise errors.BzrCommandError(msg)
3525
3281
                                 'throughout the test suite.',
3526
3282
                            type=get_transport_type),
3527
3283
                     Option('benchmark',
3528
 
                            help='Run the benchmarks rather than selftests.',
3529
 
                            hidden=True),
 
3284
                            help='Run the benchmarks rather than selftests.'),
3530
3285
                     Option('lsprof-timed',
3531
3286
                            help='Generate lsprof output for benchmarked'
3532
3287
                                 ' sections of code.'),
3533
 
                     Option('lsprof-tests',
3534
 
                            help='Generate lsprof output for each test.'),
 
3288
                     Option('cache-dir', type=str,
 
3289
                            help='Cache intermediate benchmark output in this '
 
3290
                                 'directory.'),
3535
3291
                     Option('first',
3536
3292
                            help='Run all tests, but run specified tests first.',
3537
3293
                            short_name='f',
3571
3327
 
3572
3328
    def run(self, testspecs_list=None, verbose=False, one=False,
3573
3329
            transport=None, benchmark=None,
3574
 
            lsprof_timed=None,
 
3330
            lsprof_timed=None, cache_dir=None,
3575
3331
            first=False, list_only=False,
3576
3332
            randomize=None, exclude=None, strict=False,
3577
3333
            load_list=None, debugflag=None, starting_with=None, subunit=False,
3578
 
            parallel=None, lsprof_tests=False):
3579
 
        from bzrlib import tests
3580
 
 
 
3334
            parallel=None):
 
3335
        from bzrlib.tests import selftest
 
3336
        import bzrlib.benchmarks as benchmarks
 
3337
        from bzrlib.benchmarks import tree_creator
 
3338
 
 
3339
        # Make deprecation warnings visible, unless -Werror is set
 
3340
        symbol_versioning.activate_deprecation_warnings(override=False)
 
3341
 
 
3342
        if cache_dir is not None:
 
3343
            tree_creator.TreeCreator.CACHE_ROOT = osutils.abspath(cache_dir)
3581
3344
        if testspecs_list is not None:
3582
3345
            pattern = '|'.join(testspecs_list)
3583
3346
        else:
3589
3352
                raise errors.BzrCommandError("subunit not available. subunit "
3590
3353
                    "needs to be installed to use --subunit.")
3591
3354
            self.additional_selftest_args['runner_class'] = SubUnitBzrRunner
3592
 
            # On Windows, disable automatic conversion of '\n' to '\r\n' in
3593
 
            # stdout, which would corrupt the subunit stream. 
3594
 
            # FIXME: This has been fixed in subunit trunk (>0.0.5) so the
3595
 
            # following code can be deleted when it's sufficiently deployed
3596
 
            # -- vila/mgz 20100514
3597
 
            if (sys.platform == "win32"
3598
 
                and getattr(sys.stdout, 'fileno', None) is not None):
3599
 
                import msvcrt
3600
 
                msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
3601
3355
        if parallel:
3602
3356
            self.additional_selftest_args.setdefault(
3603
3357
                'suite_decorators', []).append(parallel)
3604
3358
        if benchmark:
3605
 
            raise errors.BzrCommandError(
3606
 
                "--benchmark is no longer supported from bzr 2.2; "
3607
 
                "use bzr-usertest instead")
3608
 
        test_suite_factory = None
3609
 
        selftest_kwargs = {"verbose": verbose,
3610
 
                          "pattern": pattern,
3611
 
                          "stop_on_failure": one,
3612
 
                          "transport": transport,
3613
 
                          "test_suite_factory": test_suite_factory,
3614
 
                          "lsprof_timed": lsprof_timed,
3615
 
                          "lsprof_tests": lsprof_tests,
3616
 
                          "matching_tests_first": first,
3617
 
                          "list_only": list_only,
3618
 
                          "random_seed": randomize,
3619
 
                          "exclude_pattern": exclude,
3620
 
                          "strict": strict,
3621
 
                          "load_list": load_list,
3622
 
                          "debug_flags": debugflag,
3623
 
                          "starting_with": starting_with
3624
 
                          }
3625
 
        selftest_kwargs.update(self.additional_selftest_args)
3626
 
 
3627
 
        # Make deprecation warnings visible, unless -Werror is set
3628
 
        cleanup = symbol_versioning.activate_deprecation_warnings(
3629
 
            override=False)
 
3359
            test_suite_factory = benchmarks.test_suite
 
3360
            # Unless user explicitly asks for quiet, be verbose in benchmarks
 
3361
            verbose = not is_quiet()
 
3362
            # TODO: should possibly lock the history file...
 
3363
            benchfile = open(".perf_history", "at", buffering=1)
 
3364
        else:
 
3365
            test_suite_factory = None
 
3366
            benchfile = None
3630
3367
        try:
3631
 
            result = tests.selftest(**selftest_kwargs)
 
3368
            selftest_kwargs = {"verbose": verbose,
 
3369
                              "pattern": pattern,
 
3370
                              "stop_on_failure": one,
 
3371
                              "transport": transport,
 
3372
                              "test_suite_factory": test_suite_factory,
 
3373
                              "lsprof_timed": lsprof_timed,
 
3374
                              "bench_history": benchfile,
 
3375
                              "matching_tests_first": first,
 
3376
                              "list_only": list_only,
 
3377
                              "random_seed": randomize,
 
3378
                              "exclude_pattern": exclude,
 
3379
                              "strict": strict,
 
3380
                              "load_list": load_list,
 
3381
                              "debug_flags": debugflag,
 
3382
                              "starting_with": starting_with
 
3383
                              }
 
3384
            selftest_kwargs.update(self.additional_selftest_args)
 
3385
            result = selftest(**selftest_kwargs)
3632
3386
        finally:
3633
 
            cleanup()
 
3387
            if benchfile is not None:
 
3388
                benchfile.close()
3634
3389
        return int(not result)
3635
3390
 
3636
3391
 
3637
3392
class cmd_version(Command):
3638
 
    __doc__ = """Show version of bzr."""
 
3393
    """Show version of bzr."""
3639
3394
 
3640
3395
    encoding_type = 'replace'
3641
3396
    takes_options = [
3652
3407
 
3653
3408
 
3654
3409
class cmd_rocks(Command):
3655
 
    __doc__ = """Statement of optimism."""
 
3410
    """Statement of optimism."""
3656
3411
 
3657
3412
    hidden = True
3658
3413
 
3659
3414
    @display_command
3660
3415
    def run(self):
3661
 
        self.outf.write("It sure does!\n")
 
3416
        print "It sure does!"
3662
3417
 
3663
3418
 
3664
3419
class cmd_find_merge_base(Command):
3665
 
    __doc__ = """Find and print a base revision for merging two branches."""
 
3420
    """Find and print a base revision for merging two branches."""
3666
3421
    # TODO: Options to specify revisions on either side, as if
3667
3422
    #       merging only part of the history.
3668
3423
    takes_args = ['branch', 'other']
3674
3429
 
3675
3430
        branch1 = Branch.open_containing(branch)[0]
3676
3431
        branch2 = Branch.open_containing(other)[0]
3677
 
        self.add_cleanup(branch1.lock_read().unlock)
3678
 
        self.add_cleanup(branch2.lock_read().unlock)
3679
 
        last1 = ensure_null(branch1.last_revision())
3680
 
        last2 = ensure_null(branch2.last_revision())
3681
 
 
3682
 
        graph = branch1.repository.get_graph(branch2.repository)
3683
 
        base_rev_id = graph.find_unique_lca(last1, last2)
3684
 
 
3685
 
        self.outf.write('merge base is revision %s\n' % base_rev_id)
 
3432
        branch1.lock_read()
 
3433
        try:
 
3434
            branch2.lock_read()
 
3435
            try:
 
3436
                last1 = ensure_null(branch1.last_revision())
 
3437
                last2 = ensure_null(branch2.last_revision())
 
3438
 
 
3439
                graph = branch1.repository.get_graph(branch2.repository)
 
3440
                base_rev_id = graph.find_unique_lca(last1, last2)
 
3441
 
 
3442
                print 'merge base is revision %s' % base_rev_id
 
3443
            finally:
 
3444
                branch2.unlock()
 
3445
        finally:
 
3446
            branch1.unlock()
3686
3447
 
3687
3448
 
3688
3449
class cmd_merge(Command):
3689
 
    __doc__ = """Perform a three-way merge.
 
3450
    """Perform a three-way merge.
3690
3451
 
3691
3452
    The source of the merge can be specified either in the form of a branch,
3692
3453
    or in the form of a path to a file containing a merge directive generated
3721
3482
    committed to record the result of the merge.
3722
3483
 
3723
3484
    merge refuses to run if there are any uncommitted changes, unless
3724
 
    --force is given. The --force option can also be used to create a
3725
 
    merge revision which has more than two parents.
3726
 
 
3727
 
    If one would like to merge changes from the working tree of the other
3728
 
    branch without merging any committed revisions, the --uncommitted option
3729
 
    can be given.
3730
 
 
3731
 
    To select only some changes to merge, use "merge -i", which will prompt
3732
 
    you to apply each diff hunk and file change, similar to "shelve".
 
3485
    --force is given.
3733
3486
 
3734
3487
    :Examples:
3735
3488
        To merge the latest revision from bzr.dev::
3744
3497
 
3745
3498
            bzr merge -r 81..82 ../bzr.dev
3746
3499
 
3747
 
        To apply a merge directive contained in /tmp/merge::
 
3500
        To apply a merge directive contained in /tmp/merge:
3748
3501
 
3749
3502
            bzr merge /tmp/merge
3750
 
 
3751
 
        To create a merge revision with three parents from two branches
3752
 
        feature1a and feature1b:
3753
 
 
3754
 
            bzr merge ../feature1a
3755
 
            bzr merge ../feature1b --force
3756
 
            bzr commit -m 'revision with three parents'
3757
3503
    """
3758
3504
 
3759
3505
    encoding_type = 'exact'
3775
3521
                ' completely merged into the source, pull from the'
3776
3522
                ' source rather than merging.  When this happens,'
3777
3523
                ' you do not need to commit the result.'),
3778
 
        custom_help('directory',
 
3524
        Option('directory',
3779
3525
               help='Branch to merge into, '
3780
 
                    'rather than the one containing the working directory.'),
3781
 
        Option('preview', help='Instead of merging, show a diff of the'
3782
 
               ' merge.'),
3783
 
        Option('interactive', help='Select changes interactively.',
3784
 
            short_name='i')
 
3526
                    'rather than the one containing the working directory.',
 
3527
               short_name='d',
 
3528
               type=unicode,
 
3529
               ),
 
3530
        Option('preview', help='Instead of merging, show a diff of the merge.')
3785
3531
    ]
3786
3532
 
3787
3533
    def run(self, location=None, revision=None, force=False,
3789
3535
            uncommitted=False, pull=False,
3790
3536
            directory=None,
3791
3537
            preview=False,
3792
 
            interactive=False,
3793
3538
            ):
3794
3539
        if merge_type is None:
3795
3540
            merge_type = _mod_merge.Merge3Merger
3801
3546
        verified = 'inapplicable'
3802
3547
        tree = WorkingTree.open_containing(directory)[0]
3803
3548
 
 
3549
        # die as quickly as possible if there are uncommitted changes
3804
3550
        try:
3805
3551
            basis_tree = tree.revision_tree(tree.last_revision())
3806
3552
        except errors.NoSuchRevision:
3807
3553
            basis_tree = tree.basis_tree()
3808
 
 
3809
 
        # die as quickly as possible if there are uncommitted changes
3810
3554
        if not force:
3811
 
            if tree.has_changes():
 
3555
            changes = tree.changes_from(basis_tree)
 
3556
            if changes.has_changed():
3812
3557
                raise errors.UncommittedChanges(tree)
3813
3558
 
3814
3559
        view_info = _get_view_info_for_change_reporter(tree)
3815
3560
        change_reporter = delta._ChangeReporter(
3816
3561
            unversioned_filter=tree.is_ignored, view_info=view_info)
3817
 
        pb = ui.ui_factory.nested_progress_bar()
3818
 
        self.add_cleanup(pb.finished)
3819
 
        self.add_cleanup(tree.lock_write().unlock)
3820
 
        if location is not None:
3821
 
            try:
3822
 
                mergeable = bundle.read_mergeable_from_url(location,
3823
 
                    possible_transports=possible_transports)
3824
 
            except errors.NotABundle:
3825
 
                mergeable = None
 
3562
        cleanups = []
 
3563
        try:
 
3564
            pb = ui.ui_factory.nested_progress_bar()
 
3565
            cleanups.append(pb.finished)
 
3566
            tree.lock_write()
 
3567
            cleanups.append(tree.unlock)
 
3568
            if location is not None:
 
3569
                try:
 
3570
                    mergeable = bundle.read_mergeable_from_url(location,
 
3571
                        possible_transports=possible_transports)
 
3572
                except errors.NotABundle:
 
3573
                    mergeable = None
 
3574
                else:
 
3575
                    if uncommitted:
 
3576
                        raise errors.BzrCommandError('Cannot use --uncommitted'
 
3577
                            ' with bundles or merge directives.')
 
3578
 
 
3579
                    if revision is not None:
 
3580
                        raise errors.BzrCommandError(
 
3581
                            'Cannot use -r with merge directives or bundles')
 
3582
                    merger, verified = _mod_merge.Merger.from_mergeable(tree,
 
3583
                       mergeable, pb)
 
3584
 
 
3585
            if merger is None and uncommitted:
 
3586
                if revision is not None and len(revision) > 0:
 
3587
                    raise errors.BzrCommandError('Cannot use --uncommitted and'
 
3588
                        ' --revision at the same time.')
 
3589
                location = self._select_branch_location(tree, location)[0]
 
3590
                other_tree, other_path = WorkingTree.open_containing(location)
 
3591
                merger = _mod_merge.Merger.from_uncommitted(tree, other_tree,
 
3592
                    pb)
 
3593
                allow_pending = False
 
3594
                if other_path != '':
 
3595
                    merger.interesting_files = [other_path]
 
3596
 
 
3597
            if merger is None:
 
3598
                merger, allow_pending = self._get_merger_from_branch(tree,
 
3599
                    location, revision, remember, possible_transports, pb)
 
3600
 
 
3601
            merger.merge_type = merge_type
 
3602
            merger.reprocess = reprocess
 
3603
            merger.show_base = show_base
 
3604
            self.sanity_check_merger(merger)
 
3605
            if (merger.base_rev_id == merger.other_rev_id and
 
3606
                merger.other_rev_id is not None):
 
3607
                note('Nothing to do.')
 
3608
                return 0
 
3609
            if pull:
 
3610
                if merger.interesting_files is not None:
 
3611
                    raise errors.BzrCommandError('Cannot pull individual files')
 
3612
                if (merger.base_rev_id == tree.last_revision()):
 
3613
                    result = tree.pull(merger.other_branch, False,
 
3614
                                       merger.other_rev_id)
 
3615
                    result.report(self.outf)
 
3616
                    return 0
 
3617
            merger.check_basis(False)
 
3618
            if preview:
 
3619
                return self._do_preview(merger)
3826
3620
            else:
3827
 
                if uncommitted:
3828
 
                    raise errors.BzrCommandError('Cannot use --uncommitted'
3829
 
                        ' with bundles or merge directives.')
3830
 
 
3831
 
                if revision is not None:
3832
 
                    raise errors.BzrCommandError(
3833
 
                        'Cannot use -r with merge directives or bundles')
3834
 
                merger, verified = _mod_merge.Merger.from_mergeable(tree,
3835
 
                   mergeable, None)
3836
 
 
3837
 
        if merger is None and uncommitted:
3838
 
            if revision is not None and len(revision) > 0:
3839
 
                raise errors.BzrCommandError('Cannot use --uncommitted and'
3840
 
                    ' --revision at the same time.')
3841
 
            merger = self.get_merger_from_uncommitted(tree, location, None)
3842
 
            allow_pending = False
3843
 
 
3844
 
        if merger is None:
3845
 
            merger, allow_pending = self._get_merger_from_branch(tree,
3846
 
                location, revision, remember, possible_transports, None)
3847
 
 
3848
 
        merger.merge_type = merge_type
3849
 
        merger.reprocess = reprocess
3850
 
        merger.show_base = show_base
3851
 
        self.sanity_check_merger(merger)
3852
 
        if (merger.base_rev_id == merger.other_rev_id and
3853
 
            merger.other_rev_id is not None):
3854
 
            note('Nothing to do.')
3855
 
            return 0
3856
 
        if pull:
3857
 
            if merger.interesting_files is not None:
3858
 
                raise errors.BzrCommandError('Cannot pull individual files')
3859
 
            if (merger.base_rev_id == tree.last_revision()):
3860
 
                result = tree.pull(merger.other_branch, False,
3861
 
                                   merger.other_rev_id)
3862
 
                result.report(self.outf)
3863
 
                return 0
3864
 
        if merger.this_basis is None:
3865
 
            raise errors.BzrCommandError(
3866
 
                "This branch has no commits."
3867
 
                " (perhaps you would prefer 'bzr pull')")
3868
 
        if preview:
3869
 
            return self._do_preview(merger)
3870
 
        elif interactive:
3871
 
            return self._do_interactive(merger)
3872
 
        else:
3873
 
            return self._do_merge(merger, change_reporter, allow_pending,
3874
 
                                  verified)
3875
 
 
3876
 
    def _get_preview(self, merger):
 
3621
                return self._do_merge(merger, change_reporter, allow_pending,
 
3622
                                      verified)
 
3623
        finally:
 
3624
            for cleanup in reversed(cleanups):
 
3625
                cleanup()
 
3626
 
 
3627
    def _do_preview(self, merger):
 
3628
        from bzrlib.diff import show_diff_trees
3877
3629
        tree_merger = merger.make_merger()
3878
3630
        tt = tree_merger.make_preview_transform()
3879
 
        self.add_cleanup(tt.finalize)
3880
 
        result_tree = tt.get_preview_tree()
3881
 
        return result_tree
3882
 
 
3883
 
    def _do_preview(self, merger):
3884
 
        from bzrlib.diff import show_diff_trees
3885
 
        result_tree = self._get_preview(merger)
3886
 
        path_encoding = osutils.get_diff_header_encoding()
3887
 
        show_diff_trees(merger.this_tree, result_tree, self.outf,
3888
 
                        old_label='', new_label='',
3889
 
                        path_encoding=path_encoding)
 
3631
        try:
 
3632
            result_tree = tt.get_preview_tree()
 
3633
            show_diff_trees(merger.this_tree, result_tree, self.outf,
 
3634
                            old_label='', new_label='')
 
3635
        finally:
 
3636
            tt.finalize()
3890
3637
 
3891
3638
    def _do_merge(self, merger, change_reporter, allow_pending, verified):
3892
3639
        merger.change_reporter = change_reporter
3900
3647
        else:
3901
3648
            return 0
3902
3649
 
3903
 
    def _do_interactive(self, merger):
3904
 
        """Perform an interactive merge.
3905
 
 
3906
 
        This works by generating a preview tree of the merge, then using
3907
 
        Shelver to selectively remove the differences between the working tree
3908
 
        and the preview tree.
3909
 
        """
3910
 
        from bzrlib import shelf_ui
3911
 
        result_tree = self._get_preview(merger)
3912
 
        writer = bzrlib.option.diff_writer_registry.get()
3913
 
        shelver = shelf_ui.Shelver(merger.this_tree, result_tree, destroy=True,
3914
 
                                   reporter=shelf_ui.ApplyReporter(),
3915
 
                                   diff_writer=writer(sys.stdout))
3916
 
        try:
3917
 
            shelver.run()
3918
 
        finally:
3919
 
            shelver.finalize()
3920
 
 
3921
3650
    def sanity_check_merger(self, merger):
3922
3651
        if (merger.show_base and
3923
3652
            not merger.merge_type is _mod_merge.Merge3Merger):
3958
3687
            base_branch, base_path = Branch.open_containing(base_loc,
3959
3688
                possible_transports)
3960
3689
        # Find the revision ids
3961
 
        other_revision_id = None
3962
 
        base_revision_id = None
3963
 
        if revision is not None:
3964
 
            if len(revision) >= 1:
3965
 
                other_revision_id = revision[-1].as_revision_id(other_branch)
3966
 
            if len(revision) == 2:
3967
 
                base_revision_id = revision[0].as_revision_id(base_branch)
3968
 
        if other_revision_id is None:
 
3690
        if revision is None or len(revision) < 1 or revision[-1] is None:
3969
3691
            other_revision_id = _mod_revision.ensure_null(
3970
3692
                other_branch.last_revision())
 
3693
        else:
 
3694
            other_revision_id = revision[-1].as_revision_id(other_branch)
 
3695
        if (revision is not None and len(revision) == 2
 
3696
            and revision[0] is not None):
 
3697
            base_revision_id = revision[0].as_revision_id(base_branch)
 
3698
        else:
 
3699
            base_revision_id = None
3971
3700
        # Remember where we merge from
3972
3701
        if ((remember or tree.branch.get_submit_branch() is None) and
3973
3702
             user_location is not None):
3982
3711
            allow_pending = True
3983
3712
        return merger, allow_pending
3984
3713
 
3985
 
    def get_merger_from_uncommitted(self, tree, location, pb):
3986
 
        """Get a merger for uncommitted changes.
3987
 
 
3988
 
        :param tree: The tree the merger should apply to.
3989
 
        :param location: The location containing uncommitted changes.
3990
 
        :param pb: The progress bar to use for showing progress.
3991
 
        """
3992
 
        location = self._select_branch_location(tree, location)[0]
3993
 
        other_tree, other_path = WorkingTree.open_containing(location)
3994
 
        merger = _mod_merge.Merger.from_uncommitted(tree, other_tree, pb)
3995
 
        if other_path != '':
3996
 
            merger.interesting_files = [other_path]
3997
 
        return merger
3998
 
 
3999
3714
    def _select_branch_location(self, tree, user_location, revision=None,
4000
3715
                                index=None):
4001
3716
        """Select a branch location, according to possible inputs.
4045
3760
 
4046
3761
 
4047
3762
class cmd_remerge(Command):
4048
 
    __doc__ = """Redo a merge.
 
3763
    """Redo a merge.
4049
3764
 
4050
3765
    Use this if you want to try a different merge technique while resolving
4051
3766
    conflicts.  Some merge techniques are better than others, and remerge
4076
3791
 
4077
3792
    def run(self, file_list=None, merge_type=None, show_base=False,
4078
3793
            reprocess=False):
4079
 
        from bzrlib.conflicts import restore
4080
3794
        if merge_type is None:
4081
3795
            merge_type = _mod_merge.Merge3Merger
4082
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
4083
 
        self.add_cleanup(tree.lock_write().unlock)
4084
 
        parents = tree.get_parent_ids()
4085
 
        if len(parents) != 2:
4086
 
            raise errors.BzrCommandError("Sorry, remerge only works after normal"
4087
 
                                         " merges.  Not cherrypicking or"
4088
 
                                         " multi-merges.")
4089
 
        repository = tree.branch.repository
4090
 
        interesting_ids = None
4091
 
        new_conflicts = []
4092
 
        conflicts = tree.conflicts()
4093
 
        if file_list is not None:
4094
 
            interesting_ids = set()
4095
 
            for filename in file_list:
4096
 
                file_id = tree.path2id(filename)
4097
 
                if file_id is None:
4098
 
                    raise errors.NotVersionedError(filename)
4099
 
                interesting_ids.add(file_id)
4100
 
                if tree.kind(file_id) != "directory":
4101
 
                    continue
 
3796
        tree, file_list = tree_files(file_list)
 
3797
        tree.lock_write()
 
3798
        try:
 
3799
            parents = tree.get_parent_ids()
 
3800
            if len(parents) != 2:
 
3801
                raise errors.BzrCommandError("Sorry, remerge only works after normal"
 
3802
                                             " merges.  Not cherrypicking or"
 
3803
                                             " multi-merges.")
 
3804
            repository = tree.branch.repository
 
3805
            interesting_ids = None
 
3806
            new_conflicts = []
 
3807
            conflicts = tree.conflicts()
 
3808
            if file_list is not None:
 
3809
                interesting_ids = set()
 
3810
                for filename in file_list:
 
3811
                    file_id = tree.path2id(filename)
 
3812
                    if file_id is None:
 
3813
                        raise errors.NotVersionedError(filename)
 
3814
                    interesting_ids.add(file_id)
 
3815
                    if tree.kind(file_id) != "directory":
 
3816
                        continue
4102
3817
 
4103
 
                for name, ie in tree.inventory.iter_entries(file_id):
4104
 
                    interesting_ids.add(ie.file_id)
4105
 
            new_conflicts = conflicts.select_conflicts(tree, file_list)[0]
4106
 
        else:
4107
 
            # Remerge only supports resolving contents conflicts
4108
 
            allowed_conflicts = ('text conflict', 'contents conflict')
4109
 
            restore_files = [c.path for c in conflicts
4110
 
                             if c.typestring in allowed_conflicts]
4111
 
        _mod_merge.transform_tree(tree, tree.basis_tree(), interesting_ids)
4112
 
        tree.set_conflicts(ConflictList(new_conflicts))
4113
 
        if file_list is not None:
4114
 
            restore_files = file_list
4115
 
        for filename in restore_files:
 
3818
                    for name, ie in tree.inventory.iter_entries(file_id):
 
3819
                        interesting_ids.add(ie.file_id)
 
3820
                new_conflicts = conflicts.select_conflicts(tree, file_list)[0]
 
3821
            else:
 
3822
                # Remerge only supports resolving contents conflicts
 
3823
                allowed_conflicts = ('text conflict', 'contents conflict')
 
3824
                restore_files = [c.path for c in conflicts
 
3825
                                 if c.typestring in allowed_conflicts]
 
3826
            _mod_merge.transform_tree(tree, tree.basis_tree(), interesting_ids)
 
3827
            tree.set_conflicts(ConflictList(new_conflicts))
 
3828
            if file_list is not None:
 
3829
                restore_files = file_list
 
3830
            for filename in restore_files:
 
3831
                try:
 
3832
                    restore(tree.abspath(filename))
 
3833
                except errors.NotConflicted:
 
3834
                    pass
 
3835
            # Disable pending merges, because the file texts we are remerging
 
3836
            # have not had those merges performed.  If we use the wrong parents
 
3837
            # list, we imply that the working tree text has seen and rejected
 
3838
            # all the changes from the other tree, when in fact those changes
 
3839
            # have not yet been seen.
 
3840
            pb = ui.ui_factory.nested_progress_bar()
 
3841
            tree.set_parent_ids(parents[:1])
4116
3842
            try:
4117
 
                restore(tree.abspath(filename))
4118
 
            except errors.NotConflicted:
4119
 
                pass
4120
 
        # Disable pending merges, because the file texts we are remerging
4121
 
        # have not had those merges performed.  If we use the wrong parents
4122
 
        # list, we imply that the working tree text has seen and rejected
4123
 
        # all the changes from the other tree, when in fact those changes
4124
 
        # have not yet been seen.
4125
 
        tree.set_parent_ids(parents[:1])
4126
 
        try:
4127
 
            merger = _mod_merge.Merger.from_revision_ids(None, tree, parents[1])
4128
 
            merger.interesting_ids = interesting_ids
4129
 
            merger.merge_type = merge_type
4130
 
            merger.show_base = show_base
4131
 
            merger.reprocess = reprocess
4132
 
            conflicts = merger.do_merge()
 
3843
                merger = _mod_merge.Merger.from_revision_ids(pb,
 
3844
                                                             tree, parents[1])
 
3845
                merger.interesting_ids = interesting_ids
 
3846
                merger.merge_type = merge_type
 
3847
                merger.show_base = show_base
 
3848
                merger.reprocess = reprocess
 
3849
                conflicts = merger.do_merge()
 
3850
            finally:
 
3851
                tree.set_parent_ids(parents)
 
3852
                pb.finished()
4133
3853
        finally:
4134
 
            tree.set_parent_ids(parents)
 
3854
            tree.unlock()
4135
3855
        if conflicts > 0:
4136
3856
            return 1
4137
3857
        else:
4139
3859
 
4140
3860
 
4141
3861
class cmd_revert(Command):
4142
 
    __doc__ = """Revert files to a previous revision.
 
3862
    """Revert files to a previous revision.
4143
3863
 
4144
3864
    Giving a list of files will revert only those files.  Otherwise, all files
4145
3865
    will be reverted.  If the revision is not specified with '--revision', the
4159
3879
    name.  If you name a directory, all the contents of that directory will be
4160
3880
    reverted.
4161
3881
 
4162
 
    If you have newly added files since the target revision, they will be
4163
 
    removed.  If the files to be removed have been changed, backups will be
4164
 
    created as above.  Directories containing unknown files will not be
4165
 
    deleted.
 
3882
    Any files that have been newly added since that revision will be deleted,
 
3883
    with a backup kept if appropriate.  Directories containing unknown files
 
3884
    will not be deleted.
4166
3885
 
4167
 
    The working tree contains a list of revisions that have been merged but
4168
 
    not yet committed. These revisions will be included as additional parents
4169
 
    of the next commit.  Normally, using revert clears that list as well as
4170
 
    reverting the files.  If any files are specified, revert leaves the list
4171
 
    of uncommitted merges alone and reverts only the files.  Use ``bzr revert
4172
 
    .`` in the tree root to revert all files but keep the recorded merges,
4173
 
    and ``bzr revert --forget-merges`` to clear the pending merge list without
 
3886
    The working tree contains a list of pending merged revisions, which will
 
3887
    be included as parents in the next commit.  Normally, revert clears that
 
3888
    list as well as reverting the files.  If any files are specified, revert
 
3889
    leaves the pending merge list alone and reverts only the files.  Use "bzr
 
3890
    revert ." in the tree root to revert all files but keep the merge record,
 
3891
    and "bzr revert --forget-merges" to clear the pending merge list without
4174
3892
    reverting any files.
4175
 
 
4176
 
    Using "bzr revert --forget-merges", it is possible to apply all of the
4177
 
    changes from a branch in a single revision.  To do this, perform the merge
4178
 
    as desired.  Then doing revert with the "--forget-merges" option will keep
4179
 
    the content of the tree as it was, but it will clear the list of pending
4180
 
    merges.  The next commit will then contain all of the changes that are
4181
 
    present in the other branch, but without any other parent revisions.
4182
 
    Because this technique forgets where these changes originated, it may
4183
 
    cause additional conflicts on later merges involving the same source and
4184
 
    target branches.
4185
3893
    """
4186
3894
 
4187
3895
    _see_also = ['cat', 'export']
4195
3903
 
4196
3904
    def run(self, revision=None, no_backup=False, file_list=None,
4197
3905
            forget_merges=None):
4198
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
4199
 
        self.add_cleanup(tree.lock_tree_write().unlock)
4200
 
        if forget_merges:
4201
 
            tree.set_parent_ids(tree.get_parent_ids()[:1])
4202
 
        else:
4203
 
            self._revert_tree_to_revision(tree, revision, file_list, no_backup)
 
3906
        tree, file_list = tree_files(file_list)
 
3907
        tree.lock_write()
 
3908
        try:
 
3909
            if forget_merges:
 
3910
                tree.set_parent_ids(tree.get_parent_ids()[:1])
 
3911
            else:
 
3912
                self._revert_tree_to_revision(tree, revision, file_list, no_backup)
 
3913
        finally:
 
3914
            tree.unlock()
4204
3915
 
4205
3916
    @staticmethod
4206
3917
    def _revert_tree_to_revision(tree, revision, file_list, no_backup):
4207
3918
        rev_tree = _get_one_revision_tree('revert', revision, tree=tree)
4208
 
        tree.revert(file_list, rev_tree, not no_backup, None,
4209
 
            report_changes=True)
 
3919
        pb = ui.ui_factory.nested_progress_bar()
 
3920
        try:
 
3921
            tree.revert(file_list, rev_tree, not no_backup, pb,
 
3922
                report_changes=True)
 
3923
        finally:
 
3924
            pb.finished()
4210
3925
 
4211
3926
 
4212
3927
class cmd_assert_fail(Command):
4213
 
    __doc__ = """Test reporting of assertion failures"""
 
3928
    """Test reporting of assertion failures"""
4214
3929
    # intended just for use in testing
4215
3930
 
4216
3931
    hidden = True
4220
3935
 
4221
3936
 
4222
3937
class cmd_help(Command):
4223
 
    __doc__ = """Show help on a command or other topic.
 
3938
    """Show help on a command or other topic.
4224
3939
    """
4225
3940
 
4226
3941
    _see_also = ['topics']
4239
3954
 
4240
3955
 
4241
3956
class cmd_shell_complete(Command):
4242
 
    __doc__ = """Show appropriate completions for context.
 
3957
    """Show appropriate completions for context.
4243
3958
 
4244
3959
    For a list of all available commands, say 'bzr shell-complete'.
4245
3960
    """
4254
3969
 
4255
3970
 
4256
3971
class cmd_missing(Command):
4257
 
    __doc__ = """Show unmerged/unpulled revisions between two branches.
 
3972
    """Show unmerged/unpulled revisions between two branches.
4258
3973
 
4259
3974
    OTHER_BRANCH may be local or remote.
4260
3975
 
4261
3976
    To filter on a range of revisions, you can use the command -r begin..end
4262
3977
    -r revision requests a specific revision, -r ..end or -r begin.. are
4263
3978
    also valid.
4264
 
            
4265
 
    :Exit values:
4266
 
        1 - some missing revisions
4267
 
        0 - no missing revisions
4268
3979
 
4269
3980
    :Examples:
4270
3981
 
4291
4002
    _see_also = ['merge', 'pull']
4292
4003
    takes_args = ['other_branch?']
4293
4004
    takes_options = [
4294
 
        'directory',
4295
4005
        Option('reverse', 'Reverse the order of revisions.'),
4296
4006
        Option('mine-only',
4297
4007
               'Display changes in the local branch only.'),
4319
4029
            theirs_only=False,
4320
4030
            log_format=None, long=False, short=False, line=False,
4321
4031
            show_ids=False, verbose=False, this=False, other=False,
4322
 
            include_merges=False, revision=None, my_revision=None,
4323
 
            directory=u'.'):
 
4032
            include_merges=False, revision=None, my_revision=None):
4324
4033
        from bzrlib.missing import find_unmerged, iter_log_revisions
4325
4034
        def message(s):
4326
4035
            if not is_quiet():
4339
4048
        elif theirs_only:
4340
4049
            restrict = 'remote'
4341
4050
 
4342
 
        local_branch = Branch.open_containing(directory)[0]
4343
 
        self.add_cleanup(local_branch.lock_read().unlock)
4344
 
 
 
4051
        local_branch = Branch.open_containing(u".")[0]
4345
4052
        parent = local_branch.get_parent()
4346
4053
        if other_branch is None:
4347
4054
            other_branch = parent
4356
4063
        remote_branch = Branch.open(other_branch)
4357
4064
        if remote_branch.base == local_branch.base:
4358
4065
            remote_branch = local_branch
4359
 
        else:
4360
 
            self.add_cleanup(remote_branch.lock_read().unlock)
4361
4066
 
4362
4067
        local_revid_range = _revision_range_to_revid_range(
4363
4068
            _get_revision_range(my_revision, local_branch,
4367
4072
            _get_revision_range(revision,
4368
4073
                remote_branch, self.name()))
4369
4074
 
4370
 
        local_extra, remote_extra = find_unmerged(
4371
 
            local_branch, remote_branch, restrict,
4372
 
            backward=not reverse,
4373
 
            include_merges=include_merges,
4374
 
            local_revid_range=local_revid_range,
4375
 
            remote_revid_range=remote_revid_range)
4376
 
 
4377
 
        if log_format is None:
4378
 
            registry = log.log_formatter_registry
4379
 
            log_format = registry.get_default(local_branch)
4380
 
        lf = log_format(to_file=self.outf,
4381
 
                        show_ids=show_ids,
4382
 
                        show_timezone='original')
4383
 
 
4384
 
        status_code = 0
4385
 
        if local_extra and not theirs_only:
4386
 
            message("You have %d extra revision(s):\n" %
4387
 
                len(local_extra))
4388
 
            for revision in iter_log_revisions(local_extra,
4389
 
                                local_branch.repository,
4390
 
                                verbose):
4391
 
                lf.log_revision(revision)
4392
 
            printed_local = True
4393
 
            status_code = 1
4394
 
        else:
4395
 
            printed_local = False
4396
 
 
4397
 
        if remote_extra and not mine_only:
4398
 
            if printed_local is True:
4399
 
                message("\n\n\n")
4400
 
            message("You are missing %d revision(s):\n" %
4401
 
                len(remote_extra))
4402
 
            for revision in iter_log_revisions(remote_extra,
4403
 
                                remote_branch.repository,
4404
 
                                verbose):
4405
 
                lf.log_revision(revision)
4406
 
            status_code = 1
4407
 
 
4408
 
        if mine_only and not local_extra:
4409
 
            # We checked local, and found nothing extra
4410
 
            message('This branch is up to date.\n')
4411
 
        elif theirs_only and not remote_extra:
4412
 
            # We checked remote, and found nothing extra
4413
 
            message('Other branch is up to date.\n')
4414
 
        elif not (mine_only or theirs_only or local_extra or
4415
 
                  remote_extra):
4416
 
            # We checked both branches, and neither one had extra
4417
 
            # revisions
4418
 
            message("Branches are up to date.\n")
4419
 
        self.cleanup_now()
 
4075
        local_branch.lock_read()
 
4076
        try:
 
4077
            remote_branch.lock_read()
 
4078
            try:
 
4079
                local_extra, remote_extra = find_unmerged(
 
4080
                    local_branch, remote_branch, restrict,
 
4081
                    backward=not reverse,
 
4082
                    include_merges=include_merges,
 
4083
                    local_revid_range=local_revid_range,
 
4084
                    remote_revid_range=remote_revid_range)
 
4085
 
 
4086
                if log_format is None:
 
4087
                    registry = log.log_formatter_registry
 
4088
                    log_format = registry.get_default(local_branch)
 
4089
                lf = log_format(to_file=self.outf,
 
4090
                                show_ids=show_ids,
 
4091
                                show_timezone='original')
 
4092
 
 
4093
                status_code = 0
 
4094
                if local_extra and not theirs_only:
 
4095
                    message("You have %d extra revision(s):\n" %
 
4096
                        len(local_extra))
 
4097
                    for revision in iter_log_revisions(local_extra,
 
4098
                                        local_branch.repository,
 
4099
                                        verbose):
 
4100
                        lf.log_revision(revision)
 
4101
                    printed_local = True
 
4102
                    status_code = 1
 
4103
                else:
 
4104
                    printed_local = False
 
4105
 
 
4106
                if remote_extra and not mine_only:
 
4107
                    if printed_local is True:
 
4108
                        message("\n\n\n")
 
4109
                    message("You are missing %d revision(s):\n" %
 
4110
                        len(remote_extra))
 
4111
                    for revision in iter_log_revisions(remote_extra,
 
4112
                                        remote_branch.repository,
 
4113
                                        verbose):
 
4114
                        lf.log_revision(revision)
 
4115
                    status_code = 1
 
4116
 
 
4117
                if mine_only and not local_extra:
 
4118
                    # We checked local, and found nothing extra
 
4119
                    message('This branch is up to date.\n')
 
4120
                elif theirs_only and not remote_extra:
 
4121
                    # We checked remote, and found nothing extra
 
4122
                    message('Other branch is up to date.\n')
 
4123
                elif not (mine_only or theirs_only or local_extra or
 
4124
                          remote_extra):
 
4125
                    # We checked both branches, and neither one had extra
 
4126
                    # revisions
 
4127
                    message("Branches are up to date.\n")
 
4128
            finally:
 
4129
                remote_branch.unlock()
 
4130
        finally:
 
4131
            local_branch.unlock()
4420
4132
        if not status_code and parent is None and other_branch is not None:
4421
 
            self.add_cleanup(local_branch.lock_write().unlock)
4422
 
            # handle race conditions - a parent might be set while we run.
4423
 
            if local_branch.get_parent() is None:
4424
 
                local_branch.set_parent(remote_branch.base)
 
4133
            local_branch.lock_write()
 
4134
            try:
 
4135
                # handle race conditions - a parent might be set while we run.
 
4136
                if local_branch.get_parent() is None:
 
4137
                    local_branch.set_parent(remote_branch.base)
 
4138
            finally:
 
4139
                local_branch.unlock()
4425
4140
        return status_code
4426
4141
 
4427
4142
 
4428
4143
class cmd_pack(Command):
4429
 
    __doc__ = """Compress the data within a repository.
4430
 
 
4431
 
    This operation compresses the data within a bazaar repository. As
4432
 
    bazaar supports automatic packing of repository, this operation is
4433
 
    normally not required to be done manually.
4434
 
 
4435
 
    During the pack operation, bazaar takes a backup of existing repository
4436
 
    data, i.e. pack files. This backup is eventually removed by bazaar
4437
 
    automatically when it is safe to do so. To save disk space by removing
4438
 
    the backed up pack files, the --clean-obsolete-packs option may be
4439
 
    used.
4440
 
 
4441
 
    Warning: If you use --clean-obsolete-packs and your machine crashes
4442
 
    during or immediately after repacking, you may be left with a state
4443
 
    where the deletion has been written to disk but the new packs have not
4444
 
    been. In this case the repository may be unusable.
4445
 
    """
 
4144
    """Compress the data within a repository."""
4446
4145
 
4447
4146
    _see_also = ['repositories']
4448
4147
    takes_args = ['branch_or_repo?']
4449
 
    takes_options = [
4450
 
        Option('clean-obsolete-packs', 'Delete obsolete packs to save disk space.'),
4451
 
        ]
4452
4148
 
4453
 
    def run(self, branch_or_repo='.', clean_obsolete_packs=False):
 
4149
    def run(self, branch_or_repo='.'):
4454
4150
        dir = bzrdir.BzrDir.open_containing(branch_or_repo)[0]
4455
4151
        try:
4456
4152
            branch = dir.open_branch()
4457
4153
            repository = branch.repository
4458
4154
        except errors.NotBranchError:
4459
4155
            repository = dir.open_repository()
4460
 
        repository.pack(clean_obsolete_packs=clean_obsolete_packs)
 
4156
        repository.pack()
4461
4157
 
4462
4158
 
4463
4159
class cmd_plugins(Command):
4464
 
    __doc__ = """List the installed plugins.
 
4160
    """List the installed plugins.
4465
4161
 
4466
4162
    This command displays the list of installed plugins including
4467
4163
    version of plugin and a short description of each.
4474
4170
    adding new commands, providing additional network transports and
4475
4171
    customizing log output.
4476
4172
 
4477
 
    See the Bazaar Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/>
4478
 
    for further information on plugins including where to find them and how to
4479
 
    install them. Instructions are also provided there on how to write new
4480
 
    plugins using the Python programming language.
 
4173
    See the Bazaar web site, http://bazaar-vcs.org, for further
 
4174
    information on plugins including where to find them and how to
 
4175
    install them. Instructions are also provided there on how to
 
4176
    write new plugins using the Python programming language.
4481
4177
    """
4482
4178
    takes_options = ['verbose']
4483
4179
 
4498
4194
                doc = '(no description)'
4499
4195
            result.append((name_ver, doc, plugin.path()))
4500
4196
        for name_ver, doc, path in sorted(result):
4501
 
            self.outf.write("%s\n" % name_ver)
4502
 
            self.outf.write("   %s\n" % doc)
 
4197
            print name_ver
 
4198
            print '   ', doc
4503
4199
            if verbose:
4504
 
                self.outf.write("   %s\n" % path)
4505
 
            self.outf.write("\n")
 
4200
                print '   ', path
 
4201
            print
4506
4202
 
4507
4203
 
4508
4204
class cmd_testament(Command):
4509
 
    __doc__ = """Show testament (signing-form) of a revision."""
 
4205
    """Show testament (signing-form) of a revision."""
4510
4206
    takes_options = [
4511
4207
            'revision',
4512
4208
            Option('long', help='Produce long-format testament.'),
4524
4220
            b = Branch.open_containing(branch)[0]
4525
4221
        else:
4526
4222
            b = Branch.open(branch)
4527
 
        self.add_cleanup(b.lock_read().unlock)
4528
 
        if revision is None:
4529
 
            rev_id = b.last_revision()
4530
 
        else:
4531
 
            rev_id = revision[0].as_revision_id(b)
4532
 
        t = testament_class.from_revision(b.repository, rev_id)
4533
 
        if long:
4534
 
            sys.stdout.writelines(t.as_text_lines())
4535
 
        else:
4536
 
            sys.stdout.write(t.as_short_text())
 
4223
        b.lock_read()
 
4224
        try:
 
4225
            if revision is None:
 
4226
                rev_id = b.last_revision()
 
4227
            else:
 
4228
                rev_id = revision[0].as_revision_id(b)
 
4229
            t = testament_class.from_revision(b.repository, rev_id)
 
4230
            if long:
 
4231
                sys.stdout.writelines(t.as_text_lines())
 
4232
            else:
 
4233
                sys.stdout.write(t.as_short_text())
 
4234
        finally:
 
4235
            b.unlock()
4537
4236
 
4538
4237
 
4539
4238
class cmd_annotate(Command):
4540
 
    __doc__ = """Show the origin of each line in a file.
 
4239
    """Show the origin of each line in a file.
4541
4240
 
4542
4241
    This prints out the given file with an annotation on the left side
4543
4242
    indicating which revision, author and date introduced the change.
4554
4253
                     Option('long', help='Show commit date in annotations.'),
4555
4254
                     'revision',
4556
4255
                     'show-ids',
4557
 
                     'directory',
4558
4256
                     ]
4559
4257
    encoding_type = 'exact'
4560
4258
 
4561
4259
    @display_command
4562
4260
    def run(self, filename, all=False, long=False, revision=None,
4563
 
            show_ids=False, directory=None):
 
4261
            show_ids=False):
4564
4262
        from bzrlib.annotate import annotate_file, annotate_file_tree
4565
4263
        wt, branch, relpath = \
4566
 
            _open_directory_or_containing_tree_or_branch(filename, directory)
4567
 
        if wt is not None:
4568
 
            self.add_cleanup(wt.lock_read().unlock)
4569
 
        else:
4570
 
            self.add_cleanup(branch.lock_read().unlock)
4571
 
        tree = _get_one_revision_tree('annotate', revision, branch=branch)
4572
 
        self.add_cleanup(tree.lock_read().unlock)
4573
 
        if wt is not None:
4574
 
            file_id = wt.path2id(relpath)
4575
 
        else:
4576
 
            file_id = tree.path2id(relpath)
4577
 
        if file_id is None:
4578
 
            raise errors.NotVersionedError(filename)
4579
 
        file_version = tree.inventory[file_id].revision
4580
 
        if wt is not None and revision is None:
4581
 
            # If there is a tree and we're not annotating historical
4582
 
            # versions, annotate the working tree's content.
4583
 
            annotate_file_tree(wt, file_id, self.outf, long, all,
4584
 
                show_ids=show_ids)
4585
 
        else:
4586
 
            annotate_file(branch, file_version, file_id, long, all, self.outf,
4587
 
                          show_ids=show_ids)
 
4264
            bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
4265
        if wt is not None:
 
4266
            wt.lock_read()
 
4267
        else:
 
4268
            branch.lock_read()
 
4269
        try:
 
4270
            tree = _get_one_revision_tree('annotate', revision, branch=branch)
 
4271
            if wt is not None:
 
4272
                file_id = wt.path2id(relpath)
 
4273
            else:
 
4274
                file_id = tree.path2id(relpath)
 
4275
            if file_id is None:
 
4276
                raise errors.NotVersionedError(filename)
 
4277
            file_version = tree.inventory[file_id].revision
 
4278
            if wt is not None and revision is None:
 
4279
                # If there is a tree and we're not annotating historical
 
4280
                # versions, annotate the working tree's content.
 
4281
                annotate_file_tree(wt, file_id, self.outf, long, all,
 
4282
                    show_ids=show_ids)
 
4283
            else:
 
4284
                annotate_file(branch, file_version, file_id, long, all, self.outf,
 
4285
                              show_ids=show_ids)
 
4286
        finally:
 
4287
            if wt is not None:
 
4288
                wt.unlock()
 
4289
            else:
 
4290
                branch.unlock()
4588
4291
 
4589
4292
 
4590
4293
class cmd_re_sign(Command):
4591
 
    __doc__ = """Create a digital signature for an existing revision."""
 
4294
    """Create a digital signature for an existing revision."""
4592
4295
    # TODO be able to replace existing ones.
4593
4296
 
4594
4297
    hidden = True # is this right ?
4595
4298
    takes_args = ['revision_id*']
4596
 
    takes_options = ['directory', 'revision']
 
4299
    takes_options = ['revision']
4597
4300
 
4598
 
    def run(self, revision_id_list=None, revision=None, directory=u'.'):
 
4301
    def run(self, revision_id_list=None, revision=None):
4599
4302
        if revision_id_list is not None and revision is not None:
4600
4303
            raise errors.BzrCommandError('You can only supply one of revision_id or --revision')
4601
4304
        if revision_id_list is None and revision is None:
4602
4305
            raise errors.BzrCommandError('You must supply either --revision or a revision_id')
4603
 
        b = WorkingTree.open_containing(directory)[0].branch
4604
 
        self.add_cleanup(b.lock_write().unlock)
4605
 
        return self._run(b, revision_id_list, revision)
 
4306
        b = WorkingTree.open_containing(u'.')[0].branch
 
4307
        b.lock_write()
 
4308
        try:
 
4309
            return self._run(b, revision_id_list, revision)
 
4310
        finally:
 
4311
            b.unlock()
4606
4312
 
4607
4313
    def _run(self, b, revision_id_list, revision):
4608
4314
        import bzrlib.gpg as gpg
4653
4359
 
4654
4360
 
4655
4361
class cmd_bind(Command):
4656
 
    __doc__ = """Convert the current branch into a checkout of the supplied branch.
4657
 
    If no branch is supplied, rebind to the last bound location.
 
4362
    """Convert the current branch into a checkout of the supplied branch.
4658
4363
 
4659
4364
    Once converted into a checkout, commits must succeed on the master branch
4660
4365
    before they will be applied to the local branch.
4661
4366
 
4662
4367
    Bound branches use the nickname of its master branch unless it is set
4663
 
    locally, in which case binding will update the local nickname to be
 
4368
    locally, in which case binding will update the the local nickname to be
4664
4369
    that of the master.
4665
4370
    """
4666
4371
 
4667
4372
    _see_also = ['checkouts', 'unbind']
4668
4373
    takes_args = ['location?']
4669
 
    takes_options = ['directory']
 
4374
    takes_options = []
4670
4375
 
4671
 
    def run(self, location=None, directory=u'.'):
4672
 
        b, relpath = Branch.open_containing(directory)
 
4376
    def run(self, location=None):
 
4377
        b, relpath = Branch.open_containing(u'.')
4673
4378
        if location is None:
4674
4379
            try:
4675
4380
                location = b.get_old_bound_location()
4678
4383
                    'This format does not remember old locations.')
4679
4384
            else:
4680
4385
                if location is None:
4681
 
                    if b.get_bound_location() is not None:
4682
 
                        raise errors.BzrCommandError('Branch is already bound')
4683
 
                    else:
4684
 
                        raise errors.BzrCommandError('No location supplied '
4685
 
                            'and no previous location known')
 
4386
                    raise errors.BzrCommandError('No location supplied and no '
 
4387
                        'previous location known')
4686
4388
        b_other = Branch.open(location)
4687
4389
        try:
4688
4390
            b.bind(b_other)
4694
4396
 
4695
4397
 
4696
4398
class cmd_unbind(Command):
4697
 
    __doc__ = """Convert the current checkout into a regular branch.
 
4399
    """Convert the current checkout into a regular branch.
4698
4400
 
4699
4401
    After unbinding, the local branch is considered independent and subsequent
4700
4402
    commits will be local only.
4702
4404
 
4703
4405
    _see_also = ['checkouts', 'bind']
4704
4406
    takes_args = []
4705
 
    takes_options = ['directory']
 
4407
    takes_options = []
4706
4408
 
4707
 
    def run(self, directory=u'.'):
4708
 
        b, relpath = Branch.open_containing(directory)
 
4409
    def run(self):
 
4410
        b, relpath = Branch.open_containing(u'.')
4709
4411
        if not b.unbind():
4710
4412
            raise errors.BzrCommandError('Local branch is not bound')
4711
4413
 
4712
4414
 
4713
4415
class cmd_uncommit(Command):
4714
 
    __doc__ = """Remove the last committed revision.
 
4416
    """Remove the last committed revision.
4715
4417
 
4716
4418
    --verbose will print out what is being removed.
4717
4419
    --dry-run will go through all the motions, but not actually
4757
4459
            b = control.open_branch()
4758
4460
 
4759
4461
        if tree is not None:
4760
 
            self.add_cleanup(tree.lock_write().unlock)
 
4462
            tree.lock_write()
4761
4463
        else:
4762
 
            self.add_cleanup(b.lock_write().unlock)
4763
 
        return self._run(b, tree, dry_run, verbose, revision, force, local=local)
 
4464
            b.lock_write()
 
4465
        try:
 
4466
            return self._run(b, tree, dry_run, verbose, revision, force,
 
4467
                             local=local)
 
4468
        finally:
 
4469
            if tree is not None:
 
4470
                tree.unlock()
 
4471
            else:
 
4472
                b.unlock()
4764
4473
 
4765
4474
    def _run(self, b, tree, dry_run, verbose, revision, force, local=False):
4766
4475
        from bzrlib.log import log_formatter, show_log
4798
4507
                 end_revision=last_revno)
4799
4508
 
4800
4509
        if dry_run:
4801
 
            self.outf.write('Dry-run, pretending to remove'
4802
 
                            ' the above revisions.\n')
 
4510
            print 'Dry-run, pretending to remove the above revisions.'
 
4511
            if not force:
 
4512
                val = raw_input('Press <enter> to continue')
4803
4513
        else:
4804
 
            self.outf.write('The above revision(s) will be removed.\n')
4805
 
 
4806
 
        if not force:
4807
 
            if not ui.ui_factory.confirm_action(
4808
 
                    'Uncommit these revisions',
4809
 
                    'bzrlib.builtins.uncommit',
4810
 
                    {}):
4811
 
                self.outf.write('Canceled\n')
4812
 
                return 0
 
4514
            print 'The above revision(s) will be removed.'
 
4515
            if not force:
 
4516
                val = raw_input('Are you sure [y/N]? ')
 
4517
                if val.lower() not in ('y', 'yes'):
 
4518
                    print 'Canceled'
 
4519
                    return 0
4813
4520
 
4814
4521
        mutter('Uncommitting from {%s} to {%s}',
4815
4522
               last_rev_id, rev_id)
4816
4523
        uncommit(b, tree=tree, dry_run=dry_run, verbose=verbose,
4817
4524
                 revno=revno, local=local)
4818
 
        self.outf.write('You can restore the old tip by running:\n'
4819
 
             '  bzr pull . -r revid:%s\n' % last_rev_id)
 
4525
        note('You can restore the old tip by running:\n'
 
4526
             '  bzr pull . -r revid:%s', last_rev_id)
4820
4527
 
4821
4528
 
4822
4529
class cmd_break_lock(Command):
4823
 
    __doc__ = """Break a dead lock.
4824
 
 
4825
 
    This command breaks a lock on a repository, branch, working directory or
4826
 
    config file.
 
4530
    """Break a dead lock on a repository, branch or working directory.
4827
4531
 
4828
4532
    CAUTION: Locks should only be broken when you are sure that the process
4829
4533
    holding the lock has been stopped.
4830
4534
 
4831
 
    You can get information on what locks are open via the 'bzr info
4832
 
    [location]' command.
 
4535
    You can get information on what locks are open via the 'bzr info' command.
4833
4536
 
4834
4537
    :Examples:
4835
4538
        bzr break-lock
4836
 
        bzr break-lock bzr+ssh://example.com/bzr/foo
4837
 
        bzr break-lock --conf ~/.bazaar
4838
4539
    """
4839
 
 
4840
4540
    takes_args = ['location?']
4841
 
    takes_options = [
4842
 
        Option('config',
4843
 
               help='LOCATION is the directory where the config lock is.'),
4844
 
        Option('force',
4845
 
            help='Do not ask for confirmation before breaking the lock.'),
4846
 
        ]
4847
4541
 
4848
 
    def run(self, location=None, config=False, force=False):
 
4542
    def run(self, location=None, show=False):
4849
4543
        if location is None:
4850
4544
            location = u'.'
4851
 
        if force:
4852
 
            ui.ui_factory = ui.ConfirmationUserInterfacePolicy(ui.ui_factory,
4853
 
                None,
4854
 
                {'bzrlib.lockdir.break': True})
4855
 
        if config:
4856
 
            conf = _mod_config.LockableConfig(file_name=location)
4857
 
            conf.break_lock()
4858
 
        else:
4859
 
            control, relpath = bzrdir.BzrDir.open_containing(location)
4860
 
            try:
4861
 
                control.break_lock()
4862
 
            except NotImplementedError:
4863
 
                pass
 
4545
        control, relpath = bzrdir.BzrDir.open_containing(location)
 
4546
        try:
 
4547
            control.break_lock()
 
4548
        except NotImplementedError:
 
4549
            pass
4864
4550
 
4865
4551
 
4866
4552
class cmd_wait_until_signalled(Command):
4867
 
    __doc__ = """Test helper for test_start_and_stop_bzr_subprocess_send_signal.
 
4553
    """Test helper for test_start_and_stop_bzr_subprocess_send_signal.
4868
4554
 
4869
4555
    This just prints a line to signal when it is ready, then blocks on stdin.
4870
4556
    """
4878
4564
 
4879
4565
 
4880
4566
class cmd_serve(Command):
4881
 
    __doc__ = """Run the bzr server."""
 
4567
    """Run the bzr server."""
4882
4568
 
4883
4569
    aliases = ['server']
4884
4570
 
4885
4571
    takes_options = [
4886
4572
        Option('inet',
4887
4573
               help='Serve on stdin/out for use from inetd or sshd.'),
4888
 
        RegistryOption('protocol',
4889
 
               help="Protocol to serve.",
 
4574
        RegistryOption('protocol', 
 
4575
               help="Protocol to serve.", 
4890
4576
               lazy_registry=('bzrlib.transport', 'transport_server_registry'),
4891
4577
               value_switches=True),
4892
4578
        Option('port',
4895
4581
                    'result in a dynamically allocated port.  The default port '
4896
4582
                    'depends on the protocol.',
4897
4583
               type=str),
4898
 
        custom_help('directory',
4899
 
               help='Serve contents of this directory.'),
 
4584
        Option('directory',
 
4585
               help='Serve contents of this directory.',
 
4586
               type=unicode),
4900
4587
        Option('allow-writes',
4901
4588
               help='By default the server is a readonly server.  Supplying '
4902
4589
                    '--allow-writes enables write access to the contents of '
4903
 
                    'the served directory and below.  Note that ``bzr serve`` '
4904
 
                    'does not perform authentication, so unless some form of '
4905
 
                    'external authentication is arranged supplying this '
4906
 
                    'option leads to global uncontrolled write access to your '
4907
 
                    'file system.'
 
4590
                    'the served directory and below.'
4908
4591
                ),
4909
4592
        ]
4910
4593
 
4929
4612
 
4930
4613
    def run(self, port=None, inet=False, directory=None, allow_writes=False,
4931
4614
            protocol=None):
4932
 
        from bzrlib import transport
 
4615
        from bzrlib.transport import get_transport, transport_server_registry
4933
4616
        if directory is None:
4934
4617
            directory = os.getcwd()
4935
4618
        if protocol is None:
4936
 
            protocol = transport.transport_server_registry.get()
 
4619
            protocol = transport_server_registry.get()
4937
4620
        host, port = self.get_host_and_port(port)
4938
4621
        url = urlutils.local_path_to_url(directory)
4939
4622
        if not allow_writes:
4940
4623
            url = 'readonly+' + url
4941
 
        t = transport.get_transport(url)
4942
 
        protocol(t, host, port, inet)
 
4624
        transport = get_transport(url)
 
4625
        protocol(transport, host, port, inet)
4943
4626
 
4944
4627
 
4945
4628
class cmd_join(Command):
4946
 
    __doc__ = """Combine a tree into its containing tree.
 
4629
    """Combine a tree into its containing tree.
4947
4630
 
4948
4631
    This command requires the target tree to be in a rich-root format.
4949
4632
 
4951
4634
    not part of it.  (Such trees can be produced by "bzr split", but also by
4952
4635
    running "bzr branch" with the target inside a tree.)
4953
4636
 
4954
 
    The result is a combined tree, with the subtree no longer an independent
 
4637
    The result is a combined tree, with the subtree no longer an independant
4955
4638
    part.  This is marked as a merge of the subtree into the containing tree,
4956
4639
    and all history is preserved.
4957
4640
    """
4989
4672
 
4990
4673
 
4991
4674
class cmd_split(Command):
4992
 
    __doc__ = """Split a subdirectory of a tree into a separate tree.
 
4675
    """Split a subdirectory of a tree into a separate tree.
4993
4676
 
4994
4677
    This command will produce a target tree in a format that supports
4995
4678
    rich roots, like 'rich-root' or 'rich-root-pack'.  These formats cannot be
5015
4698
 
5016
4699
 
5017
4700
class cmd_merge_directive(Command):
5018
 
    __doc__ = """Generate a merge directive for auto-merge tools.
 
4701
    """Generate a merge directive for auto-merge tools.
5019
4702
 
5020
4703
    A directive requests a merge to be performed, and also provides all the
5021
4704
    information necessary to do so.  This means it must either include a
5038
4721
    _see_also = ['send']
5039
4722
 
5040
4723
    takes_options = [
5041
 
        'directory',
5042
4724
        RegistryOption.from_kwargs('patch-type',
5043
4725
            'The type of patch to include in the directive.',
5044
4726
            title='Patch type',
5057
4739
    encoding_type = 'exact'
5058
4740
 
5059
4741
    def run(self, submit_branch=None, public_branch=None, patch_type='bundle',
5060
 
            sign=False, revision=None, mail_to=None, message=None,
5061
 
            directory=u'.'):
 
4742
            sign=False, revision=None, mail_to=None, message=None):
5062
4743
        from bzrlib.revision import ensure_null, NULL_REVISION
5063
4744
        include_patch, include_bundle = {
5064
4745
            'plain': (False, False),
5065
4746
            'diff': (True, False),
5066
4747
            'bundle': (True, True),
5067
4748
            }[patch_type]
5068
 
        branch = Branch.open(directory)
 
4749
        branch = Branch.open('.')
5069
4750
        stored_submit_branch = branch.get_submit_branch()
5070
4751
        if submit_branch is None:
5071
4752
            submit_branch = stored_submit_branch
5116
4797
 
5117
4798
 
5118
4799
class cmd_send(Command):
5119
 
    __doc__ = """Mail or create a merge-directive for submitting changes.
 
4800
    """Mail or create a merge-directive for submitting changes.
5120
4801
 
5121
4802
    A merge directive provides many things needed for requesting merges:
5122
4803
 
5128
4809
      directly from the merge directive, without retrieving data from a
5129
4810
      branch.
5130
4811
 
5131
 
    `bzr send` creates a compact data set that, when applied using bzr
5132
 
    merge, has the same effect as merging from the source branch.  
5133
 
    
5134
 
    By default the merge directive is self-contained and can be applied to any
5135
 
    branch containing submit_branch in its ancestory without needing access to
5136
 
    the source branch.
5137
 
    
5138
 
    If --no-bundle is specified, then Bazaar doesn't send the contents of the
5139
 
    revisions, but only a structured request to merge from the
5140
 
    public_location.  In that case the public_branch is needed and it must be
5141
 
    up-to-date and accessible to the recipient.  The public_branch is always
5142
 
    included if known, so that people can check it later.
5143
 
 
5144
 
    The submit branch defaults to the parent of the source branch, but can be
5145
 
    overridden.  Both submit branch and public branch will be remembered in
5146
 
    branch.conf the first time they are used for a particular branch.  The
5147
 
    source branch defaults to that containing the working directory, but can
5148
 
    be changed using --from.
5149
 
 
5150
 
    In order to calculate those changes, bzr must analyse the submit branch.
5151
 
    Therefore it is most efficient for the submit branch to be a local mirror.
5152
 
    If a public location is known for the submit_branch, that location is used
5153
 
    in the merge directive.
5154
 
 
5155
 
    The default behaviour is to send the merge directive by mail, unless -o is
5156
 
    given, in which case it is sent to a file.
 
4812
    If --no-bundle is specified, then public_branch is needed (and must be
 
4813
    up-to-date), so that the receiver can perform the merge using the
 
4814
    public_branch.  The public_branch is always included if known, so that
 
4815
    people can check it later.
 
4816
 
 
4817
    The submit branch defaults to the parent, but can be overridden.  Both
 
4818
    submit branch and public branch will be remembered if supplied.
 
4819
 
 
4820
    If a public_branch is known for the submit_branch, that public submit
 
4821
    branch is used in the merge instructions.  This means that a local mirror
 
4822
    can be used as your actual submit branch, once you have set public_branch
 
4823
    for that mirror.
5157
4824
 
5158
4825
    Mail is sent using your preferred mail program.  This should be transparent
5159
 
    on Windows (it uses MAPI).  On Unix, it requires the xdg-email utility.
 
4826
    on Windows (it uses MAPI).  On Linux, it requires the xdg-email utility.
5160
4827
    If the preferred client can't be found (or used), your editor will be used.
5161
4828
 
5162
4829
    To use a specific mail program, set the mail_client configuration option.
5163
4830
    (For Thunderbird 1.5, this works around some bugs.)  Supported values for
5164
 
    specific clients are "claws", "evolution", "kmail", "mail.app" (MacOS X's
5165
 
    Mail.app), "mutt", and "thunderbird"; generic options are "default",
5166
 
    "editor", "emacsclient", "mapi", and "xdg-email".  Plugins may also add
5167
 
    supported clients.
 
4831
    specific clients are "claws", "evolution", "kmail", "mutt", and
 
4832
    "thunderbird"; generic options are "default", "editor", "emacsclient",
 
4833
    "mapi", and "xdg-email".  Plugins may also add supported clients.
5168
4834
 
5169
4835
    If mail is being sent, a to address is required.  This can be supplied
5170
4836
    either on the commandline, by setting the submit_to configuration
5179
4845
 
5180
4846
    The merge directives created by bzr send may be applied using bzr merge or
5181
4847
    bzr pull by specifying a file containing a merge directive as the location.
5182
 
 
5183
 
    bzr send makes extensive use of public locations to map local locations into
5184
 
    URLs that can be used by other people.  See `bzr help configuration` to
5185
 
    set them, and use `bzr info` to display them.
5186
4848
    """
5187
4849
 
5188
4850
    encoding_type = 'exact'
5204
4866
               short_name='f',
5205
4867
               type=unicode),
5206
4868
        Option('output', short_name='o',
5207
 
               help='Write merge directive to this file or directory; '
 
4869
               help='Write merge directive to this file; '
5208
4870
                    'use - for stdout.',
5209
4871
               type=unicode),
5210
 
        Option('strict',
5211
 
               help='Refuse to send if there are uncommitted changes in'
5212
 
               ' the working tree, --no-strict disables the check.'),
5213
4872
        Option('mail-to', help='Mail the request to this address.',
5214
4873
               type=unicode),
5215
4874
        'revision',
5216
4875
        'message',
5217
4876
        Option('body', help='Body for the email.', type=unicode),
5218
4877
        RegistryOption('format',
5219
 
                       help='Use the specified output format.',
5220
 
                       lazy_registry=('bzrlib.send', 'format_registry')),
 
4878
                       help='Use the specified output format.', 
 
4879
                       lazy_registry=('bzrlib.send', 'format_registry'))
5221
4880
        ]
5222
4881
 
5223
4882
    def run(self, submit_branch=None, public_branch=None, no_bundle=False,
5224
4883
            no_patch=False, revision=None, remember=False, output=None,
5225
 
            format=None, mail_to=None, message=None, body=None,
5226
 
            strict=None, **kwargs):
 
4884
            format=None, mail_to=None, message=None, body=None, **kwargs):
5227
4885
        from bzrlib.send import send
5228
4886
        return send(submit_branch, revision, public_branch, remember,
5229
 
                    format, no_bundle, no_patch, output,
5230
 
                    kwargs.get('from', '.'), mail_to, message, body,
5231
 
                    self.outf,
5232
 
                    strict=strict)
 
4887
                         format, no_bundle, no_patch, output,
 
4888
                         kwargs.get('from', '.'), mail_to, message, body,
 
4889
                         self.outf)
5233
4890
 
5234
4891
 
5235
4892
class cmd_bundle_revisions(cmd_send):
5236
 
    __doc__ = """Create a merge-directive for submitting changes.
 
4893
    """Create a merge-directive for submitting changes.
5237
4894
 
5238
4895
    A merge directive provides many things needed for requesting merges:
5239
4896
 
5279
4936
               type=unicode),
5280
4937
        Option('output', short_name='o', help='Write directive to this file.',
5281
4938
               type=unicode),
5282
 
        Option('strict',
5283
 
               help='Refuse to bundle revisions if there are uncommitted'
5284
 
               ' changes in the working tree, --no-strict disables the check.'),
5285
4939
        'revision',
5286
4940
        RegistryOption('format',
5287
4941
                       help='Use the specified output format.',
5295
4949
 
5296
4950
    def run(self, submit_branch=None, public_branch=None, no_bundle=False,
5297
4951
            no_patch=False, revision=None, remember=False, output=None,
5298
 
            format=None, strict=None, **kwargs):
 
4952
            format=None, **kwargs):
5299
4953
        if output is None:
5300
4954
            output = '-'
5301
4955
        from bzrlib.send import send
5302
4956
        return send(submit_branch, revision, public_branch, remember,
5303
4957
                         format, no_bundle, no_patch, output,
5304
4958
                         kwargs.get('from', '.'), None, None, None,
5305
 
                         self.outf, strict=strict)
 
4959
                         self.outf)
5306
4960
 
5307
4961
 
5308
4962
class cmd_tag(Command):
5309
 
    __doc__ = """Create, remove or modify a tag naming a revision.
 
4963
    """Create, remove or modify a tag naming a revision.
5310
4964
 
5311
4965
    Tags give human-meaningful names to revisions.  Commands that take a -r
5312
4966
    (--revision) option can be given -rtag:X, where X is any previously
5320
4974
 
5321
4975
    To rename a tag (change the name but keep it on the same revsion), run ``bzr
5322
4976
    tag new-name -r tag:old-name`` and then ``bzr tag --delete oldname``.
5323
 
 
5324
 
    If no tag name is specified it will be determined through the 
5325
 
    'automatic_tag_name' hook. This can e.g. be used to automatically tag
5326
 
    upstream releases by reading configure.ac. See ``bzr help hooks`` for
5327
 
    details.
5328
4977
    """
5329
4978
 
5330
4979
    _see_also = ['commit', 'tags']
5331
 
    takes_args = ['tag_name?']
 
4980
    takes_args = ['tag_name']
5332
4981
    takes_options = [
5333
4982
        Option('delete',
5334
4983
            help='Delete this tag rather than placing it.',
5335
4984
            ),
5336
 
        custom_help('directory',
5337
 
            help='Branch in which to place the tag.'),
 
4985
        Option('directory',
 
4986
            help='Branch in which to place the tag.',
 
4987
            short_name='d',
 
4988
            type=unicode,
 
4989
            ),
5338
4990
        Option('force',
5339
4991
            help='Replace existing tags.',
5340
4992
            ),
5341
4993
        'revision',
5342
4994
        ]
5343
4995
 
5344
 
    def run(self, tag_name=None,
 
4996
    def run(self, tag_name,
5345
4997
            delete=None,
5346
4998
            directory='.',
5347
4999
            force=None,
5348
5000
            revision=None,
5349
5001
            ):
5350
5002
        branch, relpath = Branch.open_containing(directory)
5351
 
        self.add_cleanup(branch.lock_write().unlock)
5352
 
        if delete:
5353
 
            if tag_name is None:
5354
 
                raise errors.BzrCommandError("No tag specified to delete.")
5355
 
            branch.tags.delete_tag(tag_name)
5356
 
            self.outf.write('Deleted tag %s.\n' % tag_name)
5357
 
        else:
5358
 
            if revision:
5359
 
                if len(revision) != 1:
5360
 
                    raise errors.BzrCommandError(
5361
 
                        "Tags can only be placed on a single revision, "
5362
 
                        "not on a range")
5363
 
                revision_id = revision[0].as_revision_id(branch)
 
5003
        branch.lock_write()
 
5004
        try:
 
5005
            if delete:
 
5006
                branch.tags.delete_tag(tag_name)
 
5007
                self.outf.write('Deleted tag %s.\n' % tag_name)
5364
5008
            else:
5365
 
                revision_id = branch.last_revision()
5366
 
            if tag_name is None:
5367
 
                tag_name = branch.automatic_tag_name(revision_id)
5368
 
                if tag_name is None:
5369
 
                    raise errors.BzrCommandError(
5370
 
                        "Please specify a tag name.")
5371
 
            if (not force) and branch.tags.has_tag(tag_name):
5372
 
                raise errors.TagAlreadyExists(tag_name)
5373
 
            branch.tags.set_tag(tag_name, revision_id)
5374
 
            self.outf.write('Created tag %s.\n' % tag_name)
 
5009
                if revision:
 
5010
                    if len(revision) != 1:
 
5011
                        raise errors.BzrCommandError(
 
5012
                            "Tags can only be placed on a single revision, "
 
5013
                            "not on a range")
 
5014
                    revision_id = revision[0].as_revision_id(branch)
 
5015
                else:
 
5016
                    revision_id = branch.last_revision()
 
5017
                if (not force) and branch.tags.has_tag(tag_name):
 
5018
                    raise errors.TagAlreadyExists(tag_name)
 
5019
                branch.tags.set_tag(tag_name, revision_id)
 
5020
                self.outf.write('Created tag %s.\n' % tag_name)
 
5021
        finally:
 
5022
            branch.unlock()
5375
5023
 
5376
5024
 
5377
5025
class cmd_tags(Command):
5378
 
    __doc__ = """List tags.
 
5026
    """List tags.
5379
5027
 
5380
5028
    This command shows a table of tag names and the revisions they reference.
5381
5029
    """
5382
5030
 
5383
5031
    _see_also = ['tag']
5384
5032
    takes_options = [
5385
 
        custom_help('directory',
5386
 
            help='Branch whose tags should be displayed.'),
 
5033
        Option('directory',
 
5034
            help='Branch whose tags should be displayed.',
 
5035
            short_name='d',
 
5036
            type=unicode,
 
5037
            ),
5387
5038
        RegistryOption.from_kwargs('sort',
5388
5039
            'Sort tags by different criteria.', title='Sorting',
5389
5040
            alpha='Sort tags lexicographically (default).',
5406
5057
        if not tags:
5407
5058
            return
5408
5059
 
5409
 
        self.add_cleanup(branch.lock_read().unlock)
5410
 
        if revision:
5411
 
            graph = branch.repository.get_graph()
5412
 
            rev1, rev2 = _get_revision_range(revision, branch, self.name())
5413
 
            revid1, revid2 = rev1.rev_id, rev2.rev_id
5414
 
            # only show revisions between revid1 and revid2 (inclusive)
5415
 
            tags = [(tag, revid) for tag, revid in tags if
5416
 
                graph.is_between(revid, revid1, revid2)]
5417
 
        if sort == 'alpha':
5418
 
            tags.sort()
5419
 
        elif sort == 'time':
5420
 
            timestamps = {}
5421
 
            for tag, revid in tags:
5422
 
                try:
5423
 
                    revobj = branch.repository.get_revision(revid)
5424
 
                except errors.NoSuchRevision:
5425
 
                    timestamp = sys.maxint # place them at the end
5426
 
                else:
5427
 
                    timestamp = revobj.timestamp
5428
 
                timestamps[revid] = timestamp
5429
 
            tags.sort(key=lambda x: timestamps[x[1]])
5430
 
        if not show_ids:
5431
 
            # [ (tag, revid), ... ] -> [ (tag, dotted_revno), ... ]
5432
 
            for index, (tag, revid) in enumerate(tags):
5433
 
                try:
5434
 
                    revno = branch.revision_id_to_dotted_revno(revid)
5435
 
                    if isinstance(revno, tuple):
5436
 
                        revno = '.'.join(map(str, revno))
5437
 
                except errors.NoSuchRevision:
5438
 
                    # Bad tag data/merges can lead to tagged revisions
5439
 
                    # which are not in this branch. Fail gracefully ...
5440
 
                    revno = '?'
5441
 
                tags[index] = (tag, revno)
5442
 
        self.cleanup_now()
 
5060
        branch.lock_read()
 
5061
        try:
 
5062
            if revision:
 
5063
                graph = branch.repository.get_graph()
 
5064
                rev1, rev2 = _get_revision_range(revision, branch, self.name())
 
5065
                revid1, revid2 = rev1.rev_id, rev2.rev_id
 
5066
                # only show revisions between revid1 and revid2 (inclusive)
 
5067
                tags = [(tag, revid) for tag, revid in tags if
 
5068
                    graph.is_between(revid, revid1, revid2)]
 
5069
            if sort == 'alpha':
 
5070
                tags.sort()
 
5071
            elif sort == 'time':
 
5072
                timestamps = {}
 
5073
                for tag, revid in tags:
 
5074
                    try:
 
5075
                        revobj = branch.repository.get_revision(revid)
 
5076
                    except errors.NoSuchRevision:
 
5077
                        timestamp = sys.maxint # place them at the end
 
5078
                    else:
 
5079
                        timestamp = revobj.timestamp
 
5080
                    timestamps[revid] = timestamp
 
5081
                tags.sort(key=lambda x: timestamps[x[1]])
 
5082
            if not show_ids:
 
5083
                # [ (tag, revid), ... ] -> [ (tag, dotted_revno), ... ]
 
5084
                for index, (tag, revid) in enumerate(tags):
 
5085
                    try:
 
5086
                        revno = branch.revision_id_to_dotted_revno(revid)
 
5087
                        if isinstance(revno, tuple):
 
5088
                            revno = '.'.join(map(str, revno))
 
5089
                    except errors.NoSuchRevision:
 
5090
                        # Bad tag data/merges can lead to tagged revisions
 
5091
                        # which are not in this branch. Fail gracefully ...
 
5092
                        revno = '?'
 
5093
                    tags[index] = (tag, revno)
 
5094
        finally:
 
5095
            branch.unlock()
5443
5096
        for tag, revspec in tags:
5444
5097
            self.outf.write('%-20s %s\n' % (tag, revspec))
5445
5098
 
5446
5099
 
5447
5100
class cmd_reconfigure(Command):
5448
 
    __doc__ = """Reconfigure the type of a bzr directory.
 
5101
    """Reconfigure the type of a bzr directory.
5449
5102
 
5450
5103
    A target configuration must be specified.
5451
5104
 
5481
5134
            ),
5482
5135
        Option('bind-to', help='Branch to bind checkout to.', type=str),
5483
5136
        Option('force',
5484
 
            help='Perform reconfiguration even if local changes'
5485
 
            ' will be lost.'),
5486
 
        Option('stacked-on',
5487
 
            help='Reconfigure a branch to be stacked on another branch.',
5488
 
            type=unicode,
5489
 
            ),
5490
 
        Option('unstacked',
5491
 
            help='Reconfigure a branch to be unstacked.  This '
5492
 
                'may require copying substantial data into it.',
5493
 
            ),
 
5137
               help='Perform reconfiguration even if local changes'
 
5138
               ' will be lost.')
5494
5139
        ]
5495
5140
 
5496
 
    def run(self, location=None, target_type=None, bind_to=None, force=False,
5497
 
            stacked_on=None,
5498
 
            unstacked=None):
 
5141
    def run(self, location=None, target_type=None, bind_to=None, force=False):
5499
5142
        directory = bzrdir.BzrDir.open(location)
5500
 
        if stacked_on and unstacked:
5501
 
            raise BzrCommandError("Can't use both --stacked-on and --unstacked")
5502
 
        elif stacked_on is not None:
5503
 
            reconfigure.ReconfigureStackedOn().apply(directory, stacked_on)
5504
 
        elif unstacked:
5505
 
            reconfigure.ReconfigureUnstacked().apply(directory)
5506
 
        # At the moment you can use --stacked-on and a different
5507
 
        # reconfiguration shape at the same time; there seems no good reason
5508
 
        # to ban it.
5509
5143
        if target_type is None:
5510
 
            if stacked_on or unstacked:
5511
 
                return
5512
 
            else:
5513
 
                raise errors.BzrCommandError('No target configuration '
5514
 
                    'specified')
 
5144
            raise errors.BzrCommandError('No target configuration specified')
5515
5145
        elif target_type == 'branch':
5516
5146
            reconfiguration = reconfigure.Reconfigure.to_branch(directory)
5517
5147
        elif target_type == 'tree':
5536
5166
 
5537
5167
 
5538
5168
class cmd_switch(Command):
5539
 
    __doc__ = """Set the branch of a checkout and update.
 
5169
    """Set the branch of a checkout and update.
5540
5170
 
5541
5171
    For lightweight checkouts, this changes the branch being referenced.
5542
5172
    For heavyweight checkouts, this checks that there are no local commits
5554
5184
    /path/to/newbranch.
5555
5185
 
5556
5186
    Bound branches use the nickname of its master branch unless it is set
5557
 
    locally, in which case switching will update the local nickname to be
 
5187
    locally, in which case switching will update the the local nickname to be
5558
5188
    that of the master.
5559
5189
    """
5560
5190
 
5561
 
    takes_args = ['to_location?']
5562
 
    takes_options = ['directory',
5563
 
                     Option('force',
5564
 
                        help='Switch even if local commits will be lost.'),
5565
 
                     'revision',
5566
 
                     Option('create-branch', short_name='b',
5567
 
                        help='Create the target branch from this one before'
5568
 
                             ' switching to it.'),
5569
 
                    ]
 
5191
    takes_args = ['to_location']
 
5192
    takes_options = [Option('force',
 
5193
                        help='Switch even if local commits will be lost.')
 
5194
                     ]
5570
5195
 
5571
 
    def run(self, to_location=None, force=False, create_branch=False,
5572
 
            revision=None, directory=u'.'):
 
5196
    def run(self, to_location, force=False):
5573
5197
        from bzrlib import switch
5574
 
        tree_location = directory
5575
 
        revision = _get_one_revision('switch', revision)
 
5198
        tree_location = '.'
5576
5199
        control_dir = bzrdir.BzrDir.open_containing(tree_location)[0]
5577
 
        if to_location is None:
5578
 
            if revision is None:
5579
 
                raise errors.BzrCommandError('You must supply either a'
5580
 
                                             ' revision or a location')
5581
 
            to_location = tree_location
5582
5200
        try:
5583
5201
            branch = control_dir.open_branch()
5584
5202
            had_explicit_nick = branch.get_config().has_explicit_nickname()
5585
5203
        except errors.NotBranchError:
5586
 
            branch = None
5587
5204
            had_explicit_nick = False
5588
 
        if create_branch:
5589
 
            if branch is None:
5590
 
                raise errors.BzrCommandError('cannot create branch without'
5591
 
                                             ' source branch')
5592
 
            to_location = directory_service.directories.dereference(
5593
 
                              to_location)
5594
 
            if '/' not in to_location and '\\' not in to_location:
5595
 
                # This path is meant to be relative to the existing branch
5596
 
                this_url = self._get_branch_location(control_dir)
5597
 
                to_location = urlutils.join(this_url, '..', to_location)
5598
 
            to_branch = branch.bzrdir.sprout(to_location,
5599
 
                                 possible_transports=[branch.bzrdir.root_transport],
5600
 
                                 source_branch=branch).open_branch()
5601
 
        else:
5602
 
            try:
5603
 
                to_branch = Branch.open(to_location)
5604
 
            except errors.NotBranchError:
5605
 
                this_url = self._get_branch_location(control_dir)
5606
 
                to_branch = Branch.open(
5607
 
                    urlutils.join(this_url, '..', to_location))
5608
 
        if revision is not None:
5609
 
            revision = revision.as_revision_id(to_branch)
5610
 
        switch.switch(control_dir, to_branch, force, revision_id=revision)
 
5205
        try:
 
5206
            to_branch = Branch.open(to_location)
 
5207
        except errors.NotBranchError:
 
5208
            this_url = self._get_branch_location(control_dir)
 
5209
            to_branch = Branch.open(
 
5210
                urlutils.join(this_url, '..', to_location))
 
5211
        switch.switch(control_dir, to_branch, force)
5611
5212
        if had_explicit_nick:
5612
5213
            branch = control_dir.open_branch() #get the new branch!
5613
5214
            branch.nick = to_branch.nick
5633
5234
 
5634
5235
 
5635
5236
class cmd_view(Command):
5636
 
    __doc__ = """Manage filtered views.
 
5237
    """Manage filtered views.
5637
5238
 
5638
5239
    Views provide a mask over the tree so that users can focus on
5639
5240
    a subset of a tree when doing their work. After creating a view,
5719
5320
            name=None,
5720
5321
            switch=None,
5721
5322
            ):
5722
 
        tree, file_list = WorkingTree.open_containing_paths(file_list,
5723
 
            apply_view=False)
 
5323
        tree, file_list = tree_files(file_list, apply_view=False)
5724
5324
        current_view, view_dict = tree.views.get_view_info()
5725
5325
        if name is None:
5726
5326
            name = current_view
5788
5388
 
5789
5389
 
5790
5390
class cmd_hooks(Command):
5791
 
    __doc__ = """Show hooks."""
 
5391
    """Show hooks."""
5792
5392
 
5793
5393
    hidden = True
5794
5394
 
5807
5407
                    self.outf.write("    <no hooks installed>\n")
5808
5408
 
5809
5409
 
5810
 
class cmd_remove_branch(Command):
5811
 
    __doc__ = """Remove a branch.
5812
 
 
5813
 
    This will remove the branch from the specified location but 
5814
 
    will keep any working tree or repository in place.
5815
 
 
5816
 
    :Examples:
5817
 
 
5818
 
      Remove the branch at repo/trunk::
5819
 
 
5820
 
        bzr remove-branch repo/trunk
5821
 
 
5822
 
    """
5823
 
 
5824
 
    takes_args = ["location?"]
5825
 
 
5826
 
    aliases = ["rmbranch"]
5827
 
 
5828
 
    def run(self, location=None):
5829
 
        if location is None:
5830
 
            location = "."
5831
 
        branch = Branch.open_containing(location)[0]
5832
 
        branch.bzrdir.destroy_branch()
5833
 
        
5834
 
 
5835
5410
class cmd_shelve(Command):
5836
 
    __doc__ = """Temporarily set aside some changes from the current tree.
 
5411
    """Temporarily set aside some changes from the current tree.
5837
5412
 
5838
5413
    Shelve allows you to temporarily put changes you've made "on the shelf",
5839
5414
    ie. out of the way, until a later time when you can bring them back from
5860
5435
    takes_args = ['file*']
5861
5436
 
5862
5437
    takes_options = [
5863
 
        'directory',
5864
5438
        'revision',
5865
5439
        Option('all', help='Shelve all changes.'),
5866
5440
        'message',
5875
5449
    _see_also = ['unshelve']
5876
5450
 
5877
5451
    def run(self, revision=None, all=False, file_list=None, message=None,
5878
 
            writer=None, list=False, destroy=False, directory=u'.'):
 
5452
            writer=None, list=False, destroy=False):
5879
5453
        if list:
5880
5454
            return self.run_for_list()
5881
5455
        from bzrlib.shelf_ui import Shelver
5882
5456
        if writer is None:
5883
5457
            writer = bzrlib.option.diff_writer_registry.get()
5884
5458
        try:
5885
 
            shelver = Shelver.from_args(writer(sys.stdout), revision, all,
5886
 
                file_list, message, destroy=destroy, directory=directory)
5887
 
            try:
5888
 
                shelver.run()
5889
 
            finally:
5890
 
                shelver.finalize()
 
5459
            Shelver.from_args(writer(sys.stdout), revision, all, file_list,
 
5460
                              message, destroy=destroy).run()
5891
5461
        except errors.UserAbort:
5892
5462
            return 0
5893
5463
 
5894
5464
    def run_for_list(self):
5895
5465
        tree = WorkingTree.open_containing('.')[0]
5896
 
        self.add_cleanup(tree.lock_read().unlock)
5897
 
        manager = tree.get_shelf_manager()
5898
 
        shelves = manager.active_shelves()
5899
 
        if len(shelves) == 0:
5900
 
            note('No shelved changes.')
5901
 
            return 0
5902
 
        for shelf_id in reversed(shelves):
5903
 
            message = manager.get_metadata(shelf_id).get('message')
5904
 
            if message is None:
5905
 
                message = '<no message>'
5906
 
            self.outf.write('%3d: %s\n' % (shelf_id, message))
5907
 
        return 1
 
5466
        tree.lock_read()
 
5467
        try:
 
5468
            manager = tree.get_shelf_manager()
 
5469
            shelves = manager.active_shelves()
 
5470
            if len(shelves) == 0:
 
5471
                note('No shelved changes.')
 
5472
                return 0
 
5473
            for shelf_id in reversed(shelves):
 
5474
                message = manager.get_metadata(shelf_id).get('message')
 
5475
                if message is None:
 
5476
                    message = '<no message>'
 
5477
                self.outf.write('%3d: %s\n' % (shelf_id, message))
 
5478
            return 1
 
5479
        finally:
 
5480
            tree.unlock()
5908
5481
 
5909
5482
 
5910
5483
class cmd_unshelve(Command):
5911
 
    __doc__ = """Restore shelved changes.
 
5484
    """Restore shelved changes.
5912
5485
 
5913
5486
    By default, the most recently shelved changes are restored. However if you
5914
5487
    specify a shelf by id those changes will be restored instead.  This works
5917
5490
 
5918
5491
    takes_args = ['shelf_id?']
5919
5492
    takes_options = [
5920
 
        'directory',
5921
5493
        RegistryOption.from_kwargs(
5922
5494
            'action', help="The action to perform.",
5923
5495
            enum_switch=False, value_switches=True,
5924
5496
            apply="Apply changes and remove from the shelf.",
5925
5497
            dry_run="Show changes, but do not apply or remove them.",
5926
 
            preview="Instead of unshelving the changes, show the diff that "
5927
 
                    "would result from unshelving.",
5928
 
            delete_only="Delete changes without applying them.",
5929
 
            keep="Apply changes but don't delete them.",
 
5498
            delete_only="Delete changes without applying them."
5930
5499
        )
5931
5500
    ]
5932
5501
    _see_also = ['shelve']
5933
5502
 
5934
 
    def run(self, shelf_id=None, action='apply', directory=u'.'):
 
5503
    def run(self, shelf_id=None, action='apply'):
5935
5504
        from bzrlib.shelf_ui import Unshelver
5936
 
        unshelver = Unshelver.from_args(shelf_id, action, directory=directory)
5937
 
        try:
5938
 
            unshelver.run()
5939
 
        finally:
5940
 
            unshelver.tree.unlock()
 
5505
        Unshelver.from_args(shelf_id, action).run()
5941
5506
 
5942
5507
 
5943
5508
class cmd_clean_tree(Command):
5944
 
    __doc__ = """Remove unwanted files from working tree.
 
5509
    """Remove unwanted files from working tree.
5945
5510
 
5946
5511
    By default, only unknown files, not ignored files, are deleted.  Versioned
5947
5512
    files are never deleted.
5955
5520
 
5956
5521
    To check what clean-tree will do, use --dry-run.
5957
5522
    """
5958
 
    takes_options = ['directory',
5959
 
                     Option('ignored', help='Delete all ignored files.'),
 
5523
    takes_options = [Option('ignored', help='Delete all ignored files.'),
5960
5524
                     Option('detritus', help='Delete conflict files, merge'
5961
5525
                            ' backups, and failed selftest dirs.'),
5962
5526
                     Option('unknown',
5965
5529
                            ' deleting them.'),
5966
5530
                     Option('force', help='Do not prompt before deleting.')]
5967
5531
    def run(self, unknown=False, ignored=False, detritus=False, dry_run=False,
5968
 
            force=False, directory=u'.'):
 
5532
            force=False):
5969
5533
        from bzrlib.clean_tree import clean_tree
5970
5534
        if not (unknown or ignored or detritus):
5971
5535
            unknown = True
5972
5536
        if dry_run:
5973
5537
            force = True
5974
 
        clean_tree(directory, unknown=unknown, ignored=ignored,
5975
 
                   detritus=detritus, dry_run=dry_run, no_prompt=force)
 
5538
        clean_tree('.', unknown=unknown, ignored=ignored, detritus=detritus,
 
5539
                   dry_run=dry_run, no_prompt=force)
5976
5540
 
5977
5541
 
5978
5542
class cmd_reference(Command):
5979
 
    __doc__ = """list, view and set branch locations for nested trees.
 
5543
    """list, view and set branch locations for nested trees.
5980
5544
 
5981
5545
    If no arguments are provided, lists the branch locations for nested trees.
5982
5546
    If one argument is provided, display the branch location for that tree.
6022
5586
            self.outf.write('%s %s\n' % (path, location))
6023
5587
 
6024
5588
 
6025
 
def _register_lazy_builtins():
6026
 
    # register lazy builtins from other modules; called at startup and should
6027
 
    # be only called once.
6028
 
    for (name, aliases, module_name) in [
6029
 
        ('cmd_bundle_info', [], 'bzrlib.bundle.commands'),
6030
 
        ('cmd_dpush', [], 'bzrlib.foreign'),
6031
 
        ('cmd_version_info', [], 'bzrlib.cmd_version_info'),
6032
 
        ('cmd_resolve', ['resolved'], 'bzrlib.conflicts'),
6033
 
        ('cmd_conflicts', [], 'bzrlib.conflicts'),
6034
 
        ('cmd_sign_my_commits', [], 'bzrlib.sign_my_commits'),
6035
 
        ]:
6036
 
        builtin_command_registry.register_lazy(name, aliases, module_name)
 
5589
# these get imported and then picked up by the scan for cmd_*
 
5590
# TODO: Some more consistent way to split command definitions across files;
 
5591
# we do need to load at least some information about them to know of
 
5592
# aliases.  ideally we would avoid loading the implementation until the
 
5593
# details were needed.
 
5594
from bzrlib.cmd_version_info import cmd_version_info
 
5595
from bzrlib.conflicts import cmd_resolve, cmd_conflicts, restore
 
5596
from bzrlib.bundle.commands import (
 
5597
    cmd_bundle_info,
 
5598
    )
 
5599
from bzrlib.foreign import cmd_dpush
 
5600
from bzrlib.sign_my_commits import cmd_sign_my_commits
 
5601
from bzrlib.weave_commands import cmd_versionedfile_list, \
 
5602
        cmd_weave_plan_merge, cmd_weave_merge_text