~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Vincent Ladeuil
  • Date: 2007-07-18 09:43:41 UTC
  • mto: (2778.5.1 vila)
  • mto: This revision was merged to the branch mainline in revision 2789.
  • Revision ID: v.ladeuil+lp@free.fr-20070718094341-edmgsog3el06yqow
Add performance analysis of missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2011 Canonical Ltd
 
1
# Copyright (C) 2004, 2005, 2006, 2007 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
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""builtin bzr commands"""
18
18
 
19
19
import os
 
20
from StringIO import StringIO
20
21
 
21
22
from bzrlib.lazy_import import lazy_import
22
23
lazy_import(globals(), """
23
 
import cStringIO
 
24
import codecs
 
25
import errno
24
26
import sys
 
27
import tempfile
25
28
import time
26
29
 
27
30
import bzrlib
28
31
from bzrlib import (
 
32
    branch,
29
33
    bugtracker,
30
34
    bundle,
31
 
    btree_index,
32
35
    bzrdir,
33
 
    directory_service,
34
36
    delta,
35
 
    config as _mod_config,
 
37
    config,
36
38
    errors,
37
39
    globbing,
38
 
    hooks,
 
40
    ignores,
39
41
    log,
40
42
    merge as _mod_merge,
41
43
    merge_directive,
42
44
    osutils,
43
 
    reconfigure,
44
 
    rename_map,
 
45
    registry,
 
46
    repository,
45
47
    revision as _mod_revision,
46
 
    static_tuple,
47
 
    timestamp,
 
48
    revisionspec,
 
49
    symbol_versioning,
48
50
    transport,
 
51
    tree as _mod_tree,
49
52
    ui,
50
53
    urlutils,
51
 
    views,
52
 
    gpg,
53
54
    )
54
55
from bzrlib.branch import Branch
 
56
from bzrlib.bundle.apply_bundle import install_bundle, merge_bundle
55
57
from bzrlib.conflicts import ConflictList
56
 
from bzrlib.transport import memory
57
 
from bzrlib.revisionspec import RevisionSpec, RevisionInfo
 
58
from bzrlib.revisionspec import RevisionSpec
58
59
from bzrlib.smtp_connection import SMTPConnection
59
60
from bzrlib.workingtree import WorkingTree
60
 
from bzrlib.i18n import gettext, ngettext
61
61
""")
62
62
 
63
 
from bzrlib.commands import (
64
 
    Command,
65
 
    builtin_command_registry,
66
 
    display_command,
67
 
    )
68
 
from bzrlib.option import (
69
 
    ListOption,
70
 
    Option,
71
 
    RegistryOption,
72
 
    custom_help,
73
 
    _parse_revision_str,
74
 
    )
75
 
from bzrlib.trace import mutter, note, warning, is_quiet, get_verbosity_level
76
 
from bzrlib import (
77
 
    symbol_versioning,
78
 
    )
79
 
 
80
 
 
81
 
@symbol_versioning.deprecated_function(symbol_versioning.deprecated_in((2, 3, 0)))
82
 
def tree_files(file_list, default_branch=u'.', canonicalize=True,
83
 
    apply_view=True):
84
 
    return internal_tree_files(file_list, default_branch, canonicalize,
85
 
        apply_view)
86
 
 
87
 
 
88
 
def tree_files_for_add(file_list):
89
 
    """
90
 
    Return a tree and list of absolute paths from a file list.
91
 
 
92
 
    Similar to tree_files, but add handles files a bit differently, so it a
93
 
    custom implementation.  In particular, MutableTreeTree.smart_add expects
94
 
    absolute paths, which it immediately converts to relative paths.
95
 
    """
96
 
    # FIXME Would be nice to just return the relative paths like
97
 
    # internal_tree_files does, but there are a large number of unit tests
98
 
    # that assume the current interface to mutabletree.smart_add
99
 
    if file_list:
100
 
        tree, relpath = WorkingTree.open_containing(file_list[0])
101
 
        if tree.supports_views():
102
 
            view_files = tree.views.lookup_view()
103
 
            if view_files:
104
 
                for filename in file_list:
105
 
                    if not osutils.is_inside_any(view_files, filename):
106
 
                        raise errors.FileOutsideView(filename, view_files)
107
 
        file_list = file_list[:]
108
 
        file_list[0] = tree.abspath(relpath)
109
 
    else:
110
 
        tree = WorkingTree.open_containing(u'.')[0]
111
 
        if tree.supports_views():
112
 
            view_files = tree.views.lookup_view()
113
 
            if view_files:
114
 
                file_list = view_files
115
 
                view_str = views.view_display_str(view_files)
116
 
                note(gettext("Ignoring files outside view. View is %s") % view_str)
117
 
    return tree, file_list
118
 
 
119
 
 
120
 
def _get_one_revision(command_name, revisions):
121
 
    if revisions is None:
122
 
        return None
123
 
    if len(revisions) != 1:
124
 
        raise errors.BzrCommandError(gettext(
125
 
            'bzr %s --revision takes exactly one revision identifier') % (
126
 
                command_name,))
127
 
    return revisions[0]
128
 
 
129
 
 
130
 
def _get_one_revision_tree(command_name, revisions, branch=None, tree=None):
131
 
    """Get a revision tree. Not suitable for commands that change the tree.
132
 
    
133
 
    Specifically, the basis tree in dirstate trees is coupled to the dirstate
134
 
    and doing a commit/uncommit/pull will at best fail due to changing the
135
 
    basis revision data.
136
 
 
137
 
    If tree is passed in, it should be already locked, for lifetime management
138
 
    of the trees internal cached state.
139
 
    """
140
 
    if branch is None:
141
 
        branch = tree.branch
142
 
    if revisions is None:
143
 
        if tree is not None:
144
 
            rev_tree = tree.basis_tree()
145
 
        else:
146
 
            rev_tree = branch.basis_tree()
147
 
    else:
148
 
        revision = _get_one_revision(command_name, revisions)
149
 
        rev_tree = revision.as_tree(branch)
150
 
    return rev_tree
 
63
from bzrlib.commands import Command, display_command
 
64
from bzrlib.option import ListOption, Option, RegistryOption
 
65
from bzrlib.progress import DummyProgress, ProgressPhase
 
66
from bzrlib.trace import mutter, note, log_error, warning, is_quiet, info
 
67
 
 
68
 
 
69
def tree_files(file_list, default_branch=u'.'):
 
70
    try:
 
71
        return internal_tree_files(file_list, default_branch)
 
72
    except errors.FileInWrongBranch, e:
 
73
        raise errors.BzrCommandError("%s is not in the same branch as %s" %
 
74
                                     (e.path, file_list[0]))
151
75
 
152
76
 
153
77
# XXX: Bad function name; should possibly also be a class method of
154
78
# WorkingTree rather than a function.
155
 
@symbol_versioning.deprecated_function(symbol_versioning.deprecated_in((2, 3, 0)))
156
 
def internal_tree_files(file_list, default_branch=u'.', canonicalize=True,
157
 
    apply_view=True):
 
79
def internal_tree_files(file_list, default_branch=u'.'):
158
80
    """Convert command-line paths to a WorkingTree and relative paths.
159
81
 
160
 
    Deprecated: use WorkingTree.open_containing_paths instead.
161
 
 
162
82
    This is typically used for command-line processors that take one or
163
83
    more filenames, and infer the workingtree that contains them.
164
84
 
165
85
    The filenames given are not required to exist.
166
86
 
167
 
    :param file_list: Filenames to convert.
 
87
    :param file_list: Filenames to convert.  
168
88
 
169
89
    :param default_branch: Fallback tree path to use if file_list is empty or
170
90
        None.
171
91
 
172
 
    :param apply_view: if True and a view is set, apply it or check that
173
 
        specified files are within it
174
 
 
175
92
    :return: workingtree, [relative_paths]
176
93
    """
177
 
    return WorkingTree.open_containing_paths(
178
 
        file_list, default_directory='.',
179
 
        canonicalize=True,
180
 
        apply_view=True)
181
 
 
182
 
 
183
 
def _get_view_info_for_change_reporter(tree):
184
 
    """Get the view information from a tree for change reporting."""
185
 
    view_info = None
 
94
    if file_list is None or len(file_list) == 0:
 
95
        return WorkingTree.open_containing(default_branch)[0], file_list
 
96
    tree = WorkingTree.open_containing(osutils.realpath(file_list[0]))[0]
 
97
    new_list = []
 
98
    for filename in file_list:
 
99
        try:
 
100
            new_list.append(tree.relpath(osutils.dereference_path(filename)))
 
101
        except errors.PathNotChild:
 
102
            raise errors.FileInWrongBranch(tree.branch, filename)
 
103
    return tree, new_list
 
104
 
 
105
 
 
106
@symbol_versioning.deprecated_function(symbol_versioning.zero_fifteen)
 
107
def get_format_type(typestring):
 
108
    """Parse and return a format specifier."""
 
109
    # Have to use BzrDirMetaFormat1 directly, so that
 
110
    # RepositoryFormat.set_default_format works
 
111
    if typestring == "default":
 
112
        return bzrdir.BzrDirMetaFormat1()
186
113
    try:
187
 
        current_view = tree.views.get_view_info()[0]
188
 
        if current_view is not None:
189
 
            view_info = (current_view, tree.views.lookup_view())
190
 
    except errors.ViewsNotSupported:
191
 
        pass
192
 
    return view_info
193
 
 
194
 
 
195
 
def _open_directory_or_containing_tree_or_branch(filename, directory):
196
 
    """Open the tree or branch containing the specified file, unless
197
 
    the --directory option is used to specify a different branch."""
198
 
    if directory is not None:
199
 
        return (None, Branch.open(directory), filename)
200
 
    return bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
114
        return bzrdir.format_registry.make_bzrdir(typestring)
 
115
    except KeyError:
 
116
        msg = 'Unknown bzr format "%s". See "bzr help formats".' % typestring
 
117
        raise errors.BzrCommandError(msg)
201
118
 
202
119
 
203
120
# TODO: Make sure no commands unconditionally use the working directory as a
207
124
# opens the branch?)
208
125
 
209
126
class cmd_status(Command):
210
 
    __doc__ = """Display status summary.
 
127
    """Display status summary.
211
128
 
212
129
    This reports on versioned and unknown files, reporting them
213
130
    grouped by state.  Possible states are:
233
150
    unknown
234
151
        Not versioned and not matching an ignore pattern.
235
152
 
236
 
    Additionally for directories, symlinks and files with a changed
237
 
    executable bit, Bazaar indicates their type using a trailing
238
 
    character: '/', '@' or '*' respectively. These decorations can be
239
 
    disabled using the '--no-classify' option.
240
 
 
241
153
    To see ignored files use 'bzr ignored'.  For details on the
242
154
    changes to file texts, use 'bzr diff'.
243
 
 
244
 
    Note that --short or -S gives status flags for each item, similar
245
 
    to Subversion's status command. To get output similar to svn -q,
246
 
    use bzr status -SV.
 
155
    
 
156
    --short gives a status flags for each item, similar to the SVN's status
 
157
    command.
247
158
 
248
159
    If no arguments are specified, the status of the entire working
249
160
    directory is shown.  Otherwise, only the status of the specified
250
161
    files or directories is reported.  If a directory is given, status
251
162
    is reported for everything inside that directory.
252
163
 
253
 
    Before merges are committed, the pending merge tip revisions are
254
 
    shown. To see all pending merge revisions, use the -v option.
255
 
    To skip the display of pending merge information altogether, use
256
 
    the no-pending option or specify a file/directory.
257
 
 
258
 
    To compare the working directory to a specific revision, pass a
259
 
    single revision to the revision argument.
260
 
 
261
 
    To see which files have changed in a specific revision, or between
262
 
    two revisions, pass a revision range to the revision argument.
263
 
    This will produce the same results as calling 'bzr diff --summarize'.
 
164
    If a revision argument is given, the status is calculated against
 
165
    that revision, or between two revisions if two are provided.
264
166
    """
265
 
 
 
167
    
266
168
    # TODO: --no-recurse, --recurse options
267
 
 
 
169
    
268
170
    takes_args = ['file*']
269
 
    takes_options = ['show-ids', 'revision', 'change', 'verbose',
270
 
                     Option('short', help='Use short status indicators.',
271
 
                            short_name='S'),
272
 
                     Option('versioned', help='Only show versioned files.',
273
 
                            short_name='V'),
274
 
                     Option('no-pending', help='Don\'t show pending merges.',
275
 
                           ),
276
 
                     Option('no-classify',
277
 
                            help='Do not mark object type using indicator.',
278
 
                           ),
279
 
                     ]
 
171
    takes_options = ['show-ids', 'revision',
 
172
                     Option('short', help='Give short SVN-style status lines.'),
 
173
                     Option('versioned', help='Only show versioned files.')]
280
174
    aliases = ['st', 'stat']
281
175
 
282
176
    encoding_type = 'replace'
283
177
    _see_also = ['diff', 'revert', 'status-flags']
284
 
 
 
178
    
285
179
    @display_command
286
180
    def run(self, show_ids=False, file_list=None, revision=None, short=False,
287
 
            versioned=False, no_pending=False, verbose=False,
288
 
            no_classify=False):
 
181
            versioned=False):
289
182
        from bzrlib.status import show_tree_status
290
183
 
291
 
        if revision and len(revision) > 2:
292
 
            raise errors.BzrCommandError(gettext('bzr status --revision takes exactly'
293
 
                                         ' one or two revision specifiers'))
294
 
 
295
 
        tree, relfile_list = WorkingTree.open_containing_paths(file_list)
296
 
        # Avoid asking for specific files when that is not needed.
297
 
        if relfile_list == ['']:
298
 
            relfile_list = None
299
 
            # Don't disable pending merges for full trees other than '.'.
300
 
            if file_list == ['.']:
301
 
                no_pending = True
302
 
        # A specific path within a tree was given.
303
 
        elif relfile_list is not None:
304
 
            no_pending = True
 
184
        tree, file_list = tree_files(file_list)
 
185
            
305
186
        show_tree_status(tree, show_ids=show_ids,
306
 
                         specific_files=relfile_list, revision=revision,
307
 
                         to_file=self.outf, short=short, versioned=versioned,
308
 
                         show_pending=(not no_pending), verbose=verbose,
309
 
                         classify=not no_classify)
 
187
                         specific_files=file_list, revision=revision,
 
188
                         to_file=self.outf, short=short, versioned=versioned)
310
189
 
311
190
 
312
191
class cmd_cat_revision(Command):
313
 
    __doc__ = """Write out metadata for a revision.
314
 
 
 
192
    """Write out metadata for a revision.
 
193
    
315
194
    The revision to print can either be specified by a specific
316
195
    revision identifier, or you can use --revision.
317
196
    """
318
197
 
319
198
    hidden = True
320
199
    takes_args = ['revision_id?']
321
 
    takes_options = ['directory', 'revision']
 
200
    takes_options = ['revision']
322
201
    # cat-revision is more for frontends so should be exact
323
202
    encoding = 'strict'
324
 
 
325
 
    def print_revision(self, revisions, revid):
326
 
        stream = revisions.get_record_stream([(revid,)], 'unordered', True)
327
 
        record = stream.next()
328
 
        if record.storage_kind == 'absent':
329
 
            raise errors.NoSuchRevision(revisions, revid)
330
 
        revtext = record.get_bytes_as('fulltext')
331
 
        self.outf.write(revtext.decode('utf-8'))
332
 
 
 
203
    
333
204
    @display_command
334
 
    def run(self, revision_id=None, revision=None, directory=u'.'):
 
205
    def run(self, revision_id=None, revision=None):
 
206
 
 
207
        revision_id = osutils.safe_revision_id(revision_id, warn=False)
335
208
        if revision_id is not None and revision is not None:
336
 
            raise errors.BzrCommandError(gettext('You can only supply one of'
337
 
                                         ' revision_id or --revision'))
 
209
            raise errors.BzrCommandError('You can only supply one of'
 
210
                                         ' revision_id or --revision')
338
211
        if revision_id is None and revision is None:
339
 
            raise errors.BzrCommandError(gettext('You must supply either'
340
 
                                         ' --revision or a revision_id'))
341
 
 
342
 
        b = bzrdir.BzrDir.open_containing_tree_or_branch(directory)[1]
343
 
 
344
 
        revisions = b.repository.revisions
345
 
        if revisions is None:
346
 
            raise errors.BzrCommandError(gettext('Repository %r does not support '
347
 
                'access to raw revision texts'))
348
 
 
349
 
        b.repository.lock_read()
350
 
        try:
351
 
            # TODO: jam 20060112 should cat-revision always output utf-8?
352
 
            if revision_id is not None:
353
 
                revision_id = osutils.safe_revision_id(revision_id, warn=False)
354
 
                try:
355
 
                    self.print_revision(revisions, revision_id)
356
 
                except errors.NoSuchRevision:
357
 
                    msg = gettext("The repository {0} contains no revision {1}.").format(
358
 
                        b.repository.base, revision_id)
359
 
                    raise errors.BzrCommandError(msg)
360
 
            elif revision is not None:
361
 
                for rev in revision:
362
 
                    if rev is None:
363
 
                        raise errors.BzrCommandError(
364
 
                            gettext('You cannot specify a NULL revision.'))
365
 
                    rev_id = rev.as_revision_id(b)
366
 
                    self.print_revision(revisions, rev_id)
367
 
        finally:
368
 
            b.repository.unlock()
369
 
        
370
 
 
371
 
class cmd_dump_btree(Command):
372
 
    __doc__ = """Dump the contents of a btree index file to stdout.
373
 
 
374
 
    PATH is a btree index file, it can be any URL. This includes things like
375
 
    .bzr/repository/pack-names, or .bzr/repository/indices/a34b3a...ca4a4.iix
376
 
 
377
 
    By default, the tuples stored in the index file will be displayed. With
378
 
    --raw, we will uncompress the pages, but otherwise display the raw bytes
379
 
    stored in the index.
380
 
    """
381
 
 
382
 
    # TODO: Do we want to dump the internal nodes as well?
383
 
    # TODO: It would be nice to be able to dump the un-parsed information,
384
 
    #       rather than only going through iter_all_entries. However, this is
385
 
    #       good enough for a start
386
 
    hidden = True
387
 
    encoding_type = 'exact'
388
 
    takes_args = ['path']
389
 
    takes_options = [Option('raw', help='Write the uncompressed bytes out,'
390
 
                                        ' rather than the parsed tuples.'),
391
 
                    ]
392
 
 
393
 
    def run(self, path, raw=False):
394
 
        dirname, basename = osutils.split(path)
395
 
        t = transport.get_transport(dirname)
396
 
        if raw:
397
 
            self._dump_raw_bytes(t, basename)
398
 
        else:
399
 
            self._dump_entries(t, basename)
400
 
 
401
 
    def _get_index_and_bytes(self, trans, basename):
402
 
        """Create a BTreeGraphIndex and raw bytes."""
403
 
        bt = btree_index.BTreeGraphIndex(trans, basename, None)
404
 
        bytes = trans.get_bytes(basename)
405
 
        bt._file = cStringIO.StringIO(bytes)
406
 
        bt._size = len(bytes)
407
 
        return bt, bytes
408
 
 
409
 
    def _dump_raw_bytes(self, trans, basename):
410
 
        import zlib
411
 
 
412
 
        # We need to parse at least the root node.
413
 
        # This is because the first page of every row starts with an
414
 
        # uncompressed header.
415
 
        bt, bytes = self._get_index_and_bytes(trans, basename)
416
 
        for page_idx, page_start in enumerate(xrange(0, len(bytes),
417
 
                                                     btree_index._PAGE_SIZE)):
418
 
            page_end = min(page_start + btree_index._PAGE_SIZE, len(bytes))
419
 
            page_bytes = bytes[page_start:page_end]
420
 
            if page_idx == 0:
421
 
                self.outf.write('Root node:\n')
422
 
                header_end, data = bt._parse_header_from_bytes(page_bytes)
423
 
                self.outf.write(page_bytes[:header_end])
424
 
                page_bytes = data
425
 
            self.outf.write('\nPage %d\n' % (page_idx,))
426
 
            if len(page_bytes) == 0:
427
 
                self.outf.write('(empty)\n');
428
 
            else:
429
 
                decomp_bytes = zlib.decompress(page_bytes)
430
 
                self.outf.write(decomp_bytes)
431
 
                self.outf.write('\n')
432
 
 
433
 
    def _dump_entries(self, trans, basename):
434
 
        try:
435
 
            st = trans.stat(basename)
436
 
        except errors.TransportNotPossible:
437
 
            # We can't stat, so we'll fake it because we have to do the 'get()'
438
 
            # anyway.
439
 
            bt, _ = self._get_index_and_bytes(trans, basename)
440
 
        else:
441
 
            bt = btree_index.BTreeGraphIndex(trans, basename, st.st_size)
442
 
        for node in bt.iter_all_entries():
443
 
            # Node is made up of:
444
 
            # (index, key, value, [references])
445
 
            try:
446
 
                refs = node[3]
447
 
            except IndexError:
448
 
                refs_as_tuples = None
449
 
            else:
450
 
                refs_as_tuples = static_tuple.as_tuples(refs)
451
 
            as_tuple = (tuple(node[1]), node[2], refs_as_tuples)
452
 
            self.outf.write('%s\n' % (as_tuple,))
453
 
 
 
212
            raise errors.BzrCommandError('You must supply either'
 
213
                                         ' --revision or a revision_id')
 
214
        b = WorkingTree.open_containing(u'.')[0].branch
 
215
 
 
216
        # TODO: jam 20060112 should cat-revision always output utf-8?
 
217
        if revision_id is not None:
 
218
            self.outf.write(b.repository.get_revision_xml(revision_id).decode('utf-8'))
 
219
        elif revision is not None:
 
220
            for rev in revision:
 
221
                if rev is None:
 
222
                    raise errors.BzrCommandError('You cannot specify a NULL'
 
223
                                                 ' revision.')
 
224
                revno, rev_id = rev.in_history(b)
 
225
                self.outf.write(b.repository.get_revision_xml(rev_id).decode('utf-8'))
 
226
    
454
227
 
455
228
class cmd_remove_tree(Command):
456
 
    __doc__ = """Remove the working tree from a given branch/checkout.
 
229
    """Remove the working tree from a given branch/checkout.
457
230
 
458
231
    Since a lightweight checkout is little more than a working tree
459
232
    this will refuse to run against one.
461
234
    To re-create the working tree, use "bzr checkout".
462
235
    """
463
236
    _see_also = ['checkout', 'working-trees']
464
 
    takes_args = ['location*']
465
 
    takes_options = [
466
 
        Option('force',
467
 
               help='Remove the working tree even if it has '
468
 
                    'uncommitted or shelved changes.'),
469
 
        ]
470
 
 
471
 
    def run(self, location_list, force=False):
472
 
        if not location_list:
473
 
            location_list=['.']
474
 
 
475
 
        for location in location_list:
476
 
            d = bzrdir.BzrDir.open(location)
477
 
            
478
 
            try:
479
 
                working = d.open_workingtree()
480
 
            except errors.NoWorkingTree:
481
 
                raise errors.BzrCommandError(gettext("No working tree to remove"))
482
 
            except errors.NotLocalUrl:
483
 
                raise errors.BzrCommandError(gettext("You cannot remove the working tree"
484
 
                                             " of a remote path"))
485
 
            if not force:
486
 
                if (working.has_changes()):
487
 
                    raise errors.UncommittedChanges(working)
488
 
                if working.get_shelf_manager().last_shelf() is not None:
489
 
                    raise errors.ShelvedChanges(working)
490
 
 
491
 
            if working.user_url != working.branch.user_url:
492
 
                raise errors.BzrCommandError(gettext("You cannot remove the working tree"
493
 
                                             " from a lightweight checkout"))
494
 
 
495
 
            d.destroy_workingtree()
496
 
 
497
 
 
498
 
class cmd_repair_workingtree(Command):
499
 
    __doc__ = """Reset the working tree state file.
500
 
 
501
 
    This is not meant to be used normally, but more as a way to recover from
502
 
    filesystem corruption, etc. This rebuilds the working inventory back to a
503
 
    'known good' state. Any new modifications (adding a file, renaming, etc)
504
 
    will be lost, though modified files will still be detected as such.
505
 
 
506
 
    Most users will want something more like "bzr revert" or "bzr update"
507
 
    unless the state file has become corrupted.
508
 
 
509
 
    By default this attempts to recover the current state by looking at the
510
 
    headers of the state file. If the state file is too corrupted to even do
511
 
    that, you can supply --revision to force the state of the tree.
512
 
    """
513
 
 
514
 
    takes_options = ['revision', 'directory',
515
 
        Option('force',
516
 
               help='Reset the tree even if it doesn\'t appear to be'
517
 
                    ' corrupted.'),
518
 
    ]
519
 
    hidden = True
520
 
 
521
 
    def run(self, revision=None, directory='.', force=False):
522
 
        tree, _ = WorkingTree.open_containing(directory)
523
 
        self.add_cleanup(tree.lock_tree_write().unlock)
524
 
        if not force:
525
 
            try:
526
 
                tree.check_state()
527
 
            except errors.BzrError:
528
 
                pass # There seems to be a real error here, so we'll reset
529
 
            else:
530
 
                # Refuse
531
 
                raise errors.BzrCommandError(gettext(
532
 
                    'The tree does not appear to be corrupt. You probably'
533
 
                    ' want "bzr revert" instead. Use "--force" if you are'
534
 
                    ' sure you want to reset the working tree.'))
535
 
        if revision is None:
536
 
            revision_ids = None
537
 
        else:
538
 
            revision_ids = [r.as_revision_id(tree.branch) for r in revision]
 
237
 
 
238
    takes_args = ['location?']
 
239
 
 
240
    def run(self, location='.'):
 
241
        d = bzrdir.BzrDir.open(location)
 
242
        
539
243
        try:
540
 
            tree.reset_state(revision_ids)
541
 
        except errors.BzrError, e:
542
 
            if revision_ids is None:
543
 
                extra = (gettext(', the header appears corrupt, try passing -r -1'
544
 
                         ' to set the state to the last commit'))
545
 
            else:
546
 
                extra = ''
547
 
            raise errors.BzrCommandError(gettext('failed to reset the tree state{0}').format(extra))
548
 
 
 
244
            working = d.open_workingtree()
 
245
        except errors.NoWorkingTree:
 
246
            raise errors.BzrCommandError("No working tree to remove")
 
247
        except errors.NotLocalUrl:
 
248
            raise errors.BzrCommandError("You cannot remove the working tree of a "
 
249
                                         "remote path")
 
250
        
 
251
        working_path = working.bzrdir.root_transport.base
 
252
        branch_path = working.branch.bzrdir.root_transport.base
 
253
        if working_path != branch_path:
 
254
            raise errors.BzrCommandError("You cannot remove the working tree from "
 
255
                                         "a lightweight checkout")
 
256
        
 
257
        d.destroy_workingtree()
 
258
        
549
259
 
550
260
class cmd_revno(Command):
551
 
    __doc__ = """Show current revision number.
 
261
    """Show current revision number.
552
262
 
553
263
    This is equal to the number of revisions on this branch.
554
264
    """
555
265
 
556
266
    _see_also = ['info']
557
267
    takes_args = ['location?']
558
 
    takes_options = [
559
 
        Option('tree', help='Show revno of working tree'),
560
 
        ]
561
268
 
562
269
    @display_command
563
 
    def run(self, tree=False, location=u'.'):
564
 
        if tree:
565
 
            try:
566
 
                wt = WorkingTree.open_containing(location)[0]
567
 
                self.add_cleanup(wt.lock_read().unlock)
568
 
            except (errors.NoWorkingTree, errors.NotLocalUrl):
569
 
                raise errors.NoWorkingTree(location)
570
 
            revid = wt.last_revision()
571
 
            try:
572
 
                revno_t = wt.branch.revision_id_to_dotted_revno(revid)
573
 
            except errors.NoSuchRevision:
574
 
                revno_t = ('???',)
575
 
            revno = ".".join(str(n) for n in revno_t)
576
 
        else:
577
 
            b = Branch.open_containing(location)[0]
578
 
            self.add_cleanup(b.lock_read().unlock)
579
 
            revno = b.revno()
580
 
        self.cleanup_now()
581
 
        self.outf.write(str(revno) + '\n')
 
270
    def run(self, location=u'.'):
 
271
        self.outf.write(str(Branch.open_containing(location)[0].revno()))
 
272
        self.outf.write('\n')
582
273
 
583
274
 
584
275
class cmd_revision_info(Command):
585
 
    __doc__ = """Show revision number and revision id for a given revision identifier.
 
276
    """Show revision number and revision id for a given revision identifier.
586
277
    """
587
278
    hidden = True
588
279
    takes_args = ['revision_info*']
589
 
    takes_options = [
590
 
        'revision',
591
 
        custom_help('directory',
592
 
            help='Branch to examine, '
593
 
                 'rather than the one containing the working directory.'),
594
 
        Option('tree', help='Show revno of working tree'),
595
 
        ]
 
280
    takes_options = ['revision']
596
281
 
597
282
    @display_command
598
 
    def run(self, revision=None, directory=u'.', tree=False,
599
 
            revision_info_list=[]):
 
283
    def run(self, revision=None, revision_info_list=[]):
600
284
 
601
 
        try:
602
 
            wt = WorkingTree.open_containing(directory)[0]
603
 
            b = wt.branch
604
 
            self.add_cleanup(wt.lock_read().unlock)
605
 
        except (errors.NoWorkingTree, errors.NotLocalUrl):
606
 
            wt = None
607
 
            b = Branch.open_containing(directory)[0]
608
 
            self.add_cleanup(b.lock_read().unlock)
609
 
        revision_ids = []
 
285
        revs = []
610
286
        if revision is not None:
611
 
            revision_ids.extend(rev.as_revision_id(b) for rev in revision)
 
287
            revs.extend(revision)
612
288
        if revision_info_list is not None:
613
 
            for rev_str in revision_info_list:
614
 
                rev_spec = RevisionSpec.from_string(rev_str)
615
 
                revision_ids.append(rev_spec.as_revision_id(b))
616
 
        # No arguments supplied, default to the last revision
617
 
        if len(revision_ids) == 0:
618
 
            if tree:
619
 
                if wt is None:
620
 
                    raise errors.NoWorkingTree(directory)
621
 
                revision_ids.append(wt.last_revision())
 
289
            for rev in revision_info_list:
 
290
                revs.append(RevisionSpec.from_string(rev))
 
291
 
 
292
        b = Branch.open_containing(u'.')[0]
 
293
 
 
294
        if len(revs) == 0:
 
295
            revs.append(RevisionSpec.from_string('-1'))
 
296
 
 
297
        for rev in revs:
 
298
            revinfo = rev.in_history(b)
 
299
            if revinfo.revno is None:
 
300
                dotted_map = b.get_revision_id_to_revno_map()
 
301
                revno = '.'.join(str(i) for i in dotted_map[revinfo.rev_id])
 
302
                print '%s %s' % (revno, revinfo.rev_id)
622
303
            else:
623
 
                revision_ids.append(b.last_revision())
624
 
 
625
 
        revinfos = []
626
 
        maxlen = 0
627
 
        for revision_id in revision_ids:
628
 
            try:
629
 
                dotted_revno = b.revision_id_to_dotted_revno(revision_id)
630
 
                revno = '.'.join(str(i) for i in dotted_revno)
631
 
            except errors.NoSuchRevision:
632
 
                revno = '???'
633
 
            maxlen = max(maxlen, len(revno))
634
 
            revinfos.append([revno, revision_id])
635
 
 
636
 
        self.cleanup_now()
637
 
        for ri in revinfos:
638
 
            self.outf.write('%*s %s\n' % (maxlen, ri[0], ri[1]))
639
 
 
640
 
 
 
304
                print '%4d %s' % (revinfo.revno, revinfo.rev_id)
 
305
 
 
306
    
641
307
class cmd_add(Command):
642
 
    __doc__ = """Add specified files or directories.
 
308
    """Add specified files or directories.
643
309
 
644
310
    In non-recursive mode, all the named items are added, regardless
645
311
    of whether they were previously ignored.  A warning is given if
653
319
    are added.  This search proceeds recursively into versioned
654
320
    directories.  If no names are given '.' is assumed.
655
321
 
656
 
    A warning will be printed when nested trees are encountered,
657
 
    unless they are explicitly ignored.
658
 
 
659
322
    Therefore simply saying 'bzr add' will version all files that
660
323
    are currently unknown.
661
324
 
664
327
    you should never need to explicitly add a directory, they'll just
665
328
    get added when you add a file in the directory.
666
329
 
667
 
    --dry-run will show which files would be added, but not actually
 
330
    --dry-run will show which files would be added, but not actually 
668
331
    add them.
669
332
 
670
333
    --file-ids-from will try to use the file ids from the supplied path.
674
337
    branches that will be merged later (without showing the two different
675
338
    adds as a conflict). It is also useful when merging another project
676
339
    into a subdirectory of this one.
677
 
    
678
 
    Any files matching patterns in the ignore list will not be added
679
 
    unless they are explicitly mentioned.
680
 
    
681
 
    In recursive mode, files larger than the configuration option 
682
 
    add.maximum_file_size will be skipped. Named items are never skipped due
683
 
    to file size.
684
340
    """
685
341
    takes_args = ['file*']
686
342
    takes_options = [
694
350
               help='Lookup file ids from this tree.'),
695
351
        ]
696
352
    encoding_type = 'replace'
697
 
    _see_also = ['remove', 'ignore']
 
353
    _see_also = ['remove']
698
354
 
699
355
    def run(self, file_list, no_recurse=False, dry_run=False, verbose=False,
700
356
            file_ids_from=None):
713
369
            action = bzrlib.add.AddFromBaseAction(base_tree, base_path,
714
370
                          to_file=self.outf, should_print=(not is_quiet()))
715
371
        else:
716
 
            action = bzrlib.add.AddWithSkipLargeAction(to_file=self.outf,
 
372
            action = bzrlib.add.AddAction(to_file=self.outf,
717
373
                should_print=(not is_quiet()))
718
374
 
719
375
        if base_tree:
720
 
            self.add_cleanup(base_tree.lock_read().unlock)
721
 
        tree, file_list = tree_files_for_add(file_list)
722
 
        added, ignored = tree.smart_add(file_list, not
723
 
            no_recurse, action=action, save=not dry_run)
724
 
        self.cleanup_now()
 
376
            base_tree.lock_read()
 
377
        try:
 
378
            file_list = self._maybe_expand_globs(file_list)
 
379
            if file_list:
 
380
                tree = WorkingTree.open_containing(file_list[0])[0]
 
381
            else:
 
382
                tree = WorkingTree.open_containing(u'.')[0]
 
383
            added, ignored = tree.smart_add(file_list, not
 
384
                no_recurse, action=action, save=not dry_run)
 
385
        finally:
 
386
            if base_tree is not None:
 
387
                base_tree.unlock()
725
388
        if len(ignored) > 0:
726
389
            if verbose:
727
390
                for glob in sorted(ignored.keys()):
728
391
                    for path in ignored[glob]:
729
 
                        self.outf.write(
730
 
                         gettext("ignored {0} matching \"{1}\"\n").format(
731
 
                         path, glob))
 
392
                        self.outf.write("ignored %s matching \"%s\"\n" 
 
393
                                        % (path, glob))
 
394
            else:
 
395
                match_len = 0
 
396
                for glob, paths in ignored.items():
 
397
                    match_len += len(paths)
 
398
                self.outf.write("ignored %d file(s).\n" % match_len)
 
399
            self.outf.write("If you wish to add some of these files,"
 
400
                            " please add them by name.\n")
732
401
 
733
402
 
734
403
class cmd_mkdir(Command):
735
 
    __doc__ = """Create a new versioned directory.
 
404
    """Create a new versioned directory.
736
405
 
737
406
    This is equivalent to creating the directory and then adding it.
738
407
    """
742
411
 
743
412
    def run(self, dir_list):
744
413
        for d in dir_list:
 
414
            os.mkdir(d)
745
415
            wt, dd = WorkingTree.open_containing(d)
746
 
            base = os.path.dirname(dd)
747
 
            id = wt.path2id(base)
748
 
            if id != None:
749
 
                os.mkdir(d)
750
 
                wt.add([dd])
751
 
                self.outf.write(gettext('added %s\n') % d)
752
 
            else:
753
 
                raise errors.NotVersionedError(path=base)
 
416
            wt.add([dd])
 
417
            self.outf.write('added %s\n' % d)
754
418
 
755
419
 
756
420
class cmd_relpath(Command):
757
 
    __doc__ = """Show path of a file relative to root"""
 
421
    """Show path of a file relative to root"""
758
422
 
759
423
    takes_args = ['filename']
760
424
    hidden = True
761
 
 
 
425
    
762
426
    @display_command
763
427
    def run(self, filename):
764
428
        # TODO: jam 20050106 Can relpath return a munged path if
769
433
 
770
434
 
771
435
class cmd_inventory(Command):
772
 
    __doc__ = """Show inventory of the current working copy or a revision.
 
436
    """Show inventory of the current working copy or a revision.
773
437
 
774
438
    It is possible to limit the output to a particular entry
775
439
    type using the --kind option.  For example: --kind file.
792
456
    @display_command
793
457
    def run(self, revision=None, show_ids=False, kind=None, file_list=None):
794
458
        if kind and kind not in ['file', 'directory', 'symlink']:
795
 
            raise errors.BzrCommandError(gettext('invalid kind %r specified') % (kind,))
796
 
 
797
 
        revision = _get_one_revision('inventory', revision)
798
 
        work_tree, file_list = WorkingTree.open_containing_paths(file_list)
799
 
        self.add_cleanup(work_tree.lock_read().unlock)
800
 
        if revision is not None:
801
 
            tree = revision.as_tree(work_tree.branch)
802
 
 
803
 
            extra_trees = [work_tree]
804
 
            self.add_cleanup(tree.lock_read().unlock)
805
 
        else:
806
 
            tree = work_tree
807
 
            extra_trees = []
808
 
 
809
 
        if file_list is not None:
810
 
            file_ids = tree.paths2ids(file_list, trees=extra_trees,
811
 
                                      require_versioned=True)
812
 
            # find_ids_across_trees may include some paths that don't
813
 
            # exist in 'tree'.
814
 
            entries = sorted(
815
 
                (tree.id2path(file_id), tree.inventory[file_id])
816
 
                for file_id in file_ids if tree.has_id(file_id))
817
 
        else:
818
 
            entries = tree.inventory.entries()
819
 
 
820
 
        self.cleanup_now()
 
459
            raise errors.BzrCommandError('invalid kind %r specified' % (kind,))
 
460
 
 
461
        work_tree, file_list = tree_files(file_list)
 
462
        work_tree.lock_read()
 
463
        try:
 
464
            if revision is not None:
 
465
                if len(revision) > 1:
 
466
                    raise errors.BzrCommandError(
 
467
                        'bzr inventory --revision takes exactly one revision'
 
468
                        ' identifier')
 
469
                revision_id = revision[0].in_history(work_tree.branch).rev_id
 
470
                tree = work_tree.branch.repository.revision_tree(revision_id)
 
471
 
 
472
                extra_trees = [work_tree]
 
473
                tree.lock_read()
 
474
            else:
 
475
                tree = work_tree
 
476
                extra_trees = []
 
477
 
 
478
            if file_list is not None:
 
479
                file_ids = tree.paths2ids(file_list, trees=extra_trees,
 
480
                                          require_versioned=True)
 
481
                # find_ids_across_trees may include some paths that don't
 
482
                # exist in 'tree'.
 
483
                entries = sorted((tree.id2path(file_id), tree.inventory[file_id])
 
484
                                 for file_id in file_ids if file_id in tree)
 
485
            else:
 
486
                entries = tree.inventory.entries()
 
487
        finally:
 
488
            tree.unlock()
 
489
            if tree is not work_tree:
 
490
                work_tree.unlock()
 
491
 
821
492
        for path, entry in entries:
822
493
            if kind and kind != entry.kind:
823
494
                continue
829
500
 
830
501
 
831
502
class cmd_mv(Command):
832
 
    __doc__ = """Move or rename a file.
 
503
    """Move or rename a file.
833
504
 
834
 
    :Usage:
 
505
    usage:
835
506
        bzr mv OLDNAME NEWNAME
836
 
 
837
507
        bzr mv SOURCE... DESTINATION
838
508
 
839
509
    If the last argument is a versioned directory, all the other names
852
522
    takes_args = ['names*']
853
523
    takes_options = [Option("after", help="Move only the bzr identifier"
854
524
        " of the file, because the file has already been moved."),
855
 
        Option('auto', help='Automatically guess renames.'),
856
 
        Option('dry-run', help='Avoid making changes when guessing renames.'),
857
525
        ]
858
526
    aliases = ['move', 'rename']
859
527
    encoding_type = 'replace'
860
528
 
861
 
    def run(self, names_list, after=False, auto=False, dry_run=False):
862
 
        if auto:
863
 
            return self.run_auto(names_list, after, dry_run)
864
 
        elif dry_run:
865
 
            raise errors.BzrCommandError(gettext('--dry-run requires --auto.'))
 
529
    def run(self, names_list, after=False):
866
530
        if names_list is None:
867
531
            names_list = []
 
532
 
868
533
        if len(names_list) < 2:
869
 
            raise errors.BzrCommandError(gettext("missing file argument"))
870
 
        tree, rel_names = WorkingTree.open_containing_paths(names_list, canonicalize=False)
871
 
        self.add_cleanup(tree.lock_tree_write().unlock)
872
 
        self._run(tree, names_list, rel_names, after)
873
 
 
874
 
    def run_auto(self, names_list, after, dry_run):
875
 
        if names_list is not None and len(names_list) > 1:
876
 
            raise errors.BzrCommandError(gettext('Only one path may be specified to'
877
 
                                         ' --auto.'))
878
 
        if after:
879
 
            raise errors.BzrCommandError(gettext('--after cannot be specified with'
880
 
                                         ' --auto.'))
881
 
        work_tree, file_list = WorkingTree.open_containing_paths(
882
 
            names_list, default_directory='.')
883
 
        self.add_cleanup(work_tree.lock_tree_write().unlock)
884
 
        rename_map.RenameMap.guess_renames(work_tree, dry_run)
885
 
 
886
 
    def _run(self, tree, names_list, rel_names, after):
887
 
        into_existing = osutils.isdir(names_list[-1])
888
 
        if into_existing and len(names_list) == 2:
889
 
            # special cases:
890
 
            # a. case-insensitive filesystem and change case of dir
891
 
            # b. move directory after the fact (if the source used to be
892
 
            #    a directory, but now doesn't exist in the working tree
893
 
            #    and the target is an existing directory, just rename it)
894
 
            if (not tree.case_sensitive
895
 
                and rel_names[0].lower() == rel_names[1].lower()):
896
 
                into_existing = False
897
 
            else:
898
 
                inv = tree.inventory
899
 
                # 'fix' the case of a potential 'from'
900
 
                from_id = tree.path2id(
901
 
                            tree.get_canonical_inventory_path(rel_names[0]))
902
 
                if (not osutils.lexists(names_list[0]) and
903
 
                    from_id and inv.get_file_kind(from_id) == "directory"):
904
 
                    into_existing = False
905
 
        # move/rename
906
 
        if into_existing:
 
534
            raise errors.BzrCommandError("missing file argument")
 
535
        tree, rel_names = tree_files(names_list)
 
536
        
 
537
        if os.path.isdir(names_list[-1]):
907
538
            # move into existing directory
908
 
            # All entries reference existing inventory items, so fix them up
909
 
            # for cicp file-systems.
910
 
            rel_names = tree.get_canonical_inventory_paths(rel_names)
911
 
            for src, dest in tree.move(rel_names[:-1], rel_names[-1], after=after):
912
 
                if not is_quiet():
913
 
                    self.outf.write("%s => %s\n" % (src, dest))
 
539
            for pair in tree.move(rel_names[:-1], rel_names[-1], after=after):
 
540
                self.outf.write("%s => %s\n" % pair)
914
541
        else:
915
542
            if len(names_list) != 2:
916
 
                raise errors.BzrCommandError(gettext('to mv multiple files the'
 
543
                raise errors.BzrCommandError('to mv multiple files the'
917
544
                                             ' destination must be a versioned'
918
 
                                             ' directory'))
919
 
 
920
 
            # for cicp file-systems: the src references an existing inventory
921
 
            # item:
922
 
            src = tree.get_canonical_inventory_path(rel_names[0])
923
 
            # Find the canonical version of the destination:  In all cases, the
924
 
            # parent of the target must be in the inventory, so we fetch the
925
 
            # canonical version from there (we do not always *use* the
926
 
            # canonicalized tail portion - we may be attempting to rename the
927
 
            # case of the tail)
928
 
            canon_dest = tree.get_canonical_inventory_path(rel_names[1])
929
 
            dest_parent = osutils.dirname(canon_dest)
930
 
            spec_tail = osutils.basename(rel_names[1])
931
 
            # For a CICP file-system, we need to avoid creating 2 inventory
932
 
            # entries that differ only by case.  So regardless of the case
933
 
            # we *want* to use (ie, specified by the user or the file-system),
934
 
            # we must always choose to use the case of any existing inventory
935
 
            # items.  The only exception to this is when we are attempting a
936
 
            # case-only rename (ie, canonical versions of src and dest are
937
 
            # the same)
938
 
            dest_id = tree.path2id(canon_dest)
939
 
            if dest_id is None or tree.path2id(src) == dest_id:
940
 
                # No existing item we care about, so work out what case we
941
 
                # are actually going to use.
942
 
                if after:
943
 
                    # If 'after' is specified, the tail must refer to a file on disk.
944
 
                    if dest_parent:
945
 
                        dest_parent_fq = osutils.pathjoin(tree.basedir, dest_parent)
946
 
                    else:
947
 
                        # pathjoin with an empty tail adds a slash, which breaks
948
 
                        # relpath :(
949
 
                        dest_parent_fq = tree.basedir
950
 
 
951
 
                    dest_tail = osutils.canonical_relpath(
952
 
                                    dest_parent_fq,
953
 
                                    osutils.pathjoin(dest_parent_fq, spec_tail))
954
 
                else:
955
 
                    # not 'after', so case as specified is used
956
 
                    dest_tail = spec_tail
957
 
            else:
958
 
                # Use the existing item so 'mv' fails with AlreadyVersioned.
959
 
                dest_tail = os.path.basename(canon_dest)
960
 
            dest = osutils.pathjoin(dest_parent, dest_tail)
961
 
            mutter("attempting to move %s => %s", src, dest)
962
 
            tree.rename_one(src, dest, after=after)
963
 
            if not is_quiet():
964
 
                self.outf.write("%s => %s\n" % (src, dest))
965
 
 
966
 
 
 
545
                                             ' directory')
 
546
            tree.rename_one(rel_names[0], rel_names[1], after=after)
 
547
            self.outf.write("%s => %s\n" % (rel_names[0], rel_names[1]))
 
548
            
 
549
    
967
550
class cmd_pull(Command):
968
 
    __doc__ = """Turn this branch into a mirror of another branch.
 
551
    """Turn this branch into a mirror of another branch.
969
552
 
970
 
    By default, this command only works on branches that have not diverged.
971
 
    Branches are considered diverged if the destination branch's most recent 
972
 
    commit is one that has not been merged (directly or indirectly) into the 
973
 
    parent.
 
553
    This command only works on branches that have not diverged.  Branches are
 
554
    considered diverged if the destination branch's most recent commit is one
 
555
    that has not been merged (directly or indirectly) into the parent.
974
556
 
975
557
    If branches have diverged, you can use 'bzr merge' to integrate the changes
976
558
    from one into the other.  Once one branch has merged, the other should
977
559
    be able to pull it again.
978
560
 
979
 
    If you want to replace your local changes and just want your branch to
980
 
    match the remote one, use pull --overwrite. This will work even if the two
981
 
    branches have diverged.
982
 
 
983
 
    If there is no default location set, the first pull will set it (use
984
 
    --no-remember to avoid setting it). After that, you can omit the
985
 
    location to use the default.  To change the default, use --remember. The
986
 
    value will only be saved if the remote location can be accessed.
987
 
 
988
 
    Note: The location can be specified either in the form of a branch,
989
 
    or in the form of a path to a file containing a merge directive generated
990
 
    with bzr send.
 
561
    If you want to forget your local changes and just update your branch to
 
562
    match the remote one, use pull --overwrite.
 
563
 
 
564
    If there is no default location set, the first pull will set it.  After
 
565
    that, you can omit the location to use the default.  To change the
 
566
    default, use --remember. The value will only be saved if the remote
 
567
    location can be accessed.
991
568
    """
992
569
 
993
 
    _see_also = ['push', 'update', 'status-flags', 'send']
994
 
    takes_options = ['remember', 'overwrite', 'revision',
995
 
        custom_help('verbose',
996
 
            help='Show logs of pulled revisions.'),
997
 
        custom_help('directory',
 
570
    _see_also = ['push', 'update', 'status-flags']
 
571
    takes_options = ['remember', 'overwrite', 'revision', 'verbose',
 
572
        Option('directory',
998
573
            help='Branch to pull into, '
999
 
                 'rather than the one containing the working directory.'),
1000
 
        Option('local',
1001
 
            help="Perform a local pull in a bound "
1002
 
                 "branch.  Local pulls are not applied to "
1003
 
                 "the master branch."
 
574
                 'rather than the one containing the working directory.',
 
575
            short_name='d',
 
576
            type=unicode,
1004
577
            ),
1005
 
        Option('show-base',
1006
 
            help="Show base revision text in conflicts.")
1007
578
        ]
1008
579
    takes_args = ['location?']
1009
580
    encoding_type = 'replace'
1010
581
 
1011
 
    def run(self, location=None, remember=None, overwrite=False,
 
582
    def run(self, location=None, remember=False, overwrite=False,
1012
583
            revision=None, verbose=False,
1013
 
            directory=None, local=False,
1014
 
            show_base=False):
 
584
            directory=None):
 
585
        from bzrlib.tag import _merge_tags_if_possible
1015
586
        # FIXME: too much stuff is in the command class
1016
587
        revision_id = None
1017
588
        mergeable = None
1020
591
        try:
1021
592
            tree_to = WorkingTree.open_containing(directory)[0]
1022
593
            branch_to = tree_to.branch
1023
 
            self.add_cleanup(tree_to.lock_write().unlock)
1024
594
        except errors.NoWorkingTree:
1025
595
            tree_to = None
1026
596
            branch_to = Branch.open_containing(directory)[0]
1027
 
            self.add_cleanup(branch_to.lock_write().unlock)
1028
 
 
1029
 
        if tree_to is None and show_base:
1030
 
            raise errors.BzrCommandError(gettext("Need working tree for --show-base."))
1031
 
 
1032
 
        if local and not branch_to.get_bound_location():
1033
 
            raise errors.LocalRequiresBoundBranch()
1034
 
 
1035
 
        possible_transports = []
 
597
 
 
598
        reader = None
1036
599
        if location is not None:
1037
600
            try:
1038
 
                mergeable = bundle.read_mergeable_from_url(location,
1039
 
                    possible_transports=possible_transports)
 
601
                mergeable = bundle.read_mergeable_from_url(
 
602
                    location)
1040
603
            except errors.NotABundle:
1041
 
                mergeable = None
 
604
                pass # Continue on considering this url a Branch
1042
605
 
1043
606
        stored_loc = branch_to.get_parent()
1044
607
        if location is None:
1045
608
            if stored_loc is None:
1046
 
                raise errors.BzrCommandError(gettext("No pull location known or"
1047
 
                                             " specified."))
 
609
                raise errors.BzrCommandError("No pull location known or"
 
610
                                             " specified.")
1048
611
            else:
1049
612
                display_url = urlutils.unescape_for_display(stored_loc,
1050
613
                        self.outf.encoding)
1051
 
                if not is_quiet():
1052
 
                    self.outf.write(gettext("Using saved parent location: %s\n") % display_url)
 
614
                self.outf.write("Using saved location: %s\n" % display_url)
1053
615
                location = stored_loc
1054
616
 
1055
 
        revision = _get_one_revision('pull', revision)
1056
617
        if mergeable is not None:
1057
618
            if revision is not None:
1058
 
                raise errors.BzrCommandError(gettext(
1059
 
                    'Cannot use -r with merge directives or bundles'))
1060
 
            mergeable.install_revisions(branch_to.repository)
1061
 
            base_revision_id, revision_id, verified = \
1062
 
                mergeable.get_merge_request(branch_to.repository)
 
619
                raise errors.BzrCommandError(
 
620
                    'Cannot use -r with merge directives or bundles')
 
621
            revision_id = mergeable.install_revisions(branch_to.repository)
1063
622
            branch_from = branch_to
1064
623
        else:
1065
 
            branch_from = Branch.open(location,
1066
 
                possible_transports=possible_transports)
1067
 
            self.add_cleanup(branch_from.lock_read().unlock)
1068
 
            # Remembers if asked explicitly or no previous location is set
1069
 
            if (remember
1070
 
                or (remember is None and branch_to.get_parent() is None)):
 
624
            branch_from = Branch.open(location)
 
625
 
 
626
            if branch_to.get_parent() is None or remember:
1071
627
                branch_to.set_parent(branch_from.base)
1072
628
 
1073
629
        if revision is not None:
1074
 
            revision_id = revision.as_revision_id(branch_from)
 
630
            if len(revision) == 1:
 
631
                revision_id = revision[0].in_history(branch_from).rev_id
 
632
            else:
 
633
                raise errors.BzrCommandError(
 
634
                    'bzr pull --revision takes one value.')
1075
635
 
 
636
        old_rh = branch_to.revision_history()
1076
637
        if tree_to is not None:
1077
 
            view_info = _get_view_info_for_change_reporter(tree_to)
1078
 
            change_reporter = delta._ChangeReporter(
1079
 
                unversioned_filter=tree_to.is_ignored,
1080
 
                view_info=view_info)
1081
 
            result = tree_to.pull(
1082
 
                branch_from, overwrite, revision_id, change_reporter,
1083
 
                local=local, show_base=show_base)
 
638
            result = tree_to.pull(branch_from, overwrite, revision_id,
 
639
                delta._ChangeReporter(unversioned_filter=tree_to.is_ignored))
1084
640
        else:
1085
 
            result = branch_to.pull(
1086
 
                branch_from, overwrite, revision_id, local=local)
 
641
            result = branch_to.pull(branch_from, overwrite, revision_id)
1087
642
 
1088
643
        result.report(self.outf)
1089
 
        if verbose and result.old_revid != result.new_revid:
1090
 
            log.show_branch_change(
1091
 
                branch_to, self.outf, result.old_revno,
1092
 
                result.old_revid)
1093
 
        if getattr(result, 'tag_conflicts', None):
1094
 
            return 1
1095
 
        else:
1096
 
            return 0
 
644
        if verbose:
 
645
            from bzrlib.log import show_changed_revisions
 
646
            new_rh = branch_to.revision_history()
 
647
            show_changed_revisions(branch_to, old_rh, new_rh,
 
648
                                   to_file=self.outf)
1097
649
 
1098
650
 
1099
651
class cmd_push(Command):
1100
 
    __doc__ = """Update a mirror of this branch.
1101
 
 
 
652
    """Update a mirror of this branch.
 
653
    
1102
654
    The target branch will not have its working tree populated because this
1103
655
    is both expensive, and is not supported on remote file systems.
1104
 
 
 
656
    
1105
657
    Some smart servers or protocols *may* put the working tree in place in
1106
658
    the future.
1107
659
 
1111
663
 
1112
664
    If branches have diverged, you can use 'bzr push --overwrite' to replace
1113
665
    the other branch completely, discarding its unmerged changes.
1114
 
 
 
666
    
1115
667
    If you want to ensure you have the different changes in the other branch,
1116
668
    do a merge (see bzr help merge) from the other branch, and commit that.
1117
669
    After that you will be able to do a push without '--overwrite'.
1118
670
 
1119
 
    If there is no default push location set, the first push will set it (use
1120
 
    --no-remember to avoid setting it).  After that, you can omit the
1121
 
    location to use the default.  To change the default, use --remember. The
1122
 
    value will only be saved if the remote location can be accessed.
 
671
    If there is no default push location set, the first push will set it.
 
672
    After that, you can omit the location to use the default.  To change the
 
673
    default, use --remember. The value will only be saved if the remote
 
674
    location can be accessed.
1123
675
    """
1124
676
 
1125
677
    _see_also = ['pull', 'update', 'working-trees']
1126
 
    takes_options = ['remember', 'overwrite', 'verbose', 'revision',
 
678
    takes_options = ['remember', 'overwrite', 'verbose',
1127
679
        Option('create-prefix',
1128
680
               help='Create the path leading up to the branch '
1129
681
                    'if it does not already exist.'),
1130
 
        custom_help('directory',
 
682
        Option('directory',
1131
683
            help='Branch to push from, '
1132
 
                 'rather than the one containing the working directory.'),
 
684
                 'rather than the one containing the working directory.',
 
685
            short_name='d',
 
686
            type=unicode,
 
687
            ),
1133
688
        Option('use-existing-dir',
1134
689
               help='By default push will fail if the target'
1135
690
                    ' directory exists, but does not already'
1136
691
                    ' have a control directory.  This flag will'
1137
692
                    ' allow push to proceed.'),
1138
 
        Option('stacked',
1139
 
            help='Create a stacked branch that references the public location '
1140
 
                'of the parent branch.'),
1141
 
        Option('stacked-on',
1142
 
            help='Create a stacked branch that refers to another branch '
1143
 
                'for the commit history. Only the work not present in the '
1144
 
                'referenced branch is included in the branch created.',
1145
 
            type=unicode),
1146
 
        Option('strict',
1147
 
               help='Refuse to push if there are uncommitted changes in'
1148
 
               ' the working tree, --no-strict disables the check.'),
1149
 
        Option('no-tree',
1150
 
               help="Don't populate the working tree, even for protocols"
1151
 
               " that support it."),
1152
693
        ]
1153
694
    takes_args = ['location?']
1154
695
    encoding_type = 'replace'
1155
696
 
1156
 
    def run(self, location=None, remember=None, overwrite=False,
1157
 
        create_prefix=False, verbose=False, revision=None,
1158
 
        use_existing_dir=False, directory=None, stacked_on=None,
1159
 
        stacked=False, strict=None, no_tree=False):
1160
 
        from bzrlib.push import _show_push_branch
1161
 
 
 
697
    def run(self, location=None, remember=False, overwrite=False,
 
698
            create_prefix=False, verbose=False,
 
699
            use_existing_dir=False,
 
700
            directory=None):
 
701
        # FIXME: Way too big!  Put this into a function called from the
 
702
        # command.
1162
703
        if directory is None:
1163
704
            directory = '.'
1164
 
        # Get the source branch
1165
 
        (tree, br_from,
1166
 
         _unused) = bzrdir.BzrDir.open_containing_tree_or_branch(directory)
1167
 
        # Get the tip's revision_id
1168
 
        revision = _get_one_revision('push', revision)
1169
 
        if revision is not None:
1170
 
            revision_id = revision.in_history(br_from).rev_id
1171
 
        else:
1172
 
            revision_id = None
1173
 
        if tree is not None and revision_id is None:
1174
 
            tree.check_changed_or_out_of_date(
1175
 
                strict, 'push_strict',
1176
 
                more_error='Use --no-strict to force the push.',
1177
 
                more_warning='Uncommitted changes will not be pushed.')
1178
 
        # Get the stacked_on branch, if any
1179
 
        if stacked_on is not None:
1180
 
            stacked_on = urlutils.normalize_url(stacked_on)
1181
 
        elif stacked:
1182
 
            parent_url = br_from.get_parent()
1183
 
            if parent_url:
1184
 
                parent = Branch.open(parent_url)
1185
 
                stacked_on = parent.get_public_branch()
1186
 
                if not stacked_on:
1187
 
                    # I considered excluding non-http url's here, thus forcing
1188
 
                    # 'public' branches only, but that only works for some
1189
 
                    # users, so it's best to just depend on the user spotting an
1190
 
                    # error by the feedback given to them. RBC 20080227.
1191
 
                    stacked_on = parent_url
1192
 
            if not stacked_on:
1193
 
                raise errors.BzrCommandError(gettext(
1194
 
                    "Could not determine branch to refer to."))
1195
 
 
1196
 
        # Get the destination location
 
705
        br_from = Branch.open_containing(directory)[0]
 
706
        stored_loc = br_from.get_push_location()
1197
707
        if location is None:
1198
 
            stored_loc = br_from.get_push_location()
1199
708
            if stored_loc is None:
1200
 
                raise errors.BzrCommandError(gettext(
1201
 
                    "No push location known or specified."))
 
709
                raise errors.BzrCommandError("No push location known or specified.")
1202
710
            else:
1203
711
                display_url = urlutils.unescape_for_display(stored_loc,
1204
712
                        self.outf.encoding)
1205
 
                note(gettext("Using saved push location: %s") % display_url)
 
713
                self.outf.write("Using saved location: %s\n" % display_url)
1206
714
                location = stored_loc
1207
715
 
1208
 
        _show_push_branch(br_from, revision_id, location, self.outf,
1209
 
            verbose=verbose, overwrite=overwrite, remember=remember,
1210
 
            stacked_on=stacked_on, create_prefix=create_prefix,
1211
 
            use_existing_dir=use_existing_dir, no_tree=no_tree)
 
716
        to_transport = transport.get_transport(location)
 
717
 
 
718
        br_to = repository_to = dir_to = None
 
719
        try:
 
720
            dir_to = bzrdir.BzrDir.open_from_transport(to_transport)
 
721
        except errors.NotBranchError:
 
722
            pass # Didn't find anything
 
723
        else:
 
724
            # If we can open a branch, use its direct repository, otherwise see
 
725
            # if there is a repository without a branch.
 
726
            try:
 
727
                br_to = dir_to.open_branch()
 
728
            except errors.NotBranchError:
 
729
                # Didn't find a branch, can we find a repository?
 
730
                try:
 
731
                    repository_to = dir_to.find_repository()
 
732
                except errors.NoRepositoryPresent:
 
733
                    pass
 
734
            else:
 
735
                # Found a branch, so we must have found a repository
 
736
                repository_to = br_to.repository
 
737
        push_result = None
 
738
        old_rh = []
 
739
        if dir_to is None:
 
740
            # The destination doesn't exist; create it.
 
741
            # XXX: Refactor the create_prefix/no_create_prefix code into a
 
742
            #      common helper function
 
743
            try:
 
744
                to_transport.mkdir('.')
 
745
            except errors.FileExists:
 
746
                if not use_existing_dir:
 
747
                    raise errors.BzrCommandError("Target directory %s"
 
748
                         " already exists, but does not have a valid .bzr"
 
749
                         " directory. Supply --use-existing-dir to push"
 
750
                         " there anyway." % location)
 
751
            except errors.NoSuchFile:
 
752
                if not create_prefix:
 
753
                    raise errors.BzrCommandError("Parent directory of %s"
 
754
                        " does not exist."
 
755
                        "\nYou may supply --create-prefix to create all"
 
756
                        " leading parent directories."
 
757
                        % location)
 
758
                _create_prefix(to_transport)
 
759
 
 
760
            # Now the target directory exists, but doesn't have a .bzr
 
761
            # directory. So we need to create it, along with any work to create
 
762
            # all of the dependent branches, etc.
 
763
            dir_to = br_from.bzrdir.clone_on_transport(to_transport,
 
764
                revision_id=br_from.last_revision())
 
765
            br_to = dir_to.open_branch()
 
766
            # TODO: Some more useful message about what was copied
 
767
            note('Created new branch.')
 
768
            # We successfully created the target, remember it
 
769
            if br_from.get_push_location() is None or remember:
 
770
                br_from.set_push_location(br_to.base)
 
771
        elif repository_to is None:
 
772
            # we have a bzrdir but no branch or repository
 
773
            # XXX: Figure out what to do other than complain.
 
774
            raise errors.BzrCommandError("At %s you have a valid .bzr control"
 
775
                " directory, but not a branch or repository. This is an"
 
776
                " unsupported configuration. Please move the target directory"
 
777
                " out of the way and try again."
 
778
                % location)
 
779
        elif br_to is None:
 
780
            # We have a repository but no branch, copy the revisions, and then
 
781
            # create a branch.
 
782
            last_revision_id = br_from.last_revision()
 
783
            repository_to.fetch(br_from.repository,
 
784
                                revision_id=last_revision_id)
 
785
            br_to = br_from.clone(dir_to, revision_id=last_revision_id)
 
786
            note('Created new branch.')
 
787
            if br_from.get_push_location() is None or remember:
 
788
                br_from.set_push_location(br_to.base)
 
789
        else: # We have a valid to branch
 
790
            # We were able to connect to the remote location, so remember it
 
791
            # we don't need to successfully push because of possible divergence.
 
792
            if br_from.get_push_location() is None or remember:
 
793
                br_from.set_push_location(br_to.base)
 
794
            old_rh = br_to.revision_history()
 
795
            try:
 
796
                try:
 
797
                    tree_to = dir_to.open_workingtree()
 
798
                except errors.NotLocalUrl:
 
799
                    warning("This transport does not update the working " 
 
800
                            "tree of: %s. See 'bzr help working-trees' for "
 
801
                            "more information." % br_to.base)
 
802
                    push_result = br_from.push(br_to, overwrite)
 
803
                except errors.NoWorkingTree:
 
804
                    push_result = br_from.push(br_to, overwrite)
 
805
                else:
 
806
                    tree_to.lock_write()
 
807
                    try:
 
808
                        push_result = br_from.push(tree_to.branch, overwrite)
 
809
                        tree_to.update()
 
810
                    finally:
 
811
                        tree_to.unlock()
 
812
            except errors.DivergedBranches:
 
813
                raise errors.BzrCommandError('These branches have diverged.'
 
814
                                        '  Try using "merge" and then "push".')
 
815
        if push_result is not None:
 
816
            push_result.report(self.outf)
 
817
        elif verbose:
 
818
            new_rh = br_to.revision_history()
 
819
            if old_rh != new_rh:
 
820
                # Something changed
 
821
                from bzrlib.log import show_changed_revisions
 
822
                show_changed_revisions(br_to, old_rh, new_rh,
 
823
                                       to_file=self.outf)
 
824
        else:
 
825
            # we probably did a clone rather than a push, so a message was
 
826
            # emitted above
 
827
            pass
1212
828
 
1213
829
 
1214
830
class cmd_branch(Command):
1215
 
    __doc__ = """Create a new branch that is a copy of an existing branch.
 
831
    """Create a new copy of a branch.
1216
832
 
1217
833
    If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will
1218
834
    be used.  In other words, "branch ../foo/bar" will attempt to create ./bar.
1223
839
 
1224
840
    To retrieve the branch as of a particular revision, supply the --revision
1225
841
    parameter, as in "branch foo/bar -r 5".
1226
 
 
1227
 
    The synonyms 'clone' and 'get' for this command are deprecated.
1228
842
    """
1229
843
 
1230
844
    _see_also = ['checkout']
1231
845
    takes_args = ['from_location', 'to_location?']
1232
 
    takes_options = ['revision',
1233
 
        Option('hardlink', help='Hard-link working tree files where possible.'),
1234
 
        Option('files-from', type=str,
1235
 
               help="Get file contents from this tree."),
1236
 
        Option('no-tree',
1237
 
            help="Create a branch without a working-tree."),
1238
 
        Option('switch',
1239
 
            help="Switch the checkout in the current directory "
1240
 
                 "to the new branch."),
1241
 
        Option('stacked',
1242
 
            help='Create a stacked branch referring to the source branch. '
1243
 
                'The new branch will depend on the availability of the source '
1244
 
                'branch for all operations.'),
1245
 
        Option('standalone',
1246
 
               help='Do not use a shared repository, even if available.'),
1247
 
        Option('use-existing-dir',
1248
 
               help='By default branch will fail if the target'
1249
 
                    ' directory exists, but does not already'
1250
 
                    ' have a control directory.  This flag will'
1251
 
                    ' allow branch to proceed.'),
1252
 
        Option('bind',
1253
 
            help="Bind new branch to from location."),
1254
 
        ]
 
846
    takes_options = ['revision']
1255
847
    aliases = ['get', 'clone']
1256
848
 
1257
 
    def run(self, from_location, to_location=None, revision=None,
1258
 
            hardlink=False, stacked=False, standalone=False, no_tree=False,
1259
 
            use_existing_dir=False, switch=False, bind=False,
1260
 
            files_from=None):
1261
 
        from bzrlib import switch as _mod_switch
 
849
    def run(self, from_location, to_location=None, revision=None):
1262
850
        from bzrlib.tag import _merge_tags_if_possible
1263
 
        if self.invoked_as in ['get', 'clone']:
1264
 
            ui.ui_factory.show_user_warning(
1265
 
                'deprecated_command',
1266
 
                deprecated_name=self.invoked_as,
1267
 
                recommended_name='branch',
1268
 
                deprecated_in_version='2.4')
1269
 
        accelerator_tree, br_from = bzrdir.BzrDir.open_tree_or_branch(
1270
 
            from_location)
1271
 
        if not (hardlink or files_from):
1272
 
            # accelerator_tree is usually slower because you have to read N
1273
 
            # files (no readahead, lots of seeks, etc), but allow the user to
1274
 
            # explicitly request it
1275
 
            accelerator_tree = None
1276
 
        if files_from is not None and files_from != from_location:
1277
 
            accelerator_tree = WorkingTree.open(files_from)
1278
 
        revision = _get_one_revision('branch', revision)
1279
 
        self.add_cleanup(br_from.lock_read().unlock)
1280
 
        if revision is not None:
1281
 
            revision_id = revision.as_revision_id(br_from)
1282
 
        else:
1283
 
            # FIXME - wt.last_revision, fallback to branch, fall back to
1284
 
            # None or perhaps NULL_REVISION to mean copy nothing
1285
 
            # RBC 20060209
1286
 
            revision_id = br_from.last_revision()
1287
 
        if to_location is None:
1288
 
            to_location = urlutils.derive_to_location(from_location)
1289
 
        to_transport = transport.get_transport(to_location)
1290
 
        try:
1291
 
            to_transport.mkdir('.')
1292
 
        except errors.FileExists:
1293
 
            if not use_existing_dir:
1294
 
                raise errors.BzrCommandError(gettext('Target directory "%s" '
1295
 
                    'already exists.') % to_location)
1296
 
            else:
1297
 
                try:
1298
 
                    bzrdir.BzrDir.open_from_transport(to_transport)
1299
 
                except errors.NotBranchError:
1300
 
                    pass
1301
 
                else:
1302
 
                    raise errors.AlreadyBranchError(to_location)
1303
 
        except errors.NoSuchFile:
1304
 
            raise errors.BzrCommandError(gettext('Parent of "%s" does not exist.')
1305
 
                                         % to_location)
1306
 
        try:
1307
 
            # preserve whatever source format we have.
1308
 
            dir = br_from.bzrdir.sprout(to_transport.base, revision_id,
1309
 
                                        possible_transports=[to_transport],
1310
 
                                        accelerator_tree=accelerator_tree,
1311
 
                                        hardlink=hardlink, stacked=stacked,
1312
 
                                        force_new_repo=standalone,
1313
 
                                        create_tree_if_local=not no_tree,
1314
 
                                        source_branch=br_from)
1315
 
            branch = dir.open_branch()
1316
 
        except errors.NoSuchRevision:
1317
 
            to_transport.delete_tree('.')
1318
 
            msg = gettext("The branch {0} has no revision {1}.").format(
1319
 
                from_location, revision)
1320
 
            raise errors.BzrCommandError(msg)
1321
 
        _merge_tags_if_possible(br_from, branch)
1322
 
        # If the source branch is stacked, the new branch may
1323
 
        # be stacked whether we asked for that explicitly or not.
1324
 
        # We therefore need a try/except here and not just 'if stacked:'
1325
 
        try:
1326
 
            note(gettext('Created new stacked branch referring to %s.') %
1327
 
                branch.get_stacked_on_url())
1328
 
        except (errors.NotStacked, errors.UnstackableBranchFormat,
1329
 
            errors.UnstackableRepositoryFormat), e:
1330
 
            note(ngettext('Branched %d revision.', 'Branched %d revisions.', branch.revno()) % branch.revno())
1331
 
        if bind:
1332
 
            # Bind to the parent
1333
 
            parent_branch = Branch.open(from_location)
1334
 
            branch.bind(parent_branch)
1335
 
            note(gettext('New branch bound to %s') % from_location)
1336
 
        if switch:
1337
 
            # Switch to the new branch
1338
 
            wt, _ = WorkingTree.open_containing('.')
1339
 
            _mod_switch.switch(wt.bzrdir, branch)
1340
 
            note(gettext('Switched to branch: %s'),
1341
 
                urlutils.unescape_for_display(branch.base, 'utf-8'))
1342
 
 
1343
 
 
1344
 
class cmd_branches(Command):
1345
 
    __doc__ = """List the branches available at the current location.
1346
 
 
1347
 
    This command will print the names of all the branches at the current
1348
 
    location.
1349
 
    """
1350
 
 
1351
 
    takes_args = ['location?']
1352
 
    takes_options = [
1353
 
                  Option('recursive', short_name='R',
1354
 
                         help='Recursively scan for branches rather than '
1355
 
                              'just looking in the specified location.')]
1356
 
 
1357
 
    def run(self, location=".", recursive=False):
1358
 
        if recursive:
1359
 
            t = transport.get_transport(location)
1360
 
            if not t.listable():
1361
 
                raise errors.BzrCommandError(
1362
 
                    "Can't scan this type of location.")
1363
 
            for b in bzrdir.BzrDir.find_branches(t):
1364
 
                self.outf.write("%s\n" % urlutils.unescape_for_display(
1365
 
                    urlutils.relative_url(t.base, b.base),
1366
 
                    self.outf.encoding).rstrip("/"))
1367
 
        else:
1368
 
            dir = bzrdir.BzrDir.open_containing(location)[0]
1369
 
            for branch in dir.list_branches():
1370
 
                if branch.name is None:
1371
 
                    self.outf.write(gettext(" (default)\n"))
1372
 
                else:
1373
 
                    self.outf.write(" %s\n" % branch.name.encode(
1374
 
                        self.outf.encoding))
 
851
        if revision is None:
 
852
            revision = [None]
 
853
        elif len(revision) > 1:
 
854
            raise errors.BzrCommandError(
 
855
                'bzr branch --revision takes exactly 1 revision value')
 
856
 
 
857
        br_from = Branch.open(from_location)
 
858
        br_from.lock_read()
 
859
        try:
 
860
            if len(revision) == 1 and revision[0] is not None:
 
861
                revision_id = revision[0].in_history(br_from)[1]
 
862
            else:
 
863
                # FIXME - wt.last_revision, fallback to branch, fall back to
 
864
                # None or perhaps NULL_REVISION to mean copy nothing
 
865
                # RBC 20060209
 
866
                revision_id = br_from.last_revision()
 
867
            if to_location is None:
 
868
                to_location = urlutils.derive_to_location(from_location)
 
869
                name = None
 
870
            else:
 
871
                name = os.path.basename(to_location) + '\n'
 
872
 
 
873
            to_transport = transport.get_transport(to_location)
 
874
            try:
 
875
                to_transport.mkdir('.')
 
876
            except errors.FileExists:
 
877
                raise errors.BzrCommandError('Target directory "%s" already'
 
878
                                             ' exists.' % to_location)
 
879
            except errors.NoSuchFile:
 
880
                raise errors.BzrCommandError('Parent of "%s" does not exist.'
 
881
                                             % to_location)
 
882
            try:
 
883
                # preserve whatever source format we have.
 
884
                dir = br_from.bzrdir.sprout(to_transport.base, revision_id)
 
885
                branch = dir.open_branch()
 
886
            except errors.NoSuchRevision:
 
887
                to_transport.delete_tree('.')
 
888
                msg = "The branch %s has no revision %s." % (from_location, revision[0])
 
889
                raise errors.BzrCommandError(msg)
 
890
            if name:
 
891
                branch.control_files.put_utf8('branch-name', name)
 
892
            _merge_tags_if_possible(br_from, branch)
 
893
            note('Branched %d revision(s).' % branch.revno())
 
894
        finally:
 
895
            br_from.unlock()
1375
896
 
1376
897
 
1377
898
class cmd_checkout(Command):
1378
 
    __doc__ = """Create a new checkout of an existing branch.
 
899
    """Create a new checkout of an existing branch.
1379
900
 
1380
901
    If BRANCH_LOCATION is omitted, checkout will reconstitute a working tree for
1381
902
    the branch found in '.'. This is useful if you have removed the working tree
1382
903
    or if it was never created - i.e. if you pushed the branch to its current
1383
904
    location using SFTP.
1384
 
 
 
905
    
1385
906
    If the TO_LOCATION is omitted, the last component of the BRANCH_LOCATION will
1386
907
    be used.  In other words, "checkout ../foo/bar" will attempt to create ./bar.
1387
908
    If the BRANCH_LOCATION has no / or path separator embedded, the TO_LOCATION
1405
926
                                 "common operations like diff and status without "
1406
927
                                 "such access, and also support local commits."
1407
928
                            ),
1408
 
                     Option('files-from', type=str,
1409
 
                            help="Get file contents from this tree."),
1410
 
                     Option('hardlink',
1411
 
                            help='Hard-link working tree files where possible.'
1412
 
                            ),
1413
929
                     ]
1414
930
    aliases = ['co']
1415
931
 
1416
932
    def run(self, branch_location=None, to_location=None, revision=None,
1417
 
            lightweight=False, files_from=None, hardlink=False):
 
933
            lightweight=False):
 
934
        if revision is None:
 
935
            revision = [None]
 
936
        elif len(revision) > 1:
 
937
            raise errors.BzrCommandError(
 
938
                'bzr checkout --revision takes exactly 1 revision value')
1418
939
        if branch_location is None:
1419
940
            branch_location = osutils.getcwd()
1420
941
            to_location = branch_location
1421
 
        accelerator_tree, source = bzrdir.BzrDir.open_tree_or_branch(
1422
 
            branch_location)
1423
 
        if not (hardlink or files_from):
1424
 
            # accelerator_tree is usually slower because you have to read N
1425
 
            # files (no readahead, lots of seeks, etc), but allow the user to
1426
 
            # explicitly request it
1427
 
            accelerator_tree = None
1428
 
        revision = _get_one_revision('checkout', revision)
1429
 
        if files_from is not None and files_from != branch_location:
1430
 
            accelerator_tree = WorkingTree.open(files_from)
1431
 
        if revision is not None:
1432
 
            revision_id = revision.as_revision_id(source)
 
942
        source = Branch.open(branch_location)
 
943
        if len(revision) == 1 and revision[0] is not None:
 
944
            revision_id = revision[0].in_history(source)[1]
1433
945
        else:
1434
946
            revision_id = None
1435
947
        if to_location is None:
1436
948
            to_location = urlutils.derive_to_location(branch_location)
1437
 
        # if the source and to_location are the same,
 
949
        # if the source and to_location are the same, 
1438
950
        # and there is no working tree,
1439
951
        # then reconstitute a branch
1440
952
        if (osutils.abspath(to_location) ==
1442
954
            try:
1443
955
                source.bzrdir.open_workingtree()
1444
956
            except errors.NoWorkingTree:
1445
 
                source.bzrdir.create_workingtree(revision_id)
 
957
                source.bzrdir.create_workingtree()
1446
958
                return
1447
 
        source.create_checkout(to_location, revision_id, lightweight,
1448
 
                               accelerator_tree, hardlink)
 
959
        try:
 
960
            os.mkdir(to_location)
 
961
        except OSError, e:
 
962
            if e.errno == errno.EEXIST:
 
963
                raise errors.BzrCommandError('Target directory "%s" already'
 
964
                                             ' exists.' % to_location)
 
965
            if e.errno == errno.ENOENT:
 
966
                raise errors.BzrCommandError('Parent of "%s" does not exist.'
 
967
                                             % to_location)
 
968
            else:
 
969
                raise
 
970
        source.create_checkout(to_location, revision_id, lightweight)
1449
971
 
1450
972
 
1451
973
class cmd_renames(Command):
1452
 
    __doc__ = """Show list of renamed files.
 
974
    """Show list of renamed files.
1453
975
    """
1454
976
    # TODO: Option to show renames between two historical versions.
1455
977
 
1460
982
    @display_command
1461
983
    def run(self, dir=u'.'):
1462
984
        tree = WorkingTree.open_containing(dir)[0]
1463
 
        self.add_cleanup(tree.lock_read().unlock)
1464
 
        new_inv = tree.inventory
1465
 
        old_tree = tree.basis_tree()
1466
 
        self.add_cleanup(old_tree.lock_read().unlock)
1467
 
        old_inv = old_tree.inventory
1468
 
        renames = []
1469
 
        iterator = tree.iter_changes(old_tree, include_unchanged=True)
1470
 
        for f, paths, c, v, p, n, k, e in iterator:
1471
 
            if paths[0] == paths[1]:
1472
 
                continue
1473
 
            if None in (paths):
1474
 
                continue
1475
 
            renames.append(paths)
1476
 
        renames.sort()
1477
 
        for old_name, new_name in renames:
1478
 
            self.outf.write("%s => %s\n" % (old_name, new_name))
 
985
        tree.lock_read()
 
986
        try:
 
987
            new_inv = tree.inventory
 
988
            old_tree = tree.basis_tree()
 
989
            old_tree.lock_read()
 
990
            try:
 
991
                old_inv = old_tree.inventory
 
992
                renames = list(_mod_tree.find_renames(old_inv, new_inv))
 
993
                renames.sort()
 
994
                for old_name, new_name in renames:
 
995
                    self.outf.write("%s => %s\n" % (old_name, new_name))
 
996
            finally:
 
997
                old_tree.unlock()
 
998
        finally:
 
999
            tree.unlock()
1479
1000
 
1480
1001
 
1481
1002
class cmd_update(Command):
1482
 
    __doc__ = """Update a tree to have the latest code committed to its branch.
1483
 
 
 
1003
    """Update a tree to have the latest code committed to its branch.
 
1004
    
1484
1005
    This will perform a merge into the working tree, and may generate
1485
 
    conflicts. If you have any local changes, you will still
 
1006
    conflicts. If you have any local changes, you will still 
1486
1007
    need to commit them after the update for the update to be complete.
1487
 
 
1488
 
    If you want to discard your local changes, you can just do a
 
1008
    
 
1009
    If you want to discard your local changes, you can just do a 
1489
1010
    'bzr revert' instead of 'bzr commit' after the update.
1490
 
 
1491
 
    If you want to restore a file that has been removed locally, use
1492
 
    'bzr revert' instead of 'bzr update'.
1493
 
 
1494
 
    If the tree's branch is bound to a master branch, it will also update
1495
 
    the branch from the master.
1496
1011
    """
1497
1012
 
1498
 
    _see_also = ['pull', 'working-trees', 'status-flags']
 
1013
    _see_also = ['pull', 'working-trees']
1499
1014
    takes_args = ['dir?']
1500
 
    takes_options = ['revision',
1501
 
                     Option('show-base',
1502
 
                            help="Show base revision text in conflicts."),
1503
 
                     ]
1504
1015
    aliases = ['up']
1505
1016
 
1506
 
    def run(self, dir='.', revision=None, show_base=None):
1507
 
        if revision is not None and len(revision) != 1:
1508
 
            raise errors.BzrCommandError(gettext(
1509
 
                        "bzr update --revision takes exactly one revision"))
 
1017
    def run(self, dir='.'):
1510
1018
        tree = WorkingTree.open_containing(dir)[0]
1511
 
        branch = tree.branch
1512
 
        possible_transports = []
1513
 
        master = branch.get_master_branch(
1514
 
            possible_transports=possible_transports)
 
1019
        master = tree.branch.get_master_branch()
1515
1020
        if master is not None:
1516
 
            branch_location = master.base
1517
1021
            tree.lock_write()
1518
1022
        else:
1519
 
            branch_location = tree.branch.base
1520
1023
            tree.lock_tree_write()
1521
 
        self.add_cleanup(tree.unlock)
1522
 
        # get rid of the final '/' and be ready for display
1523
 
        branch_location = urlutils.unescape_for_display(
1524
 
            branch_location.rstrip('/'),
1525
 
            self.outf.encoding)
1526
 
        existing_pending_merges = tree.get_parent_ids()[1:]
1527
 
        if master is None:
1528
 
            old_tip = None
1529
 
        else:
1530
 
            # may need to fetch data into a heavyweight checkout
1531
 
            # XXX: this may take some time, maybe we should display a
1532
 
            # message
1533
 
            old_tip = branch.update(possible_transports)
1534
 
        if revision is not None:
1535
 
            revision_id = revision[0].as_revision_id(branch)
1536
 
        else:
1537
 
            revision_id = branch.last_revision()
1538
 
        if revision_id == _mod_revision.ensure_null(tree.last_revision()):
1539
 
            revno = branch.revision_id_to_dotted_revno(revision_id)
1540
 
            note(gettext("Tree is up to date at revision {0} of branch {1}"
1541
 
                        ).format('.'.join(map(str, revno)), branch_location))
1542
 
            return 0
1543
 
        view_info = _get_view_info_for_change_reporter(tree)
1544
 
        change_reporter = delta._ChangeReporter(
1545
 
            unversioned_filter=tree.is_ignored,
1546
 
            view_info=view_info)
1547
1024
        try:
1548
 
            conflicts = tree.update(
1549
 
                change_reporter,
1550
 
                possible_transports=possible_transports,
1551
 
                revision=revision_id,
1552
 
                old_tip=old_tip,
1553
 
                show_base=show_base)
1554
 
        except errors.NoSuchRevision, e:
1555
 
            raise errors.BzrCommandError(gettext(
1556
 
                                  "branch has no revision %s\n"
1557
 
                                  "bzr update --revision only works"
1558
 
                                  " for a revision in the branch history")
1559
 
                                  % (e.revision))
1560
 
        revno = tree.branch.revision_id_to_dotted_revno(
1561
 
            _mod_revision.ensure_null(tree.last_revision()))
1562
 
        note(gettext('Updated to revision {0} of branch {1}').format(
1563
 
             '.'.join(map(str, revno)), branch_location))
1564
 
        parent_ids = tree.get_parent_ids()
1565
 
        if parent_ids[1:] and parent_ids[1:] != existing_pending_merges:
1566
 
            note(gettext('Your local commits will now show as pending merges with '
1567
 
                 "'bzr status', and can be committed with 'bzr commit'."))
1568
 
        if conflicts != 0:
1569
 
            return 1
1570
 
        else:
1571
 
            return 0
 
1025
            existing_pending_merges = tree.get_parent_ids()[1:]
 
1026
            last_rev = _mod_revision.ensure_null(tree.last_revision())
 
1027
            if last_rev == _mod_revision.ensure_null(
 
1028
                tree.branch.last_revision()):
 
1029
                # may be up to date, check master too.
 
1030
                master = tree.branch.get_master_branch()
 
1031
                if master is None or last_rev == _mod_revision.ensure_null(
 
1032
                    master.last_revision()):
 
1033
                    revno = tree.branch.revision_id_to_revno(last_rev)
 
1034
                    note("Tree is up to date at revision %d." % (revno,))
 
1035
                    return 0
 
1036
            conflicts = tree.update(delta._ChangeReporter(
 
1037
                                        unversioned_filter=tree.is_ignored))
 
1038
            revno = tree.branch.revision_id_to_revno(
 
1039
                _mod_revision.ensure_null(tree.last_revision()))
 
1040
            note('Updated to revision %d.' % (revno,))
 
1041
            if tree.get_parent_ids()[1:] != existing_pending_merges:
 
1042
                note('Your local commits will now show as pending merges with '
 
1043
                     "'bzr status', and can be committed with 'bzr commit'.")
 
1044
            if conflicts != 0:
 
1045
                return 1
 
1046
            else:
 
1047
                return 0
 
1048
        finally:
 
1049
            tree.unlock()
1572
1050
 
1573
1051
 
1574
1052
class cmd_info(Command):
1575
 
    __doc__ = """Show information about a working tree, branch or repository.
 
1053
    """Show information about a working tree, branch or repository.
1576
1054
 
1577
1055
    This command will show all known locations and formats associated to the
1578
 
    tree, branch or repository.
1579
 
 
1580
 
    In verbose mode, statistical information is included with each report.
1581
 
    To see extended statistic information, use a verbosity level of 2 or
1582
 
    higher by specifying the verbose option multiple times, e.g. -vv.
 
1056
    tree, branch or repository.  Statistical information is included with
 
1057
    each report.
1583
1058
 
1584
1059
    Branches and working trees will also report any missing revisions.
1585
 
 
1586
 
    :Examples:
1587
 
 
1588
 
      Display information on the format and related locations:
1589
 
 
1590
 
        bzr info
1591
 
 
1592
 
      Display the above together with extended format information and
1593
 
      basic statistics (like the number of files in the working tree and
1594
 
      number of revisions in the branch and repository):
1595
 
 
1596
 
        bzr info -v
1597
 
 
1598
 
      Display the above together with number of committers to the branch:
1599
 
 
1600
 
        bzr info -vv
1601
1060
    """
1602
1061
    _see_also = ['revno', 'working-trees', 'repositories']
1603
1062
    takes_args = ['location?']
1604
1063
    takes_options = ['verbose']
1605
 
    encoding_type = 'replace'
1606
1064
 
1607
1065
    @display_command
1608
 
    def run(self, location=None, verbose=False):
1609
 
        if verbose:
1610
 
            noise_level = get_verbosity_level()
1611
 
        else:
1612
 
            noise_level = 0
 
1066
    def run(self, location=None, verbose=0):
1613
1067
        from bzrlib.info import show_bzrdir_info
1614
1068
        show_bzrdir_info(bzrdir.BzrDir.open_containing(location)[0],
1615
 
                         verbose=noise_level, outfile=self.outf)
 
1069
                         verbose=verbose)
1616
1070
 
1617
1071
 
1618
1072
class cmd_remove(Command):
1619
 
    __doc__ = """Remove files or directories.
1620
 
 
1621
 
    This makes Bazaar stop tracking changes to the specified files. Bazaar will
1622
 
    delete them if they can easily be recovered using revert otherwise they
1623
 
    will be backed up (adding an extention of the form .~#~). If no options or
1624
 
    parameters are given Bazaar will scan for files that are being tracked by
1625
 
    Bazaar but missing in your tree and stop tracking them for you.
 
1073
    """Remove files or directories.
 
1074
 
 
1075
    This makes bzr stop tracking changes to the specified files and
 
1076
    delete them if they can easily be recovered using revert.
 
1077
 
 
1078
    You can specify one or more files, and/or --new.  If you specify --new,
 
1079
    only 'added' files will be removed.  If you specify both, then new files
 
1080
    in the specified directories will be removed.  If the directories are
 
1081
    also new, they will also be removed.
1626
1082
    """
1627
1083
    takes_args = ['file*']
1628
1084
    takes_options = ['verbose',
1629
 
        Option('new', help='Only remove files that have never been committed.'),
 
1085
        Option('new', help='Remove newly-added files.'),
1630
1086
        RegistryOption.from_kwargs('file-deletion-strategy',
1631
 
            'The file deletion mode to be used.',
 
1087
            'The file deletion mode to be used',
1632
1088
            title='Deletion Strategy', value_switches=True, enum_switch=False,
1633
 
            safe='Backup changed files (default).',
1634
 
            keep='Delete from bzr but leave the working copy.',
1635
 
            no_backup='Don\'t backup changed files.',
 
1089
            safe='Only delete files if they can be'
 
1090
                 ' safely recovered (default).',
 
1091
            keep="Don't delete any files.",
1636
1092
            force='Delete all the specified files, even if they can not be '
1637
 
                'recovered and even if they are non-empty directories. '
1638
 
                '(deprecated, use no-backup)')]
1639
 
    aliases = ['rm', 'del']
 
1093
                'recovered and even if they are non-empty directories.')]
 
1094
    aliases = ['rm']
1640
1095
    encoding_type = 'replace'
1641
1096
 
1642
1097
    def run(self, file_list, verbose=False, new=False,
1643
1098
        file_deletion_strategy='safe'):
1644
 
        if file_deletion_strategy == 'force':
1645
 
            note(gettext("(The --force option is deprecated, rather use --no-backup "
1646
 
                "in future.)"))
1647
 
            file_deletion_strategy = 'no-backup'
1648
 
 
1649
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
 
1099
        tree, file_list = tree_files(file_list)
1650
1100
 
1651
1101
        if file_list is not None:
1652
 
            file_list = [f for f in file_list]
 
1102
            file_list = [f for f in file_list if f != '']
 
1103
        elif not new:
 
1104
            raise errors.BzrCommandError('Specify one or more files to'
 
1105
            ' remove, or use --new.')
1653
1106
 
1654
 
        self.add_cleanup(tree.lock_write().unlock)
1655
 
        # Heuristics should probably all move into tree.remove_smart or
1656
 
        # some such?
1657
1107
        if new:
1658
1108
            added = tree.changes_from(tree.basis_tree(),
1659
1109
                specific_files=file_list).added
1660
1110
            file_list = sorted([f[0] for f in added], reverse=True)
1661
1111
            if len(file_list) == 0:
1662
 
                raise errors.BzrCommandError(gettext('No matching files.'))
1663
 
        elif file_list is None:
1664
 
            # missing files show up in iter_changes(basis) as
1665
 
            # versioned-with-no-kind.
1666
 
            missing = []
1667
 
            for change in tree.iter_changes(tree.basis_tree()):
1668
 
                # Find paths in the working tree that have no kind:
1669
 
                if change[1][1] is not None and change[6][1] is None:
1670
 
                    missing.append(change[1][1])
1671
 
            file_list = sorted(missing, reverse=True)
1672
 
            file_deletion_strategy = 'keep'
 
1112
                raise errors.BzrCommandError('No matching files.')
1673
1113
        tree.remove(file_list, verbose=verbose, to_file=self.outf,
1674
1114
            keep_files=file_deletion_strategy=='keep',
1675
 
            force=(file_deletion_strategy=='no-backup'))
 
1115
            force=file_deletion_strategy=='force')
1676
1116
 
1677
1117
 
1678
1118
class cmd_file_id(Command):
1679
 
    __doc__ = """Print file_id of a particular file or directory.
 
1119
    """Print file_id of a particular file or directory.
1680
1120
 
1681
1121
    The file_id is assigned when the file is first added and remains the
1682
1122
    same through all revisions where the file exists, even when it is
1698
1138
 
1699
1139
 
1700
1140
class cmd_file_path(Command):
1701
 
    __doc__ = """Print path of file_ids to a file or directory.
 
1141
    """Print path of file_ids to a file or directory.
1702
1142
 
1703
1143
    This prints one line for each directory down to the target,
1704
1144
    starting at the branch root.
1720
1160
 
1721
1161
 
1722
1162
class cmd_reconcile(Command):
1723
 
    __doc__ = """Reconcile bzr metadata in a branch.
 
1163
    """Reconcile bzr metadata in a branch.
1724
1164
 
1725
1165
    This can correct data mismatches that may have been caused by
1726
1166
    previous ghost operations or bzr upgrades. You should only
1727
 
    need to run this command if 'bzr check' or a bzr developer
 
1167
    need to run this command if 'bzr check' or a bzr developer 
1728
1168
    advises you to run it.
1729
1169
 
1730
1170
    If a second branch is provided, cross-branch reconciliation is
1732
1172
    id which was not present in very early bzr versions is represented
1733
1173
    correctly in both branches.
1734
1174
 
1735
 
    At the same time it is run it may recompress data resulting in
 
1175
    At the same time it is run it may recompress data resulting in 
1736
1176
    a potential saving in disk space or performance gain.
1737
1177
 
1738
1178
    The branch *MUST* be on a listable system such as local disk or sftp.
1740
1180
 
1741
1181
    _see_also = ['check']
1742
1182
    takes_args = ['branch?']
1743
 
    takes_options = [
1744
 
        Option('canonicalize-chks',
1745
 
               help='Make sure CHKs are in canonical form (repairs '
1746
 
                    'bug 522637).',
1747
 
               hidden=True),
1748
 
        ]
1749
1183
 
1750
 
    def run(self, branch=".", canonicalize_chks=False):
 
1184
    def run(self, branch="."):
1751
1185
        from bzrlib.reconcile import reconcile
1752
1186
        dir = bzrdir.BzrDir.open(branch)
1753
 
        reconcile(dir, canonicalize_chks=canonicalize_chks)
 
1187
        reconcile(dir)
1754
1188
 
1755
1189
 
1756
1190
class cmd_revision_history(Command):
1757
 
    __doc__ = """Display the list of revision ids on a branch."""
 
1191
    """Display the list of revision ids on a branch."""
1758
1192
 
1759
1193
    _see_also = ['log']
1760
1194
    takes_args = ['location?']
1770
1204
 
1771
1205
 
1772
1206
class cmd_ancestry(Command):
1773
 
    __doc__ = """List all revisions merged into this branch."""
 
1207
    """List all revisions merged into this branch."""
1774
1208
 
1775
1209
    _see_also = ['log', 'revision-history']
1776
1210
    takes_args = ['location?']
1788
1222
            b = wt.branch
1789
1223
            last_revision = wt.last_revision()
1790
1224
 
1791
 
        self.add_cleanup(b.repository.lock_read().unlock)
1792
 
        graph = b.repository.get_graph()
1793
 
        revisions = [revid for revid, parents in
1794
 
            graph.iter_ancestry([last_revision])]
1795
 
        for revision_id in reversed(revisions):
1796
 
            if _mod_revision.is_null(revision_id):
1797
 
                continue
 
1225
        revision_ids = b.repository.get_ancestry(last_revision)
 
1226
        assert revision_ids[0] is None
 
1227
        revision_ids.pop(0)
 
1228
        for revision_id in revision_ids:
1798
1229
            self.outf.write(revision_id + '\n')
1799
1230
 
1800
1231
 
1801
1232
class cmd_init(Command):
1802
 
    __doc__ = """Make a directory into a versioned branch.
 
1233
    """Make a directory into a versioned branch.
1803
1234
 
1804
1235
    Use this to create an empty branch, or before importing an
1805
1236
    existing project.
1806
1237
 
1807
 
    If there is a repository in a parent directory of the location, then
 
1238
    If there is a repository in a parent directory of the location, then 
1808
1239
    the history of the branch will be stored in the repository.  Otherwise
1809
1240
    init creates a standalone branch which carries its own history
1810
1241
    in the .bzr directory.
1812
1243
    If there is already a branch at the location but it has no working tree,
1813
1244
    the tree can be populated with 'bzr checkout'.
1814
1245
 
1815
 
    Recipe for importing a tree of files::
1816
 
 
 
1246
    Recipe for importing a tree of files:
1817
1247
        cd ~/project
1818
1248
        bzr init
1819
1249
        bzr add .
1820
1250
        bzr status
1821
 
        bzr commit -m "imported project"
 
1251
        bzr commit -m 'imported project'
1822
1252
    """
1823
1253
 
1824
 
    _see_also = ['init-repository', 'branch', 'checkout']
 
1254
    _see_also = ['init-repo', 'branch', 'checkout']
1825
1255
    takes_args = ['location?']
1826
1256
    takes_options = [
1827
1257
        Option('create-prefix',
1830
1260
         RegistryOption('format',
1831
1261
                help='Specify a format for this branch. '
1832
1262
                'See "help formats".',
1833
 
                lazy_registry=('bzrlib.bzrdir', 'format_registry'),
1834
 
                converter=lambda name: bzrdir.format_registry.make_bzrdir(name),
 
1263
                registry=bzrdir.format_registry,
 
1264
                converter=bzrdir.format_registry.make_bzrdir,
1835
1265
                value_switches=True,
1836
 
                title="Branch format",
 
1266
                title="Branch Format",
1837
1267
                ),
1838
1268
         Option('append-revisions-only',
1839
1269
                help='Never change revnos or the existing log.'
1840
 
                '  Append revisions to it only.'),
1841
 
         Option('no-tree',
1842
 
                'Create a branch without a working tree.')
 
1270
                '  Append revisions to it only.')
1843
1271
         ]
1844
1272
    def run(self, location=None, format=None, append_revisions_only=False,
1845
 
            create_prefix=False, no_tree=False):
 
1273
            create_prefix=False):
1846
1274
        if format is None:
1847
1275
            format = bzrdir.format_registry.make_bzrdir('default')
1848
1276
        if location is None:
1859
1287
            to_transport.ensure_base()
1860
1288
        except errors.NoSuchFile:
1861
1289
            if not create_prefix:
1862
 
                raise errors.BzrCommandError(gettext("Parent directory of %s"
 
1290
                raise errors.BzrCommandError("Parent directory of %s"
1863
1291
                    " does not exist."
1864
1292
                    "\nYou may supply --create-prefix to create all"
1865
 
                    " leading parent directories.")
 
1293
                    " leading parent directories."
1866
1294
                    % location)
1867
 
            to_transport.create_prefix()
 
1295
            _create_prefix(to_transport)
1868
1296
 
1869
1297
        try:
1870
 
            a_bzrdir = bzrdir.BzrDir.open_from_transport(to_transport)
 
1298
            existing_bzrdir = bzrdir.BzrDir.open(location)
1871
1299
        except errors.NotBranchError:
1872
1300
            # really a NotBzrDir error...
1873
 
            create_branch = bzrdir.BzrDir.create_branch_convenience
1874
 
            if no_tree:
1875
 
                force_new_tree = False
1876
 
            else:
1877
 
                force_new_tree = None
1878
 
            branch = create_branch(to_transport.base, format=format,
1879
 
                                   possible_transports=[to_transport],
1880
 
                                   force_new_tree=force_new_tree)
1881
 
            a_bzrdir = branch.bzrdir
 
1301
            branch = bzrdir.BzrDir.create_branch_convenience(to_transport.base,
 
1302
                                                             format=format)
1882
1303
        else:
1883
1304
            from bzrlib.transport.local import LocalTransport
1884
 
            if a_bzrdir.has_branch():
 
1305
            if existing_bzrdir.has_branch():
1885
1306
                if (isinstance(to_transport, LocalTransport)
1886
 
                    and not a_bzrdir.has_workingtree()):
 
1307
                    and not existing_bzrdir.has_workingtree()):
1887
1308
                        raise errors.BranchExistsWithoutWorkingTree(location)
1888
1309
                raise errors.AlreadyBranchError(location)
1889
 
            branch = a_bzrdir.create_branch()
1890
 
            if not no_tree:
1891
 
                a_bzrdir.create_workingtree()
 
1310
            else:
 
1311
                branch = existing_bzrdir.create_branch()
 
1312
                existing_bzrdir.create_workingtree()
1892
1313
        if append_revisions_only:
1893
1314
            try:
1894
1315
                branch.set_append_revisions_only(True)
1895
1316
            except errors.UpgradeRequired:
1896
 
                raise errors.BzrCommandError(gettext('This branch format cannot be set'
1897
 
                    ' to append-revisions-only.  Try --default.'))
1898
 
        if not is_quiet():
1899
 
            from bzrlib.info import describe_layout, describe_format
1900
 
            try:
1901
 
                tree = a_bzrdir.open_workingtree(recommend_upgrade=False)
1902
 
            except (errors.NoWorkingTree, errors.NotLocalUrl):
1903
 
                tree = None
1904
 
            repository = branch.repository
1905
 
            layout = describe_layout(repository, branch, tree).lower()
1906
 
            format = describe_format(a_bzrdir, repository, branch, tree)
1907
 
            self.outf.write(gettext("Created a {0} (format: {1})\n").format(
1908
 
                  layout, format))
1909
 
            if repository.is_shared():
1910
 
                #XXX: maybe this can be refactored into transport.path_or_url()
1911
 
                url = repository.bzrdir.root_transport.external_url()
1912
 
                try:
1913
 
                    url = urlutils.local_path_from_url(url)
1914
 
                except errors.InvalidURL:
1915
 
                    pass
1916
 
                self.outf.write(gettext("Using shared repository: %s\n") % url)
 
1317
                raise errors.BzrCommandError('This branch format cannot be set'
 
1318
                    ' to append-revisions-only.  Try --experimental-branch6')
1917
1319
 
1918
1320
 
1919
1321
class cmd_init_repository(Command):
1920
 
    __doc__ = """Create a shared repository for branches to share storage space.
 
1322
    """Create a shared repository to hold branches.
1921
1323
 
1922
1324
    New branches created under the repository directory will store their
1923
 
    revisions in the repository, not in the branch directory.  For branches
1924
 
    with shared history, this reduces the amount of storage needed and 
1925
 
    speeds up the creation of new branches.
1926
 
 
1927
 
    If the --no-trees option is given then the branches in the repository
1928
 
    will not have working trees by default.  They will still exist as 
1929
 
    directories on disk, but they will not have separate copies of the 
1930
 
    files at a certain revision.  This can be useful for repositories that
1931
 
    store branches which are interacted with through checkouts or remote
1932
 
    branches, such as on a server.
1933
 
 
1934
 
    :Examples:
1935
 
        Create a shared repository holding just branches::
1936
 
 
1937
 
            bzr init-repo --no-trees repo
1938
 
            bzr init repo/trunk
1939
 
 
1940
 
        Make a lightweight checkout elsewhere::
1941
 
 
1942
 
            bzr checkout --lightweight repo/trunk trunk-checkout
1943
 
            cd trunk-checkout
1944
 
            (add files here)
 
1325
    revisions in the repository, not in the branch directory.
 
1326
 
 
1327
    If the --no-trees option is used then the branches in the repository
 
1328
    will not have working trees by default.
 
1329
 
 
1330
    example:
 
1331
        bzr init-repo --no-trees repo
 
1332
        bzr init repo/trunk
 
1333
        bzr checkout --lightweight repo/trunk trunk-checkout
 
1334
        cd trunk-checkout
 
1335
        (add files here)
 
1336
 
 
1337
    See 'bzr help repositories' for more information.
1945
1338
    """
1946
1339
 
1947
 
    _see_also = ['init', 'branch', 'checkout', 'repositories']
 
1340
    _see_also = ['init', 'branch', 'checkout']
1948
1341
    takes_args = ["location"]
1949
1342
    takes_options = [RegistryOption('format',
1950
1343
                            help='Specify a format for this repository. See'
1951
1344
                                 ' "bzr help formats" for details.',
1952
 
                            lazy_registry=('bzrlib.bzrdir', 'format_registry'),
1953
 
                            converter=lambda name: bzrdir.format_registry.make_bzrdir(name),
 
1345
                            registry=bzrdir.format_registry,
 
1346
                            converter=bzrdir.format_registry.make_bzrdir,
1954
1347
                            value_switches=True, title='Repository format'),
1955
1348
                     Option('no-trees',
1956
1349
                             help='Branches in the repository will default to'
1971
1364
        newdir = format.initialize_on_transport(to_transport)
1972
1365
        repo = newdir.create_repository(shared=True)
1973
1366
        repo.set_make_working_trees(not no_trees)
1974
 
        if not is_quiet():
1975
 
            from bzrlib.info import show_bzrdir_info
1976
 
            show_bzrdir_info(repo.bzrdir, verbose=0, outfile=self.outf)
1977
1367
 
1978
1368
 
1979
1369
class cmd_diff(Command):
1980
 
    __doc__ = """Show differences in the working tree, between revisions or branches.
1981
 
 
1982
 
    If no arguments are given, all changes for the current tree are listed.
1983
 
    If files are given, only the changes in those files are listed.
1984
 
    Remote and multiple branches can be compared by using the --old and
1985
 
    --new options. If not provided, the default for both is derived from
1986
 
    the first argument, if any, or the current tree if no arguments are
1987
 
    given.
 
1370
    """Show differences in the working tree or between revisions.
 
1371
    
 
1372
    If files are listed, only the changes in those files are listed.
 
1373
    Otherwise, all changes for the tree are listed.
1988
1374
 
1989
1375
    "bzr diff -p1" is equivalent to "bzr diff --prefix old/:new/", and
1990
1376
    produces patches suitable for "patch -p1".
1991
1377
 
1992
 
    Note that when using the -r argument with a range of revisions, the
1993
 
    differences are computed between the two specified revisions.  That
1994
 
    is, the command does not show the changes introduced by the first 
1995
 
    revision in the range.  This differs from the interpretation of 
1996
 
    revision ranges used by "bzr log" which includes the first revision
1997
 
    in the range.
1998
 
 
1999
 
    :Exit values:
2000
 
        1 - changed
2001
 
        2 - unrepresentable changes
2002
 
        3 - error
2003
 
        0 - no change
2004
 
 
2005
 
    :Examples:
2006
 
        Shows the difference in the working tree versus the last commit::
2007
 
 
2008
 
            bzr diff
2009
 
 
2010
 
        Difference between the working tree and revision 1::
2011
 
 
2012
 
            bzr diff -r1
2013
 
 
2014
 
        Difference between revision 3 and revision 1::
2015
 
 
2016
 
            bzr diff -r1..3
2017
 
 
2018
 
        Difference between revision 3 and revision 1 for branch xxx::
2019
 
 
2020
 
            bzr diff -r1..3 xxx
2021
 
 
2022
 
        The changes introduced by revision 2 (equivalent to -r1..2)::
2023
 
 
2024
 
            bzr diff -c2
2025
 
 
2026
 
        To see the changes introduced by revision X::
2027
 
        
2028
 
            bzr diff -cX
2029
 
 
2030
 
        Note that in the case of a merge, the -c option shows the changes
2031
 
        compared to the left hand parent. To see the changes against
2032
 
        another parent, use::
2033
 
 
2034
 
            bzr diff -r<chosen_parent>..X
2035
 
 
2036
 
        The changes between the current revision and the previous revision
2037
 
        (equivalent to -c-1 and -r-2..-1)
2038
 
 
2039
 
            bzr diff -r-2..
2040
 
 
2041
 
        Show just the differences for file NEWS::
2042
 
 
2043
 
            bzr diff NEWS
2044
 
 
2045
 
        Show the differences in working tree xxx for file NEWS::
2046
 
 
2047
 
            bzr diff xxx/NEWS
2048
 
 
2049
 
        Show the differences from branch xxx to this working tree:
2050
 
 
2051
 
            bzr diff --old xxx
2052
 
 
2053
 
        Show the differences between two branches for file NEWS::
2054
 
 
2055
 
            bzr diff --old xxx --new yyy NEWS
2056
 
 
2057
 
        Same as 'bzr diff' but prefix paths with old/ and new/::
2058
 
 
2059
 
            bzr diff --prefix old/:new/
2060
 
            
2061
 
        Show the differences using a custom diff program with options::
2062
 
        
2063
 
            bzr diff --using /usr/bin/diff --diff-options -wu
 
1378
    examples:
 
1379
        bzr diff
 
1380
            Shows the difference in the working tree versus the last commit
 
1381
        bzr diff -r1
 
1382
            Difference between the working tree and revision 1
 
1383
        bzr diff -r1..2
 
1384
            Difference between revision 2 and revision 1
 
1385
        bzr diff --prefix old/:new/
 
1386
            Same as 'bzr diff' but prefix paths with old/ and new/
 
1387
        bzr diff bzr.mine bzr.dev
 
1388
            Show the differences between the two working trees
 
1389
        bzr diff foo.c
 
1390
            Show just the differences for 'foo.c'
2064
1391
    """
 
1392
    # TODO: Option to use external diff command; could be GNU diff, wdiff,
 
1393
    #       or a graphical diff.
 
1394
 
 
1395
    # TODO: Python difflib is not exactly the same as unidiff; should
 
1396
    #       either fix it up or prefer to use an external diff.
 
1397
 
 
1398
    # TODO: Selected-file diff is inefficient and doesn't show you
 
1399
    #       deleted files.
 
1400
 
 
1401
    # TODO: This probably handles non-Unix newlines poorly.
 
1402
 
2065
1403
    _see_also = ['status']
2066
1404
    takes_args = ['file*']
2067
1405
    takes_options = [
2069
1407
               help='Pass these options to the external diff program.'),
2070
1408
        Option('prefix', type=str,
2071
1409
               short_name='p',
2072
 
               help='Set prefixes added to old and new filenames, as '
 
1410
               help='Set prefixes to added to old and new filenames, as '
2073
1411
                    'two values separated by a colon. (eg "old/:new/").'),
2074
 
        Option('old',
2075
 
            help='Branch/tree to compare from.',
2076
 
            type=unicode,
2077
 
            ),
2078
 
        Option('new',
2079
 
            help='Branch/tree to compare to.',
2080
 
            type=unicode,
2081
 
            ),
2082
1412
        'revision',
2083
 
        'change',
2084
 
        Option('using',
2085
 
            help='Use this command to compare files.',
2086
 
            type=unicode,
2087
 
            ),
2088
 
        RegistryOption('format',
2089
 
            short_name='F',
2090
 
            help='Diff format to use.',
2091
 
            lazy_registry=('bzrlib.diff', 'format_registry'),
2092
 
            title='Diff format'),
2093
1413
        ]
2094
1414
    aliases = ['di', 'dif']
2095
1415
    encoding_type = 'exact'
2096
1416
 
2097
1417
    @display_command
2098
1418
    def run(self, revision=None, file_list=None, diff_options=None,
2099
 
            prefix=None, old=None, new=None, using=None, format=None):
2100
 
        from bzrlib.diff import (get_trees_and_branches_to_diff_locked,
2101
 
            show_diff_trees)
 
1419
            prefix=None):
 
1420
        from bzrlib.diff import diff_cmd_helper, show_diff_trees
2102
1421
 
2103
1422
        if (prefix is None) or (prefix == '0'):
2104
1423
            # diff -p0 format
2110
1429
        elif ':' in prefix:
2111
1430
            old_label, new_label = prefix.split(":")
2112
1431
        else:
2113
 
            raise errors.BzrCommandError(gettext(
 
1432
            raise errors.BzrCommandError(
2114
1433
                '--prefix expects two values separated by a colon'
2115
 
                ' (eg "old/:new/")'))
 
1434
                ' (eg "old/:new/")')
2116
1435
 
2117
1436
        if revision and len(revision) > 2:
2118
 
            raise errors.BzrCommandError(gettext('bzr diff --revision takes exactly'
2119
 
                                         ' one or two revision specifiers'))
2120
 
 
2121
 
        if using is not None and format is not None:
2122
 
            raise errors.BzrCommandError(gettext(
2123
 
                '{0} and {1} are mutually exclusive').format(
2124
 
                '--using', '--format'))
2125
 
 
2126
 
        (old_tree, new_tree,
2127
 
         old_branch, new_branch,
2128
 
         specific_files, extra_trees) = get_trees_and_branches_to_diff_locked(
2129
 
            file_list, revision, old, new, self.add_cleanup, apply_view=True)
2130
 
        # GNU diff on Windows uses ANSI encoding for filenames
2131
 
        path_encoding = osutils.get_diff_header_encoding()
2132
 
        return show_diff_trees(old_tree, new_tree, sys.stdout,
2133
 
                               specific_files=specific_files,
2134
 
                               external_diff_options=diff_options,
2135
 
                               old_label=old_label, new_label=new_label,
2136
 
                               extra_trees=extra_trees,
2137
 
                               path_encoding=path_encoding,
2138
 
                               using=using,
2139
 
                               format_cls=format)
 
1437
            raise errors.BzrCommandError('bzr diff --revision takes exactly'
 
1438
                                         ' one or two revision specifiers')
 
1439
 
 
1440
        try:
 
1441
            tree1, file_list = internal_tree_files(file_list)
 
1442
            tree2 = None
 
1443
            b = None
 
1444
            b2 = None
 
1445
        except errors.FileInWrongBranch:
 
1446
            if len(file_list) != 2:
 
1447
                raise errors.BzrCommandError("Files are in different branches")
 
1448
 
 
1449
            tree1, file1 = WorkingTree.open_containing(file_list[0])
 
1450
            tree2, file2 = WorkingTree.open_containing(file_list[1])
 
1451
            if file1 != "" or file2 != "":
 
1452
                # FIXME diff those two files. rbc 20051123
 
1453
                raise errors.BzrCommandError("Files are in different branches")
 
1454
            file_list = None
 
1455
        except errors.NotBranchError:
 
1456
            if (revision is not None and len(revision) == 2
 
1457
                and not revision[0].needs_branch()
 
1458
                and not revision[1].needs_branch()):
 
1459
                # If both revision specs include a branch, we can
 
1460
                # diff them without needing a local working tree
 
1461
                tree1, tree2 = None, None
 
1462
            else:
 
1463
                raise
 
1464
 
 
1465
        if tree2 is not None:
 
1466
            if revision is not None:
 
1467
                # FIXME: but there should be a clean way to diff between
 
1468
                # non-default versions of two trees, it's not hard to do
 
1469
                # internally...
 
1470
                raise errors.BzrCommandError(
 
1471
                        "Sorry, diffing arbitrary revisions across branches "
 
1472
                        "is not implemented yet")
 
1473
            return show_diff_trees(tree1, tree2, sys.stdout, 
 
1474
                                   specific_files=file_list,
 
1475
                                   external_diff_options=diff_options,
 
1476
                                   old_label=old_label, new_label=new_label)
 
1477
 
 
1478
        return diff_cmd_helper(tree1, file_list, diff_options,
 
1479
                               revision_specs=revision,
 
1480
                               old_label=old_label, new_label=new_label)
2140
1481
 
2141
1482
 
2142
1483
class cmd_deleted(Command):
2143
 
    __doc__ = """List files deleted in the working tree.
 
1484
    """List files deleted in the working tree.
2144
1485
    """
2145
1486
    # TODO: Show files deleted since a previous revision, or
2146
1487
    # between two revisions.
2149
1490
    # level of effort but possibly much less IO.  (Or possibly not,
2150
1491
    # if the directories are very large...)
2151
1492
    _see_also = ['status', 'ls']
2152
 
    takes_options = ['directory', 'show-ids']
 
1493
    takes_options = ['show-ids']
2153
1494
 
2154
1495
    @display_command
2155
 
    def run(self, show_ids=False, directory=u'.'):
2156
 
        tree = WorkingTree.open_containing(directory)[0]
2157
 
        self.add_cleanup(tree.lock_read().unlock)
2158
 
        old = tree.basis_tree()
2159
 
        self.add_cleanup(old.lock_read().unlock)
2160
 
        for path, ie in old.inventory.iter_entries():
2161
 
            if not tree.has_id(ie.file_id):
2162
 
                self.outf.write(path)
2163
 
                if show_ids:
2164
 
                    self.outf.write(' ')
2165
 
                    self.outf.write(ie.file_id)
2166
 
                self.outf.write('\n')
 
1496
    def run(self, show_ids=False):
 
1497
        tree = WorkingTree.open_containing(u'.')[0]
 
1498
        tree.lock_read()
 
1499
        try:
 
1500
            old = tree.basis_tree()
 
1501
            old.lock_read()
 
1502
            try:
 
1503
                for path, ie in old.inventory.iter_entries():
 
1504
                    if not tree.has_id(ie.file_id):
 
1505
                        self.outf.write(path)
 
1506
                        if show_ids:
 
1507
                            self.outf.write(' ')
 
1508
                            self.outf.write(ie.file_id)
 
1509
                        self.outf.write('\n')
 
1510
            finally:
 
1511
                old.unlock()
 
1512
        finally:
 
1513
            tree.unlock()
2167
1514
 
2168
1515
 
2169
1516
class cmd_modified(Command):
2170
 
    __doc__ = """List files modified in working tree.
 
1517
    """List files modified in working tree.
2171
1518
    """
2172
1519
 
2173
1520
    hidden = True
2174
1521
    _see_also = ['status', 'ls']
2175
 
    takes_options = ['directory', 'null']
2176
1522
 
2177
1523
    @display_command
2178
 
    def run(self, null=False, directory=u'.'):
2179
 
        tree = WorkingTree.open_containing(directory)[0]
2180
 
        self.add_cleanup(tree.lock_read().unlock)
 
1524
    def run(self):
 
1525
        tree = WorkingTree.open_containing(u'.')[0]
2181
1526
        td = tree.changes_from(tree.basis_tree())
2182
 
        self.cleanup_now()
2183
1527
        for path, id, kind, text_modified, meta_modified in td.modified:
2184
 
            if null:
2185
 
                self.outf.write(path + '\0')
2186
 
            else:
2187
 
                self.outf.write(osutils.quotefn(path) + '\n')
 
1528
            self.outf.write(path + '\n')
2188
1529
 
2189
1530
 
2190
1531
class cmd_added(Command):
2191
 
    __doc__ = """List files added in working tree.
 
1532
    """List files added in working tree.
2192
1533
    """
2193
1534
 
2194
1535
    hidden = True
2195
1536
    _see_also = ['status', 'ls']
2196
 
    takes_options = ['directory', 'null']
2197
1537
 
2198
1538
    @display_command
2199
 
    def run(self, null=False, directory=u'.'):
2200
 
        wt = WorkingTree.open_containing(directory)[0]
2201
 
        self.add_cleanup(wt.lock_read().unlock)
2202
 
        basis = wt.basis_tree()
2203
 
        self.add_cleanup(basis.lock_read().unlock)
2204
 
        basis_inv = basis.inventory
2205
 
        inv = wt.inventory
2206
 
        for file_id in inv:
2207
 
            if basis_inv.has_id(file_id):
2208
 
                continue
2209
 
            if inv.is_root(file_id) and len(basis_inv) == 0:
2210
 
                continue
2211
 
            path = inv.id2path(file_id)
2212
 
            if not os.access(osutils.pathjoin(wt.basedir, path), os.F_OK):
2213
 
                continue
2214
 
            if null:
2215
 
                self.outf.write(path + '\0')
2216
 
            else:
2217
 
                self.outf.write(osutils.quotefn(path) + '\n')
 
1539
    def run(self):
 
1540
        wt = WorkingTree.open_containing(u'.')[0]
 
1541
        wt.lock_read()
 
1542
        try:
 
1543
            basis = wt.basis_tree()
 
1544
            basis.lock_read()
 
1545
            try:
 
1546
                basis_inv = basis.inventory
 
1547
                inv = wt.inventory
 
1548
                for file_id in inv:
 
1549
                    if file_id in basis_inv:
 
1550
                        continue
 
1551
                    if inv.is_root(file_id) and len(basis_inv) == 0:
 
1552
                        continue
 
1553
                    path = inv.id2path(file_id)
 
1554
                    if not os.access(osutils.abspath(path), os.F_OK):
 
1555
                        continue
 
1556
                    self.outf.write(path + '\n')
 
1557
            finally:
 
1558
                basis.unlock()
 
1559
        finally:
 
1560
            wt.unlock()
2218
1561
 
2219
1562
 
2220
1563
class cmd_root(Command):
2221
 
    __doc__ = """Show the tree root directory.
 
1564
    """Show the tree root directory.
2222
1565
 
2223
1566
    The root is the nearest enclosing directory with a .bzr control
2224
1567
    directory."""
2235
1578
    try:
2236
1579
        return int(limitstring)
2237
1580
    except ValueError:
2238
 
        msg = gettext("The limit argument must be an integer.")
2239
 
        raise errors.BzrCommandError(msg)
2240
 
 
2241
 
 
2242
 
def _parse_levels(s):
2243
 
    try:
2244
 
        return int(s)
2245
 
    except ValueError:
2246
 
        msg = gettext("The levels argument must be an integer.")
 
1581
        msg = "The limit argument must be an integer."
2247
1582
        raise errors.BzrCommandError(msg)
2248
1583
 
2249
1584
 
2250
1585
class cmd_log(Command):
2251
 
    __doc__ = """Show historical log for a branch or subset of a branch.
2252
 
 
2253
 
    log is bzr's default tool for exploring the history of a branch.
2254
 
    The branch to use is taken from the first parameter. If no parameters
2255
 
    are given, the branch containing the working directory is logged.
2256
 
    Here are some simple examples::
2257
 
 
2258
 
      bzr log                       log the current branch
2259
 
      bzr log foo.py                log a file in its branch
2260
 
      bzr log http://server/branch  log a branch on a server
2261
 
 
2262
 
    The filtering, ordering and information shown for each revision can
2263
 
    be controlled as explained below. By default, all revisions are
2264
 
    shown sorted (topologically) so that newer revisions appear before
2265
 
    older ones and descendants always appear before ancestors. If displayed,
2266
 
    merged revisions are shown indented under the revision in which they
2267
 
    were merged.
2268
 
 
2269
 
    :Output control:
2270
 
 
2271
 
      The log format controls how information about each revision is
2272
 
      displayed. The standard log formats are called ``long``, ``short``
2273
 
      and ``line``. The default is long. See ``bzr help log-formats``
2274
 
      for more details on log formats.
2275
 
 
2276
 
      The following options can be used to control what information is
2277
 
      displayed::
2278
 
 
2279
 
        -l N        display a maximum of N revisions
2280
 
        -n N        display N levels of revisions (0 for all, 1 for collapsed)
2281
 
        -v          display a status summary (delta) for each revision
2282
 
        -p          display a diff (patch) for each revision
2283
 
        --show-ids  display revision-ids (and file-ids), not just revnos
2284
 
 
2285
 
      Note that the default number of levels to display is a function of the
2286
 
      log format. If the -n option is not used, the standard log formats show
2287
 
      just the top level (mainline).
2288
 
 
2289
 
      Status summaries are shown using status flags like A, M, etc. To see
2290
 
      the changes explained using words like ``added`` and ``modified``
2291
 
      instead, use the -vv option.
2292
 
 
2293
 
    :Ordering control:
2294
 
 
2295
 
      To display revisions from oldest to newest, use the --forward option.
2296
 
      In most cases, using this option will have little impact on the total
2297
 
      time taken to produce a log, though --forward does not incrementally
2298
 
      display revisions like --reverse does when it can.
2299
 
 
2300
 
    :Revision filtering:
2301
 
 
2302
 
      The -r option can be used to specify what revision or range of revisions
2303
 
      to filter against. The various forms are shown below::
2304
 
 
2305
 
        -rX      display revision X
2306
 
        -rX..    display revision X and later
2307
 
        -r..Y    display up to and including revision Y
2308
 
        -rX..Y   display from X to Y inclusive
2309
 
 
2310
 
      See ``bzr help revisionspec`` for details on how to specify X and Y.
2311
 
      Some common examples are given below::
2312
 
 
2313
 
        -r-1                show just the tip
2314
 
        -r-10..             show the last 10 mainline revisions
2315
 
        -rsubmit:..         show what's new on this branch
2316
 
        -rancestor:path..   show changes since the common ancestor of this
2317
 
                            branch and the one at location path
2318
 
        -rdate:yesterday..  show changes since yesterday
2319
 
 
2320
 
      When logging a range of revisions using -rX..Y, log starts at
2321
 
      revision Y and searches back in history through the primary
2322
 
      ("left-hand") parents until it finds X. When logging just the
2323
 
      top level (using -n1), an error is reported if X is not found
2324
 
      along the way. If multi-level logging is used (-n0), X may be
2325
 
      a nested merge revision and the log will be truncated accordingly.
2326
 
 
2327
 
    :Path filtering:
2328
 
 
2329
 
      If parameters are given and the first one is not a branch, the log
2330
 
      will be filtered to show only those revisions that changed the
2331
 
      nominated files or directories.
2332
 
 
2333
 
      Filenames are interpreted within their historical context. To log a
2334
 
      deleted file, specify a revision range so that the file existed at
2335
 
      the end or start of the range.
2336
 
 
2337
 
      Historical context is also important when interpreting pathnames of
2338
 
      renamed files/directories. Consider the following example:
2339
 
 
2340
 
      * revision 1: add tutorial.txt
2341
 
      * revision 2: modify tutorial.txt
2342
 
      * revision 3: rename tutorial.txt to guide.txt; add tutorial.txt
2343
 
 
2344
 
      In this case:
2345
 
 
2346
 
      * ``bzr log guide.txt`` will log the file added in revision 1
2347
 
 
2348
 
      * ``bzr log tutorial.txt`` will log the new file added in revision 3
2349
 
 
2350
 
      * ``bzr log -r2 -p tutorial.txt`` will show the changes made to
2351
 
        the original file in revision 2.
2352
 
 
2353
 
      * ``bzr log -r2 -p guide.txt`` will display an error message as there
2354
 
        was no file called guide.txt in revision 2.
2355
 
 
2356
 
      Renames are always followed by log. By design, there is no need to
2357
 
      explicitly ask for this (and no way to stop logging a file back
2358
 
      until it was last renamed).
2359
 
 
2360
 
    :Other filtering:
2361
 
 
2362
 
      The --match option can be used for finding revisions that match a
2363
 
      regular expression in a commit message, committer, author or bug.
2364
 
      Specifying the option several times will match any of the supplied
2365
 
      expressions. --match-author, --match-bugs, --match-committer and
2366
 
      --match-message can be used to only match a specific field.
2367
 
 
2368
 
    :Tips & tricks:
2369
 
 
2370
 
      GUI tools and IDEs are often better at exploring history than command
2371
 
      line tools: you may prefer qlog or viz from qbzr or bzr-gtk, the
2372
 
      bzr-explorer shell, or the Loggerhead web interface.  See the Plugin
2373
 
      Guide <http://doc.bazaar.canonical.com/plugins/en/> and
2374
 
      <http://wiki.bazaar.canonical.com/IDEIntegration>.  
2375
 
 
2376
 
      You may find it useful to add the aliases below to ``bazaar.conf``::
2377
 
 
2378
 
        [ALIASES]
2379
 
        tip = log -r-1
2380
 
        top = log -l10 --line
2381
 
        show = log -v -p
2382
 
 
2383
 
      ``bzr tip`` will then show the latest revision while ``bzr top``
2384
 
      will show the last 10 mainline revisions. To see the details of a
2385
 
      particular revision X,  ``bzr show -rX``.
2386
 
 
2387
 
      If you are interested in looking deeper into a particular merge X,
2388
 
      use ``bzr log -n0 -rX``.
2389
 
 
2390
 
      ``bzr log -v`` on a branch with lots of history is currently
2391
 
      very slow. A fix for this issue is currently under development.
2392
 
      With or without that fix, it is recommended that a revision range
2393
 
      be given when using the -v option.
2394
 
 
2395
 
      bzr has a generic full-text matching plugin, bzr-search, that can be
2396
 
      used to find revisions matching user names, commit messages, etc.
2397
 
      Among other features, this plugin can find all revisions containing
2398
 
      a list of words but not others.
2399
 
 
2400
 
      When exploring non-mainline history on large projects with deep
2401
 
      history, the performance of log can be greatly improved by installing
2402
 
      the historycache plugin. This plugin buffers historical information
2403
 
      trading disk space for faster speed.
 
1586
    """Show log of a branch, file, or directory.
 
1587
 
 
1588
    By default show the log of the branch containing the working directory.
 
1589
 
 
1590
    To request a range of logs, you can use the command -r begin..end
 
1591
    -r revision requests a specific revision, -r ..end or -r begin.. are
 
1592
    also valid.
 
1593
 
 
1594
    examples:
 
1595
        bzr log
 
1596
        bzr log foo.c
 
1597
        bzr log -r -10.. http://server/branch
2404
1598
    """
2405
 
    takes_args = ['file*']
2406
 
    _see_also = ['log-formats', 'revisionspec']
 
1599
 
 
1600
    # TODO: Make --revision support uuid: and hash: [future tag:] notation.
 
1601
 
 
1602
    takes_args = ['location?']
2407
1603
    takes_options = [
2408
1604
            Option('forward',
2409
1605
                   help='Show from oldest to newest.'),
2410
 
            'timezone',
2411
 
            custom_help('verbose',
 
1606
            Option('timezone',
 
1607
                   type=str,
 
1608
                   help='Display timezone as local, original, or utc.'),
 
1609
            Option('verbose',
 
1610
                   short_name='v',
2412
1611
                   help='Show files changed in each revision.'),
2413
1612
            'show-ids',
2414
1613
            'revision',
2415
 
            Option('change',
2416
 
                   type=bzrlib.option._parse_revision_str,
2417
 
                   short_name='c',
2418
 
                   help='Show just the specified revision.'
2419
 
                   ' See also "help revisionspec".'),
2420
1614
            'log-format',
2421
 
            RegistryOption('authors',
2422
 
                'What names to list as authors - first, all or committer.',
2423
 
                title='Authors',
2424
 
                lazy_registry=('bzrlib.log', 'author_list_registry'),
2425
 
            ),
2426
 
            Option('levels',
2427
 
                   short_name='n',
2428
 
                   help='Number of levels to display - 0 for all, 1 for flat.',
2429
 
                   argname='N',
2430
 
                   type=_parse_levels),
2431
1615
            Option('message',
 
1616
                   short_name='m',
2432
1617
                   help='Show revisions whose message matches this '
2433
1618
                        'regular expression.',
2434
 
                   type=str,
2435
 
                   hidden=True),
 
1619
                   type=str),
2436
1620
            Option('limit',
2437
 
                   short_name='l',
2438
1621
                   help='Limit the output to the first N revisions.',
2439
1622
                   argname='N',
2440
1623
                   type=_parse_limit),
2441
 
            Option('show-diff',
2442
 
                   short_name='p',
2443
 
                   help='Show changes made in each revision as a patch.'),
2444
 
            Option('include-merged',
2445
 
                   help='Show merged revisions like --levels 0 does.'),
2446
 
            Option('include-merges', hidden=True,
2447
 
                   help='Historical alias for --include-merged.'),
2448
 
            Option('omit-merges',
2449
 
                   help='Do not report commits with more than one parent.'),
2450
 
            Option('exclude-common-ancestry',
2451
 
                   help='Display only the revisions that are not part'
2452
 
                   ' of both ancestries (require -rX..Y)'
2453
 
                   ),
2454
 
            Option('signatures',
2455
 
                   help='Show digital signature validity'),
2456
 
            ListOption('match',
2457
 
                short_name='m',
2458
 
                help='Show revisions whose properties match this '
2459
 
                'expression.',
2460
 
                type=str),
2461
 
            ListOption('match-message',
2462
 
                   help='Show revisions whose message matches this '
2463
 
                   'expression.',
2464
 
                type=str),
2465
 
            ListOption('match-committer',
2466
 
                   help='Show revisions whose committer matches this '
2467
 
                   'expression.',
2468
 
                type=str),
2469
 
            ListOption('match-author',
2470
 
                   help='Show revisions whose authors match this '
2471
 
                   'expression.',
2472
 
                type=str),
2473
 
            ListOption('match-bugs',
2474
 
                   help='Show revisions whose bugs match this '
2475
 
                   'expression.',
2476
 
                type=str)
2477
1624
            ]
2478
1625
    encoding_type = 'replace'
2479
1626
 
2480
1627
    @display_command
2481
 
    def run(self, file_list=None, timezone='original',
 
1628
    def run(self, location=None, timezone='original',
2482
1629
            verbose=False,
2483
1630
            show_ids=False,
2484
1631
            forward=False,
2485
1632
            revision=None,
2486
 
            change=None,
2487
1633
            log_format=None,
2488
 
            levels=None,
2489
1634
            message=None,
2490
 
            limit=None,
2491
 
            show_diff=False,
2492
 
            include_merged=None,
2493
 
            authors=None,
2494
 
            exclude_common_ancestry=False,
2495
 
            signatures=False,
2496
 
            match=None,
2497
 
            match_message=None,
2498
 
            match_committer=None,
2499
 
            match_author=None,
2500
 
            match_bugs=None,
2501
 
            omit_merges=False,
2502
 
            include_merges=symbol_versioning.DEPRECATED_PARAMETER,
2503
 
            ):
2504
 
        from bzrlib.log import (
2505
 
            Logger,
2506
 
            make_log_request_dict,
2507
 
            _get_info_for_log_files,
2508
 
            )
 
1635
            limit=None):
 
1636
        from bzrlib.log import show_log
 
1637
        assert message is None or isinstance(message, basestring), \
 
1638
            "invalid message argument %r" % message
2509
1639
        direction = (forward and 'forward') or 'reverse'
2510
 
        if symbol_versioning.deprecated_passed(include_merges):
2511
 
            ui.ui_factory.show_user_warning(
2512
 
                'deprecated_command_option',
2513
 
                deprecated_name='--include-merges',
2514
 
                recommended_name='--include-merged',
2515
 
                deprecated_in_version='2.5',
2516
 
                command=self.invoked_as)
2517
 
            if include_merged is None:
2518
 
                include_merged = include_merges
2519
 
            else:
2520
 
                raise errors.BzrCommandError(gettext(
2521
 
                    '{0} and {1} are mutually exclusive').format(
2522
 
                    '--include-merges', '--include-merged'))
2523
 
        if include_merged is None:
2524
 
            include_merged = False
2525
 
        if (exclude_common_ancestry
2526
 
            and (revision is None or len(revision) != 2)):
2527
 
            raise errors.BzrCommandError(gettext(
2528
 
                '--exclude-common-ancestry requires -r with two revisions'))
2529
 
        if include_merged:
2530
 
            if levels is None:
2531
 
                levels = 0
2532
 
            else:
2533
 
                raise errors.BzrCommandError(gettext(
2534
 
                    '{0} and {1} are mutually exclusive').format(
2535
 
                    '--levels', '--include-merged'))
2536
 
 
2537
 
        if change is not None:
2538
 
            if len(change) > 1:
2539
 
                raise errors.RangeInChangeOption()
2540
 
            if revision is not None:
2541
 
                raise errors.BzrCommandError(gettext(
2542
 
                    '{0} and {1} are mutually exclusive').format(
2543
 
                    '--revision', '--change'))
2544
 
            else:
2545
 
                revision = change
2546
 
 
2547
 
        file_ids = []
2548
 
        filter_by_dir = False
2549
 
        if file_list:
2550
 
            # find the file ids to log and check for directory filtering
2551
 
            b, file_info_list, rev1, rev2 = _get_info_for_log_files(
2552
 
                revision, file_list, self.add_cleanup)
2553
 
            for relpath, file_id, kind in file_info_list:
 
1640
        
 
1641
        # log everything
 
1642
        file_id = None
 
1643
        if location:
 
1644
            # find the file id to log:
 
1645
 
 
1646
            tree, b, fp = bzrdir.BzrDir.open_containing_tree_or_branch(
 
1647
                location)
 
1648
            if fp != '':
 
1649
                if tree is None:
 
1650
                    tree = b.basis_tree()
 
1651
                file_id = tree.path2id(fp)
2554
1652
                if file_id is None:
2555
 
                    raise errors.BzrCommandError(gettext(
2556
 
                        "Path unknown at end or start of revision range: %s") %
2557
 
                        relpath)
2558
 
                # If the relpath is the top of the tree, we log everything
2559
 
                if relpath == '':
2560
 
                    file_ids = []
2561
 
                    break
2562
 
                else:
2563
 
                    file_ids.append(file_id)
2564
 
                filter_by_dir = filter_by_dir or (
2565
 
                    kind in ['directory', 'tree-reference'])
 
1653
                    raise errors.BzrCommandError(
 
1654
                        "Path does not have any revision history: %s" %
 
1655
                        location)
2566
1656
        else:
2567
 
            # log everything
2568
 
            # FIXME ? log the current subdir only RBC 20060203
 
1657
            # local dir only
 
1658
            # FIXME ? log the current subdir only RBC 20060203 
2569
1659
            if revision is not None \
2570
1660
                    and len(revision) > 0 and revision[0].get_branch():
2571
1661
                location = revision[0].get_branch()
2573
1663
                location = '.'
2574
1664
            dir, relpath = bzrdir.BzrDir.open_containing(location)
2575
1665
            b = dir.open_branch()
2576
 
            self.add_cleanup(b.lock_read().unlock)
2577
 
            rev1, rev2 = _get_revision_range(revision, b, self.name())
2578
 
 
2579
 
        if b.get_config().validate_signatures_in_log():
2580
 
            signatures = True
2581
 
 
2582
 
        if signatures:
2583
 
            if not gpg.GPGStrategy.verify_signatures_available():
2584
 
                raise errors.GpgmeNotInstalled(None)
2585
 
 
2586
 
        # Decide on the type of delta & diff filtering to use
2587
 
        # TODO: add an --all-files option to make this configurable & consistent
2588
 
        if not verbose:
2589
 
            delta_type = None
2590
 
        else:
2591
 
            delta_type = 'full'
2592
 
        if not show_diff:
2593
 
            diff_type = None
2594
 
        elif file_ids:
2595
 
            diff_type = 'partial'
2596
 
        else:
2597
 
            diff_type = 'full'
2598
 
 
2599
 
        # Build the log formatter
2600
 
        if log_format is None:
2601
 
            log_format = log.log_formatter_registry.get_default(b)
2602
 
        # Make a non-encoding output to include the diffs - bug 328007
2603
 
        unencoded_output = ui.ui_factory.make_output_stream(encoding_type='exact')
2604
 
        lf = log_format(show_ids=show_ids, to_file=self.outf,
2605
 
                        to_exact_file=unencoded_output,
2606
 
                        show_timezone=timezone,
2607
 
                        delta_format=get_verbosity_level(),
2608
 
                        levels=levels,
2609
 
                        show_advice=levels is None,
2610
 
                        author_list_handler=authors)
2611
 
 
2612
 
        # Choose the algorithm for doing the logging. It's annoying
2613
 
        # having multiple code paths like this but necessary until
2614
 
        # the underlying repository format is faster at generating
2615
 
        # deltas or can provide everything we need from the indices.
2616
 
        # The default algorithm - match-using-deltas - works for
2617
 
        # multiple files and directories and is faster for small
2618
 
        # amounts of history (200 revisions say). However, it's too
2619
 
        # slow for logging a single file in a repository with deep
2620
 
        # history, i.e. > 10K revisions. In the spirit of "do no
2621
 
        # evil when adding features", we continue to use the
2622
 
        # original algorithm - per-file-graph - for the "single
2623
 
        # file that isn't a directory without showing a delta" case.
2624
 
        partial_history = revision and b.repository._format.supports_chks
2625
 
        match_using_deltas = (len(file_ids) != 1 or filter_by_dir
2626
 
            or delta_type or partial_history)
2627
 
 
2628
 
        match_dict = {}
2629
 
        if match:
2630
 
            match_dict[''] = match
2631
 
        if match_message:
2632
 
            match_dict['message'] = match_message
2633
 
        if match_committer:
2634
 
            match_dict['committer'] = match_committer
2635
 
        if match_author:
2636
 
            match_dict['author'] = match_author
2637
 
        if match_bugs:
2638
 
            match_dict['bugs'] = match_bugs
2639
 
 
2640
 
        # Build the LogRequest and execute it
2641
 
        if len(file_ids) == 0:
2642
 
            file_ids = None
2643
 
        rqst = make_log_request_dict(
2644
 
            direction=direction, specific_fileids=file_ids,
2645
 
            start_revision=rev1, end_revision=rev2, limit=limit,
2646
 
            message_search=message, delta_type=delta_type,
2647
 
            diff_type=diff_type, _match_using_deltas=match_using_deltas,
2648
 
            exclude_common_ancestry=exclude_common_ancestry, match=match_dict,
2649
 
            signature=signatures, omit_merges=omit_merges,
2650
 
            )
2651
 
        Logger(b, rqst).show(lf)
2652
 
 
2653
 
 
2654
 
def _get_revision_range(revisionspec_list, branch, command_name):
2655
 
    """Take the input of a revision option and turn it into a revision range.
2656
 
 
2657
 
    It returns RevisionInfo objects which can be used to obtain the rev_id's
2658
 
    of the desired revisions. It does some user input validations.
2659
 
    """
2660
 
    if revisionspec_list is None:
2661
 
        rev1 = None
2662
 
        rev2 = None
2663
 
    elif len(revisionspec_list) == 1:
2664
 
        rev1 = rev2 = revisionspec_list[0].in_history(branch)
2665
 
    elif len(revisionspec_list) == 2:
2666
 
        start_spec = revisionspec_list[0]
2667
 
        end_spec = revisionspec_list[1]
2668
 
        if end_spec.get_branch() != start_spec.get_branch():
2669
 
            # b is taken from revision[0].get_branch(), and
2670
 
            # show_log will use its revision_history. Having
2671
 
            # different branches will lead to weird behaviors.
2672
 
            raise errors.BzrCommandError(gettext(
2673
 
                "bzr %s doesn't accept two revisions in different"
2674
 
                " branches.") % command_name)
2675
 
        if start_spec.spec is None:
2676
 
            # Avoid loading all the history.
2677
 
            rev1 = RevisionInfo(branch, None, None)
2678
 
        else:
2679
 
            rev1 = start_spec.in_history(branch)
2680
 
        # Avoid loading all of history when we know a missing
2681
 
        # end of range means the last revision ...
2682
 
        if end_spec.spec is None:
2683
 
            last_revno, last_revision_id = branch.last_revision_info()
2684
 
            rev2 = RevisionInfo(branch, last_revno, last_revision_id)
2685
 
        else:
2686
 
            rev2 = end_spec.in_history(branch)
2687
 
    else:
2688
 
        raise errors.BzrCommandError(gettext(
2689
 
            'bzr %s --revision takes one or two values.') % command_name)
2690
 
    return rev1, rev2
2691
 
 
2692
 
 
2693
 
def _revision_range_to_revid_range(revision_range):
2694
 
    rev_id1 = None
2695
 
    rev_id2 = None
2696
 
    if revision_range[0] is not None:
2697
 
        rev_id1 = revision_range[0].rev_id
2698
 
    if revision_range[1] is not None:
2699
 
        rev_id2 = revision_range[1].rev_id
2700
 
    return rev_id1, rev_id2
 
1666
 
 
1667
        b.lock_read()
 
1668
        try:
 
1669
            if revision is None:
 
1670
                rev1 = None
 
1671
                rev2 = None
 
1672
            elif len(revision) == 1:
 
1673
                rev1 = rev2 = revision[0].in_history(b)
 
1674
            elif len(revision) == 2:
 
1675
                if revision[1].get_branch() != revision[0].get_branch():
 
1676
                    # b is taken from revision[0].get_branch(), and
 
1677
                    # show_log will use its revision_history. Having
 
1678
                    # different branches will lead to weird behaviors.
 
1679
                    raise errors.BzrCommandError(
 
1680
                        "Log doesn't accept two revisions in different"
 
1681
                        " branches.")
 
1682
                rev1 = revision[0].in_history(b)
 
1683
                rev2 = revision[1].in_history(b)
 
1684
            else:
 
1685
                raise errors.BzrCommandError(
 
1686
                    'bzr log --revision takes one or two values.')
 
1687
 
 
1688
            if log_format is None:
 
1689
                log_format = log.log_formatter_registry.get_default(b)
 
1690
 
 
1691
            lf = log_format(show_ids=show_ids, to_file=self.outf,
 
1692
                            show_timezone=timezone)
 
1693
 
 
1694
            show_log(b,
 
1695
                     lf,
 
1696
                     file_id,
 
1697
                     verbose=verbose,
 
1698
                     direction=direction,
 
1699
                     start_revision=rev1,
 
1700
                     end_revision=rev2,
 
1701
                     search=message,
 
1702
                     limit=limit)
 
1703
        finally:
 
1704
            b.unlock()
 
1705
 
2701
1706
 
2702
1707
def get_log_format(long=False, short=False, line=False, default='long'):
2703
1708
    log_format = default
2711
1716
 
2712
1717
 
2713
1718
class cmd_touching_revisions(Command):
2714
 
    __doc__ = """Return revision-ids which affected a particular file.
 
1719
    """Return revision-ids which affected a particular file.
2715
1720
 
2716
1721
    A more user-friendly interface is "bzr log FILE".
2717
1722
    """
2722
1727
    @display_command
2723
1728
    def run(self, filename):
2724
1729
        tree, relpath = WorkingTree.open_containing(filename)
 
1730
        b = tree.branch
2725
1731
        file_id = tree.path2id(relpath)
2726
 
        b = tree.branch
2727
 
        self.add_cleanup(b.lock_read().unlock)
2728
 
        touching_revs = log.find_touching_revisions(b, file_id)
2729
 
        for revno, revision_id, what in touching_revs:
 
1732
        for revno, revision_id, what in log.find_touching_revisions(b, file_id):
2730
1733
            self.outf.write("%6d %s\n" % (revno, what))
2731
1734
 
2732
1735
 
2733
1736
class cmd_ls(Command):
2734
 
    __doc__ = """List files in a tree.
 
1737
    """List files in a tree.
2735
1738
    """
2736
1739
 
2737
1740
    _see_also = ['status', 'cat']
2738
1741
    takes_args = ['path?']
 
1742
    # TODO: Take a revision or remote path and list that tree instead.
2739
1743
    takes_options = [
2740
1744
            'verbose',
2741
1745
            'revision',
2742
 
            Option('recursive', short_name='R',
2743
 
                   help='Recurse into subdirectories.'),
 
1746
            Option('non-recursive',
 
1747
                   help='Don\'t recurse into subdirectories.'),
2744
1748
            Option('from-root',
2745
1749
                   help='Print paths relative to the root of the branch.'),
2746
 
            Option('unknown', short_name='u',
2747
 
                help='Print unknown files.'),
2748
 
            Option('versioned', help='Print versioned files.',
2749
 
                   short_name='V'),
2750
 
            Option('ignored', short_name='i',
2751
 
                help='Print ignored files.'),
2752
 
            Option('kind', short_name='k',
 
1750
            Option('unknown', help='Print unknown files.'),
 
1751
            Option('versioned', help='Print versioned files.'),
 
1752
            Option('ignored', help='Print ignored files.'),
 
1753
            Option('null',
 
1754
                   help='Write an ascii NUL (\\0) separator '
 
1755
                   'between files rather than a newline.'),
 
1756
            Option('kind',
2753
1757
                   help='List entries of a particular kind: file, directory, symlink.',
2754
1758
                   type=unicode),
2755
 
            'null',
2756
1759
            'show-ids',
2757
 
            'directory',
2758
1760
            ]
2759
1761
    @display_command
2760
1762
    def run(self, revision=None, verbose=False,
2761
 
            recursive=False, from_root=False,
 
1763
            non_recursive=False, from_root=False,
2762
1764
            unknown=False, versioned=False, ignored=False,
2763
 
            null=False, kind=None, show_ids=False, path=None, directory=None):
 
1765
            null=False, kind=None, show_ids=False, path=None):
2764
1766
 
2765
1767
        if kind and kind not in ('file', 'directory', 'symlink'):
2766
 
            raise errors.BzrCommandError(gettext('invalid kind specified'))
 
1768
            raise errors.BzrCommandError('invalid kind specified')
2767
1769
 
2768
1770
        if verbose and null:
2769
 
            raise errors.BzrCommandError(gettext('Cannot set both --verbose and --null'))
 
1771
            raise errors.BzrCommandError('Cannot set both --verbose and --null')
2770
1772
        all = not (unknown or versioned or ignored)
2771
1773
 
2772
1774
        selection = {'I':ignored, '?':unknown, 'V':versioned}
2773
1775
 
2774
1776
        if path is None:
2775
1777
            fs_path = '.'
 
1778
            prefix = ''
2776
1779
        else:
2777
1780
            if from_root:
2778
 
                raise errors.BzrCommandError(gettext('cannot specify both --from-root'
2779
 
                                             ' and PATH'))
 
1781
                raise errors.BzrCommandError('cannot specify both --from-root'
 
1782
                                             ' and PATH')
2780
1783
            fs_path = path
2781
 
        tree, branch, relpath = \
2782
 
            _open_directory_or_containing_tree_or_branch(fs_path, directory)
2783
 
 
2784
 
        # Calculate the prefix to use
2785
 
        prefix = None
 
1784
            prefix = path
 
1785
        tree, branch, relpath = bzrdir.BzrDir.open_containing_tree_or_branch(
 
1786
            fs_path)
2786
1787
        if from_root:
2787
 
            if relpath:
2788
 
                prefix = relpath + '/'
2789
 
        elif fs_path != '.' and not fs_path.endswith('/'):
2790
 
            prefix = fs_path + '/'
2791
 
 
2792
 
        if revision is not None or tree is None:
2793
 
            tree = _get_one_revision_tree('ls', revision, branch=branch)
2794
 
 
2795
 
        apply_view = False
2796
 
        if isinstance(tree, WorkingTree) and tree.supports_views():
2797
 
            view_files = tree.views.lookup_view()
2798
 
            if view_files:
2799
 
                apply_view = True
2800
 
                view_str = views.view_display_str(view_files)
2801
 
                note(gettext("Ignoring files outside view. View is %s") % view_str)
2802
 
 
2803
 
        self.add_cleanup(tree.lock_read().unlock)
2804
 
        for fp, fc, fkind, fid, entry in tree.list_files(include_root=False,
2805
 
            from_dir=relpath, recursive=recursive):
2806
 
            # Apply additional masking
2807
 
            if not all and not selection[fc]:
2808
 
                continue
2809
 
            if kind is not None and fkind != kind:
2810
 
                continue
2811
 
            if apply_view:
2812
 
                try:
2813
 
                    if relpath:
2814
 
                        fullpath = osutils.pathjoin(relpath, fp)
2815
 
                    else:
2816
 
                        fullpath = fp
2817
 
                    views.check_path_in_view(tree, fullpath)
2818
 
                except errors.FileOutsideView:
2819
 
                    continue
2820
 
 
2821
 
            # Output the entry
2822
 
            if prefix:
2823
 
                fp = osutils.pathjoin(prefix, fp)
2824
 
            kindch = entry.kind_character()
2825
 
            outstring = fp + kindch
2826
 
            ui.ui_factory.clear_term()
2827
 
            if verbose:
2828
 
                outstring = '%-8s %s' % (fc, outstring)
2829
 
                if show_ids and fid is not None:
2830
 
                    outstring = "%-50s %s" % (outstring, fid)
2831
 
                self.outf.write(outstring + '\n')
2832
 
            elif null:
2833
 
                self.outf.write(fp + '\0')
2834
 
                if show_ids:
2835
 
                    if fid is not None:
2836
 
                        self.outf.write(fid)
2837
 
                    self.outf.write('\0')
2838
 
                self.outf.flush()
2839
 
            else:
2840
 
                if show_ids:
2841
 
                    if fid is not None:
2842
 
                        my_id = fid
2843
 
                    else:
2844
 
                        my_id = ''
2845
 
                    self.outf.write('%-50s %s\n' % (outstring, my_id))
2846
 
                else:
2847
 
                    self.outf.write(outstring + '\n')
 
1788
            relpath = u''
 
1789
        elif relpath:
 
1790
            relpath += '/'
 
1791
        if revision is not None:
 
1792
            tree = branch.repository.revision_tree(
 
1793
                revision[0].in_history(branch).rev_id)
 
1794
        elif tree is None:
 
1795
            tree = branch.basis_tree()
 
1796
 
 
1797
        tree.lock_read()
 
1798
        try:
 
1799
            for fp, fc, fkind, fid, entry in tree.list_files(include_root=False):
 
1800
                if fp.startswith(relpath):
 
1801
                    fp = osutils.pathjoin(prefix, fp[len(relpath):])
 
1802
                    if non_recursive and '/' in fp:
 
1803
                        continue
 
1804
                    if not all and not selection[fc]:
 
1805
                        continue
 
1806
                    if kind is not None and fkind != kind:
 
1807
                        continue
 
1808
                    if verbose:
 
1809
                        kindch = entry.kind_character()
 
1810
                        outstring = '%-8s %s%s' % (fc, fp, kindch)
 
1811
                        if show_ids and fid is not None:
 
1812
                            outstring = "%-50s %s" % (outstring, fid)
 
1813
                        self.outf.write(outstring + '\n')
 
1814
                    elif null:
 
1815
                        self.outf.write(fp + '\0')
 
1816
                        if show_ids:
 
1817
                            if fid is not None:
 
1818
                                self.outf.write(fid)
 
1819
                            self.outf.write('\0')
 
1820
                        self.outf.flush()
 
1821
                    else:
 
1822
                        if fid is not None:
 
1823
                            my_id = fid
 
1824
                        else:
 
1825
                            my_id = ''
 
1826
                        if show_ids:
 
1827
                            self.outf.write('%-50s %s\n' % (fp, my_id))
 
1828
                        else:
 
1829
                            self.outf.write(fp + '\n')
 
1830
        finally:
 
1831
            tree.unlock()
2848
1832
 
2849
1833
 
2850
1834
class cmd_unknowns(Command):
2851
 
    __doc__ = """List unknown files.
 
1835
    """List unknown files.
2852
1836
    """
2853
1837
 
2854
1838
    hidden = True
2855
1839
    _see_also = ['ls']
2856
 
    takes_options = ['directory']
2857
1840
 
2858
1841
    @display_command
2859
 
    def run(self, directory=u'.'):
2860
 
        for f in WorkingTree.open_containing(directory)[0].unknowns():
 
1842
    def run(self):
 
1843
        for f in WorkingTree.open_containing(u'.')[0].unknowns():
2861
1844
            self.outf.write(osutils.quotefn(f) + '\n')
2862
1845
 
2863
1846
 
2864
1847
class cmd_ignore(Command):
2865
 
    __doc__ = """Ignore specified files or patterns.
2866
 
 
2867
 
    See ``bzr help patterns`` for details on the syntax of patterns.
2868
 
 
2869
 
    If a .bzrignore file does not exist, the ignore command
2870
 
    will create one and add the specified files or patterns to the newly
2871
 
    created file. The ignore command will also automatically add the 
2872
 
    .bzrignore file to be versioned. Creating a .bzrignore file without
2873
 
    the use of the ignore command will require an explicit add command.
 
1848
    """Ignore specified files or patterns.
2874
1849
 
2875
1850
    To remove patterns from the ignore list, edit the .bzrignore file.
2876
 
    After adding, editing or deleting that file either indirectly by
2877
 
    using this command or directly by using an editor, be sure to commit
2878
 
    it.
2879
 
    
2880
 
    Bazaar also supports a global ignore file ~/.bazaar/ignore. On Windows
2881
 
    the global ignore file can be found in the application data directory as
2882
 
    C:\\Documents and Settings\\<user>\\Application Data\\Bazaar\\2.0\\ignore.
2883
 
    Global ignores are not touched by this command. The global ignore file
2884
 
    can be edited directly using an editor.
2885
 
 
2886
 
    Patterns prefixed with '!' are exceptions to ignore patterns and take
2887
 
    precedence over regular ignores.  Such exceptions are used to specify
2888
 
    files that should be versioned which would otherwise be ignored.
2889
 
    
2890
 
    Patterns prefixed with '!!' act as regular ignore patterns, but have
2891
 
    precedence over the '!' exception patterns.
2892
 
 
2893
 
    :Notes: 
2894
 
        
2895
 
    * Ignore patterns containing shell wildcards must be quoted from
2896
 
      the shell on Unix.
2897
 
 
2898
 
    * Ignore patterns starting with "#" act as comments in the ignore file.
2899
 
      To ignore patterns that begin with that character, use the "RE:" prefix.
2900
 
 
2901
 
    :Examples:
2902
 
        Ignore the top level Makefile::
2903
 
 
2904
 
            bzr ignore ./Makefile
2905
 
 
2906
 
        Ignore .class files in all directories...::
2907
 
 
2908
 
            bzr ignore "*.class"
2909
 
 
2910
 
        ...but do not ignore "special.class"::
2911
 
 
2912
 
            bzr ignore "!special.class"
2913
 
 
2914
 
        Ignore files whose name begins with the "#" character::
2915
 
 
2916
 
            bzr ignore "RE:^#"
2917
 
 
2918
 
        Ignore .o files under the lib directory::
2919
 
 
2920
 
            bzr ignore "lib/**/*.o"
2921
 
 
2922
 
        Ignore .o files under the lib directory::
2923
 
 
2924
 
            bzr ignore "RE:lib/.*\.o"
2925
 
 
2926
 
        Ignore everything but the "debian" toplevel directory::
2927
 
 
2928
 
            bzr ignore "RE:(?!debian/).*"
2929
 
        
2930
 
        Ignore everything except the "local" toplevel directory,
2931
 
        but always ignore autosave files ending in ~, even under local/::
2932
 
        
2933
 
            bzr ignore "*"
2934
 
            bzr ignore "!./local"
2935
 
            bzr ignore "!!*~"
 
1851
 
 
1852
    Trailing slashes on patterns are ignored. 
 
1853
    If the pattern contains a slash or is a regular expression, it is compared 
 
1854
    to the whole path from the branch root.  Otherwise, it is compared to only
 
1855
    the last component of the path.  To match a file only in the root 
 
1856
    directory, prepend './'.
 
1857
 
 
1858
    Ignore patterns specifying absolute paths are not allowed.
 
1859
 
 
1860
    Ignore patterns may include globbing wildcards such as:
 
1861
      ? - Matches any single character except '/'
 
1862
      * - Matches 0 or more characters except '/'
 
1863
      /**/ - Matches 0 or more directories in a path
 
1864
      [a-z] - Matches a single character from within a group of characters
 
1865
 
 
1866
    Ignore patterns may also be Python regular expressions.  
 
1867
    Regular expression ignore patterns are identified by a 'RE:' prefix 
 
1868
    followed by the regular expression.  Regular expression ignore patterns
 
1869
    may not include named or numbered groups.
 
1870
 
 
1871
    Note: ignore patterns containing shell wildcards must be quoted from 
 
1872
    the shell on Unix.
 
1873
 
 
1874
    examples:
 
1875
        bzr ignore ./Makefile
 
1876
        bzr ignore '*.class'
 
1877
        bzr ignore 'lib/**/*.o'
 
1878
        bzr ignore 'RE:lib/.*\.o'
2936
1879
    """
2937
1880
 
2938
 
    _see_also = ['status', 'ignored', 'patterns']
 
1881
    _see_also = ['status', 'ignored']
2939
1882
    takes_args = ['name_pattern*']
2940
 
    takes_options = ['directory',
2941
 
        Option('default-rules',
2942
 
               help='Display the default ignore rules that bzr uses.')
 
1883
    takes_options = [
 
1884
        Option('old-default-rules',
 
1885
               help='Write out the ignore rules bzr < 0.9 always used.')
2943
1886
        ]
2944
 
 
2945
 
    def run(self, name_pattern_list=None, default_rules=None,
2946
 
            directory=u'.'):
2947
 
        from bzrlib import ignores
2948
 
        if default_rules is not None:
2949
 
            # dump the default rules and exit
2950
 
            for pattern in ignores.USER_DEFAULTS:
2951
 
                self.outf.write("%s\n" % pattern)
 
1887
    
 
1888
    def run(self, name_pattern_list=None, old_default_rules=None):
 
1889
        from bzrlib.atomicfile import AtomicFile
 
1890
        if old_default_rules is not None:
 
1891
            # dump the rules and exit
 
1892
            for pattern in ignores.OLD_DEFAULTS:
 
1893
                print pattern
2952
1894
            return
2953
1895
        if not name_pattern_list:
2954
 
            raise errors.BzrCommandError(gettext("ignore requires at least one "
2955
 
                "NAME_PATTERN or --default-rules."))
2956
 
        name_pattern_list = [globbing.normalize_pattern(p)
 
1896
            raise errors.BzrCommandError("ignore requires at least one "
 
1897
                                  "NAME_PATTERN or --old-default-rules")
 
1898
        name_pattern_list = [globbing.normalize_pattern(p) 
2957
1899
                             for p in name_pattern_list]
2958
 
        bad_patterns = ''
2959
 
        bad_patterns_count = 0
2960
 
        for p in name_pattern_list:
2961
 
            if not globbing.Globster.is_pattern_valid(p):
2962
 
                bad_patterns_count += 1
2963
 
                bad_patterns += ('\n  %s' % p)
2964
 
        if bad_patterns:
2965
 
            msg = (ngettext('Invalid ignore pattern found. %s', 
2966
 
                            'Invalid ignore patterns found. %s',
2967
 
                            bad_patterns_count) % bad_patterns)
2968
 
            ui.ui_factory.show_error(msg)
2969
 
            raise errors.InvalidPattern('')
2970
1900
        for name_pattern in name_pattern_list:
2971
 
            if (name_pattern[0] == '/' or
 
1901
            if (name_pattern[0] == '/' or 
2972
1902
                (len(name_pattern) > 1 and name_pattern[1] == ':')):
2973
 
                raise errors.BzrCommandError(gettext(
2974
 
                    "NAME_PATTERN should not be an absolute path"))
2975
 
        tree, relpath = WorkingTree.open_containing(directory)
2976
 
        ignores.tree_ignores_add_patterns(tree, name_pattern_list)
2977
 
        ignored = globbing.Globster(name_pattern_list)
2978
 
        matches = []
2979
 
        self.add_cleanup(tree.lock_read().unlock)
2980
 
        for entry in tree.list_files():
2981
 
            id = entry[3]
2982
 
            if id is not None:
2983
 
                filename = entry[0]
2984
 
                if ignored.match(filename):
2985
 
                    matches.append(filename)
2986
 
        if len(matches) > 0:
2987
 
            self.outf.write(gettext("Warning: the following files are version "
2988
 
                  "controlled and match your ignore pattern:\n%s"
2989
 
                  "\nThese files will continue to be version controlled"
2990
 
                  " unless you 'bzr remove' them.\n") % ("\n".join(matches),))
 
1903
                raise errors.BzrCommandError(
 
1904
                    "NAME_PATTERN should not be an absolute path")
 
1905
        tree, relpath = WorkingTree.open_containing(u'.')
 
1906
        ifn = tree.abspath('.bzrignore')
 
1907
        if os.path.exists(ifn):
 
1908
            f = open(ifn, 'rt')
 
1909
            try:
 
1910
                igns = f.read().decode('utf-8')
 
1911
            finally:
 
1912
                f.close()
 
1913
        else:
 
1914
            igns = ''
 
1915
 
 
1916
        # TODO: If the file already uses crlf-style termination, maybe
 
1917
        # we should use that for the newly added lines?
 
1918
 
 
1919
        if igns and igns[-1] != '\n':
 
1920
            igns += '\n'
 
1921
        for name_pattern in name_pattern_list:
 
1922
            igns += name_pattern + '\n'
 
1923
 
 
1924
        f = AtomicFile(ifn, 'wb')
 
1925
        try:
 
1926
            f.write(igns.encode('utf-8'))
 
1927
            f.commit()
 
1928
        finally:
 
1929
            f.close()
 
1930
 
 
1931
        if not tree.path2id('.bzrignore'):
 
1932
            tree.add(['.bzrignore'])
2991
1933
 
2992
1934
 
2993
1935
class cmd_ignored(Command):
2994
 
    __doc__ = """List ignored files and the patterns that matched them.
2995
 
 
2996
 
    List all the ignored files and the ignore pattern that caused the file to
2997
 
    be ignored.
2998
 
 
2999
 
    Alternatively, to list just the files::
3000
 
 
3001
 
        bzr ls --ignored
 
1936
    """List ignored files and the patterns that matched them.
3002
1937
    """
3003
1938
 
3004
 
    encoding_type = 'replace'
3005
 
    _see_also = ['ignore', 'ls']
3006
 
    takes_options = ['directory']
3007
 
 
 
1939
    _see_also = ['ignore']
3008
1940
    @display_command
3009
 
    def run(self, directory=u'.'):
3010
 
        tree = WorkingTree.open_containing(directory)[0]
3011
 
        self.add_cleanup(tree.lock_read().unlock)
3012
 
        for path, file_class, kind, file_id, entry in tree.list_files():
3013
 
            if file_class != 'I':
3014
 
                continue
3015
 
            ## XXX: Slightly inefficient since this was already calculated
3016
 
            pat = tree.is_ignored(path)
3017
 
            self.outf.write('%-50s %s\n' % (path, pat))
 
1941
    def run(self):
 
1942
        tree = WorkingTree.open_containing(u'.')[0]
 
1943
        tree.lock_read()
 
1944
        try:
 
1945
            for path, file_class, kind, file_id, entry in tree.list_files():
 
1946
                if file_class != 'I':
 
1947
                    continue
 
1948
                ## XXX: Slightly inefficient since this was already calculated
 
1949
                pat = tree.is_ignored(path)
 
1950
                print '%-50s %s' % (path, pat)
 
1951
        finally:
 
1952
            tree.unlock()
3018
1953
 
3019
1954
 
3020
1955
class cmd_lookup_revision(Command):
3021
 
    __doc__ = """Lookup the revision-id from a revision-number
 
1956
    """Lookup the revision-id from a revision-number
3022
1957
 
3023
 
    :Examples:
 
1958
    example:
3024
1959
        bzr lookup-revision 33
3025
1960
    """
3026
1961
    hidden = True
3027
1962
    takes_args = ['revno']
3028
 
    takes_options = ['directory']
3029
 
 
 
1963
    
3030
1964
    @display_command
3031
 
    def run(self, revno, directory=u'.'):
 
1965
    def run(self, revno):
3032
1966
        try:
3033
1967
            revno = int(revno)
3034
1968
        except ValueError:
3035
 
            raise errors.BzrCommandError(gettext("not a valid revision-number: %r")
3036
 
                                         % revno)
3037
 
        revid = WorkingTree.open_containing(directory)[0].branch.get_rev_id(revno)
3038
 
        self.outf.write("%s\n" % revid)
 
1969
            raise errors.BzrCommandError("not a valid revision-number: %r" % revno)
 
1970
 
 
1971
        print WorkingTree.open_containing(u'.')[0].branch.get_rev_id(revno)
3039
1972
 
3040
1973
 
3041
1974
class cmd_export(Command):
3042
 
    __doc__ = """Export current or past revision to a destination directory or archive.
 
1975
    """Export current or past revision to a destination directory or archive.
3043
1976
 
3044
1977
    If no revision is specified this exports the last committed revision.
3045
1978
 
3056
1989
 
3057
1990
    Note: Export of tree with non-ASCII filenames to zip is not supported.
3058
1991
 
3059
 
      =================       =========================
3060
 
      Supported formats       Autodetected by extension
3061
 
      =================       =========================
3062
 
         dir                         (none)
 
1992
     Supported formats       Autodetected by extension
 
1993
     -----------------       -------------------------
 
1994
         dir                            -
3063
1995
         tar                          .tar
3064
1996
         tbz2                    .tar.bz2, .tbz2
3065
1997
         tgz                      .tar.gz, .tgz
3066
1998
         zip                          .zip
3067
 
      =================       =========================
3068
1999
    """
3069
 
    encoding = 'exact'
3070
 
    takes_args = ['dest', 'branch_or_subdir?']
3071
 
    takes_options = ['directory',
 
2000
    takes_args = ['dest', 'branch?']
 
2001
    takes_options = [
3072
2002
        Option('format',
3073
2003
               help="Type of file to export to.",
3074
2004
               type=unicode),
3075
2005
        'revision',
3076
 
        Option('filters', help='Apply content filters to export the '
3077
 
                'convenient form.'),
3078
2006
        Option('root',
3079
2007
               type=str,
3080
2008
               help="Name of the root directory inside the exported file."),
3081
 
        Option('per-file-timestamps',
3082
 
               help='Set modification time of files to that of the last '
3083
 
                    'revision in which it was changed.'),
3084
2009
        ]
3085
 
    def run(self, dest, branch_or_subdir=None, revision=None, format=None,
3086
 
        root=None, filters=False, per_file_timestamps=False, directory=u'.'):
 
2010
    def run(self, dest, branch=None, revision=None, format=None, root=None):
3087
2011
        from bzrlib.export import export
3088
2012
 
3089
 
        if branch_or_subdir is None:
3090
 
            tree = WorkingTree.open_containing(directory)[0]
 
2013
        if branch is None:
 
2014
            tree = WorkingTree.open_containing(u'.')[0]
3091
2015
            b = tree.branch
3092
 
            subdir = None
3093
 
        else:
3094
 
            b, subdir = Branch.open_containing(branch_or_subdir)
3095
 
            tree = None
3096
 
 
3097
 
        rev_tree = _get_one_revision_tree('export', revision, branch=b, tree=tree)
 
2016
        else:
 
2017
            b = Branch.open(branch)
 
2018
            
 
2019
        if revision is None:
 
2020
            # should be tree.last_revision  FIXME
 
2021
            rev_id = b.last_revision()
 
2022
        else:
 
2023
            if len(revision) != 1:
 
2024
                raise errors.BzrCommandError('bzr export --revision takes exactly 1 argument')
 
2025
            rev_id = revision[0].in_history(b).rev_id
 
2026
        t = b.repository.revision_tree(rev_id)
3098
2027
        try:
3099
 
            export(rev_tree, dest, format, root, subdir, filtered=filters,
3100
 
                   per_file_timestamps=per_file_timestamps)
 
2028
            export(t, dest, format, root)
3101
2029
        except errors.NoSuchExportFormat, e:
3102
 
            raise errors.BzrCommandError(gettext('Unsupported export format: %s') % e.format)
 
2030
            raise errors.BzrCommandError('Unsupported export format: %s' % e.format)
3103
2031
 
3104
2032
 
3105
2033
class cmd_cat(Command):
3106
 
    __doc__ = """Write the contents of a file as of a given revision to standard output.
 
2034
    """Write the contents of a file as of a given revision to standard output.
3107
2035
 
3108
2036
    If no revision is nominated, the last revision is used.
3109
2037
 
3110
2038
    Note: Take care to redirect standard output when using this command on a
3111
 
    binary file.
 
2039
    binary file. 
3112
2040
    """
3113
2041
 
3114
2042
    _see_also = ['ls']
3115
 
    takes_options = ['directory',
 
2043
    takes_options = [
3116
2044
        Option('name-from-revision', help='The path name in the old tree.'),
3117
 
        Option('filters', help='Apply content filters to display the '
3118
 
                'convenience form.'),
3119
2045
        'revision',
3120
2046
        ]
3121
2047
    takes_args = ['filename']
3122
2048
    encoding_type = 'exact'
3123
2049
 
3124
2050
    @display_command
3125
 
    def run(self, filename, revision=None, name_from_revision=False,
3126
 
            filters=False, directory=None):
 
2051
    def run(self, filename, revision=None, name_from_revision=False):
3127
2052
        if revision is not None and len(revision) != 1:
3128
 
            raise errors.BzrCommandError(gettext("bzr cat --revision takes exactly"
3129
 
                                         " one revision specifier"))
3130
 
        tree, branch, relpath = \
3131
 
            _open_directory_or_containing_tree_or_branch(filename, directory)
3132
 
        self.add_cleanup(branch.lock_read().unlock)
3133
 
        return self._run(tree, branch, relpath, filename, revision,
3134
 
                         name_from_revision, filters)
3135
 
 
3136
 
    def _run(self, tree, b, relpath, filename, revision, name_from_revision,
3137
 
        filtered):
 
2053
            raise errors.BzrCommandError("bzr cat --revision takes exactly"
 
2054
                                        " one number")
 
2055
 
 
2056
        tree = None
 
2057
        try:
 
2058
            tree, b, relpath = \
 
2059
                    bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
2060
        except errors.NotBranchError:
 
2061
            pass
 
2062
 
 
2063
        if revision is not None and revision[0].get_branch() is not None:
 
2064
            b = Branch.open(revision[0].get_branch())
3138
2065
        if tree is None:
3139
2066
            tree = b.basis_tree()
3140
 
        rev_tree = _get_one_revision_tree('cat', revision, branch=b)
3141
 
        self.add_cleanup(rev_tree.lock_read().unlock)
 
2067
        if revision is None:
 
2068
            revision_id = b.last_revision()
 
2069
        else:
 
2070
            revision_id = revision[0].in_history(b).rev_id
3142
2071
 
 
2072
        cur_file_id = tree.path2id(relpath)
 
2073
        rev_tree = b.repository.revision_tree(revision_id)
3143
2074
        old_file_id = rev_tree.path2id(relpath)
3144
 
 
3145
 
        # TODO: Split out this code to something that generically finds the
3146
 
        # best id for a path across one or more trees; it's like
3147
 
        # find_ids_across_trees but restricted to find just one. -- mbp
3148
 
        # 20110705.
 
2075
        
3149
2076
        if name_from_revision:
3150
 
            # Try in revision if requested
3151
2077
            if old_file_id is None:
3152
 
                raise errors.BzrCommandError(gettext(
3153
 
                    "{0!r} is not present in revision {1}").format(
3154
 
                        filename, rev_tree.get_revision_id()))
3155
 
            else:
3156
 
                actual_file_id = old_file_id
3157
 
        else:
3158
 
            cur_file_id = tree.path2id(relpath)
3159
 
            if cur_file_id is not None and rev_tree.has_id(cur_file_id):
3160
 
                actual_file_id = cur_file_id
3161
 
            elif old_file_id is not None:
3162
 
                actual_file_id = old_file_id
3163
 
            else:
3164
 
                raise errors.BzrCommandError(gettext(
3165
 
                    "{0!r} is not present in revision {1}").format(
3166
 
                        filename, rev_tree.get_revision_id()))
3167
 
        if filtered:
3168
 
            from bzrlib.filter_tree import ContentFilterTree
3169
 
            filter_tree = ContentFilterTree(rev_tree,
3170
 
                rev_tree._content_filter_stack)
3171
 
            content = filter_tree.get_file_text(actual_file_id)
3172
 
        else:
3173
 
            content = rev_tree.get_file_text(actual_file_id)
3174
 
        self.cleanup_now()
3175
 
        self.outf.write(content)
 
2078
                raise errors.BzrCommandError("%r is not present in revision %s"
 
2079
                                                % (filename, revision_id))
 
2080
            else:
 
2081
                rev_tree.print_file(old_file_id)
 
2082
        elif cur_file_id is not None:
 
2083
            rev_tree.print_file(cur_file_id)
 
2084
        elif old_file_id is not None:
 
2085
            rev_tree.print_file(old_file_id)
 
2086
        else:
 
2087
            raise errors.BzrCommandError("%r is not present in revision %s" %
 
2088
                                         (filename, revision_id))
3176
2089
 
3177
2090
 
3178
2091
class cmd_local_time_offset(Command):
3179
 
    __doc__ = """Show the offset in seconds from GMT to local time."""
3180
 
    hidden = True
 
2092
    """Show the offset in seconds from GMT to local time."""
 
2093
    hidden = True    
3181
2094
    @display_command
3182
2095
    def run(self):
3183
 
        self.outf.write("%s\n" % osutils.local_time_offset())
 
2096
        print osutils.local_time_offset()
3184
2097
 
3185
2098
 
3186
2099
 
3187
2100
class cmd_commit(Command):
3188
 
    __doc__ = """Commit changes into a new revision.
3189
 
 
3190
 
    An explanatory message needs to be given for each commit. This is
3191
 
    often done by using the --message option (getting the message from the
3192
 
    command line) or by using the --file option (getting the message from
3193
 
    a file). If neither of these options is given, an editor is opened for
3194
 
    the user to enter the message. To see the changed files in the
3195
 
    boilerplate text loaded into the editor, use the --show-diff option.
3196
 
 
3197
 
    By default, the entire tree is committed and the person doing the
3198
 
    commit is assumed to be the author. These defaults can be overridden
3199
 
    as explained below.
3200
 
 
3201
 
    :Selective commits:
3202
 
 
3203
 
      If selected files are specified, only changes to those files are
3204
 
      committed.  If a directory is specified then the directory and
3205
 
      everything within it is committed.
3206
 
  
3207
 
      When excludes are given, they take precedence over selected files.
3208
 
      For example, to commit only changes within foo, but not changes
3209
 
      within foo/bar::
3210
 
  
3211
 
        bzr commit foo -x foo/bar
3212
 
  
3213
 
      A selective commit after a merge is not yet supported.
3214
 
 
3215
 
    :Custom authors:
3216
 
 
3217
 
      If the author of the change is not the same person as the committer,
3218
 
      you can specify the author's name using the --author option. The
3219
 
      name should be in the same format as a committer-id, e.g.
3220
 
      "John Doe <jdoe@example.com>". If there is more than one author of
3221
 
      the change you can specify the option multiple times, once for each
3222
 
      author.
3223
 
  
3224
 
    :Checks:
3225
 
 
3226
 
      A common mistake is to forget to add a new file or directory before
3227
 
      running the commit command. The --strict option checks for unknown
3228
 
      files and aborts the commit if any are found. More advanced pre-commit
3229
 
      checks can be implemented by defining hooks. See ``bzr help hooks``
3230
 
      for details.
3231
 
 
3232
 
    :Things to note:
3233
 
 
3234
 
      If you accidentially commit the wrong changes or make a spelling
3235
 
      mistake in the commit message say, you can use the uncommit command
3236
 
      to undo it. See ``bzr help uncommit`` for details.
3237
 
 
3238
 
      Hooks can also be configured to run after a commit. This allows you
3239
 
      to trigger updates to external systems like bug trackers. The --fixes
3240
 
      option can be used to record the association between a revision and
3241
 
      one or more bugs. See ``bzr help bugs`` for details.
 
2101
    """Commit changes into a new revision.
 
2102
    
 
2103
    If no arguments are given, the entire tree is committed.
 
2104
 
 
2105
    If selected files are specified, only changes to those files are
 
2106
    committed.  If a directory is specified then the directory and everything 
 
2107
    within it is committed.
 
2108
 
 
2109
    A selected-file commit may fail in some cases where the committed
 
2110
    tree would be invalid. Consider::
 
2111
 
 
2112
      bzr init foo
 
2113
      mkdir foo/bar
 
2114
      bzr add foo/bar
 
2115
      bzr commit foo -m "committing foo"
 
2116
      bzr mv foo/bar foo/baz
 
2117
      mkdir foo/bar
 
2118
      bzr add foo/bar
 
2119
      bzr commit foo/bar -m "committing bar but not baz"
 
2120
 
 
2121
    In the example above, the last commit will fail by design. This gives
 
2122
    the user the opportunity to decide whether they want to commit the
 
2123
    rename at the same time, separately first, or not at all. (As a general
 
2124
    rule, when in doubt, Bazaar has a policy of Doing the Safe Thing.)
 
2125
 
 
2126
    Note: A selected-file commit after a merge is not yet supported.
3242
2127
    """
3243
 
 
3244
 
    _see_also = ['add', 'bugs', 'hooks', 'uncommit']
 
2128
    # TODO: Run hooks on tree to-be-committed, and after commit.
 
2129
 
 
2130
    # TODO: Strict commit that fails if there are deleted files.
 
2131
    #       (what does "deleted files" mean ??)
 
2132
 
 
2133
    # TODO: Give better message for -s, --summary, used by tla people
 
2134
 
 
2135
    # XXX: verbose currently does nothing
 
2136
 
 
2137
    _see_also = ['bugs', 'uncommit']
3245
2138
    takes_args = ['selected*']
3246
2139
    takes_options = [
3247
 
            ListOption('exclude', type=str, short_name='x',
3248
 
                help="Do not consider changes made to a given path."),
3249
2140
            Option('message', type=unicode,
3250
2141
                   short_name='m',
3251
2142
                   help="Description of the new revision."),
3259
2150
             Option('strict',
3260
2151
                    help="Refuse to commit if there are unknown "
3261
2152
                    "files in the working tree."),
3262
 
             Option('commit-time', type=str,
3263
 
                    help="Manually set a commit time using commit date "
3264
 
                    "format, e.g. '2009-10-10 08:00:00 +0100'."),
3265
2153
             ListOption('fixes', type=str,
3266
 
                    help="Mark a bug as being fixed by this revision "
3267
 
                         "(see \"bzr help bugs\")."),
3268
 
             ListOption('author', type=unicode,
3269
 
                    help="Set the author's name, if it's different "
3270
 
                         "from the committer."),
 
2154
                    help="Mark a bug as being fixed by this revision."),
3271
2155
             Option('local',
3272
2156
                    help="Perform a local commit in a bound "
3273
2157
                         "branch.  Local commits are not pushed to "
3274
2158
                         "the master branch until a normal commit "
3275
2159
                         "is performed."
3276
2160
                    ),
3277
 
             Option('show-diff', short_name='p',
3278
 
                    help='When no message is supplied, show the diff along'
3279
 
                    ' with the status summary in the message editor.'),
3280
 
             Option('lossy', 
3281
 
                    help='When committing to a foreign version control '
3282
 
                    'system do not push data that can not be natively '
3283
 
                    'represented.'),
3284
2161
             ]
3285
2162
    aliases = ['ci', 'checkin']
3286
2163
 
3287
 
    def _iter_bug_fix_urls(self, fixes, branch):
3288
 
        default_bugtracker  = None
 
2164
    def _get_bug_fix_properties(self, fixes, branch):
 
2165
        properties = []
3289
2166
        # Configure the properties for bug fixing attributes.
3290
2167
        for fixed_bug in fixes:
3291
2168
            tokens = fixed_bug.split(':')
3292
 
            if len(tokens) == 1:
3293
 
                if default_bugtracker is None:
3294
 
                    branch_config = branch.get_config()
3295
 
                    default_bugtracker = branch_config.get_user_option(
3296
 
                        "bugtracker")
3297
 
                if default_bugtracker is None:
3298
 
                    raise errors.BzrCommandError(gettext(
3299
 
                        "No tracker specified for bug %s. Use the form "
3300
 
                        "'tracker:id' or specify a default bug tracker "
3301
 
                        "using the `bugtracker` option.\nSee "
3302
 
                        "\"bzr help bugs\" for more information on this "
3303
 
                        "feature. Commit refused.") % fixed_bug)
3304
 
                tag = default_bugtracker
3305
 
                bug_id = tokens[0]
3306
 
            elif len(tokens) != 2:
3307
 
                raise errors.BzrCommandError(gettext(
3308
 
                    "Invalid bug %s. Must be in the form of 'tracker:id'. "
3309
 
                    "See \"bzr help bugs\" for more information on this "
3310
 
                    "feature.\nCommit refused.") % fixed_bug)
3311
 
            else:
3312
 
                tag, bug_id = tokens
 
2169
            if len(tokens) != 2:
 
2170
                raise errors.BzrCommandError(
 
2171
                    "Invalid bug %s. Must be in the form of 'tag:id'. "
 
2172
                    "Commit refused." % fixed_bug)
 
2173
            tag, bug_id = tokens
3313
2174
            try:
3314
 
                yield bugtracker.get_bug_url(tag, branch, bug_id)
 
2175
                bug_url = bugtracker.get_bug_url(tag, branch, bug_id)
3315
2176
            except errors.UnknownBugTrackerAbbreviation:
3316
 
                raise errors.BzrCommandError(gettext(
3317
 
                    'Unrecognized bug %s. Commit refused.') % fixed_bug)
3318
 
            except errors.MalformedBugIdentifier, e:
3319
 
                raise errors.BzrCommandError(gettext(
3320
 
                    "%s\nCommit refused.") % (str(e),))
3321
 
 
3322
 
    def run(self, message=None, file=None, verbose=False, selected_list=None,
3323
 
            unchanged=False, strict=False, local=False, fixes=None,
3324
 
            author=None, show_diff=False, exclude=None, commit_time=None,
3325
 
            lossy=False):
3326
 
        from bzrlib.errors import (
3327
 
            PointlessCommit,
3328
 
            ConflictsInTree,
3329
 
            StrictCommitFailed
3330
 
        )
3331
 
        from bzrlib.msgeditor import (
3332
 
            edit_commit_message_encoded,
3333
 
            generate_commit_message_template,
3334
 
            make_commit_message_template_encoded,
3335
 
            set_commit_message,
3336
 
        )
3337
 
 
3338
 
        commit_stamp = offset = None
3339
 
        if commit_time is not None:
3340
 
            try:
3341
 
                commit_stamp, offset = timestamp.parse_patch_date(commit_time)
3342
 
            except ValueError, e:
3343
 
                raise errors.BzrCommandError(gettext(
3344
 
                    "Could not parse --commit-time: " + str(e)))
 
2177
                raise errors.BzrCommandError(
 
2178
                    'Unrecognized bug %s. Commit refused.' % fixed_bug)
 
2179
            except errors.MalformedBugIdentifier:
 
2180
                raise errors.BzrCommandError(
 
2181
                    "Invalid bug identifier for %s. Commit refused."
 
2182
                    % fixed_bug)
 
2183
            properties.append('%s fixed' % bug_url)
 
2184
        return '\n'.join(properties)
 
2185
 
 
2186
    def run(self, message=None, file=None, verbose=True, selected_list=None,
 
2187
            unchanged=False, strict=False, local=False, fixes=None):
 
2188
        from bzrlib.commit import (NullCommitReporter, ReportCommitToLog)
 
2189
        from bzrlib.errors import (PointlessCommit, ConflictsInTree,
 
2190
                StrictCommitFailed)
 
2191
        from bzrlib.msgeditor import edit_commit_message, \
 
2192
                make_commit_message_template
 
2193
 
 
2194
        # TODO: Need a blackbox test for invoking the external editor; may be
 
2195
        # slightly problematic to run this cross-platform.
 
2196
 
 
2197
        # TODO: do more checks that the commit will succeed before 
 
2198
        # spending the user's valuable time typing a commit message.
3345
2199
 
3346
2200
        properties = {}
3347
2201
 
3348
 
        tree, selected_list = WorkingTree.open_containing_paths(selected_list)
 
2202
        tree, selected_list = tree_files(selected_list)
3349
2203
        if selected_list == ['']:
3350
2204
            # workaround - commit of root of tree should be exactly the same
3351
2205
            # as just default commit in that tree, and succeed even though
3352
2206
            # selected-file merge commit is not done yet
3353
2207
            selected_list = []
3354
2208
 
3355
 
        if fixes is None:
3356
 
            fixes = []
3357
 
        bug_property = bugtracker.encode_fixes_bug_urls(
3358
 
            self._iter_bug_fix_urls(fixes, tree.branch))
 
2209
        bug_property = self._get_bug_fix_properties(fixes, tree.branch)
3359
2210
        if bug_property:
3360
2211
            properties['bugs'] = bug_property
3361
2212
 
3362
2213
        if local and not tree.branch.get_bound_location():
3363
2214
            raise errors.LocalRequiresBoundBranch()
3364
2215
 
3365
 
        if message is not None:
3366
 
            try:
3367
 
                file_exists = osutils.lexists(message)
3368
 
            except UnicodeError:
3369
 
                # The commit message contains unicode characters that can't be
3370
 
                # represented in the filesystem encoding, so that can't be a
3371
 
                # file.
3372
 
                file_exists = False
3373
 
            if file_exists:
3374
 
                warning_msg = (
3375
 
                    'The commit message is a file name: "%(f)s".\n'
3376
 
                    '(use --file "%(f)s" to take commit message from that file)'
3377
 
                    % { 'f': message })
3378
 
                ui.ui_factory.show_warning(warning_msg)
3379
 
            if '\r' in message:
3380
 
                message = message.replace('\r\n', '\n')
3381
 
                message = message.replace('\r', '\n')
3382
 
            if file:
3383
 
                raise errors.BzrCommandError(gettext(
3384
 
                    "please specify either --message or --file"))
3385
 
 
3386
2216
        def get_message(commit_obj):
3387
2217
            """Callback to get commit message"""
 
2218
            my_message = message
 
2219
            if my_message is None and not file:
 
2220
                template = make_commit_message_template(tree, selected_list)
 
2221
                my_message = edit_commit_message(template)
 
2222
                if my_message is None:
 
2223
                    raise errors.BzrCommandError("please specify a commit"
 
2224
                        " message with either --message or --file")
 
2225
            elif my_message and file:
 
2226
                raise errors.BzrCommandError(
 
2227
                    "please specify either --message or --file")
3388
2228
            if file:
3389
 
                f = open(file)
3390
 
                try:
3391
 
                    my_message = f.read().decode(osutils.get_user_encoding())
3392
 
                finally:
3393
 
                    f.close()
3394
 
            elif message is not None:
3395
 
                my_message = message
3396
 
            else:
3397
 
                # No message supplied: make one up.
3398
 
                # text is the status of the tree
3399
 
                text = make_commit_message_template_encoded(tree,
3400
 
                        selected_list, diff=show_diff,
3401
 
                        output_encoding=osutils.get_user_encoding())
3402
 
                # start_message is the template generated from hooks
3403
 
                # XXX: Warning - looks like hooks return unicode,
3404
 
                # make_commit_message_template_encoded returns user encoding.
3405
 
                # We probably want to be using edit_commit_message instead to
3406
 
                # avoid this.
3407
 
                my_message = set_commit_message(commit_obj)
3408
 
                if my_message is None:
3409
 
                    start_message = generate_commit_message_template(commit_obj)
3410
 
                    my_message = edit_commit_message_encoded(text,
3411
 
                        start_message=start_message)
3412
 
                if my_message is None:
3413
 
                    raise errors.BzrCommandError(gettext("please specify a commit"
3414
 
                        " message with either --message or --file"))
3415
 
                if my_message == "":
3416
 
                    raise errors.BzrCommandError(gettext("Empty commit message specified."
3417
 
                            " Please specify a commit message with either"
3418
 
                            " --message or --file or leave a blank message"
3419
 
                            " with --message \"\"."))
 
2229
                my_message = codecs.open(file, 'rt', 
 
2230
                                         bzrlib.user_encoding).read()
 
2231
            if my_message == "":
 
2232
                raise errors.BzrCommandError("empty commit message specified")
3420
2233
            return my_message
3421
2234
 
3422
 
        # The API permits a commit with a filter of [] to mean 'select nothing'
3423
 
        # but the command line should not do that.
3424
 
        if not selected_list:
3425
 
            selected_list = None
 
2235
        if verbose:
 
2236
            reporter = ReportCommitToLog()
 
2237
        else:
 
2238
            reporter = NullCommitReporter()
 
2239
 
3426
2240
        try:
3427
2241
            tree.commit(message_callback=get_message,
3428
2242
                        specific_files=selected_list,
3429
2243
                        allow_pointless=unchanged, strict=strict, local=local,
3430
 
                        reporter=None, verbose=verbose, revprops=properties,
3431
 
                        authors=author, timestamp=commit_stamp,
3432
 
                        timezone=offset,
3433
 
                        exclude=tree.safe_relpath_files(exclude),
3434
 
                        lossy=lossy)
 
2244
                        reporter=reporter, revprops=properties)
3435
2245
        except PointlessCommit:
3436
 
            raise errors.BzrCommandError(gettext("No changes to commit."
3437
 
                " Please 'bzr add' the files you want to commit, or use"
3438
 
                " --unchanged to force an empty commit."))
 
2246
            # FIXME: This should really happen before the file is read in;
 
2247
            # perhaps prepare the commit; get the message; then actually commit
 
2248
            raise errors.BzrCommandError("no changes to commit."
 
2249
                              " use --unchanged to commit anyhow")
3439
2250
        except ConflictsInTree:
3440
 
            raise errors.BzrCommandError(gettext('Conflicts detected in working '
 
2251
            raise errors.BzrCommandError('Conflicts detected in working '
3441
2252
                'tree.  Use "bzr conflicts" to list, "bzr resolve FILE" to'
3442
 
                ' resolve.'))
 
2253
                ' resolve.')
3443
2254
        except StrictCommitFailed:
3444
 
            raise errors.BzrCommandError(gettext("Commit refused because there are"
3445
 
                              " unknown files in the working tree."))
 
2255
            raise errors.BzrCommandError("Commit refused because there are"
 
2256
                              " unknown files in the working tree.")
3446
2257
        except errors.BoundBranchOutOfDate, e:
3447
 
            e.extra_help = (gettext("\n"
3448
 
                'To commit to master branch, run update and then commit.\n'
3449
 
                'You can also pass --local to commit to continue working '
3450
 
                'disconnected.'))
3451
 
            raise
 
2258
            raise errors.BzrCommandError(str(e) + "\n"
 
2259
            'To commit to master branch, run update and then commit.\n'
 
2260
            'You can also pass --local to commit to continue working '
 
2261
            'disconnected.')
3452
2262
 
3453
2263
 
3454
2264
class cmd_check(Command):
3455
 
    __doc__ = """Validate working tree structure, branch consistency and repository history.
3456
 
 
3457
 
    This command checks various invariants about branch and repository storage
3458
 
    to detect data corruption or bzr bugs.
3459
 
 
3460
 
    The working tree and branch checks will only give output if a problem is
3461
 
    detected. The output fields of the repository check are:
3462
 
 
3463
 
    revisions
3464
 
        This is just the number of revisions checked.  It doesn't
3465
 
        indicate a problem.
3466
 
 
3467
 
    versionedfiles
3468
 
        This is just the number of versionedfiles checked.  It
3469
 
        doesn't indicate a problem.
3470
 
 
3471
 
    unreferenced ancestors
3472
 
        Texts that are ancestors of other texts, but
3473
 
        are not properly referenced by the revision ancestry.  This is a
3474
 
        subtle problem that Bazaar can work around.
3475
 
 
3476
 
    unique file texts
3477
 
        This is the total number of unique file contents
3478
 
        seen in the checked revisions.  It does not indicate a problem.
3479
 
 
3480
 
    repeated file texts
3481
 
        This is the total number of repeated texts seen
3482
 
        in the checked revisions.  Texts can be repeated when their file
3483
 
        entries are modified, but the file contents are not.  It does not
3484
 
        indicate a problem.
3485
 
 
3486
 
    If no restrictions are specified, all Bazaar data that is found at the given
3487
 
    location will be checked.
3488
 
 
3489
 
    :Examples:
3490
 
 
3491
 
        Check the tree and branch at 'foo'::
3492
 
 
3493
 
            bzr check --tree --branch foo
3494
 
 
3495
 
        Check only the repository at 'bar'::
3496
 
 
3497
 
            bzr check --repo bar
3498
 
 
3499
 
        Check everything at 'baz'::
3500
 
 
3501
 
            bzr check baz
 
2265
    """Validate consistency of branch history.
 
2266
 
 
2267
    This command checks various invariants about the branch storage to
 
2268
    detect data corruption or bzr bugs.
3502
2269
    """
3503
2270
 
3504
2271
    _see_also = ['reconcile']
3505
 
    takes_args = ['path?']
3506
 
    takes_options = ['verbose',
3507
 
                     Option('branch', help="Check the branch related to the"
3508
 
                                           " current directory."),
3509
 
                     Option('repo', help="Check the repository related to the"
3510
 
                                         " current directory."),
3511
 
                     Option('tree', help="Check the working tree related to"
3512
 
                                         " the current directory.")]
 
2272
    takes_args = ['branch?']
 
2273
    takes_options = ['verbose']
3513
2274
 
3514
 
    def run(self, path=None, verbose=False, branch=False, repo=False,
3515
 
            tree=False):
3516
 
        from bzrlib.check import check_dwim
3517
 
        if path is None:
3518
 
            path = '.'
3519
 
        if not branch and not repo and not tree:
3520
 
            branch = repo = tree = True
3521
 
        check_dwim(path, verbose, do_branch=branch, do_repo=repo, do_tree=tree)
 
2275
    def run(self, branch=None, verbose=False):
 
2276
        from bzrlib.check import check
 
2277
        if branch is None:
 
2278
            tree = WorkingTree.open_containing()[0]
 
2279
            branch = tree.branch
 
2280
        else:
 
2281
            branch = Branch.open(branch)
 
2282
        check(branch, verbose)
3522
2283
 
3523
2284
 
3524
2285
class cmd_upgrade(Command):
3525
 
    __doc__ = """Upgrade a repository, branch or working tree to a newer format.
3526
 
 
3527
 
    When the default format has changed after a major new release of
3528
 
    Bazaar, you may be informed during certain operations that you
3529
 
    should upgrade. Upgrading to a newer format may improve performance
3530
 
    or make new features available. It may however limit interoperability
3531
 
    with older repositories or with older versions of Bazaar.
3532
 
 
3533
 
    If you wish to upgrade to a particular format rather than the
3534
 
    current default, that can be specified using the --format option.
3535
 
    As a consequence, you can use the upgrade command this way to
3536
 
    "downgrade" to an earlier format, though some conversions are
3537
 
    a one way process (e.g. changing from the 1.x default to the
3538
 
    2.x default) so downgrading is not always possible.
3539
 
 
3540
 
    A backup.bzr.~#~ directory is created at the start of the conversion
3541
 
    process (where # is a number). By default, this is left there on
3542
 
    completion. If the conversion fails, delete the new .bzr directory
3543
 
    and rename this one back in its place. Use the --clean option to ask
3544
 
    for the backup.bzr directory to be removed on successful conversion.
3545
 
    Alternatively, you can delete it by hand if everything looks good
3546
 
    afterwards.
3547
 
 
3548
 
    If the location given is a shared repository, dependent branches
3549
 
    are also converted provided the repository converts successfully.
3550
 
    If the conversion of a branch fails, remaining branches are still
3551
 
    tried.
3552
 
 
3553
 
    For more information on upgrades, see the Bazaar Upgrade Guide,
3554
 
    http://doc.bazaar.canonical.com/latest/en/upgrade-guide/.
 
2286
    """Upgrade branch storage to current format.
 
2287
 
 
2288
    The check command or bzr developers may sometimes advise you to run
 
2289
    this command. When the default format has changed you may also be warned
 
2290
    during other operations to upgrade.
3555
2291
    """
3556
2292
 
3557
 
    _see_also = ['check', 'reconcile', 'formats']
 
2293
    _see_also = ['check']
3558
2294
    takes_args = ['url?']
3559
2295
    takes_options = [
3560
 
        RegistryOption('format',
3561
 
            help='Upgrade to a specific format.  See "bzr help'
3562
 
                 ' formats" for details.',
3563
 
            lazy_registry=('bzrlib.bzrdir', 'format_registry'),
3564
 
            converter=lambda name: bzrdir.format_registry.make_bzrdir(name),
3565
 
            value_switches=True, title='Branch format'),
3566
 
        Option('clean',
3567
 
            help='Remove the backup.bzr directory if successful.'),
3568
 
        Option('dry-run',
3569
 
            help="Show what would be done, but don't actually do anything."),
3570
 
    ]
 
2296
                    RegistryOption('format',
 
2297
                        help='Upgrade to a specific format.  See "bzr help'
 
2298
                             ' formats" for details.',
 
2299
                        registry=bzrdir.format_registry,
 
2300
                        converter=bzrdir.format_registry.make_bzrdir,
 
2301
                        value_switches=True, title='Branch format'),
 
2302
                    ]
3571
2303
 
3572
 
    def run(self, url='.', format=None, clean=False, dry_run=False):
 
2304
    def run(self, url='.', format=None):
3573
2305
        from bzrlib.upgrade import upgrade
3574
 
        exceptions = upgrade(url, format, clean_up=clean, dry_run=dry_run)
3575
 
        if exceptions:
3576
 
            if len(exceptions) == 1:
3577
 
                # Compatibility with historical behavior
3578
 
                raise exceptions[0]
3579
 
            else:
3580
 
                return 3
 
2306
        if format is None:
 
2307
            format = bzrdir.format_registry.make_bzrdir('default')
 
2308
        upgrade(url, format)
3581
2309
 
3582
2310
 
3583
2311
class cmd_whoami(Command):
3584
 
    __doc__ = """Show or set bzr user id.
3585
 
 
3586
 
    :Examples:
3587
 
        Show the email of the current user::
3588
 
 
3589
 
            bzr whoami --email
3590
 
 
3591
 
        Set the current user::
3592
 
 
3593
 
            bzr whoami "Frank Chu <fchu@example.com>"
 
2312
    """Show or set bzr user id.
 
2313
    
 
2314
    examples:
 
2315
        bzr whoami --email
 
2316
        bzr whoami 'Frank Chu <fchu@example.com>'
3594
2317
    """
3595
 
    takes_options = [ 'directory',
3596
 
                      Option('email',
 
2318
    takes_options = [ Option('email',
3597
2319
                             help='Display email address only.'),
3598
2320
                      Option('branch',
3599
2321
                             help='Set identity for the current branch instead of '
3601
2323
                    ]
3602
2324
    takes_args = ['name?']
3603
2325
    encoding_type = 'replace'
3604
 
 
 
2326
    
3605
2327
    @display_command
3606
 
    def run(self, email=False, branch=False, name=None, directory=None):
 
2328
    def run(self, email=False, branch=False, name=None):
3607
2329
        if name is None:
3608
 
            if directory is None:
3609
 
                # use branch if we're inside one; otherwise global config
3610
 
                try:
3611
 
                    c = Branch.open_containing(u'.')[0].get_config()
3612
 
                except errors.NotBranchError:
3613
 
                    c = _mod_config.GlobalConfig()
3614
 
            else:
3615
 
                c = Branch.open(directory).get_config()
 
2330
            # use branch if we're inside one; otherwise global config
 
2331
            try:
 
2332
                c = Branch.open_containing('.')[0].get_config()
 
2333
            except errors.NotBranchError:
 
2334
                c = config.GlobalConfig()
3616
2335
            if email:
3617
2336
                self.outf.write(c.user_email() + '\n')
3618
2337
            else:
3619
2338
                self.outf.write(c.username() + '\n')
3620
2339
            return
3621
2340
 
3622
 
        if email:
3623
 
            raise errors.BzrCommandError(gettext("--email can only be used to display existing "
3624
 
                                         "identity"))
3625
 
 
3626
2341
        # display a warning if an email address isn't included in the given name.
3627
2342
        try:
3628
 
            _mod_config.extract_email_address(name)
 
2343
            config.extract_email_address(name)
3629
2344
        except errors.NoEmailInUsername, e:
3630
2345
            warning('"%s" does not seem to contain an email address.  '
3631
2346
                    'This is allowed, but not recommended.', name)
3632
 
 
 
2347
        
3633
2348
        # use global config unless --branch given
3634
2349
        if branch:
3635
 
            if directory is None:
3636
 
                c = Branch.open_containing(u'.')[0].get_config()
3637
 
            else:
3638
 
                c = Branch.open(directory).get_config()
 
2350
            c = Branch.open_containing('.')[0].get_config()
3639
2351
        else:
3640
 
            c = _mod_config.GlobalConfig()
 
2352
            c = config.GlobalConfig()
3641
2353
        c.set_user_option('email', name)
3642
2354
 
3643
2355
 
3644
2356
class cmd_nick(Command):
3645
 
    __doc__ = """Print or set the branch nickname.
3646
 
 
3647
 
    If unset, the tree root directory name is used as the nickname.
3648
 
    To print the current nickname, execute with no argument.
3649
 
 
3650
 
    Bound branches use the nickname of its master branch unless it is set
3651
 
    locally.
 
2357
    """Print or set the branch nickname.  
 
2358
 
 
2359
    If unset, the tree root directory name is used as the nickname
 
2360
    To print the current nickname, execute with no argument.  
3652
2361
    """
3653
2362
 
3654
2363
    _see_also = ['info']
3655
2364
    takes_args = ['nickname?']
3656
 
    takes_options = ['directory']
3657
 
    def run(self, nickname=None, directory=u'.'):
3658
 
        branch = Branch.open_containing(directory)[0]
 
2365
    def run(self, nickname=None):
 
2366
        branch = Branch.open_containing(u'.')[0]
3659
2367
        if nickname is None:
3660
2368
            self.printme(branch)
3661
2369
        else:
3663
2371
 
3664
2372
    @display_command
3665
2373
    def printme(self, branch):
3666
 
        self.outf.write('%s\n' % branch.nick)
3667
 
 
3668
 
 
3669
 
class cmd_alias(Command):
3670
 
    __doc__ = """Set/unset and display aliases.
3671
 
 
3672
 
    :Examples:
3673
 
        Show the current aliases::
3674
 
 
3675
 
            bzr alias
3676
 
 
3677
 
        Show the alias specified for 'll'::
3678
 
 
3679
 
            bzr alias ll
3680
 
 
3681
 
        Set an alias for 'll'::
3682
 
 
3683
 
            bzr alias ll="log --line -r-10..-1"
3684
 
 
3685
 
        To remove an alias for 'll'::
3686
 
 
3687
 
            bzr alias --remove ll
3688
 
 
3689
 
    """
3690
 
    takes_args = ['name?']
3691
 
    takes_options = [
3692
 
        Option('remove', help='Remove the alias.'),
3693
 
        ]
3694
 
 
3695
 
    def run(self, name=None, remove=False):
3696
 
        if remove:
3697
 
            self.remove_alias(name)
3698
 
        elif name is None:
3699
 
            self.print_aliases()
3700
 
        else:
3701
 
            equal_pos = name.find('=')
3702
 
            if equal_pos == -1:
3703
 
                self.print_alias(name)
3704
 
            else:
3705
 
                self.set_alias(name[:equal_pos], name[equal_pos+1:])
3706
 
 
3707
 
    def remove_alias(self, alias_name):
3708
 
        if alias_name is None:
3709
 
            raise errors.BzrCommandError(gettext(
3710
 
                'bzr alias --remove expects an alias to remove.'))
3711
 
        # If alias is not found, print something like:
3712
 
        # unalias: foo: not found
3713
 
        c = _mod_config.GlobalConfig()
3714
 
        c.unset_alias(alias_name)
3715
 
 
3716
 
    @display_command
3717
 
    def print_aliases(self):
3718
 
        """Print out the defined aliases in a similar format to bash."""
3719
 
        aliases = _mod_config.GlobalConfig().get_aliases()
3720
 
        for key, value in sorted(aliases.iteritems()):
3721
 
            self.outf.write('bzr alias %s="%s"\n' % (key, value))
3722
 
 
3723
 
    @display_command
3724
 
    def print_alias(self, alias_name):
3725
 
        from bzrlib.commands import get_alias
3726
 
        alias = get_alias(alias_name)
3727
 
        if alias is None:
3728
 
            self.outf.write("bzr alias: %s: not found\n" % alias_name)
3729
 
        else:
3730
 
            self.outf.write(
3731
 
                'bzr alias %s="%s"\n' % (alias_name, ' '.join(alias)))
3732
 
 
3733
 
    def set_alias(self, alias_name, alias_command):
3734
 
        """Save the alias in the global config."""
3735
 
        c = _mod_config.GlobalConfig()
3736
 
        c.set_alias(alias_name, alias_command)
 
2374
        print branch.nick
3737
2375
 
3738
2376
 
3739
2377
class cmd_selftest(Command):
3740
 
    __doc__ = """Run internal test suite.
3741
 
 
 
2378
    """Run internal test suite.
 
2379
    
3742
2380
    If arguments are given, they are regular expressions that say which tests
3743
2381
    should run.  Tests matching any expression are run, and other tests are
3744
2382
    not run.
3767
2405
    modified by plugins will not be tested, and tests provided by plugins will
3768
2406
    not be run.
3769
2407
 
3770
 
    Tests that need working space on disk use a common temporary directory,
 
2408
    Tests that need working space on disk use a common temporary directory, 
3771
2409
    typically inside $TMPDIR or /tmp.
3772
2410
 
3773
 
    If you set BZR_TEST_PDB=1 when running selftest, failing tests will drop
3774
 
    into a pdb postmortem session.
3775
 
 
3776
 
    The --coverage=DIRNAME global option produces a report with covered code
3777
 
    indicated.
3778
 
 
3779
 
    :Examples:
3780
 
        Run only tests relating to 'ignore'::
3781
 
 
3782
 
            bzr selftest ignore
3783
 
 
3784
 
        Disable plugins and list tests as they're run::
3785
 
 
3786
 
            bzr --no-plugins selftest -v
 
2411
    examples::
 
2412
        bzr selftest ignore
 
2413
            run only tests relating to 'ignore'
 
2414
        bzr --no-plugins selftest -v
 
2415
            disable plugins and list tests as they're run
3787
2416
    """
3788
2417
    # NB: this is used from the class without creating an instance, which is
3789
2418
    # why it does not have a self parameter.
3790
2419
    def get_transport_type(typestring):
3791
2420
        """Parse and return a transport specifier."""
3792
2421
        if typestring == "sftp":
3793
 
            from bzrlib.tests import stub_sftp
3794
 
            return stub_sftp.SFTPAbsoluteServer
3795
 
        elif typestring == "memory":
3796
 
            from bzrlib.tests import test_server
3797
 
            return memory.MemoryServer
3798
 
        elif typestring == "fakenfs":
3799
 
            from bzrlib.tests import test_server
3800
 
            return test_server.FakeNFSServer
 
2422
            from bzrlib.transport.sftp import SFTPAbsoluteServer
 
2423
            return SFTPAbsoluteServer
 
2424
        if typestring == "memory":
 
2425
            from bzrlib.transport.memory import MemoryServer
 
2426
            return MemoryServer
 
2427
        if typestring == "fakenfs":
 
2428
            from bzrlib.transport.fakenfs import FakeNFSServer
 
2429
            return FakeNFSServer
3801
2430
        msg = "No known transport type %s. Supported types are: sftp\n" %\
3802
2431
            (typestring)
3803
2432
        raise errors.BzrCommandError(msg)
3814
2443
                                 'throughout the test suite.',
3815
2444
                            type=get_transport_type),
3816
2445
                     Option('benchmark',
3817
 
                            help='Run the benchmarks rather than selftests.',
3818
 
                            hidden=True),
 
2446
                            help='Run the benchmarks rather than selftests.'),
3819
2447
                     Option('lsprof-timed',
3820
2448
                            help='Generate lsprof output for benchmarked'
3821
2449
                                 ' sections of code.'),
3822
 
                     Option('lsprof-tests',
3823
 
                            help='Generate lsprof output for each test.'),
 
2450
                     Option('cache-dir', type=str,
 
2451
                            help='Cache intermediate benchmark output in this '
 
2452
                                 'directory.'),
3824
2453
                     Option('first',
3825
2454
                            help='Run all tests, but run specified tests first.',
3826
2455
                            short_name='f',
3827
2456
                            ),
3828
2457
                     Option('list-only',
3829
2458
                            help='List the tests instead of running them.'),
3830
 
                     RegistryOption('parallel',
3831
 
                        help="Run the test suite in parallel.",
3832
 
                        lazy_registry=('bzrlib.tests', 'parallel_registry'),
3833
 
                        value_switches=False,
3834
 
                        ),
3835
2459
                     Option('randomize', type=str, argname="SEED",
3836
2460
                            help='Randomize the order of tests using the given'
3837
2461
                                 ' seed or "now" for the current time.'),
3838
 
                     ListOption('exclude', type=str, argname="PATTERN",
3839
 
                                short_name='x',
3840
 
                                help='Exclude tests that match this regular'
3841
 
                                ' expression.'),
3842
 
                     Option('subunit',
3843
 
                        help='Output test progress via subunit.'),
3844
 
                     Option('strict', help='Fail on missing dependencies or '
3845
 
                            'known failures.'),
3846
 
                     Option('load-list', type=str, argname='TESTLISTFILE',
3847
 
                            help='Load a test id list from a text file.'),
3848
 
                     ListOption('debugflag', type=str, short_name='E',
3849
 
                                help='Turn on a selftest debug flag.'),
3850
 
                     ListOption('starting-with', type=str, argname='TESTID',
3851
 
                                param_name='starting_with', short_name='s',
3852
 
                                help=
3853
 
                                'Load only the tests starting with TESTID.'),
3854
 
                     Option('sync',
3855
 
                            help="By default we disable fsync and fdatasync"
3856
 
                                 " while running the test suite.")
 
2462
                     Option('exclude', type=str, argname="PATTERN",
 
2463
                            short_name='x',
 
2464
                            help='Exclude tests that match this regular'
 
2465
                                 ' expression.'),
3857
2466
                     ]
3858
2467
    encoding_type = 'replace'
3859
2468
 
3860
 
    def __init__(self):
3861
 
        Command.__init__(self)
3862
 
        self.additional_selftest_args = {}
3863
 
 
3864
 
    def run(self, testspecs_list=None, verbose=False, one=False,
 
2469
    def run(self, testspecs_list=None, verbose=None, one=False,
3865
2470
            transport=None, benchmark=None,
3866
 
            lsprof_timed=None,
 
2471
            lsprof_timed=None, cache_dir=None,
3867
2472
            first=False, list_only=False,
3868
 
            randomize=None, exclude=None, strict=False,
3869
 
            load_list=None, debugflag=None, starting_with=None, subunit=False,
3870
 
            parallel=None, lsprof_tests=False,
3871
 
            sync=False):
3872
 
        from bzrlib import tests
 
2473
            randomize=None, exclude=None):
 
2474
        import bzrlib.ui
 
2475
        from bzrlib.tests import selftest
 
2476
        import bzrlib.benchmarks as benchmarks
 
2477
        from bzrlib.benchmarks import tree_creator
 
2478
        from bzrlib.version import show_version
3873
2479
 
 
2480
        if cache_dir is not None:
 
2481
            tree_creator.TreeCreator.CACHE_ROOT = osutils.abspath(cache_dir)
 
2482
        if not list_only:
 
2483
            show_version(show_config=False, show_copyright=False)
 
2484
        print
3874
2485
        if testspecs_list is not None:
3875
2486
            pattern = '|'.join(testspecs_list)
3876
2487
        else:
3877
2488
            pattern = ".*"
3878
 
        if subunit:
3879
 
            try:
3880
 
                from bzrlib.tests import SubUnitBzrRunner
3881
 
            except ImportError:
3882
 
                raise errors.BzrCommandError(gettext("subunit not available. subunit "
3883
 
                    "needs to be installed to use --subunit."))
3884
 
            self.additional_selftest_args['runner_class'] = SubUnitBzrRunner
3885
 
            # On Windows, disable automatic conversion of '\n' to '\r\n' in
3886
 
            # stdout, which would corrupt the subunit stream. 
3887
 
            # FIXME: This has been fixed in subunit trunk (>0.0.5) so the
3888
 
            # following code can be deleted when it's sufficiently deployed
3889
 
            # -- vila/mgz 20100514
3890
 
            if (sys.platform == "win32"
3891
 
                and getattr(sys.stdout, 'fileno', None) is not None):
3892
 
                import msvcrt
3893
 
                msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
3894
 
        if parallel:
3895
 
            self.additional_selftest_args.setdefault(
3896
 
                'suite_decorators', []).append(parallel)
3897
2489
        if benchmark:
3898
 
            raise errors.BzrCommandError(gettext(
3899
 
                "--benchmark is no longer supported from bzr 2.2; "
3900
 
                "use bzr-usertest instead"))
3901
 
        test_suite_factory = None
3902
 
        if not exclude:
3903
 
            exclude_pattern = None
 
2490
            test_suite_factory = benchmarks.test_suite
 
2491
            if verbose is None:
 
2492
                verbose = True
 
2493
            # TODO: should possibly lock the history file...
 
2494
            benchfile = open(".perf_history", "at", buffering=1)
3904
2495
        else:
3905
 
            exclude_pattern = '(' + '|'.join(exclude) + ')'
3906
 
        if not sync:
3907
 
            self._disable_fsync()
3908
 
        selftest_kwargs = {"verbose": verbose,
3909
 
                          "pattern": pattern,
3910
 
                          "stop_on_failure": one,
3911
 
                          "transport": transport,
3912
 
                          "test_suite_factory": test_suite_factory,
3913
 
                          "lsprof_timed": lsprof_timed,
3914
 
                          "lsprof_tests": lsprof_tests,
3915
 
                          "matching_tests_first": first,
3916
 
                          "list_only": list_only,
3917
 
                          "random_seed": randomize,
3918
 
                          "exclude_pattern": exclude_pattern,
3919
 
                          "strict": strict,
3920
 
                          "load_list": load_list,
3921
 
                          "debug_flags": debugflag,
3922
 
                          "starting_with": starting_with
3923
 
                          }
3924
 
        selftest_kwargs.update(self.additional_selftest_args)
3925
 
 
3926
 
        # Make deprecation warnings visible, unless -Werror is set
3927
 
        cleanup = symbol_versioning.activate_deprecation_warnings(
3928
 
            override=False)
 
2496
            test_suite_factory = None
 
2497
            if verbose is None:
 
2498
                verbose = False
 
2499
            benchfile = None
3929
2500
        try:
3930
 
            result = tests.selftest(**selftest_kwargs)
 
2501
            result = selftest(verbose=verbose,
 
2502
                              pattern=pattern,
 
2503
                              stop_on_failure=one,
 
2504
                              transport=transport,
 
2505
                              test_suite_factory=test_suite_factory,
 
2506
                              lsprof_timed=lsprof_timed,
 
2507
                              bench_history=benchfile,
 
2508
                              matching_tests_first=first,
 
2509
                              list_only=list_only,
 
2510
                              random_seed=randomize,
 
2511
                              exclude_pattern=exclude
 
2512
                              )
3931
2513
        finally:
3932
 
            cleanup()
 
2514
            if benchfile is not None:
 
2515
                benchfile.close()
 
2516
        if result:
 
2517
            info('tests passed')
 
2518
        else:
 
2519
            info('tests failed')
3933
2520
        return int(not result)
3934
2521
 
3935
 
    def _disable_fsync(self):
3936
 
        """Change the 'os' functionality to not synchronize."""
3937
 
        self._orig_fsync = getattr(os, 'fsync', None)
3938
 
        if self._orig_fsync is not None:
3939
 
            os.fsync = lambda filedes: None
3940
 
        self._orig_fdatasync = getattr(os, 'fdatasync', None)
3941
 
        if self._orig_fdatasync is not None:
3942
 
            os.fdatasync = lambda filedes: None
3943
 
 
3944
2522
 
3945
2523
class cmd_version(Command):
3946
 
    __doc__ = """Show version of bzr."""
3947
 
 
3948
 
    encoding_type = 'replace'
3949
 
    takes_options = [
3950
 
        Option("short", help="Print just the version number."),
3951
 
        ]
 
2524
    """Show version of bzr."""
3952
2525
 
3953
2526
    @display_command
3954
 
    def run(self, short=False):
 
2527
    def run(self):
3955
2528
        from bzrlib.version import show_version
3956
 
        if short:
3957
 
            self.outf.write(bzrlib.version_string + '\n')
3958
 
        else:
3959
 
            show_version(to_file=self.outf)
 
2529
        show_version()
3960
2530
 
3961
2531
 
3962
2532
class cmd_rocks(Command):
3963
 
    __doc__ = """Statement of optimism."""
 
2533
    """Statement of optimism."""
3964
2534
 
3965
2535
    hidden = True
3966
2536
 
3967
2537
    @display_command
3968
2538
    def run(self):
3969
 
        self.outf.write(gettext("It sure does!\n"))
 
2539
        print "It sure does!"
3970
2540
 
3971
2541
 
3972
2542
class cmd_find_merge_base(Command):
3973
 
    __doc__ = """Find and print a base revision for merging two branches."""
 
2543
    """Find and print a base revision for merging two branches."""
3974
2544
    # TODO: Options to specify revisions on either side, as if
3975
2545
    #       merging only part of the history.
3976
2546
    takes_args = ['branch', 'other']
3977
2547
    hidden = True
3978
 
 
 
2548
    
3979
2549
    @display_command
3980
2550
    def run(self, branch, other):
3981
 
        from bzrlib.revision import ensure_null
3982
 
 
 
2551
        from bzrlib.revision import ensure_null, MultipleRevisionSources
 
2552
        
3983
2553
        branch1 = Branch.open_containing(branch)[0]
3984
2554
        branch2 = Branch.open_containing(other)[0]
3985
 
        self.add_cleanup(branch1.lock_read().unlock)
3986
 
        self.add_cleanup(branch2.lock_read().unlock)
 
2555
 
3987
2556
        last1 = ensure_null(branch1.last_revision())
3988
2557
        last2 = ensure_null(branch2.last_revision())
3989
2558
 
3990
2559
        graph = branch1.repository.get_graph(branch2.repository)
3991
2560
        base_rev_id = graph.find_unique_lca(last1, last2)
3992
2561
 
3993
 
        self.outf.write(gettext('merge base is revision %s\n') % base_rev_id)
 
2562
        print 'merge base is revision %s' % base_rev_id
3994
2563
 
3995
2564
 
3996
2565
class cmd_merge(Command):
3997
 
    __doc__ = """Perform a three-way merge.
3998
 
 
3999
 
    The source of the merge can be specified either in the form of a branch,
4000
 
    or in the form of a path to a file containing a merge directive generated
4001
 
    with bzr send. If neither is specified, the default is the upstream branch
4002
 
    or the branch most recently merged using --remember.  The source of the
4003
 
    merge may also be specified in the form of a path to a file in another
4004
 
    branch:  in this case, only the modifications to that file are merged into
4005
 
    the current working tree.
4006
 
 
4007
 
    When merging from a branch, by default bzr will try to merge in all new
4008
 
    work from the other branch, automatically determining an appropriate base
4009
 
    revision.  If this fails, you may need to give an explicit base.
4010
 
 
4011
 
    To pick a different ending revision, pass "--revision OTHER".  bzr will
4012
 
    try to merge in all new work up to and including revision OTHER.
4013
 
 
4014
 
    If you specify two values, "--revision BASE..OTHER", only revisions BASE
4015
 
    through OTHER, excluding BASE but including OTHER, will be merged.  If this
4016
 
    causes some revisions to be skipped, i.e. if the destination branch does
4017
 
    not already contain revision BASE, such a merge is commonly referred to as
4018
 
    a "cherrypick". Unlike a normal merge, Bazaar does not currently track
4019
 
    cherrypicks. The changes look like a normal commit, and the history of the
4020
 
    changes from the other branch is not stored in the commit.
4021
 
 
4022
 
    Revision numbers are always relative to the source branch.
4023
 
 
 
2566
    """Perform a three-way merge.
 
2567
    
 
2568
    The branch is the branch you will merge from.  By default, it will merge
 
2569
    the latest revision.  If you specify a revision, that revision will be
 
2570
    merged.  If you specify two revisions, the first will be used as a BASE,
 
2571
    and the second one as OTHER.  Revision numbers are always relative to the
 
2572
    specified branch.
 
2573
 
 
2574
    By default, bzr will try to merge in all new work from the other
 
2575
    branch, automatically determining an appropriate base.  If this
 
2576
    fails, you may need to give an explicit base.
 
2577
    
4024
2578
    Merge will do its best to combine the changes in two branches, but there
4025
2579
    are some kinds of problems only a human can fix.  When it encounters those,
4026
2580
    it will mark a conflict.  A conflict means that you need to fix something,
4028
2582
 
4029
2583
    Use bzr resolve when you have fixed a problem.  See also bzr conflicts.
4030
2584
 
4031
 
    If there is no default branch set, the first merge will set it (use
4032
 
    --no-remember to avoid setting it). After that, you can omit the branch
4033
 
    to use the default.  To change the default, use --remember. The value will
4034
 
    only be saved if the remote location can be accessed.
 
2585
    If there is no default branch set, the first merge will set it. After
 
2586
    that, you can omit the branch to use the default.  To change the
 
2587
    default, use --remember. The value will only be saved if the remote
 
2588
    location can be accessed.
4035
2589
 
4036
2590
    The results of the merge are placed into the destination working
4037
2591
    directory, where they can be reviewed (with bzr diff), tested, and then
4038
2592
    committed to record the result of the merge.
4039
2593
 
 
2594
    Examples:
 
2595
 
 
2596
    To merge the latest revision from bzr.dev:
 
2597
        bzr merge ../bzr.dev
 
2598
 
 
2599
    To merge changes up to and including revision 82 from bzr.dev:
 
2600
        bzr merge -r 82 ../bzr.dev
 
2601
 
 
2602
    To merge the changes introduced by 82, without previous changes:
 
2603
        bzr merge -r 81..82 ../bzr.dev
 
2604
    
4040
2605
    merge refuses to run if there are any uncommitted changes, unless
4041
 
    --force is given.  If --force is given, then the changes from the source 
4042
 
    will be merged with the current working tree, including any uncommitted
4043
 
    changes in the tree.  The --force option can also be used to create a
4044
 
    merge revision which has more than two parents.
4045
 
 
4046
 
    If one would like to merge changes from the working tree of the other
4047
 
    branch without merging any committed revisions, the --uncommitted option
4048
 
    can be given.
4049
 
 
4050
 
    To select only some changes to merge, use "merge -i", which will prompt
4051
 
    you to apply each diff hunk and file change, similar to "shelve".
4052
 
 
4053
 
    :Examples:
4054
 
        To merge all new revisions from bzr.dev::
4055
 
 
4056
 
            bzr merge ../bzr.dev
4057
 
 
4058
 
        To merge changes up to and including revision 82 from bzr.dev::
4059
 
 
4060
 
            bzr merge -r 82 ../bzr.dev
4061
 
 
4062
 
        To merge the changes introduced by 82, without previous changes::
4063
 
 
4064
 
            bzr merge -r 81..82 ../bzr.dev
4065
 
 
4066
 
        To apply a merge directive contained in /tmp/merge::
4067
 
 
4068
 
            bzr merge /tmp/merge
4069
 
 
4070
 
        To create a merge revision with three parents from two branches
4071
 
        feature1a and feature1b:
4072
 
 
4073
 
            bzr merge ../feature1a
4074
 
            bzr merge ../feature1b --force
4075
 
            bzr commit -m 'revision with three parents'
 
2606
    --force is given.
4076
2607
    """
4077
2608
 
4078
 
    encoding_type = 'exact'
4079
 
    _see_also = ['update', 'remerge', 'status-flags', 'send']
4080
 
    takes_args = ['location?']
 
2609
    _see_also = ['update', 'remerge', 'status-flags']
 
2610
    takes_args = ['branch?']
4081
2611
    takes_options = [
4082
 
        'change',
4083
2612
        'revision',
4084
2613
        Option('force',
4085
2614
               help='Merge even if the destination tree has uncommitted changes.'),
4094
2623
                ' completely merged into the source, pull from the'
4095
2624
                ' source rather than merging.  When this happens,'
4096
2625
                ' you do not need to commit the result.'),
4097
 
        custom_help('directory',
 
2626
        Option('directory',
4098
2627
               help='Branch to merge into, '
4099
 
                    'rather than the one containing the working directory.'),
4100
 
        Option('preview', help='Instead of merging, show a diff of the'
4101
 
               ' merge.'),
4102
 
        Option('interactive', help='Select changes interactively.',
4103
 
            short_name='i')
 
2628
                    'rather than the one containing the working directory.',
 
2629
               short_name='d',
 
2630
               type=unicode,
 
2631
               ),
4104
2632
    ]
4105
2633
 
4106
 
    def run(self, location=None, revision=None, force=False,
4107
 
            merge_type=None, show_base=False, reprocess=None, remember=None,
 
2634
    def run(self, branch=None, revision=None, force=False, merge_type=None,
 
2635
            show_base=False, reprocess=False, remember=False,
4108
2636
            uncommitted=False, pull=False,
4109
2637
            directory=None,
4110
 
            preview=False,
4111
 
            interactive=False,
4112
2638
            ):
 
2639
        from bzrlib.tag import _merge_tags_if_possible
 
2640
        other_revision_id = None
4113
2641
        if merge_type is None:
4114
2642
            merge_type = _mod_merge.Merge3Merger
4115
2643
 
4116
2644
        if directory is None: directory = u'.'
4117
 
        possible_transports = []
4118
 
        merger = None
4119
 
        allow_pending = True
4120
 
        verified = 'inapplicable'
4121
 
 
 
2645
        # XXX: jam 20070225 WorkingTree should be locked before you extract its
 
2646
        #      inventory. Because merge is a mutating operation, it really
 
2647
        #      should be a lock_write() for the whole cmd_merge operation.
 
2648
        #      However, cmd_merge open's its own tree in _merge_helper, which
 
2649
        #      means if we lock here, the later lock_write() will always block.
 
2650
        #      Either the merge helper code should be updated to take a tree,
 
2651
        #      (What about tree.merge_from_branch?)
4122
2652
        tree = WorkingTree.open_containing(directory)[0]
4123
 
        if tree.branch.revno() == 0:
4124
 
            raise errors.BzrCommandError(gettext('Merging into empty branches not currently supported, '
4125
 
                                         'https://bugs.launchpad.net/bzr/+bug/308562'))
4126
 
 
4127
 
        try:
4128
 
            basis_tree = tree.revision_tree(tree.last_revision())
4129
 
        except errors.NoSuchRevision:
4130
 
            basis_tree = tree.basis_tree()
4131
 
 
4132
 
        # die as quickly as possible if there are uncommitted changes
4133
 
        if not force:
4134
 
            if tree.has_changes():
4135
 
                raise errors.UncommittedChanges(tree)
4136
 
 
4137
 
        view_info = _get_view_info_for_change_reporter(tree)
4138
2653
        change_reporter = delta._ChangeReporter(
4139
 
            unversioned_filter=tree.is_ignored, view_info=view_info)
4140
 
        pb = ui.ui_factory.nested_progress_bar()
4141
 
        self.add_cleanup(pb.finished)
4142
 
        self.add_cleanup(tree.lock_write().unlock)
4143
 
        if location is not None:
 
2654
            unversioned_filter=tree.is_ignored)
 
2655
 
 
2656
        if branch is not None:
4144
2657
            try:
4145
 
                mergeable = bundle.read_mergeable_from_url(location,
4146
 
                    possible_transports=possible_transports)
 
2658
                mergeable = bundle.read_mergeable_from_url(
 
2659
                    branch)
4147
2660
            except errors.NotABundle:
4148
 
                mergeable = None
 
2661
                pass # Continue on considering this url a Branch
4149
2662
            else:
4150
 
                if uncommitted:
4151
 
                    raise errors.BzrCommandError(gettext('Cannot use --uncommitted'
4152
 
                        ' with bundles or merge directives.'))
4153
 
 
4154
2663
                if revision is not None:
4155
 
                    raise errors.BzrCommandError(gettext(
4156
 
                        'Cannot use -r with merge directives or bundles'))
4157
 
                merger, verified = _mod_merge.Merger.from_mergeable(tree,
4158
 
                   mergeable, None)
4159
 
 
4160
 
        if merger is None and uncommitted:
4161
 
            if revision is not None and len(revision) > 0:
4162
 
                raise errors.BzrCommandError(gettext('Cannot use --uncommitted and'
4163
 
                    ' --revision at the same time.'))
4164
 
            merger = self.get_merger_from_uncommitted(tree, location, None)
4165
 
            allow_pending = False
4166
 
 
4167
 
        if merger is None:
4168
 
            merger, allow_pending = self._get_merger_from_branch(tree,
4169
 
                location, revision, remember, possible_transports, None)
4170
 
 
4171
 
        merger.merge_type = merge_type
4172
 
        merger.reprocess = reprocess
4173
 
        merger.show_base = show_base
4174
 
        self.sanity_check_merger(merger)
4175
 
        if (merger.base_rev_id == merger.other_rev_id and
4176
 
            merger.other_rev_id is not None):
4177
 
            # check if location is a nonexistent file (and not a branch) to
4178
 
            # disambiguate the 'Nothing to do'
4179
 
            if merger.interesting_files:
4180
 
                if not merger.other_tree.has_filename(
4181
 
                    merger.interesting_files[0]):
4182
 
                    note(gettext("merger: ") + str(merger))
4183
 
                    raise errors.PathsDoNotExist([location])
4184
 
            note(gettext('Nothing to do.'))
4185
 
            return 0
4186
 
        if pull and not preview:
4187
 
            if merger.interesting_files is not None:
4188
 
                raise errors.BzrCommandError(gettext('Cannot pull individual files'))
4189
 
            if (merger.base_rev_id == tree.last_revision()):
4190
 
                result = tree.pull(merger.other_branch, False,
4191
 
                                   merger.other_rev_id)
4192
 
                result.report(self.outf)
 
2664
                    raise errors.BzrCommandError(
 
2665
                        'Cannot use -r with merge directives or bundles')
 
2666
                other_revision_id = mergeable.install_revisions(
 
2667
                    tree.branch.repository)
 
2668
                revision = [RevisionSpec.from_string(
 
2669
                    'revid:' + other_revision_id)]
 
2670
 
 
2671
        if revision is None \
 
2672
                or len(revision) < 1 or revision[0].needs_branch():
 
2673
            branch = self._get_remembered_parent(tree, branch, 'Merging from')
 
2674
 
 
2675
        if revision is None or len(revision) < 1:
 
2676
            if uncommitted:
 
2677
                base = [branch, -1]
 
2678
                other = [branch, None]
 
2679
            else:
 
2680
                base = [None, None]
 
2681
                other = [branch, -1]
 
2682
            other_branch, path = Branch.open_containing(branch)
 
2683
        else:
 
2684
            if uncommitted:
 
2685
                raise errors.BzrCommandError('Cannot use --uncommitted and'
 
2686
                                             ' --revision at the same time.')
 
2687
            branch = revision[0].get_branch() or branch
 
2688
            if len(revision) == 1:
 
2689
                base = [None, None]
 
2690
                if other_revision_id is not None:
 
2691
                    other_branch = None
 
2692
                    path = ""
 
2693
                    other = None
 
2694
                else:
 
2695
                    other_branch, path = Branch.open_containing(branch)
 
2696
                    revno = revision[0].in_history(other_branch).revno
 
2697
                    other = [branch, revno]
 
2698
            else:
 
2699
                assert len(revision) == 2
 
2700
                if None in revision:
 
2701
                    raise errors.BzrCommandError(
 
2702
                        "Merge doesn't permit empty revision specifier.")
 
2703
                base_branch, path = Branch.open_containing(branch)
 
2704
                branch1 = revision[1].get_branch() or branch
 
2705
                other_branch, path1 = Branch.open_containing(branch1)
 
2706
                if revision[0].get_branch() is not None:
 
2707
                    # then path was obtained from it, and is None.
 
2708
                    path = path1
 
2709
 
 
2710
                base = [branch, revision[0].in_history(base_branch).revno]
 
2711
                other = [branch1, revision[1].in_history(other_branch).revno]
 
2712
 
 
2713
        if ((tree.branch.get_parent() is None or remember) and
 
2714
            other_branch is not None):
 
2715
            tree.branch.set_parent(other_branch.base)
 
2716
 
 
2717
        # pull tags now... it's a bit inconsistent to do it ahead of copying
 
2718
        # the history but that's done inside the merge code
 
2719
        if other_branch is not None:
 
2720
            _merge_tags_if_possible(other_branch, tree.branch)
 
2721
 
 
2722
        if path != "":
 
2723
            interesting_files = [path]
 
2724
        else:
 
2725
            interesting_files = None
 
2726
        pb = ui.ui_factory.nested_progress_bar()
 
2727
        try:
 
2728
            try:
 
2729
                conflict_count = _merge_helper(
 
2730
                    other, base, other_rev_id=other_revision_id,
 
2731
                    check_clean=(not force),
 
2732
                    merge_type=merge_type,
 
2733
                    reprocess=reprocess,
 
2734
                    show_base=show_base,
 
2735
                    pull=pull,
 
2736
                    this_dir=directory,
 
2737
                    pb=pb, file_list=interesting_files,
 
2738
                    change_reporter=change_reporter)
 
2739
            finally:
 
2740
                pb.finished()
 
2741
            if conflict_count != 0:
 
2742
                return 1
 
2743
            else:
4193
2744
                return 0
4194
 
        if merger.this_basis is None:
4195
 
            raise errors.BzrCommandError(gettext(
4196
 
                "This branch has no commits."
4197
 
                " (perhaps you would prefer 'bzr pull')"))
4198
 
        if preview:
4199
 
            return self._do_preview(merger)
4200
 
        elif interactive:
4201
 
            return self._do_interactive(merger)
4202
 
        else:
4203
 
            return self._do_merge(merger, change_reporter, allow_pending,
4204
 
                                  verified)
4205
 
 
4206
 
    def _get_preview(self, merger):
4207
 
        tree_merger = merger.make_merger()
4208
 
        tt = tree_merger.make_preview_transform()
4209
 
        self.add_cleanup(tt.finalize)
4210
 
        result_tree = tt.get_preview_tree()
4211
 
        return result_tree
4212
 
 
4213
 
    def _do_preview(self, merger):
4214
 
        from bzrlib.diff import show_diff_trees
4215
 
        result_tree = self._get_preview(merger)
4216
 
        path_encoding = osutils.get_diff_header_encoding()
4217
 
        show_diff_trees(merger.this_tree, result_tree, self.outf,
4218
 
                        old_label='', new_label='',
4219
 
                        path_encoding=path_encoding)
4220
 
 
4221
 
    def _do_merge(self, merger, change_reporter, allow_pending, verified):
4222
 
        merger.change_reporter = change_reporter
4223
 
        conflict_count = merger.do_merge()
4224
 
        if allow_pending:
4225
 
            merger.set_pending()
4226
 
        if verified == 'failed':
4227
 
            warning('Preview patch does not match changes')
4228
 
        if conflict_count != 0:
4229
 
            return 1
4230
 
        else:
4231
 
            return 0
4232
 
 
4233
 
    def _do_interactive(self, merger):
4234
 
        """Perform an interactive merge.
4235
 
 
4236
 
        This works by generating a preview tree of the merge, then using
4237
 
        Shelver to selectively remove the differences between the working tree
4238
 
        and the preview tree.
4239
 
        """
4240
 
        from bzrlib import shelf_ui
4241
 
        result_tree = self._get_preview(merger)
4242
 
        writer = bzrlib.option.diff_writer_registry.get()
4243
 
        shelver = shelf_ui.Shelver(merger.this_tree, result_tree, destroy=True,
4244
 
                                   reporter=shelf_ui.ApplyReporter(),
4245
 
                                   diff_writer=writer(sys.stdout))
4246
 
        try:
4247
 
            shelver.run()
4248
 
        finally:
4249
 
            shelver.finalize()
4250
 
 
4251
 
    def sanity_check_merger(self, merger):
4252
 
        if (merger.show_base and
4253
 
            not merger.merge_type is _mod_merge.Merge3Merger):
4254
 
            raise errors.BzrCommandError(gettext("Show-base is not supported for this"
4255
 
                                         " merge type. %s") % merger.merge_type)
4256
 
        if merger.reprocess is None:
4257
 
            if merger.show_base:
4258
 
                merger.reprocess = False
4259
 
            else:
4260
 
                # Use reprocess if the merger supports it
4261
 
                merger.reprocess = merger.merge_type.supports_reprocess
4262
 
        if merger.reprocess and not merger.merge_type.supports_reprocess:
4263
 
            raise errors.BzrCommandError(gettext("Conflict reduction is not supported"
4264
 
                                         " for merge type %s.") %
4265
 
                                         merger.merge_type)
4266
 
        if merger.reprocess and merger.show_base:
4267
 
            raise errors.BzrCommandError(gettext("Cannot do conflict reduction and"
4268
 
                                         " show base."))
4269
 
 
4270
 
    def _get_merger_from_branch(self, tree, location, revision, remember,
4271
 
                                possible_transports, pb):
4272
 
        """Produce a merger from a location, assuming it refers to a branch."""
4273
 
        from bzrlib.tag import _merge_tags_if_possible
4274
 
        # find the branch locations
4275
 
        other_loc, user_location = self._select_branch_location(tree, location,
4276
 
            revision, -1)
4277
 
        if revision is not None and len(revision) == 2:
4278
 
            base_loc, _unused = self._select_branch_location(tree,
4279
 
                location, revision, 0)
4280
 
        else:
4281
 
            base_loc = other_loc
4282
 
        # Open the branches
4283
 
        other_branch, other_path = Branch.open_containing(other_loc,
4284
 
            possible_transports)
4285
 
        if base_loc == other_loc:
4286
 
            base_branch = other_branch
4287
 
        else:
4288
 
            base_branch, base_path = Branch.open_containing(base_loc,
4289
 
                possible_transports)
4290
 
        # Find the revision ids
4291
 
        other_revision_id = None
4292
 
        base_revision_id = None
4293
 
        if revision is not None:
4294
 
            if len(revision) >= 1:
4295
 
                other_revision_id = revision[-1].as_revision_id(other_branch)
4296
 
            if len(revision) == 2:
4297
 
                base_revision_id = revision[0].as_revision_id(base_branch)
4298
 
        if other_revision_id is None:
4299
 
            other_revision_id = _mod_revision.ensure_null(
4300
 
                other_branch.last_revision())
4301
 
        # Remember where we merge from. We need to remember if:
4302
 
        # - user specify a location (and we don't merge from the parent
4303
 
        #   branch)
4304
 
        # - user ask to remember or there is no previous location set to merge
4305
 
        #   from and user didn't ask to *not* remember
4306
 
        if (user_location is not None
4307
 
            and ((remember
4308
 
                  or (remember is None
4309
 
                      and tree.branch.get_submit_branch() is None)))):
4310
 
            tree.branch.set_submit_branch(other_branch.base)
4311
 
        # Merge tags (but don't set them in the master branch yet, the user
4312
 
        # might revert this merge).  Commit will propagate them.
4313
 
        _merge_tags_if_possible(other_branch, tree.branch, ignore_master=True)
4314
 
        merger = _mod_merge.Merger.from_revision_ids(pb, tree,
4315
 
            other_revision_id, base_revision_id, other_branch, base_branch)
4316
 
        if other_path != '':
4317
 
            allow_pending = False
4318
 
            merger.interesting_files = [other_path]
4319
 
        else:
4320
 
            allow_pending = True
4321
 
        return merger, allow_pending
4322
 
 
4323
 
    def get_merger_from_uncommitted(self, tree, location, pb):
4324
 
        """Get a merger for uncommitted changes.
4325
 
 
4326
 
        :param tree: The tree the merger should apply to.
4327
 
        :param location: The location containing uncommitted changes.
4328
 
        :param pb: The progress bar to use for showing progress.
4329
 
        """
4330
 
        location = self._select_branch_location(tree, location)[0]
4331
 
        other_tree, other_path = WorkingTree.open_containing(location)
4332
 
        merger = _mod_merge.Merger.from_uncommitted(tree, other_tree, pb)
4333
 
        if other_path != '':
4334
 
            merger.interesting_files = [other_path]
4335
 
        return merger
4336
 
 
4337
 
    def _select_branch_location(self, tree, user_location, revision=None,
4338
 
                                index=None):
4339
 
        """Select a branch location, according to possible inputs.
4340
 
 
4341
 
        If provided, branches from ``revision`` are preferred.  (Both
4342
 
        ``revision`` and ``index`` must be supplied.)
4343
 
 
4344
 
        Otherwise, the ``location`` parameter is used.  If it is None, then the
4345
 
        ``submit`` or ``parent`` location is used, and a note is printed.
4346
 
 
4347
 
        :param tree: The working tree to select a branch for merging into
4348
 
        :param location: The location entered by the user
4349
 
        :param revision: The revision parameter to the command
4350
 
        :param index: The index to use for the revision parameter.  Negative
4351
 
            indices are permitted.
4352
 
        :return: (selected_location, user_location).  The default location
4353
 
            will be the user-entered location.
4354
 
        """
4355
 
        if (revision is not None and index is not None
4356
 
            and revision[index] is not None):
4357
 
            branch = revision[index].get_branch()
4358
 
            if branch is not None:
4359
 
                return branch, branch
4360
 
        if user_location is None:
4361
 
            location = self._get_remembered(tree, 'Merging from')
4362
 
        else:
4363
 
            location = user_location
4364
 
        return location, user_location
4365
 
 
4366
 
    def _get_remembered(self, tree, verb_string):
 
2745
        except errors.AmbiguousBase, e:
 
2746
            m = ("sorry, bzr can't determine the right merge base yet\n"
 
2747
                 "candidates are:\n  "
 
2748
                 + "\n  ".join(e.bases)
 
2749
                 + "\n"
 
2750
                 "please specify an explicit base with -r,\n"
 
2751
                 "and (if you want) report this to the bzr developers\n")
 
2752
            log_error(m)
 
2753
 
 
2754
    # TODO: move up to common parent; this isn't merge-specific anymore. 
 
2755
    def _get_remembered_parent(self, tree, supplied_location, verb_string):
4367
2756
        """Use tree.branch's parent if none was supplied.
4368
2757
 
4369
2758
        Report if the remembered location was used.
4370
2759
        """
4371
 
        stored_location = tree.branch.get_submit_branch()
4372
 
        stored_location_type = "submit"
4373
 
        if stored_location is None:
4374
 
            stored_location = tree.branch.get_parent()
4375
 
            stored_location_type = "parent"
 
2760
        if supplied_location is not None:
 
2761
            return supplied_location
 
2762
        stored_location = tree.branch.get_parent()
4376
2763
        mutter("%s", stored_location)
4377
2764
        if stored_location is None:
4378
 
            raise errors.BzrCommandError(gettext("No location specified or remembered"))
4379
 
        display_url = urlutils.unescape_for_display(stored_location, 'utf-8')
4380
 
        note(gettext("{0} remembered {1} location {2}").format(verb_string,
4381
 
                stored_location_type, display_url))
 
2765
            raise errors.BzrCommandError("No location specified or remembered")
 
2766
        display_url = urlutils.unescape_for_display(stored_location, self.outf.encoding)
 
2767
        self.outf.write("%s remembered location %s\n" % (verb_string, display_url))
4382
2768
        return stored_location
4383
2769
 
4384
2770
 
4385
2771
class cmd_remerge(Command):
4386
 
    __doc__ = """Redo a merge.
 
2772
    """Redo a merge.
4387
2773
 
4388
2774
    Use this if you want to try a different merge technique while resolving
4389
 
    conflicts.  Some merge techniques are better than others, and remerge
 
2775
    conflicts.  Some merge techniques are better than others, and remerge 
4390
2776
    lets you try different ones on different files.
4391
2777
 
4392
2778
    The options for remerge have the same meaning and defaults as the ones for
4393
2779
    merge.  The difference is that remerge can (only) be run when there is a
4394
2780
    pending merge, and it lets you specify particular files.
4395
2781
 
4396
 
    :Examples:
 
2782
    Examples:
 
2783
 
 
2784
    $ bzr remerge --show-base
4397
2785
        Re-do the merge of all conflicted files, and show the base text in
4398
 
        conflict regions, in addition to the usual THIS and OTHER texts::
4399
 
 
4400
 
            bzr remerge --show-base
4401
 
 
 
2786
        conflict regions, in addition to the usual THIS and OTHER texts.
 
2787
 
 
2788
    $ bzr remerge --merge-type weave --reprocess foobar
4402
2789
        Re-do the merge of "foobar", using the weave merge algorithm, with
4403
 
        additional processing to reduce the size of conflict regions::
4404
 
 
4405
 
            bzr remerge --merge-type weave --reprocess foobar
 
2790
        additional processing to reduce the size of conflict regions.
4406
2791
    """
4407
2792
    takes_args = ['file*']
4408
2793
    takes_options = [
4414
2799
 
4415
2800
    def run(self, file_list=None, merge_type=None, show_base=False,
4416
2801
            reprocess=False):
4417
 
        from bzrlib.conflicts import restore
4418
2802
        if merge_type is None:
4419
2803
            merge_type = _mod_merge.Merge3Merger
4420
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
4421
 
        self.add_cleanup(tree.lock_write().unlock)
4422
 
        parents = tree.get_parent_ids()
4423
 
        if len(parents) != 2:
4424
 
            raise errors.BzrCommandError(gettext("Sorry, remerge only works after normal"
4425
 
                                         " merges.  Not cherrypicking or"
4426
 
                                         " multi-merges."))
4427
 
        repository = tree.branch.repository
4428
 
        interesting_ids = None
4429
 
        new_conflicts = []
4430
 
        conflicts = tree.conflicts()
4431
 
        if file_list is not None:
4432
 
            interesting_ids = set()
4433
 
            for filename in file_list:
4434
 
                file_id = tree.path2id(filename)
4435
 
                if file_id is None:
4436
 
                    raise errors.NotVersionedError(filename)
4437
 
                interesting_ids.add(file_id)
4438
 
                if tree.kind(file_id) != "directory":
4439
 
                    continue
4440
 
 
4441
 
                for name, ie in tree.inventory.iter_entries(file_id):
4442
 
                    interesting_ids.add(ie.file_id)
4443
 
            new_conflicts = conflicts.select_conflicts(tree, file_list)[0]
4444
 
        else:
4445
 
            # Remerge only supports resolving contents conflicts
4446
 
            allowed_conflicts = ('text conflict', 'contents conflict')
4447
 
            restore_files = [c.path for c in conflicts
4448
 
                             if c.typestring in allowed_conflicts]
4449
 
        _mod_merge.transform_tree(tree, tree.basis_tree(), interesting_ids)
4450
 
        tree.set_conflicts(ConflictList(new_conflicts))
4451
 
        if file_list is not None:
4452
 
            restore_files = file_list
4453
 
        for filename in restore_files:
4454
 
            try:
4455
 
                restore(tree.abspath(filename))
4456
 
            except errors.NotConflicted:
4457
 
                pass
4458
 
        # Disable pending merges, because the file texts we are remerging
4459
 
        # have not had those merges performed.  If we use the wrong parents
4460
 
        # list, we imply that the working tree text has seen and rejected
4461
 
        # all the changes from the other tree, when in fact those changes
4462
 
        # have not yet been seen.
4463
 
        tree.set_parent_ids(parents[:1])
 
2804
        tree, file_list = tree_files(file_list)
 
2805
        tree.lock_write()
4464
2806
        try:
4465
 
            merger = _mod_merge.Merger.from_revision_ids(None, tree, parents[1])
4466
 
            merger.interesting_ids = interesting_ids
4467
 
            merger.merge_type = merge_type
4468
 
            merger.show_base = show_base
4469
 
            merger.reprocess = reprocess
4470
 
            conflicts = merger.do_merge()
 
2807
            parents = tree.get_parent_ids()
 
2808
            if len(parents) != 2:
 
2809
                raise errors.BzrCommandError("Sorry, remerge only works after normal"
 
2810
                                             " merges.  Not cherrypicking or"
 
2811
                                             " multi-merges.")
 
2812
            repository = tree.branch.repository
 
2813
            graph = repository.get_graph()
 
2814
            base_revision = graph.find_unique_lca(parents[0], parents[1])
 
2815
            base_tree = repository.revision_tree(base_revision)
 
2816
            other_tree = repository.revision_tree(parents[1])
 
2817
            interesting_ids = None
 
2818
            new_conflicts = []
 
2819
            conflicts = tree.conflicts()
 
2820
            if file_list is not None:
 
2821
                interesting_ids = set()
 
2822
                for filename in file_list:
 
2823
                    file_id = tree.path2id(filename)
 
2824
                    if file_id is None:
 
2825
                        raise errors.NotVersionedError(filename)
 
2826
                    interesting_ids.add(file_id)
 
2827
                    if tree.kind(file_id) != "directory":
 
2828
                        continue
 
2829
                    
 
2830
                    for name, ie in tree.inventory.iter_entries(file_id):
 
2831
                        interesting_ids.add(ie.file_id)
 
2832
                new_conflicts = conflicts.select_conflicts(tree, file_list)[0]
 
2833
            else:
 
2834
                # Remerge only supports resolving contents conflicts
 
2835
                allowed_conflicts = ('text conflict', 'contents conflict')
 
2836
                restore_files = [c.path for c in conflicts
 
2837
                                 if c.typestring in allowed_conflicts]
 
2838
            _mod_merge.transform_tree(tree, tree.basis_tree(), interesting_ids)
 
2839
            tree.set_conflicts(ConflictList(new_conflicts))
 
2840
            if file_list is not None:
 
2841
                restore_files = file_list
 
2842
            for filename in restore_files:
 
2843
                try:
 
2844
                    restore(tree.abspath(filename))
 
2845
                except errors.NotConflicted:
 
2846
                    pass
 
2847
            conflicts = _mod_merge.merge_inner(
 
2848
                                      tree.branch, other_tree, base_tree,
 
2849
                                      this_tree=tree,
 
2850
                                      interesting_ids=interesting_ids,
 
2851
                                      other_rev_id=parents[1],
 
2852
                                      merge_type=merge_type,
 
2853
                                      show_base=show_base,
 
2854
                                      reprocess=reprocess)
4471
2855
        finally:
4472
 
            tree.set_parent_ids(parents)
 
2856
            tree.unlock()
4473
2857
        if conflicts > 0:
4474
2858
            return 1
4475
2859
        else:
4477
2861
 
4478
2862
 
4479
2863
class cmd_revert(Command):
4480
 
    __doc__ = """Revert files to a previous revision.
 
2864
    """Revert files to a previous revision.
4481
2865
 
4482
2866
    Giving a list of files will revert only those files.  Otherwise, all files
4483
2867
    will be reverted.  If the revision is not specified with '--revision', the
4484
2868
    last committed revision is used.
4485
2869
 
4486
2870
    To remove only some changes, without reverting to a prior version, use
4487
 
    merge instead.  For example, "merge . -r -2..-3" (don't forget the ".")
4488
 
    will remove the changes introduced by the second last commit (-2), without
4489
 
    affecting the changes introduced by the last commit (-1).  To remove
4490
 
    certain changes on a hunk-by-hunk basis, see the shelve command.
4491
 
 
 
2871
    merge instead.  For example, "merge . --r-2..-3" will remove the changes
 
2872
    introduced by -2, without affecting the changes introduced by -1.  Or
 
2873
    to remove certain changes on a hunk-by-hunk basis, see the Shelf plugin.
 
2874
    
4492
2875
    By default, any files that have been manually changed will be backed up
4493
2876
    first.  (Files changed only by merge are not backed up.)  Backup files have
4494
2877
    '.~#~' appended to their name, where # is a number.
4497
2880
    from the target revision.  So you can use revert to "undelete" a file by
4498
2881
    name.  If you name a directory, all the contents of that directory will be
4499
2882
    reverted.
4500
 
 
4501
 
    If you have newly added files since the target revision, they will be
4502
 
    removed.  If the files to be removed have been changed, backups will be
4503
 
    created as above.  Directories containing unknown files will not be
4504
 
    deleted.
4505
 
 
4506
 
    The working tree contains a list of revisions that have been merged but
4507
 
    not yet committed. These revisions will be included as additional parents
4508
 
    of the next commit.  Normally, using revert clears that list as well as
4509
 
    reverting the files.  If any files are specified, revert leaves the list
4510
 
    of uncommitted merges alone and reverts only the files.  Use ``bzr revert
4511
 
    .`` in the tree root to revert all files but keep the recorded merges,
4512
 
    and ``bzr revert --forget-merges`` to clear the pending merge list without
4513
 
    reverting any files.
4514
 
 
4515
 
    Using "bzr revert --forget-merges", it is possible to apply all of the
4516
 
    changes from a branch in a single revision.  To do this, perform the merge
4517
 
    as desired.  Then doing revert with the "--forget-merges" option will keep
4518
 
    the content of the tree as it was, but it will clear the list of pending
4519
 
    merges.  The next commit will then contain all of the changes that are
4520
 
    present in the other branch, but without any other parent revisions.
4521
 
    Because this technique forgets where these changes originated, it may
4522
 
    cause additional conflicts on later merges involving the same source and
4523
 
    target branches.
4524
2883
    """
4525
2884
 
4526
 
    _see_also = ['cat', 'export', 'merge', 'shelve']
 
2885
    _see_also = ['cat', 'export']
4527
2886
    takes_options = [
4528
 
        'revision',
4529
 
        Option('no-backup', "Do not save backups of reverted files."),
4530
 
        Option('forget-merges',
4531
 
               'Remove pending merge marker, without changing any files.'),
4532
 
        ]
 
2887
            'revision',
 
2888
            Option('no-backup', "Do not save backups of reverted files."),
 
2889
            ]
4533
2890
    takes_args = ['file*']
4534
2891
 
4535
 
    def run(self, revision=None, no_backup=False, file_list=None,
4536
 
            forget_merges=None):
4537
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
4538
 
        self.add_cleanup(tree.lock_tree_write().unlock)
4539
 
        if forget_merges:
4540
 
            tree.set_parent_ids(tree.get_parent_ids()[:1])
4541
 
        else:
4542
 
            self._revert_tree_to_revision(tree, revision, file_list, no_backup)
4543
 
 
4544
 
    @staticmethod
4545
 
    def _revert_tree_to_revision(tree, revision, file_list, no_backup):
4546
 
        rev_tree = _get_one_revision_tree('revert', revision, tree=tree)
4547
 
        tree.revert(file_list, rev_tree, not no_backup, None,
4548
 
            report_changes=True)
 
2892
    def run(self, revision=None, no_backup=False, file_list=None):
 
2893
        if file_list is not None:
 
2894
            if len(file_list) == 0:
 
2895
                raise errors.BzrCommandError("No files specified")
 
2896
        else:
 
2897
            file_list = []
 
2898
        
 
2899
        tree, file_list = tree_files(file_list)
 
2900
        if revision is None:
 
2901
            # FIXME should be tree.last_revision
 
2902
            rev_id = tree.last_revision()
 
2903
        elif len(revision) != 1:
 
2904
            raise errors.BzrCommandError('bzr revert --revision takes exactly 1 argument')
 
2905
        else:
 
2906
            rev_id = revision[0].in_history(tree.branch).rev_id
 
2907
        pb = ui.ui_factory.nested_progress_bar()
 
2908
        try:
 
2909
            tree.revert(file_list, 
 
2910
                        tree.branch.repository.revision_tree(rev_id),
 
2911
                        not no_backup, pb, report_changes=True)
 
2912
        finally:
 
2913
            pb.finished()
4549
2914
 
4550
2915
 
4551
2916
class cmd_assert_fail(Command):
4552
 
    __doc__ = """Test reporting of assertion failures"""
 
2917
    """Test reporting of assertion failures"""
4553
2918
    # intended just for use in testing
4554
2919
 
4555
2920
    hidden = True
4559
2924
 
4560
2925
 
4561
2926
class cmd_help(Command):
4562
 
    __doc__ = """Show help on a command or other topic.
 
2927
    """Show help on a command or other topic.
4563
2928
    """
4564
2929
 
4565
2930
    _see_also = ['topics']
4568
2933
            ]
4569
2934
    takes_args = ['topic?']
4570
2935
    aliases = ['?', '--help', '-?', '-h']
4571
 
 
 
2936
    
4572
2937
    @display_command
4573
2938
    def run(self, topic=None, long=False):
4574
2939
        import bzrlib.help
4578
2943
 
4579
2944
 
4580
2945
class cmd_shell_complete(Command):
4581
 
    __doc__ = """Show appropriate completions for context.
 
2946
    """Show appropriate completions for context.
4582
2947
 
4583
2948
    For a list of all available commands, say 'bzr shell-complete'.
4584
2949
    """
4585
2950
    takes_args = ['context?']
4586
2951
    aliases = ['s-c']
4587
2952
    hidden = True
4588
 
 
 
2953
    
4589
2954
    @display_command
4590
2955
    def run(self, context=None):
4591
2956
        import shellcomplete
4592
2957
        shellcomplete.shellcomplete(context)
4593
2958
 
4594
2959
 
 
2960
class cmd_fetch(Command):
 
2961
    """Copy in history from another branch but don't merge it.
 
2962
 
 
2963
    This is an internal method used for pull and merge.
 
2964
    """
 
2965
    hidden = True
 
2966
    takes_args = ['from_branch', 'to_branch']
 
2967
    def run(self, from_branch, to_branch):
 
2968
        from bzrlib.fetch import Fetcher
 
2969
        from_b = Branch.open(from_branch)
 
2970
        to_b = Branch.open(to_branch)
 
2971
        Fetcher(to_b, from_b)
 
2972
 
 
2973
 
4595
2974
class cmd_missing(Command):
4596
 
    __doc__ = """Show unmerged/unpulled revisions between two branches.
4597
 
 
 
2975
    """Show unmerged/unpulled revisions between two branches.
 
2976
    
4598
2977
    OTHER_BRANCH may be local or remote.
4599
 
 
4600
 
    To filter on a range of revisions, you can use the command -r begin..end
4601
 
    -r revision requests a specific revision, -r ..end or -r begin.. are
4602
 
    also valid.
4603
 
            
4604
 
    :Exit values:
4605
 
        1 - some missing revisions
4606
 
        0 - no missing revisions
4607
 
 
4608
 
    :Examples:
4609
 
 
4610
 
        Determine the missing revisions between this and the branch at the
4611
 
        remembered pull location::
4612
 
 
4613
 
            bzr missing
4614
 
 
4615
 
        Determine the missing revisions between this and another branch::
4616
 
 
4617
 
            bzr missing http://server/branch
4618
 
 
4619
 
        Determine the missing revisions up to a specific revision on the other
4620
 
        branch::
4621
 
 
4622
 
            bzr missing -r ..-10
4623
 
 
4624
 
        Determine the missing revisions up to a specific revision on this
4625
 
        branch::
4626
 
 
4627
 
            bzr missing --my-revision ..-10
4628
2978
    """
4629
2979
 
4630
2980
    _see_also = ['merge', 'pull']
4631
2981
    takes_args = ['other_branch?']
4632
2982
    takes_options = [
4633
 
        'directory',
4634
 
        Option('reverse', 'Reverse the order of revisions.'),
4635
 
        Option('mine-only',
4636
 
               'Display changes in the local branch only.'),
4637
 
        Option('this' , 'Same as --mine-only.'),
4638
 
        Option('theirs-only',
4639
 
               'Display changes in the remote branch only.'),
4640
 
        Option('other', 'Same as --theirs-only.'),
4641
 
        'log-format',
4642
 
        'show-ids',
4643
 
        'verbose',
4644
 
        custom_help('revision',
4645
 
             help='Filter on other branch revisions (inclusive). '
4646
 
                'See "help revisionspec" for details.'),
4647
 
        Option('my-revision',
4648
 
            type=_parse_revision_str,
4649
 
            help='Filter on local branch revisions (inclusive). '
4650
 
                'See "help revisionspec" for details.'),
4651
 
        Option('include-merged',
4652
 
               'Show all revisions in addition to the mainline ones.'),
4653
 
        Option('include-merges', hidden=True,
4654
 
               help='Historical alias for --include-merged.'),
4655
 
        ]
 
2983
            Option('reverse', 'Reverse the order of revisions.'),
 
2984
            Option('mine-only',
 
2985
                   'Display changes in the local branch only.'),
 
2986
            Option('this' , 'Same as --mine-only.'),
 
2987
            Option('theirs-only',
 
2988
                   'Display changes in the remote branch only.'),
 
2989
            Option('other', 'Same as --theirs-only.'),
 
2990
            'log-format',
 
2991
            'show-ids',
 
2992
            'verbose'
 
2993
            ]
4656
2994
    encoding_type = 'replace'
4657
2995
 
4658
2996
    @display_command
4659
2997
    def run(self, other_branch=None, reverse=False, mine_only=False,
4660
 
            theirs_only=False,
4661
 
            log_format=None, long=False, short=False, line=False,
4662
 
            show_ids=False, verbose=False, this=False, other=False,
4663
 
            include_merged=None, revision=None, my_revision=None,
4664
 
            directory=u'.',
4665
 
            include_merges=symbol_versioning.DEPRECATED_PARAMETER):
 
2998
            theirs_only=False, log_format=None, long=False, short=False, line=False, 
 
2999
            show_ids=False, verbose=False, this=False, other=False):
4666
3000
        from bzrlib.missing import find_unmerged, iter_log_revisions
4667
 
        def message(s):
4668
 
            if not is_quiet():
4669
 
                self.outf.write(s)
 
3001
        from bzrlib.log import log_formatter
4670
3002
 
4671
 
        if symbol_versioning.deprecated_passed(include_merges):
4672
 
            ui.ui_factory.show_user_warning(
4673
 
                'deprecated_command_option',
4674
 
                deprecated_name='--include-merges',
4675
 
                recommended_name='--include-merged',
4676
 
                deprecated_in_version='2.5',
4677
 
                command=self.invoked_as)
4678
 
            if include_merged is None:
4679
 
                include_merged = include_merges
4680
 
            else:
4681
 
                raise errors.BzrCommandError(gettext(
4682
 
                    '{0} and {1} are mutually exclusive').format(
4683
 
                    '--include-merges', '--include-merged'))
4684
 
        if include_merged is None:
4685
 
            include_merged = False
4686
3003
        if this:
4687
 
            mine_only = this
 
3004
          mine_only = this
4688
3005
        if other:
4689
 
            theirs_only = other
4690
 
        # TODO: We should probably check that we don't have mine-only and
4691
 
        #       theirs-only set, but it gets complicated because we also have
4692
 
        #       this and other which could be used.
4693
 
        restrict = 'all'
4694
 
        if mine_only:
4695
 
            restrict = 'local'
4696
 
        elif theirs_only:
4697
 
            restrict = 'remote'
4698
 
 
4699
 
        local_branch = Branch.open_containing(directory)[0]
4700
 
        self.add_cleanup(local_branch.lock_read().unlock)
4701
 
 
 
3006
          theirs_only = other
 
3007
 
 
3008
        local_branch = Branch.open_containing(u".")[0]
4702
3009
        parent = local_branch.get_parent()
4703
3010
        if other_branch is None:
4704
3011
            other_branch = parent
4705
3012
            if other_branch is None:
4706
 
                raise errors.BzrCommandError(gettext("No peer location known"
4707
 
                                             " or specified."))
 
3013
                raise errors.BzrCommandError("No peer location known or specified.")
4708
3014
            display_url = urlutils.unescape_for_display(parent,
4709
3015
                                                        self.outf.encoding)
4710
 
            message(gettext("Using saved parent location: {0}\n").format(
4711
 
                    display_url))
 
3016
            print "Using last location: " + display_url
4712
3017
 
4713
3018
        remote_branch = Branch.open(other_branch)
4714
3019
        if remote_branch.base == local_branch.base:
4715
3020
            remote_branch = local_branch
4716
 
        else:
4717
 
            self.add_cleanup(remote_branch.lock_read().unlock)
4718
 
 
4719
 
        local_revid_range = _revision_range_to_revid_range(
4720
 
            _get_revision_range(my_revision, local_branch,
4721
 
                self.name()))
4722
 
 
4723
 
        remote_revid_range = _revision_range_to_revid_range(
4724
 
            _get_revision_range(revision,
4725
 
                remote_branch, self.name()))
4726
 
 
4727
 
        local_extra, remote_extra = find_unmerged(
4728
 
            local_branch, remote_branch, restrict,
4729
 
            backward=not reverse,
4730
 
            include_merged=include_merged,
4731
 
            local_revid_range=local_revid_range,
4732
 
            remote_revid_range=remote_revid_range)
4733
 
 
4734
 
        if log_format is None:
4735
 
            registry = log.log_formatter_registry
4736
 
            log_format = registry.get_default(local_branch)
4737
 
        lf = log_format(to_file=self.outf,
4738
 
                        show_ids=show_ids,
4739
 
                        show_timezone='original')
4740
 
 
4741
 
        status_code = 0
4742
 
        if local_extra and not theirs_only:
4743
 
            message(ngettext("You have %d extra revision:\n",
4744
 
                             "You have %d extra revisions:\n", 
4745
 
                             len(local_extra)) %
4746
 
                len(local_extra))
4747
 
            for revision in iter_log_revisions(local_extra,
4748
 
                                local_branch.repository,
4749
 
                                verbose):
4750
 
                lf.log_revision(revision)
4751
 
            printed_local = True
4752
 
            status_code = 1
4753
 
        else:
4754
 
            printed_local = False
4755
 
 
4756
 
        if remote_extra and not mine_only:
4757
 
            if printed_local is True:
4758
 
                message("\n\n\n")
4759
 
            message(ngettext("You are missing %d revision:\n",
4760
 
                             "You are missing %d revisions:\n",
4761
 
                             len(remote_extra)) %
4762
 
                len(remote_extra))
4763
 
            for revision in iter_log_revisions(remote_extra,
4764
 
                                remote_branch.repository,
4765
 
                                verbose):
4766
 
                lf.log_revision(revision)
4767
 
            status_code = 1
4768
 
 
4769
 
        if mine_only and not local_extra:
4770
 
            # We checked local, and found nothing extra
4771
 
            message(gettext('This branch has no new revisions.\n'))
4772
 
        elif theirs_only and not remote_extra:
4773
 
            # We checked remote, and found nothing extra
4774
 
            message(gettext('Other branch has no new revisions.\n'))
4775
 
        elif not (mine_only or theirs_only or local_extra or
4776
 
                  remote_extra):
4777
 
            # We checked both branches, and neither one had extra
4778
 
            # revisions
4779
 
            message(gettext("Branches are up to date.\n"))
4780
 
        self.cleanup_now()
 
3021
        local_branch.lock_read()
 
3022
        try:
 
3023
            remote_branch.lock_read()
 
3024
            try:
 
3025
                local_extra, remote_extra = find_unmerged(local_branch, remote_branch)
 
3026
                if (log_format is None):
 
3027
                    log_format = log.log_formatter_registry.get_default(
 
3028
                        local_branch)
 
3029
                lf = log_format(to_file=self.outf,
 
3030
                                show_ids=show_ids,
 
3031
                                show_timezone='original')
 
3032
                if reverse is False:
 
3033
                    local_extra.reverse()
 
3034
                    remote_extra.reverse()
 
3035
                if local_extra and not theirs_only:
 
3036
                    print "You have %d extra revision(s):" % len(local_extra)
 
3037
                    for revision in iter_log_revisions(local_extra, 
 
3038
                                        local_branch.repository,
 
3039
                                        verbose):
 
3040
                        lf.log_revision(revision)
 
3041
                    printed_local = True
 
3042
                else:
 
3043
                    printed_local = False
 
3044
                if remote_extra and not mine_only:
 
3045
                    if printed_local is True:
 
3046
                        print "\n\n"
 
3047
                    print "You are missing %d revision(s):" % len(remote_extra)
 
3048
                    for revision in iter_log_revisions(remote_extra, 
 
3049
                                        remote_branch.repository, 
 
3050
                                        verbose):
 
3051
                        lf.log_revision(revision)
 
3052
                if not remote_extra and not local_extra:
 
3053
                    status_code = 0
 
3054
                    print "Branches are up to date."
 
3055
                else:
 
3056
                    status_code = 1
 
3057
            finally:
 
3058
                remote_branch.unlock()
 
3059
        finally:
 
3060
            local_branch.unlock()
4781
3061
        if not status_code and parent is None and other_branch is not None:
4782
 
            self.add_cleanup(local_branch.lock_write().unlock)
4783
 
            # handle race conditions - a parent might be set while we run.
4784
 
            if local_branch.get_parent() is None:
4785
 
                local_branch.set_parent(remote_branch.base)
 
3062
            local_branch.lock_write()
 
3063
            try:
 
3064
                # handle race conditions - a parent might be set while we run.
 
3065
                if local_branch.get_parent() is None:
 
3066
                    local_branch.set_parent(remote_branch.base)
 
3067
            finally:
 
3068
                local_branch.unlock()
4786
3069
        return status_code
4787
3070
 
4788
3071
 
4789
3072
class cmd_pack(Command):
4790
 
    __doc__ = """Compress the data within a repository.
4791
 
 
4792
 
    This operation compresses the data within a bazaar repository. As
4793
 
    bazaar supports automatic packing of repository, this operation is
4794
 
    normally not required to be done manually.
4795
 
 
4796
 
    During the pack operation, bazaar takes a backup of existing repository
4797
 
    data, i.e. pack files. This backup is eventually removed by bazaar
4798
 
    automatically when it is safe to do so. To save disk space by removing
4799
 
    the backed up pack files, the --clean-obsolete-packs option may be
4800
 
    used.
4801
 
 
4802
 
    Warning: If you use --clean-obsolete-packs and your machine crashes
4803
 
    during or immediately after repacking, you may be left with a state
4804
 
    where the deletion has been written to disk but the new packs have not
4805
 
    been. In this case the repository may be unusable.
4806
 
    """
 
3073
    """Compress the data within a repository."""
4807
3074
 
4808
3075
    _see_also = ['repositories']
4809
3076
    takes_args = ['branch_or_repo?']
4810
 
    takes_options = [
4811
 
        Option('clean-obsolete-packs', 'Delete obsolete packs to save disk space.'),
4812
 
        ]
4813
3077
 
4814
 
    def run(self, branch_or_repo='.', clean_obsolete_packs=False):
 
3078
    def run(self, branch_or_repo='.'):
4815
3079
        dir = bzrdir.BzrDir.open_containing(branch_or_repo)[0]
4816
3080
        try:
4817
3081
            branch = dir.open_branch()
4818
3082
            repository = branch.repository
4819
3083
        except errors.NotBranchError:
4820
3084
            repository = dir.open_repository()
4821
 
        repository.pack(clean_obsolete_packs=clean_obsolete_packs)
 
3085
        repository.pack()
4822
3086
 
4823
3087
 
4824
3088
class cmd_plugins(Command):
4825
 
    __doc__ = """List the installed plugins.
4826
 
 
4827
 
    This command displays the list of installed plugins including
4828
 
    version of plugin and a short description of each.
4829
 
 
4830
 
    --verbose shows the path where each plugin is located.
4831
 
 
4832
 
    A plugin is an external component for Bazaar that extends the
4833
 
    revision control system, by adding or replacing code in Bazaar.
4834
 
    Plugins can do a variety of things, including overriding commands,
4835
 
    adding new commands, providing additional network transports and
4836
 
    customizing log output.
4837
 
 
4838
 
    See the Bazaar Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/>
4839
 
    for further information on plugins including where to find them and how to
4840
 
    install them. Instructions are also provided there on how to write new
4841
 
    plugins using the Python programming language.
4842
 
    """
4843
 
    takes_options = ['verbose']
4844
 
 
 
3089
    """List plugins"""
 
3090
    hidden = True
4845
3091
    @display_command
4846
 
    def run(self, verbose=False):
4847
 
        from bzrlib import plugin
4848
 
        # Don't give writelines a generator as some codecs don't like that
4849
 
        self.outf.writelines(
4850
 
            list(plugin.describe_plugins(show_paths=verbose)))
 
3092
    def run(self):
 
3093
        import bzrlib.plugin
 
3094
        from inspect import getdoc
 
3095
        for name, plugin in bzrlib.plugin.all_plugins().items():
 
3096
            if getattr(plugin, '__path__', None) is not None:
 
3097
                print plugin.__path__[0]
 
3098
            elif getattr(plugin, '__file__', None) is not None:
 
3099
                print plugin.__file__
 
3100
            else:
 
3101
                print repr(plugin)
 
3102
                
 
3103
            d = getdoc(plugin)
 
3104
            if d:
 
3105
                print '\t', d.split('\n')[0]
4851
3106
 
4852
3107
 
4853
3108
class cmd_testament(Command):
4854
 
    __doc__ = """Show testament (signing-form) of a revision."""
 
3109
    """Show testament (signing-form) of a revision."""
4855
3110
    takes_options = [
4856
3111
            'revision',
4857
3112
            Option('long', help='Produce long-format testament.'),
4865
3120
            testament_class = StrictTestament
4866
3121
        else:
4867
3122
            testament_class = Testament
4868
 
        if branch == '.':
4869
 
            b = Branch.open_containing(branch)[0]
4870
 
        else:
4871
 
            b = Branch.open(branch)
4872
 
        self.add_cleanup(b.lock_read().unlock)
4873
 
        if revision is None:
4874
 
            rev_id = b.last_revision()
4875
 
        else:
4876
 
            rev_id = revision[0].as_revision_id(b)
4877
 
        t = testament_class.from_revision(b.repository, rev_id)
4878
 
        if long:
4879
 
            sys.stdout.writelines(t.as_text_lines())
4880
 
        else:
4881
 
            sys.stdout.write(t.as_short_text())
 
3123
        b = WorkingTree.open_containing(branch)[0].branch
 
3124
        b.lock_read()
 
3125
        try:
 
3126
            if revision is None:
 
3127
                rev_id = b.last_revision()
 
3128
            else:
 
3129
                rev_id = revision[0].in_history(b).rev_id
 
3130
            t = testament_class.from_revision(b.repository, rev_id)
 
3131
            if long:
 
3132
                sys.stdout.writelines(t.as_text_lines())
 
3133
            else:
 
3134
                sys.stdout.write(t.as_short_text())
 
3135
        finally:
 
3136
            b.unlock()
4882
3137
 
4883
3138
 
4884
3139
class cmd_annotate(Command):
4885
 
    __doc__ = """Show the origin of each line in a file.
 
3140
    """Show the origin of each line in a file.
4886
3141
 
4887
3142
    This prints out the given file with an annotation on the left side
4888
3143
    indicating which revision, author and date introduced the change.
4889
3144
 
4890
 
    If the origin is the same for a run of consecutive lines, it is
 
3145
    If the origin is the same for a run of consecutive lines, it is 
4891
3146
    shown only at the top, unless the --all option is given.
4892
3147
    """
4893
3148
    # TODO: annotate directories; showing when each file was last changed
4894
 
    # TODO: if the working copy is modified, show annotations on that
 
3149
    # TODO: if the working copy is modified, show annotations on that 
4895
3150
    #       with new uncommitted lines marked
4896
3151
    aliases = ['ann', 'blame', 'praise']
4897
3152
    takes_args = ['filename']
4899
3154
                     Option('long', help='Show commit date in annotations.'),
4900
3155
                     'revision',
4901
3156
                     'show-ids',
4902
 
                     'directory',
4903
3157
                     ]
4904
3158
    encoding_type = 'exact'
4905
3159
 
4906
3160
    @display_command
4907
3161
    def run(self, filename, all=False, long=False, revision=None,
4908
 
            show_ids=False, directory=None):
4909
 
        from bzrlib.annotate import (
4910
 
            annotate_file_tree,
4911
 
            )
4912
 
        wt, branch, relpath = \
4913
 
            _open_directory_or_containing_tree_or_branch(filename, directory)
4914
 
        if wt is not None:
4915
 
            self.add_cleanup(wt.lock_read().unlock)
4916
 
        else:
4917
 
            self.add_cleanup(branch.lock_read().unlock)
4918
 
        tree = _get_one_revision_tree('annotate', revision, branch=branch)
4919
 
        self.add_cleanup(tree.lock_read().unlock)
4920
 
        if wt is not None and revision is None:
4921
 
            file_id = wt.path2id(relpath)
4922
 
        else:
 
3162
            show_ids=False):
 
3163
        from bzrlib.annotate import annotate_file
 
3164
        tree, relpath = WorkingTree.open_containing(filename)
 
3165
        branch = tree.branch
 
3166
        branch.lock_read()
 
3167
        try:
 
3168
            if revision is None:
 
3169
                revision_id = branch.last_revision()
 
3170
            elif len(revision) != 1:
 
3171
                raise errors.BzrCommandError('bzr annotate --revision takes exactly 1 argument')
 
3172
            else:
 
3173
                revision_id = revision[0].in_history(branch).rev_id
4923
3174
            file_id = tree.path2id(relpath)
4924
 
        if file_id is None:
4925
 
            raise errors.NotVersionedError(filename)
4926
 
        if wt is not None and revision is None:
4927
 
            # If there is a tree and we're not annotating historical
4928
 
            # versions, annotate the working tree's content.
4929
 
            annotate_file_tree(wt, file_id, self.outf, long, all,
4930
 
                show_ids=show_ids)
4931
 
        else:
4932
 
            annotate_file_tree(tree, file_id, self.outf, long, all,
4933
 
                show_ids=show_ids, branch=branch)
 
3175
            if file_id is None:
 
3176
                raise errors.NotVersionedError(filename)
 
3177
            tree = branch.repository.revision_tree(revision_id)
 
3178
            file_version = tree.inventory[file_id].revision
 
3179
            annotate_file(branch, file_version, file_id, long, all, self.outf,
 
3180
                          show_ids=show_ids)
 
3181
        finally:
 
3182
            branch.unlock()
4934
3183
 
4935
3184
 
4936
3185
class cmd_re_sign(Command):
4937
 
    __doc__ = """Create a digital signature for an existing revision."""
 
3186
    """Create a digital signature for an existing revision."""
4938
3187
    # TODO be able to replace existing ones.
4939
3188
 
4940
3189
    hidden = True # is this right ?
4941
3190
    takes_args = ['revision_id*']
4942
 
    takes_options = ['directory', 'revision']
4943
 
 
4944
 
    def run(self, revision_id_list=None, revision=None, directory=u'.'):
 
3191
    takes_options = ['revision']
 
3192
    
 
3193
    def run(self, revision_id_list=None, revision=None):
 
3194
        import bzrlib.gpg as gpg
4945
3195
        if revision_id_list is not None and revision is not None:
4946
 
            raise errors.BzrCommandError(gettext('You can only supply one of revision_id or --revision'))
 
3196
            raise errors.BzrCommandError('You can only supply one of revision_id or --revision')
4947
3197
        if revision_id_list is None and revision is None:
4948
 
            raise errors.BzrCommandError(gettext('You must supply either --revision or a revision_id'))
4949
 
        b = WorkingTree.open_containing(directory)[0].branch
4950
 
        self.add_cleanup(b.lock_write().unlock)
4951
 
        return self._run(b, revision_id_list, revision)
4952
 
 
4953
 
    def _run(self, b, revision_id_list, revision):
4954
 
        import bzrlib.gpg as gpg
 
3198
            raise errors.BzrCommandError('You must supply either --revision or a revision_id')
 
3199
        b = WorkingTree.open_containing(u'.')[0].branch
4955
3200
        gpg_strategy = gpg.GPGStrategy(b.get_config())
4956
3201
        if revision_id_list is not None:
4957
 
            b.repository.start_write_group()
4958
 
            try:
4959
 
                for revision_id in revision_id_list:
4960
 
                    b.repository.sign_revision(revision_id, gpg_strategy)
4961
 
            except:
4962
 
                b.repository.abort_write_group()
4963
 
                raise
4964
 
            else:
4965
 
                b.repository.commit_write_group()
 
3202
            for revision_id in revision_id_list:
 
3203
                b.repository.sign_revision(revision_id, gpg_strategy)
4966
3204
        elif revision is not None:
4967
3205
            if len(revision) == 1:
4968
3206
                revno, rev_id = revision[0].in_history(b)
4969
 
                b.repository.start_write_group()
4970
 
                try:
4971
 
                    b.repository.sign_revision(rev_id, gpg_strategy)
4972
 
                except:
4973
 
                    b.repository.abort_write_group()
4974
 
                    raise
4975
 
                else:
4976
 
                    b.repository.commit_write_group()
 
3207
                b.repository.sign_revision(rev_id, gpg_strategy)
4977
3208
            elif len(revision) == 2:
4978
3209
                # are they both on rh- if so we can walk between them
4979
3210
                # might be nice to have a range helper for arbitrary
4983
3214
                if to_revid is None:
4984
3215
                    to_revno = b.revno()
4985
3216
                if from_revno is None or to_revno is None:
4986
 
                    raise errors.BzrCommandError(gettext('Cannot sign a range of non-revision-history revisions'))
4987
 
                b.repository.start_write_group()
4988
 
                try:
4989
 
                    for revno in range(from_revno, to_revno + 1):
4990
 
                        b.repository.sign_revision(b.get_rev_id(revno),
4991
 
                                                   gpg_strategy)
4992
 
                except:
4993
 
                    b.repository.abort_write_group()
4994
 
                    raise
4995
 
                else:
4996
 
                    b.repository.commit_write_group()
 
3217
                    raise errors.BzrCommandError('Cannot sign a range of non-revision-history revisions')
 
3218
                for revno in range(from_revno, to_revno + 1):
 
3219
                    b.repository.sign_revision(b.get_rev_id(revno), 
 
3220
                                               gpg_strategy)
4997
3221
            else:
4998
 
                raise errors.BzrCommandError(gettext('Please supply either one revision, or a range.'))
 
3222
                raise errors.BzrCommandError('Please supply either one revision, or a range.')
4999
3223
 
5000
3224
 
5001
3225
class cmd_bind(Command):
5002
 
    __doc__ = """Convert the current branch into a checkout of the supplied branch.
5003
 
    If no branch is supplied, rebind to the last bound location.
 
3226
    """Convert the current branch into a checkout of the supplied branch.
5004
3227
 
5005
3228
    Once converted into a checkout, commits must succeed on the master branch
5006
3229
    before they will be applied to the local branch.
5007
 
 
5008
 
    Bound branches use the nickname of its master branch unless it is set
5009
 
    locally, in which case binding will update the local nickname to be
5010
 
    that of the master.
5011
3230
    """
5012
3231
 
5013
3232
    _see_also = ['checkouts', 'unbind']
5014
3233
    takes_args = ['location?']
5015
 
    takes_options = ['directory']
 
3234
    takes_options = []
5016
3235
 
5017
 
    def run(self, location=None, directory=u'.'):
5018
 
        b, relpath = Branch.open_containing(directory)
 
3236
    def run(self, location=None):
 
3237
        b, relpath = Branch.open_containing(u'.')
5019
3238
        if location is None:
5020
3239
            try:
5021
3240
                location = b.get_old_bound_location()
5022
3241
            except errors.UpgradeRequired:
5023
 
                raise errors.BzrCommandError(gettext('No location supplied.  '
5024
 
                    'This format does not remember old locations.'))
 
3242
                raise errors.BzrCommandError('No location supplied.  '
 
3243
                    'This format does not remember old locations.')
5025
3244
            else:
5026
3245
                if location is None:
5027
 
                    if b.get_bound_location() is not None:
5028
 
                        raise errors.BzrCommandError(gettext('Branch is already bound'))
5029
 
                    else:
5030
 
                        raise errors.BzrCommandError(gettext('No location supplied '
5031
 
                            'and no previous location known'))
 
3246
                    raise errors.BzrCommandError('No location supplied and no '
 
3247
                        'previous location known')
5032
3248
        b_other = Branch.open(location)
5033
3249
        try:
5034
3250
            b.bind(b_other)
5035
3251
        except errors.DivergedBranches:
5036
 
            raise errors.BzrCommandError(gettext('These branches have diverged.'
5037
 
                                         ' Try merging, and then bind again.'))
5038
 
        if b.get_config().has_explicit_nickname():
5039
 
            b.nick = b_other.nick
 
3252
            raise errors.BzrCommandError('These branches have diverged.'
 
3253
                                         ' Try merging, and then bind again.')
5040
3254
 
5041
3255
 
5042
3256
class cmd_unbind(Command):
5043
 
    __doc__ = """Convert the current checkout into a regular branch.
 
3257
    """Convert the current checkout into a regular branch.
5044
3258
 
5045
3259
    After unbinding, the local branch is considered independent and subsequent
5046
3260
    commits will be local only.
5048
3262
 
5049
3263
    _see_also = ['checkouts', 'bind']
5050
3264
    takes_args = []
5051
 
    takes_options = ['directory']
 
3265
    takes_options = []
5052
3266
 
5053
 
    def run(self, directory=u'.'):
5054
 
        b, relpath = Branch.open_containing(directory)
 
3267
    def run(self):
 
3268
        b, relpath = Branch.open_containing(u'.')
5055
3269
        if not b.unbind():
5056
 
            raise errors.BzrCommandError(gettext('Local branch is not bound'))
 
3270
            raise errors.BzrCommandError('Local branch is not bound')
5057
3271
 
5058
3272
 
5059
3273
class cmd_uncommit(Command):
5060
 
    __doc__ = """Remove the last committed revision.
 
3274
    """Remove the last committed revision.
5061
3275
 
5062
3276
    --verbose will print out what is being removed.
5063
3277
    --dry-run will go through all the motions, but not actually
5064
3278
    remove anything.
5065
 
 
5066
 
    If --revision is specified, uncommit revisions to leave the branch at the
5067
 
    specified revision.  For example, "bzr uncommit -r 15" will leave the
5068
 
    branch at revision 15.
5069
 
 
5070
 
    Uncommit leaves the working tree ready for a new commit.  The only change
5071
 
    it may make is to restore any pending merges that were present before
5072
 
    the commit.
 
3279
    
 
3280
    In the future, uncommit will create a revision bundle, which can then
 
3281
    be re-applied.
5073
3282
    """
5074
3283
 
5075
3284
    # TODO: jam 20060108 Add an option to allow uncommit to remove
5079
3288
    _see_also = ['commit']
5080
3289
    takes_options = ['verbose', 'revision',
5081
3290
                    Option('dry-run', help='Don\'t actually make changes.'),
5082
 
                    Option('force', help='Say yes to all questions.'),
5083
 
                    Option('keep-tags',
5084
 
                           help='Keep tags that point to removed revisions.'),
5085
 
                    Option('local',
5086
 
                           help="Only remove the commits from the local branch"
5087
 
                                " when in a checkout."
5088
 
                           ),
5089
 
                    ]
 
3291
                    Option('force', help='Say yes to all questions.')]
5090
3292
    takes_args = ['location?']
5091
3293
    aliases = []
5092
 
    encoding_type = 'replace'
5093
 
 
5094
 
    def run(self, location=None, dry_run=False, verbose=False,
5095
 
            revision=None, force=False, local=False, keep_tags=False):
 
3294
 
 
3295
    def run(self, location=None,
 
3296
            dry_run=False, verbose=False,
 
3297
            revision=None, force=False):
 
3298
        from bzrlib.log import log_formatter, show_log
 
3299
        import sys
 
3300
        from bzrlib.uncommit import uncommit
 
3301
 
5096
3302
        if location is None:
5097
3303
            location = u'.'
5098
3304
        control, relpath = bzrdir.BzrDir.open_containing(location)
5103
3309
            tree = None
5104
3310
            b = control.open_branch()
5105
3311
 
5106
 
        if tree is not None:
5107
 
            self.add_cleanup(tree.lock_write().unlock)
5108
 
        else:
5109
 
            self.add_cleanup(b.lock_write().unlock)
5110
 
        return self._run(b, tree, dry_run, verbose, revision, force,
5111
 
                         local, keep_tags)
5112
 
 
5113
 
    def _run(self, b, tree, dry_run, verbose, revision, force, local,
5114
 
             keep_tags):
5115
 
        from bzrlib.log import log_formatter, show_log
5116
 
        from bzrlib.uncommit import uncommit
5117
 
 
5118
 
        last_revno, last_rev_id = b.last_revision_info()
5119
 
 
5120
3312
        rev_id = None
5121
3313
        if revision is None:
5122
 
            revno = last_revno
5123
 
            rev_id = last_rev_id
 
3314
            revno = b.revno()
5124
3315
        else:
5125
3316
            # 'bzr uncommit -r 10' actually means uncommit
5126
3317
            # so that the final tree is at revno 10.
5127
3318
            # but bzrlib.uncommit.uncommit() actually uncommits
5128
3319
            # the revisions that are supplied.
5129
3320
            # So we need to offset it by one
5130
 
            revno = revision[0].in_history(b).revno + 1
5131
 
            if revno <= last_revno:
5132
 
                rev_id = b.get_rev_id(revno)
 
3321
            revno = revision[0].in_history(b).revno+1
5133
3322
 
5134
 
        if rev_id is None or _mod_revision.is_null(rev_id):
5135
 
            self.outf.write(gettext('No revisions to uncommit.\n'))
 
3323
        if revno <= b.revno():
 
3324
            rev_id = b.get_rev_id(revno)
 
3325
        if rev_id is None:
 
3326
            self.outf.write('No revisions to uncommit.\n')
5136
3327
            return 1
5137
3328
 
5138
3329
        lf = log_formatter('short',
5144
3335
                 verbose=False,
5145
3336
                 direction='forward',
5146
3337
                 start_revision=revno,
5147
 
                 end_revision=last_revno)
 
3338
                 end_revision=b.revno())
5148
3339
 
5149
3340
        if dry_run:
5150
 
            self.outf.write(gettext('Dry-run, pretending to remove'
5151
 
                            ' the above revisions.\n'))
 
3341
            print 'Dry-run, pretending to remove the above revisions.'
 
3342
            if not force:
 
3343
                val = raw_input('Press <enter> to continue')
5152
3344
        else:
5153
 
            self.outf.write(gettext('The above revision(s) will be removed.\n'))
5154
 
 
5155
 
        if not force:
5156
 
            if not ui.ui_factory.confirm_action(
5157
 
                    gettext(u'Uncommit these revisions'),
5158
 
                    'bzrlib.builtins.uncommit',
5159
 
                    {}):
5160
 
                self.outf.write(gettext('Canceled\n'))
5161
 
                return 0
5162
 
 
5163
 
        mutter('Uncommitting from {%s} to {%s}',
5164
 
               last_rev_id, rev_id)
 
3345
            print 'The above revision(s) will be removed.'
 
3346
            if not force:
 
3347
                val = raw_input('Are you sure [y/N]? ')
 
3348
                if val.lower() not in ('y', 'yes'):
 
3349
                    print 'Canceled'
 
3350
                    return 0
 
3351
 
5165
3352
        uncommit(b, tree=tree, dry_run=dry_run, verbose=verbose,
5166
 
                 revno=revno, local=local, keep_tags=keep_tags)
5167
 
        self.outf.write(gettext('You can restore the old tip by running:\n'
5168
 
             '  bzr pull . -r revid:%s\n') % last_rev_id)
 
3353
                revno=revno)
5169
3354
 
5170
3355
 
5171
3356
class cmd_break_lock(Command):
5172
 
    __doc__ = """Break a dead lock.
5173
 
 
5174
 
    This command breaks a lock on a repository, branch, working directory or
5175
 
    config file.
 
3357
    """Break a dead lock on a repository, branch or working directory.
5176
3358
 
5177
3359
    CAUTION: Locks should only be broken when you are sure that the process
5178
3360
    holding the lock has been stopped.
5179
3361
 
5180
 
    You can get information on what locks are open via the 'bzr info
5181
 
    [location]' command.
5182
 
 
5183
 
    :Examples:
 
3362
    You can get information on what locks are open via the 'bzr info' command.
 
3363
    
 
3364
    example:
5184
3365
        bzr break-lock
5185
 
        bzr break-lock bzr+ssh://example.com/bzr/foo
5186
 
        bzr break-lock --conf ~/.bazaar
5187
3366
    """
5188
 
 
5189
3367
    takes_args = ['location?']
5190
 
    takes_options = [
5191
 
        Option('config',
5192
 
               help='LOCATION is the directory where the config lock is.'),
5193
 
        Option('force',
5194
 
            help='Do not ask for confirmation before breaking the lock.'),
5195
 
        ]
5196
3368
 
5197
 
    def run(self, location=None, config=False, force=False):
 
3369
    def run(self, location=None, show=False):
5198
3370
        if location is None:
5199
3371
            location = u'.'
5200
 
        if force:
5201
 
            ui.ui_factory = ui.ConfirmationUserInterfacePolicy(ui.ui_factory,
5202
 
                None,
5203
 
                {'bzrlib.lockdir.break': True})
5204
 
        if config:
5205
 
            conf = _mod_config.LockableConfig(file_name=location)
5206
 
            conf.break_lock()
5207
 
        else:
5208
 
            control, relpath = bzrdir.BzrDir.open_containing(location)
5209
 
            try:
5210
 
                control.break_lock()
5211
 
            except NotImplementedError:
5212
 
                pass
5213
 
 
 
3372
        control, relpath = bzrdir.BzrDir.open_containing(location)
 
3373
        try:
 
3374
            control.break_lock()
 
3375
        except NotImplementedError:
 
3376
            pass
 
3377
        
5214
3378
 
5215
3379
class cmd_wait_until_signalled(Command):
5216
 
    __doc__ = """Test helper for test_start_and_stop_bzr_subprocess_send_signal.
 
3380
    """Test helper for test_start_and_stop_bzr_subprocess_send_signal.
5217
3381
 
5218
3382
    This just prints a line to signal when it is ready, then blocks on stdin.
5219
3383
    """
5227
3391
 
5228
3392
 
5229
3393
class cmd_serve(Command):
5230
 
    __doc__ = """Run the bzr server."""
 
3394
    """Run the bzr server."""
5231
3395
 
5232
3396
    aliases = ['server']
5233
3397
 
5234
3398
    takes_options = [
5235
3399
        Option('inet',
5236
3400
               help='Serve on stdin/out for use from inetd or sshd.'),
5237
 
        RegistryOption('protocol',
5238
 
               help="Protocol to serve.",
5239
 
               lazy_registry=('bzrlib.transport', 'transport_server_registry'),
5240
 
               value_switches=True),
5241
3401
        Option('port',
5242
3402
               help='Listen for connections on nominated port of the form '
5243
3403
                    '[hostname:]portnumber.  Passing 0 as the port number will '
5244
 
                    'result in a dynamically allocated port.  The default port '
5245
 
                    'depends on the protocol.',
 
3404
                    'result in a dynamically allocated port.  The default port is '
 
3405
                    '4155.',
5246
3406
               type=str),
5247
 
        custom_help('directory',
5248
 
               help='Serve contents of this directory.'),
 
3407
        Option('directory',
 
3408
               help='Serve contents of this directory.',
 
3409
               type=unicode),
5249
3410
        Option('allow-writes',
5250
3411
               help='By default the server is a readonly server.  Supplying '
5251
3412
                    '--allow-writes enables write access to the contents of '
5252
 
                    'the served directory and below.  Note that ``bzr serve`` '
5253
 
                    'does not perform authentication, so unless some form of '
5254
 
                    'external authentication is arranged supplying this '
5255
 
                    'option leads to global uncontrolled write access to your '
5256
 
                    'file system.'
 
3413
                    'the served directory and below.'
5257
3414
                ),
5258
 
        Option('client-timeout', type=float,
5259
 
               help='Override the default idle client timeout (5min).'),
5260
3415
        ]
5261
3416
 
5262
 
    def get_host_and_port(self, port):
5263
 
        """Return the host and port to run the smart server on.
5264
 
 
5265
 
        If 'port' is None, None will be returned for the host and port.
5266
 
 
5267
 
        If 'port' has a colon in it, the string before the colon will be
5268
 
        interpreted as the host.
5269
 
 
5270
 
        :param port: A string of the port to run the server on.
5271
 
        :return: A tuple of (host, port), where 'host' is a host name or IP,
5272
 
            and port is an integer TCP/IP port.
5273
 
        """
5274
 
        host = None
5275
 
        if port is not None:
5276
 
            if ':' in port:
5277
 
                host, port = port.split(':')
5278
 
            port = int(port)
5279
 
        return host, port
5280
 
 
5281
 
    def run(self, port=None, inet=False, directory=None, allow_writes=False,
5282
 
            protocol=None, client_timeout=None):
5283
 
        from bzrlib import transport
 
3417
    def run(self, port=None, inet=False, directory=None, allow_writes=False):
 
3418
        from bzrlib.smart import medium, server
 
3419
        from bzrlib.transport import get_transport
 
3420
        from bzrlib.transport.chroot import ChrootServer
 
3421
        from bzrlib.transport.remote import BZR_DEFAULT_PORT, BZR_DEFAULT_INTERFACE
5284
3422
        if directory is None:
5285
3423
            directory = os.getcwd()
5286
 
        if protocol is None:
5287
 
            protocol = transport.transport_server_registry.get()
5288
 
        host, port = self.get_host_and_port(port)
5289
3424
        url = urlutils.local_path_to_url(directory)
5290
3425
        if not allow_writes:
5291
3426
            url = 'readonly+' + url
5292
 
        t = transport.get_transport(url)
 
3427
        chroot_server = ChrootServer(get_transport(url))
 
3428
        chroot_server.setUp()
 
3429
        t = get_transport(chroot_server.get_url())
 
3430
        if inet:
 
3431
            smart_server = medium.SmartServerPipeStreamMedium(
 
3432
                sys.stdin, sys.stdout, t)
 
3433
        else:
 
3434
            host = BZR_DEFAULT_INTERFACE
 
3435
            if port is None:
 
3436
                port = BZR_DEFAULT_PORT
 
3437
            else:
 
3438
                if ':' in port:
 
3439
                    host, port = port.split(':')
 
3440
                port = int(port)
 
3441
            smart_server = server.SmartTCPServer(t, host=host, port=port)
 
3442
            print 'listening on port: ', smart_server.port
 
3443
            sys.stdout.flush()
 
3444
        # for the duration of this server, no UI output is permitted.
 
3445
        # note that this may cause problems with blackbox tests. This should
 
3446
        # be changed with care though, as we dont want to use bandwidth sending
 
3447
        # progress over stderr to smart server clients!
 
3448
        old_factory = ui.ui_factory
5293
3449
        try:
5294
 
            protocol(t, host, port, inet, client_timeout)
5295
 
        except TypeError, e:
5296
 
            # We use symbol_versioning.deprecated_in just so that people
5297
 
            # grepping can find it here.
5298
 
            # symbol_versioning.deprecated_in((2, 5, 0))
5299
 
            symbol_versioning.warn(
5300
 
                'Got TypeError(%s)\ntrying to call protocol: %s.%s\n'
5301
 
                'Most likely it needs to be updated to support a'
5302
 
                ' "timeout" parameter (added in bzr 2.5.0)'
5303
 
                % (e, protocol.__module__, protocol),
5304
 
                DeprecationWarning)
5305
 
            protocol(t, host, port, inet)
 
3450
            ui.ui_factory = ui.SilentUIFactory()
 
3451
            smart_server.serve()
 
3452
        finally:
 
3453
            ui.ui_factory = old_factory
5306
3454
 
5307
3455
 
5308
3456
class cmd_join(Command):
5309
 
    __doc__ = """Combine a tree into its containing tree.
5310
 
 
5311
 
    This command requires the target tree to be in a rich-root format.
 
3457
    """Combine a subtree into its containing tree.
 
3458
    
 
3459
    This command is for experimental use only.  It requires the target tree
 
3460
    to be in dirstate-with-subtree format, which cannot be converted into
 
3461
    earlier formats.
5312
3462
 
5313
3463
    The TREE argument should be an independent tree, inside another tree, but
5314
3464
    not part of it.  (Such trees can be produced by "bzr split", but also by
5315
3465
    running "bzr branch" with the target inside a tree.)
5316
3466
 
5317
 
    The result is a combined tree, with the subtree no longer an independent
 
3467
    The result is a combined tree, with the subtree no longer an independant
5318
3468
    part.  This is marked as a merge of the subtree into the containing tree,
5319
3469
    and all history is preserved.
 
3470
 
 
3471
    If --reference is specified, the subtree retains its independence.  It can
 
3472
    be branched by itself, and can be part of multiple projects at the same
 
3473
    time.  But operations performed in the containing tree, such as commit
 
3474
    and merge, will recurse into the subtree.
5320
3475
    """
5321
3476
 
5322
3477
    _see_also = ['split']
5323
3478
    takes_args = ['tree']
5324
3479
    takes_options = [
5325
 
            Option('reference', help='Join by reference.', hidden=True),
 
3480
            Option('reference', help='Join by reference.'),
5326
3481
            ]
 
3482
    hidden = True
5327
3483
 
5328
3484
    def run(self, tree, reference=False):
5329
3485
        sub_tree = WorkingTree.open(tree)
5331
3487
        containing_tree = WorkingTree.open_containing(parent_dir)[0]
5332
3488
        repo = containing_tree.branch.repository
5333
3489
        if not repo.supports_rich_root():
5334
 
            raise errors.BzrCommandError(gettext(
 
3490
            raise errors.BzrCommandError(
5335
3491
                "Can't join trees because %s doesn't support rich root data.\n"
5336
 
                "You can use bzr upgrade on the repository.")
 
3492
                "You can use bzr upgrade on the repository."
5337
3493
                % (repo,))
5338
3494
        if reference:
5339
3495
            try:
5341
3497
            except errors.BadReferenceTarget, e:
5342
3498
                # XXX: Would be better to just raise a nicely printable
5343
3499
                # exception from the real origin.  Also below.  mbp 20070306
5344
 
                raise errors.BzrCommandError(
5345
 
                       gettext("Cannot join {0}.  {1}").format(tree, e.reason))
 
3500
                raise errors.BzrCommandError("Cannot join %s.  %s" %
 
3501
                                             (tree, e.reason))
5346
3502
        else:
5347
3503
            try:
5348
3504
                containing_tree.subsume(sub_tree)
5349
3505
            except errors.BadSubsumeSource, e:
5350
 
                raise errors.BzrCommandError(
5351
 
                       gettext("Cannot join {0}.  {1}").format(tree, e.reason))
 
3506
                raise errors.BzrCommandError("Cannot join %s.  %s" % 
 
3507
                                             (tree, e.reason))
5352
3508
 
5353
3509
 
5354
3510
class cmd_split(Command):
5355
 
    __doc__ = """Split a subdirectory of a tree into a separate tree.
 
3511
    """Split a tree into two trees.
5356
3512
 
5357
 
    This command will produce a target tree in a format that supports
5358
 
    rich roots, like 'rich-root' or 'rich-root-pack'.  These formats cannot be
5359
 
    converted into earlier formats like 'dirstate-tags'.
 
3513
    This command is for experimental use only.  It requires the target tree
 
3514
    to be in dirstate-with-subtree format, which cannot be converted into
 
3515
    earlier formats.
5360
3516
 
5361
3517
    The TREE argument should be a subdirectory of a working tree.  That
5362
3518
    subdirectory will be converted into an independent tree, with its own
5363
3519
    branch.  Commits in the top-level tree will not apply to the new subtree.
 
3520
    If you want that behavior, do "bzr join --reference TREE".
5364
3521
    """
5365
3522
 
5366
3523
    _see_also = ['join']
5367
3524
    takes_args = ['tree']
5368
3525
 
 
3526
    hidden = True
 
3527
 
5369
3528
    def run(self, tree):
5370
3529
        containing_tree, subdir = WorkingTree.open_containing(tree)
5371
3530
        sub_id = containing_tree.path2id(subdir)
5374
3533
        try:
5375
3534
            containing_tree.extract(sub_id)
5376
3535
        except errors.RootNotRich:
5377
 
            raise errors.RichRootUpgradeRequired(containing_tree.branch.base)
 
3536
            raise errors.UpgradeRequired(containing_tree.branch.base)
 
3537
 
5378
3538
 
5379
3539
 
5380
3540
class cmd_merge_directive(Command):
5381
 
    __doc__ = """Generate a merge directive for auto-merge tools.
 
3541
    """Generate a merge directive for auto-merge tools.
5382
3542
 
5383
3543
    A directive requests a merge to be performed, and also provides all the
5384
3544
    information necessary to do so.  This means it must either include a
5396
3556
 
5397
3557
    takes_args = ['submit_branch?', 'public_branch?']
5398
3558
 
5399
 
    hidden = True
5400
 
 
5401
 
    _see_also = ['send']
5402
 
 
5403
3559
    takes_options = [
5404
 
        'directory',
5405
3560
        RegistryOption.from_kwargs('patch-type',
5406
 
            'The type of patch to include in the directive.',
 
3561
            'The type of patch to include in the directive',
5407
3562
            title='Patch type',
5408
3563
            value_switches=True,
5409
3564
            enum_switch=False,
5420
3575
    encoding_type = 'exact'
5421
3576
 
5422
3577
    def run(self, submit_branch=None, public_branch=None, patch_type='bundle',
5423
 
            sign=False, revision=None, mail_to=None, message=None,
5424
 
            directory=u'.'):
 
3578
            sign=False, revision=None, mail_to=None, message=None):
5425
3579
        from bzrlib.revision import ensure_null, NULL_REVISION
5426
 
        include_patch, include_bundle = {
5427
 
            'plain': (False, False),
5428
 
            'diff': (True, False),
5429
 
            'bundle': (True, True),
5430
 
            }[patch_type]
5431
 
        branch = Branch.open(directory)
 
3580
        if patch_type == 'plain':
 
3581
            patch_type = None
 
3582
        branch = Branch.open('.')
5432
3583
        stored_submit_branch = branch.get_submit_branch()
5433
3584
        if submit_branch is None:
5434
3585
            submit_branch = stored_submit_branch
5438
3589
        if submit_branch is None:
5439
3590
            submit_branch = branch.get_parent()
5440
3591
        if submit_branch is None:
5441
 
            raise errors.BzrCommandError(gettext('No submit branch specified or known'))
 
3592
            raise errors.BzrCommandError('No submit branch specified or known')
5442
3593
 
5443
3594
        stored_public_branch = branch.get_public_branch()
5444
3595
        if public_branch is None:
5445
3596
            public_branch = stored_public_branch
5446
3597
        elif stored_public_branch is None:
5447
3598
            branch.set_public_branch(public_branch)
5448
 
        if not include_bundle and public_branch is None:
5449
 
            raise errors.BzrCommandError(gettext('No public branch specified or'
5450
 
                                         ' known'))
5451
 
        base_revision_id = None
 
3599
        if patch_type != "bundle" and public_branch is None:
 
3600
            raise errors.BzrCommandError('No public branch specified or'
 
3601
                                         ' known')
5452
3602
        if revision is not None:
5453
 
            if len(revision) > 2:
5454
 
                raise errors.BzrCommandError(gettext('bzr merge-directive takes '
5455
 
                    'at most two one revision identifiers'))
5456
 
            revision_id = revision[-1].as_revision_id(branch)
5457
 
            if len(revision) == 2:
5458
 
                base_revision_id = revision[0].as_revision_id(branch)
 
3603
            if len(revision) != 1:
 
3604
                raise errors.BzrCommandError('bzr merge-directive takes '
 
3605
                    'exactly one revision identifier')
 
3606
            else:
 
3607
                revision_id = revision[0].in_history(branch).rev_id
5459
3608
        else:
5460
3609
            revision_id = branch.last_revision()
5461
3610
        revision_id = ensure_null(revision_id)
5462
3611
        if revision_id == NULL_REVISION:
5463
 
            raise errors.BzrCommandError(gettext('No revisions to bundle.'))
5464
 
        directive = merge_directive.MergeDirective2.from_objects(
 
3612
            raise errors.BzrCommandError('No revisions to bundle.')
 
3613
        directive = merge_directive.MergeDirective.from_objects(
5465
3614
            branch.repository, revision_id, time.time(),
5466
3615
            osutils.local_time_offset(), submit_branch,
5467
 
            public_branch=public_branch, include_patch=include_patch,
5468
 
            include_bundle=include_bundle, message=message,
5469
 
            base_revision_id=base_revision_id)
 
3616
            public_branch=public_branch, patch_type=patch_type,
 
3617
            message=message)
5470
3618
        if mail_to is None:
5471
3619
            if sign:
5472
3620
                self.outf.write(directive.to_signed(branch))
5478
3626
            s.send_email(message)
5479
3627
 
5480
3628
 
5481
 
class cmd_send(Command):
5482
 
    __doc__ = """Mail or create a merge-directive for submitting changes.
5483
 
 
5484
 
    A merge directive provides many things needed for requesting merges:
5485
 
 
5486
 
    * A machine-readable description of the merge to perform
5487
 
 
5488
 
    * An optional patch that is a preview of the changes requested
5489
 
 
5490
 
    * An optional bundle of revision data, so that the changes can be applied
5491
 
      directly from the merge directive, without retrieving data from a
5492
 
      branch.
5493
 
 
5494
 
    `bzr send` creates a compact data set that, when applied using bzr
5495
 
    merge, has the same effect as merging from the source branch.  
5496
 
    
5497
 
    By default the merge directive is self-contained and can be applied to any
5498
 
    branch containing submit_branch in its ancestory without needing access to
5499
 
    the source branch.
5500
 
    
5501
 
    If --no-bundle is specified, then Bazaar doesn't send the contents of the
5502
 
    revisions, but only a structured request to merge from the
5503
 
    public_location.  In that case the public_branch is needed and it must be
5504
 
    up-to-date and accessible to the recipient.  The public_branch is always
5505
 
    included if known, so that people can check it later.
5506
 
 
5507
 
    The submit branch defaults to the parent of the source branch, but can be
5508
 
    overridden.  Both submit branch and public branch will be remembered in
5509
 
    branch.conf the first time they are used for a particular branch.  The
5510
 
    source branch defaults to that containing the working directory, but can
5511
 
    be changed using --from.
5512
 
 
5513
 
    Both the submit branch and the public branch follow the usual behavior with
5514
 
    respect to --remember: If there is no default location set, the first send
5515
 
    will set it (use --no-remember to avoid setting it). After that, you can
5516
 
    omit the location to use the default.  To change the default, use
5517
 
    --remember. The value will only be saved if the location can be accessed.
5518
 
 
5519
 
    In order to calculate those changes, bzr must analyse the submit branch.
5520
 
    Therefore it is most efficient for the submit branch to be a local mirror.
5521
 
    If a public location is known for the submit_branch, that location is used
5522
 
    in the merge directive.
5523
 
 
5524
 
    The default behaviour is to send the merge directive by mail, unless -o is
5525
 
    given, in which case it is sent to a file.
5526
 
 
5527
 
    Mail is sent using your preferred mail program.  This should be transparent
5528
 
    on Windows (it uses MAPI).  On Unix, it requires the xdg-email utility.
5529
 
    If the preferred client can't be found (or used), your editor will be used.
5530
 
 
5531
 
    To use a specific mail program, set the mail_client configuration option.
5532
 
    (For Thunderbird 1.5, this works around some bugs.)  Supported values for
5533
 
    specific clients are "claws", "evolution", "kmail", "mail.app" (MacOS X's
5534
 
    Mail.app), "mutt", and "thunderbird"; generic options are "default",
5535
 
    "editor", "emacsclient", "mapi", and "xdg-email".  Plugins may also add
5536
 
    supported clients.
5537
 
 
5538
 
    If mail is being sent, a to address is required.  This can be supplied
5539
 
    either on the commandline, by setting the submit_to configuration
5540
 
    option in the branch itself or the child_submit_to configuration option
5541
 
    in the submit branch.
5542
 
 
5543
 
    Two formats are currently supported: "4" uses revision bundle format 4 and
5544
 
    merge directive format 2.  It is significantly faster and smaller than
5545
 
    older formats.  It is compatible with Bazaar 0.19 and later.  It is the
5546
 
    default.  "0.9" uses revision bundle format 0.9 and merge directive
5547
 
    format 1.  It is compatible with Bazaar 0.12 - 0.18.
5548
 
 
5549
 
    The merge directives created by bzr send may be applied using bzr merge or
5550
 
    bzr pull by specifying a file containing a merge directive as the location.
5551
 
 
5552
 
    bzr send makes extensive use of public locations to map local locations into
5553
 
    URLs that can be used by other people.  See `bzr help configuration` to
5554
 
    set them, and use `bzr info` to display them.
5555
 
    """
5556
 
 
5557
 
    encoding_type = 'exact'
5558
 
 
5559
 
    _see_also = ['merge', 'pull']
5560
 
 
5561
 
    takes_args = ['submit_branch?', 'public_branch?']
5562
 
 
5563
 
    takes_options = [
5564
 
        Option('no-bundle',
5565
 
               help='Do not include a bundle in the merge directive.'),
5566
 
        Option('no-patch', help='Do not include a preview patch in the merge'
5567
 
               ' directive.'),
5568
 
        Option('remember',
5569
 
               help='Remember submit and public branch.'),
5570
 
        Option('from',
5571
 
               help='Branch to generate the submission from, '
5572
 
               'rather than the one containing the working directory.',
5573
 
               short_name='f',
5574
 
               type=unicode),
5575
 
        Option('output', short_name='o',
5576
 
               help='Write merge directive to this file or directory; '
5577
 
                    'use - for stdout.',
5578
 
               type=unicode),
5579
 
        Option('strict',
5580
 
               help='Refuse to send if there are uncommitted changes in'
5581
 
               ' the working tree, --no-strict disables the check.'),
5582
 
        Option('mail-to', help='Mail the request to this address.',
5583
 
               type=unicode),
5584
 
        'revision',
5585
 
        'message',
5586
 
        Option('body', help='Body for the email.', type=unicode),
5587
 
        RegistryOption('format',
5588
 
                       help='Use the specified output format.',
5589
 
                       lazy_registry=('bzrlib.send', 'format_registry')),
5590
 
        ]
5591
 
 
5592
 
    def run(self, submit_branch=None, public_branch=None, no_bundle=False,
5593
 
            no_patch=False, revision=None, remember=None, output=None,
5594
 
            format=None, mail_to=None, message=None, body=None,
5595
 
            strict=None, **kwargs):
5596
 
        from bzrlib.send import send
5597
 
        return send(submit_branch, revision, public_branch, remember,
5598
 
                    format, no_bundle, no_patch, output,
5599
 
                    kwargs.get('from', '.'), mail_to, message, body,
5600
 
                    self.outf,
5601
 
                    strict=strict)
5602
 
 
5603
 
 
5604
 
class cmd_bundle_revisions(cmd_send):
5605
 
    __doc__ = """Create a merge-directive for submitting changes.
5606
 
 
5607
 
    A merge directive provides many things needed for requesting merges:
5608
 
 
5609
 
    * A machine-readable description of the merge to perform
5610
 
 
5611
 
    * An optional patch that is a preview of the changes requested
5612
 
 
5613
 
    * An optional bundle of revision data, so that the changes can be applied
5614
 
      directly from the merge directive, without retrieving data from a
5615
 
      branch.
5616
 
 
5617
 
    If --no-bundle is specified, then public_branch is needed (and must be
5618
 
    up-to-date), so that the receiver can perform the merge using the
5619
 
    public_branch.  The public_branch is always included if known, so that
5620
 
    people can check it later.
5621
 
 
5622
 
    The submit branch defaults to the parent, but can be overridden.  Both
5623
 
    submit branch and public branch will be remembered if supplied.
5624
 
 
5625
 
    If a public_branch is known for the submit_branch, that public submit
5626
 
    branch is used in the merge instructions.  This means that a local mirror
5627
 
    can be used as your actual submit branch, once you have set public_branch
5628
 
    for that mirror.
5629
 
 
5630
 
    Two formats are currently supported: "4" uses revision bundle format 4 and
5631
 
    merge directive format 2.  It is significantly faster and smaller than
5632
 
    older formats.  It is compatible with Bazaar 0.19 and later.  It is the
5633
 
    default.  "0.9" uses revision bundle format 0.9 and merge directive
5634
 
    format 1.  It is compatible with Bazaar 0.12 - 0.18.
5635
 
    """
5636
 
 
5637
 
    takes_options = [
5638
 
        Option('no-bundle',
5639
 
               help='Do not include a bundle in the merge directive.'),
5640
 
        Option('no-patch', help='Do not include a preview patch in the merge'
5641
 
               ' directive.'),
5642
 
        Option('remember',
5643
 
               help='Remember submit and public branch.'),
5644
 
        Option('from',
5645
 
               help='Branch to generate the submission from, '
5646
 
               'rather than the one containing the working directory.',
5647
 
               short_name='f',
5648
 
               type=unicode),
5649
 
        Option('output', short_name='o', help='Write directive to this file.',
5650
 
               type=unicode),
5651
 
        Option('strict',
5652
 
               help='Refuse to bundle revisions if there are uncommitted'
5653
 
               ' changes in the working tree, --no-strict disables the check.'),
5654
 
        'revision',
5655
 
        RegistryOption('format',
5656
 
                       help='Use the specified output format.',
5657
 
                       lazy_registry=('bzrlib.send', 'format_registry')),
5658
 
        ]
5659
 
    aliases = ['bundle']
5660
 
 
5661
 
    _see_also = ['send', 'merge']
5662
 
 
5663
 
    hidden = True
5664
 
 
5665
 
    def run(self, submit_branch=None, public_branch=None, no_bundle=False,
5666
 
            no_patch=False, revision=None, remember=False, output=None,
5667
 
            format=None, strict=None, **kwargs):
5668
 
        if output is None:
5669
 
            output = '-'
5670
 
        from bzrlib.send import send
5671
 
        return send(submit_branch, revision, public_branch, remember,
5672
 
                         format, no_bundle, no_patch, output,
5673
 
                         kwargs.get('from', '.'), None, None, None,
5674
 
                         self.outf, strict=strict)
5675
 
 
5676
 
 
5677
3629
class cmd_tag(Command):
5678
 
    __doc__ = """Create, remove or modify a tag naming a revision.
5679
 
 
 
3630
    """Create a tag naming a revision.
 
3631
    
5680
3632
    Tags give human-meaningful names to revisions.  Commands that take a -r
5681
3633
    (--revision) option can be given -rtag:X, where X is any previously
5682
3634
    created tag.
5684
3636
    Tags are stored in the branch.  Tags are copied from one branch to another
5685
3637
    along when you branch, push, pull or merge.
5686
3638
 
5687
 
    It is an error to give a tag name that already exists unless you pass
 
3639
    It is an error to give a tag name that already exists unless you pass 
5688
3640
    --force, in which case the tag is moved to point to the new revision.
5689
 
 
5690
 
    To rename a tag (change the name but keep it on the same revsion), run ``bzr
5691
 
    tag new-name -r tag:old-name`` and then ``bzr tag --delete oldname``.
5692
 
 
5693
 
    If no tag name is specified it will be determined through the 
5694
 
    'automatic_tag_name' hook. This can e.g. be used to automatically tag
5695
 
    upstream releases by reading configure.ac. See ``bzr help hooks`` for
5696
 
    details.
5697
3641
    """
5698
3642
 
5699
3643
    _see_also = ['commit', 'tags']
5700
 
    takes_args = ['tag_name?']
 
3644
    takes_args = ['tag_name']
5701
3645
    takes_options = [
5702
3646
        Option('delete',
5703
3647
            help='Delete this tag rather than placing it.',
5704
3648
            ),
5705
 
        custom_help('directory',
5706
 
            help='Branch in which to place the tag.'),
 
3649
        Option('directory',
 
3650
            help='Branch in which to place the tag.',
 
3651
            short_name='d',
 
3652
            type=unicode,
 
3653
            ),
5707
3654
        Option('force',
5708
3655
            help='Replace existing tags.',
5709
3656
            ),
5710
3657
        'revision',
5711
3658
        ]
5712
3659
 
5713
 
    def run(self, tag_name=None,
 
3660
    def run(self, tag_name,
5714
3661
            delete=None,
5715
3662
            directory='.',
5716
3663
            force=None,
5717
3664
            revision=None,
5718
3665
            ):
5719
3666
        branch, relpath = Branch.open_containing(directory)
5720
 
        self.add_cleanup(branch.lock_write().unlock)
5721
 
        if delete:
5722
 
            if tag_name is None:
5723
 
                raise errors.BzrCommandError(gettext("No tag specified to delete."))
5724
 
            branch.tags.delete_tag(tag_name)
5725
 
            note(gettext('Deleted tag %s.') % tag_name)
5726
 
        else:
5727
 
            if revision:
5728
 
                if len(revision) != 1:
5729
 
                    raise errors.BzrCommandError(gettext(
5730
 
                        "Tags can only be placed on a single revision, "
5731
 
                        "not on a range"))
5732
 
                revision_id = revision[0].as_revision_id(branch)
5733
 
            else:
5734
 
                revision_id = branch.last_revision()
5735
 
            if tag_name is None:
5736
 
                tag_name = branch.automatic_tag_name(revision_id)
5737
 
                if tag_name is None:
5738
 
                    raise errors.BzrCommandError(gettext(
5739
 
                        "Please specify a tag name."))
5740
 
            try:
5741
 
                existing_target = branch.tags.lookup_tag(tag_name)
5742
 
            except errors.NoSuchTag:
5743
 
                existing_target = None
5744
 
            if not force and existing_target not in (None, revision_id):
5745
 
                raise errors.TagAlreadyExists(tag_name)
5746
 
            if existing_target == revision_id:
5747
 
                note(gettext('Tag %s already exists for that revision.') % tag_name)
5748
 
            else:
 
3667
        branch.lock_write()
 
3668
        try:
 
3669
            if delete:
 
3670
                branch.tags.delete_tag(tag_name)
 
3671
                self.outf.write('Deleted tag %s.\n' % tag_name)
 
3672
            else:
 
3673
                if revision:
 
3674
                    if len(revision) != 1:
 
3675
                        raise errors.BzrCommandError(
 
3676
                            "Tags can only be placed on a single revision, "
 
3677
                            "not on a range")
 
3678
                    revision_id = revision[0].in_history(branch).rev_id
 
3679
                else:
 
3680
                    revision_id = branch.last_revision()
 
3681
                if (not force) and branch.tags.has_tag(tag_name):
 
3682
                    raise errors.TagAlreadyExists(tag_name)
5749
3683
                branch.tags.set_tag(tag_name, revision_id)
5750
 
                if existing_target is None:
5751
 
                    note(gettext('Created tag %s.') % tag_name)
5752
 
                else:
5753
 
                    note(gettext('Updated tag %s.') % tag_name)
 
3684
                self.outf.write('Created tag %s.\n' % tag_name)
 
3685
        finally:
 
3686
            branch.unlock()
5754
3687
 
5755
3688
 
5756
3689
class cmd_tags(Command):
5757
 
    __doc__ = """List tags.
 
3690
    """List tags.
5758
3691
 
5759
 
    This command shows a table of tag names and the revisions they reference.
 
3692
    This tag shows a table of tag names and the revisions they reference.
5760
3693
    """
5761
3694
 
5762
3695
    _see_also = ['tag']
5763
3696
    takes_options = [
5764
 
        custom_help('directory',
5765
 
            help='Branch whose tags should be displayed.'),
5766
 
        RegistryOption('sort',
5767
 
            'Sort tags by different criteria.', title='Sorting',
5768
 
            lazy_registry=('bzrlib.tag', 'tag_sort_methods')
 
3697
        Option('directory',
 
3698
            help='Branch whose tags should be displayed.',
 
3699
            short_name='d',
 
3700
            type=unicode,
5769
3701
            ),
5770
 
        'show-ids',
5771
 
        'revision',
5772
3702
    ]
5773
3703
 
5774
3704
    @display_command
5775
 
    def run(self, directory='.', sort=None, show_ids=False, revision=None):
5776
 
        from bzrlib.tag import tag_sort_methods
 
3705
    def run(self,
 
3706
            directory='.',
 
3707
            ):
5777
3708
        branch, relpath = Branch.open_containing(directory)
5778
 
 
5779
 
        tags = branch.tags.get_tag_dict().items()
5780
 
        if not tags:
5781
 
            return
5782
 
 
5783
 
        self.add_cleanup(branch.lock_read().unlock)
5784
 
        if revision:
5785
 
            # Restrict to the specified range
5786
 
            tags = self._tags_for_range(branch, revision)
5787
 
        if sort is None:
5788
 
            sort = tag_sort_methods.get()
5789
 
        sort(branch, tags)
5790
 
        if not show_ids:
5791
 
            # [ (tag, revid), ... ] -> [ (tag, dotted_revno), ... ]
5792
 
            for index, (tag, revid) in enumerate(tags):
5793
 
                try:
5794
 
                    revno = branch.revision_id_to_dotted_revno(revid)
5795
 
                    if isinstance(revno, tuple):
5796
 
                        revno = '.'.join(map(str, revno))
5797
 
                except (errors.NoSuchRevision,
5798
 
                        errors.GhostRevisionsHaveNoRevno):
5799
 
                    # Bad tag data/merges can lead to tagged revisions
5800
 
                    # which are not in this branch. Fail gracefully ...
5801
 
                    revno = '?'
5802
 
                tags[index] = (tag, revno)
5803
 
        self.cleanup_now()
5804
 
        for tag, revspec in tags:
5805
 
            self.outf.write('%-20s %s\n' % (tag, revspec))
5806
 
 
5807
 
    def _tags_for_range(self, branch, revision):
5808
 
        range_valid = True
5809
 
        rev1, rev2 = _get_revision_range(revision, branch, self.name())
5810
 
        revid1, revid2 = rev1.rev_id, rev2.rev_id
5811
 
        # _get_revision_range will always set revid2 if it's not specified.
5812
 
        # If revid1 is None, it means we want to start from the branch
5813
 
        # origin which is always a valid ancestor. If revid1 == revid2, the
5814
 
        # ancestry check is useless.
5815
 
        if revid1 and revid1 != revid2:
5816
 
            # FIXME: We really want to use the same graph than
5817
 
            # branch.iter_merge_sorted_revisions below, but this is not
5818
 
            # easily available -- vila 2011-09-23
5819
 
            if branch.repository.get_graph().is_ancestor(revid2, revid1):
5820
 
                # We don't want to output anything in this case...
5821
 
                return []
5822
 
        # only show revisions between revid1 and revid2 (inclusive)
5823
 
        tagged_revids = branch.tags.get_reverse_tag_dict()
5824
 
        found = []
5825
 
        for r in branch.iter_merge_sorted_revisions(
5826
 
            start_revision_id=revid2, stop_revision_id=revid1,
5827
 
            stop_rule='include'):
5828
 
            revid_tags = tagged_revids.get(r[0], None)
5829
 
            if revid_tags:
5830
 
                found.extend([(tag, r[0]) for tag in revid_tags])
5831
 
        return found
5832
 
 
5833
 
 
5834
 
class cmd_reconfigure(Command):
5835
 
    __doc__ = """Reconfigure the type of a bzr directory.
5836
 
 
5837
 
    A target configuration must be specified.
5838
 
 
5839
 
    For checkouts, the bind-to location will be auto-detected if not specified.
5840
 
    The order of preference is
5841
 
    1. For a lightweight checkout, the current bound location.
5842
 
    2. For branches that used to be checkouts, the previously-bound location.
5843
 
    3. The push location.
5844
 
    4. The parent location.
5845
 
    If none of these is available, --bind-to must be specified.
5846
 
    """
5847
 
 
5848
 
    _see_also = ['branches', 'checkouts', 'standalone-trees', 'working-trees']
5849
 
    takes_args = ['location?']
5850
 
    takes_options = [
5851
 
        RegistryOption.from_kwargs(
5852
 
            'tree_type',
5853
 
            title='Tree type',
5854
 
            help='The relation between branch and tree.',
5855
 
            value_switches=True, enum_switch=False,
5856
 
            branch='Reconfigure to be an unbound branch with no working tree.',
5857
 
            tree='Reconfigure to be an unbound branch with a working tree.',
5858
 
            checkout='Reconfigure to be a bound branch with a working tree.',
5859
 
            lightweight_checkout='Reconfigure to be a lightweight'
5860
 
                ' checkout (with no local history).',
5861
 
            ),
5862
 
        RegistryOption.from_kwargs(
5863
 
            'repository_type',
5864
 
            title='Repository type',
5865
 
            help='Location fo the repository.',
5866
 
            value_switches=True, enum_switch=False,
5867
 
            standalone='Reconfigure to be a standalone branch '
5868
 
                '(i.e. stop using shared repository).',
5869
 
            use_shared='Reconfigure to use a shared repository.',
5870
 
            ),
5871
 
        RegistryOption.from_kwargs(
5872
 
            'repository_trees',
5873
 
            title='Trees in Repository',
5874
 
            help='Whether new branches in the repository have trees.',
5875
 
            value_switches=True, enum_switch=False,
5876
 
            with_trees='Reconfigure repository to create '
5877
 
                'working trees on branches by default.',
5878
 
            with_no_trees='Reconfigure repository to not create '
5879
 
                'working trees on branches by default.'
5880
 
            ),
5881
 
        Option('bind-to', help='Branch to bind checkout to.', type=str),
5882
 
        Option('force',
5883
 
            help='Perform reconfiguration even if local changes'
5884
 
            ' will be lost.'),
5885
 
        Option('stacked-on',
5886
 
            help='Reconfigure a branch to be stacked on another branch.',
5887
 
            type=unicode,
5888
 
            ),
5889
 
        Option('unstacked',
5890
 
            help='Reconfigure a branch to be unstacked.  This '
5891
 
                'may require copying substantial data into it.',
5892
 
            ),
5893
 
        ]
5894
 
 
5895
 
    def run(self, location=None, bind_to=None, force=False,
5896
 
            tree_type=None, repository_type=None, repository_trees=None,
5897
 
            stacked_on=None, unstacked=None):
5898
 
        directory = bzrdir.BzrDir.open(location)
5899
 
        if stacked_on and unstacked:
5900
 
            raise errors.BzrCommandError(gettext("Can't use both --stacked-on and --unstacked"))
5901
 
        elif stacked_on is not None:
5902
 
            reconfigure.ReconfigureStackedOn().apply(directory, stacked_on)
5903
 
        elif unstacked:
5904
 
            reconfigure.ReconfigureUnstacked().apply(directory)
5905
 
        # At the moment you can use --stacked-on and a different
5906
 
        # reconfiguration shape at the same time; there seems no good reason
5907
 
        # to ban it.
5908
 
        if (tree_type is None and
5909
 
            repository_type is None and
5910
 
            repository_trees is None):
5911
 
            if stacked_on or unstacked:
5912
 
                return
5913
 
            else:
5914
 
                raise errors.BzrCommandError(gettext('No target configuration '
5915
 
                    'specified'))
5916
 
        reconfiguration = None
5917
 
        if tree_type == 'branch':
5918
 
            reconfiguration = reconfigure.Reconfigure.to_branch(directory)
5919
 
        elif tree_type == 'tree':
5920
 
            reconfiguration = reconfigure.Reconfigure.to_tree(directory)
5921
 
        elif tree_type == 'checkout':
5922
 
            reconfiguration = reconfigure.Reconfigure.to_checkout(
5923
 
                directory, bind_to)
5924
 
        elif tree_type == 'lightweight-checkout':
5925
 
            reconfiguration = reconfigure.Reconfigure.to_lightweight_checkout(
5926
 
                directory, bind_to)
5927
 
        if reconfiguration:
5928
 
            reconfiguration.apply(force)
5929
 
            reconfiguration = None
5930
 
        if repository_type == 'use-shared':
5931
 
            reconfiguration = reconfigure.Reconfigure.to_use_shared(directory)
5932
 
        elif repository_type == 'standalone':
5933
 
            reconfiguration = reconfigure.Reconfigure.to_standalone(directory)
5934
 
        if reconfiguration:
5935
 
            reconfiguration.apply(force)
5936
 
            reconfiguration = None
5937
 
        if repository_trees == 'with-trees':
5938
 
            reconfiguration = reconfigure.Reconfigure.set_repository_trees(
5939
 
                directory, True)
5940
 
        elif repository_trees == 'with-no-trees':
5941
 
            reconfiguration = reconfigure.Reconfigure.set_repository_trees(
5942
 
                directory, False)
5943
 
        if reconfiguration:
5944
 
            reconfiguration.apply(force)
5945
 
            reconfiguration = None
5946
 
 
5947
 
 
5948
 
class cmd_switch(Command):
5949
 
    __doc__ = """Set the branch of a checkout and update.
5950
 
 
5951
 
    For lightweight checkouts, this changes the branch being referenced.
5952
 
    For heavyweight checkouts, this checks that there are no local commits
5953
 
    versus the current bound branch, then it makes the local branch a mirror
5954
 
    of the new location and binds to it.
5955
 
 
5956
 
    In both cases, the working tree is updated and uncommitted changes
5957
 
    are merged. The user can commit or revert these as they desire.
5958
 
 
5959
 
    Pending merges need to be committed or reverted before using switch.
5960
 
 
5961
 
    The path to the branch to switch to can be specified relative to the parent
5962
 
    directory of the current branch. For example, if you are currently in a
5963
 
    checkout of /path/to/branch, specifying 'newbranch' will find a branch at
5964
 
    /path/to/newbranch.
5965
 
 
5966
 
    Bound branches use the nickname of its master branch unless it is set
5967
 
    locally, in which case switching will update the local nickname to be
5968
 
    that of the master.
5969
 
    """
5970
 
 
5971
 
    takes_args = ['to_location?']
5972
 
    takes_options = ['directory',
5973
 
                     Option('force',
5974
 
                        help='Switch even if local commits will be lost.'),
5975
 
                     'revision',
5976
 
                     Option('create-branch', short_name='b',
5977
 
                        help='Create the target branch from this one before'
5978
 
                             ' switching to it.'),
5979
 
                    ]
5980
 
 
5981
 
    def run(self, to_location=None, force=False, create_branch=False,
5982
 
            revision=None, directory=u'.'):
5983
 
        from bzrlib import switch
5984
 
        tree_location = directory
5985
 
        revision = _get_one_revision('switch', revision)
5986
 
        control_dir = bzrdir.BzrDir.open_containing(tree_location)[0]
5987
 
        if to_location is None:
5988
 
            if revision is None:
5989
 
                raise errors.BzrCommandError(gettext('You must supply either a'
5990
 
                                             ' revision or a location'))
5991
 
            to_location = tree_location
5992
 
        try:
5993
 
            branch = control_dir.open_branch()
5994
 
            had_explicit_nick = branch.get_config().has_explicit_nickname()
5995
 
        except errors.NotBranchError:
5996
 
            branch = None
5997
 
            had_explicit_nick = False
5998
 
        if create_branch:
5999
 
            if branch is None:
6000
 
                raise errors.BzrCommandError(gettext('cannot create branch without'
6001
 
                                             ' source branch'))
6002
 
            to_location = directory_service.directories.dereference(
6003
 
                              to_location)
6004
 
            if '/' not in to_location and '\\' not in to_location:
6005
 
                # This path is meant to be relative to the existing branch
6006
 
                this_url = self._get_branch_location(control_dir)
6007
 
                to_location = urlutils.join(this_url, '..', to_location)
6008
 
            to_branch = branch.bzrdir.sprout(to_location,
6009
 
                                 possible_transports=[branch.bzrdir.root_transport],
6010
 
                                 source_branch=branch).open_branch()
6011
 
        else:
6012
 
            try:
6013
 
                to_branch = Branch.open(to_location)
6014
 
            except errors.NotBranchError:
6015
 
                this_url = self._get_branch_location(control_dir)
6016
 
                to_branch = Branch.open(
6017
 
                    urlutils.join(this_url, '..', to_location))
6018
 
        if revision is not None:
6019
 
            revision = revision.as_revision_id(to_branch)
6020
 
        switch.switch(control_dir, to_branch, force, revision_id=revision)
6021
 
        if had_explicit_nick:
6022
 
            branch = control_dir.open_branch() #get the new branch!
6023
 
            branch.nick = to_branch.nick
6024
 
        note(gettext('Switched to branch: %s'),
6025
 
            urlutils.unescape_for_display(to_branch.base, 'utf-8'))
6026
 
 
6027
 
    def _get_branch_location(self, control_dir):
6028
 
        """Return location of branch for this control dir."""
6029
 
        try:
6030
 
            this_branch = control_dir.open_branch()
6031
 
            # This may be a heavy checkout, where we want the master branch
6032
 
            master_location = this_branch.get_bound_location()
6033
 
            if master_location is not None:
6034
 
                return master_location
6035
 
            # If not, use a local sibling
6036
 
            return this_branch.base
6037
 
        except errors.NotBranchError:
6038
 
            format = control_dir.find_branch_format()
6039
 
            if getattr(format, 'get_reference', None) is not None:
6040
 
                return format.get_reference(control_dir)
6041
 
            else:
6042
 
                return control_dir.root_transport.base
6043
 
 
6044
 
 
6045
 
class cmd_view(Command):
6046
 
    __doc__ = """Manage filtered views.
6047
 
 
6048
 
    Views provide a mask over the tree so that users can focus on
6049
 
    a subset of a tree when doing their work. After creating a view,
6050
 
    commands that support a list of files - status, diff, commit, etc -
6051
 
    effectively have that list of files implicitly given each time.
6052
 
    An explicit list of files can still be given but those files
6053
 
    must be within the current view.
6054
 
 
6055
 
    In most cases, a view has a short life-span: it is created to make
6056
 
    a selected change and is deleted once that change is committed.
6057
 
    At other times, you may wish to create one or more named views
6058
 
    and switch between them.
6059
 
 
6060
 
    To disable the current view without deleting it, you can switch to
6061
 
    the pseudo view called ``off``. This can be useful when you need
6062
 
    to see the whole tree for an operation or two (e.g. merge) but
6063
 
    want to switch back to your view after that.
6064
 
 
6065
 
    :Examples:
6066
 
      To define the current view::
6067
 
 
6068
 
        bzr view file1 dir1 ...
6069
 
 
6070
 
      To list the current view::
6071
 
 
6072
 
        bzr view
6073
 
 
6074
 
      To delete the current view::
6075
 
 
6076
 
        bzr view --delete
6077
 
 
6078
 
      To disable the current view without deleting it::
6079
 
 
6080
 
        bzr view --switch off
6081
 
 
6082
 
      To define a named view and switch to it::
6083
 
 
6084
 
        bzr view --name view-name file1 dir1 ...
6085
 
 
6086
 
      To list a named view::
6087
 
 
6088
 
        bzr view --name view-name
6089
 
 
6090
 
      To delete a named view::
6091
 
 
6092
 
        bzr view --name view-name --delete
6093
 
 
6094
 
      To switch to a named view::
6095
 
 
6096
 
        bzr view --switch view-name
6097
 
 
6098
 
      To list all views defined::
6099
 
 
6100
 
        bzr view --all
6101
 
 
6102
 
      To delete all views::
6103
 
 
6104
 
        bzr view --delete --all
6105
 
    """
6106
 
 
6107
 
    _see_also = []
6108
 
    takes_args = ['file*']
6109
 
    takes_options = [
6110
 
        Option('all',
6111
 
            help='Apply list or delete action to all views.',
6112
 
            ),
6113
 
        Option('delete',
6114
 
            help='Delete the view.',
6115
 
            ),
6116
 
        Option('name',
6117
 
            help='Name of the view to define, list or delete.',
6118
 
            type=unicode,
6119
 
            ),
6120
 
        Option('switch',
6121
 
            help='Name of the view to switch to.',
6122
 
            type=unicode,
6123
 
            ),
6124
 
        ]
6125
 
 
6126
 
    def run(self, file_list,
6127
 
            all=False,
6128
 
            delete=False,
6129
 
            name=None,
6130
 
            switch=None,
6131
 
            ):
6132
 
        tree, file_list = WorkingTree.open_containing_paths(file_list,
6133
 
            apply_view=False)
6134
 
        current_view, view_dict = tree.views.get_view_info()
6135
 
        if name is None:
6136
 
            name = current_view
6137
 
        if delete:
6138
 
            if file_list:
6139
 
                raise errors.BzrCommandError(gettext(
6140
 
                    "Both --delete and a file list specified"))
6141
 
            elif switch:
6142
 
                raise errors.BzrCommandError(gettext(
6143
 
                    "Both --delete and --switch specified"))
6144
 
            elif all:
6145
 
                tree.views.set_view_info(None, {})
6146
 
                self.outf.write(gettext("Deleted all views.\n"))
6147
 
            elif name is None:
6148
 
                raise errors.BzrCommandError(gettext("No current view to delete"))
6149
 
            else:
6150
 
                tree.views.delete_view(name)
6151
 
                self.outf.write(gettext("Deleted '%s' view.\n") % name)
6152
 
        elif switch:
6153
 
            if file_list:
6154
 
                raise errors.BzrCommandError(gettext(
6155
 
                    "Both --switch and a file list specified"))
6156
 
            elif all:
6157
 
                raise errors.BzrCommandError(gettext(
6158
 
                    "Both --switch and --all specified"))
6159
 
            elif switch == 'off':
6160
 
                if current_view is None:
6161
 
                    raise errors.BzrCommandError(gettext("No current view to disable"))
6162
 
                tree.views.set_view_info(None, view_dict)
6163
 
                self.outf.write(gettext("Disabled '%s' view.\n") % (current_view))
6164
 
            else:
6165
 
                tree.views.set_view_info(switch, view_dict)
6166
 
                view_str = views.view_display_str(tree.views.lookup_view())
6167
 
                self.outf.write(gettext("Using '{0}' view: {1}\n").format(switch, view_str))
6168
 
        elif all:
6169
 
            if view_dict:
6170
 
                self.outf.write(gettext('Views defined:\n'))
6171
 
                for view in sorted(view_dict):
6172
 
                    if view == current_view:
6173
 
                        active = "=>"
6174
 
                    else:
6175
 
                        active = "  "
6176
 
                    view_str = views.view_display_str(view_dict[view])
6177
 
                    self.outf.write('%s %-20s %s\n' % (active, view, view_str))
6178
 
            else:
6179
 
                self.outf.write(gettext('No views defined.\n'))
6180
 
        elif file_list:
6181
 
            if name is None:
6182
 
                # No name given and no current view set
6183
 
                name = 'my'
6184
 
            elif name == 'off':
6185
 
                raise errors.BzrCommandError(gettext(
6186
 
                    "Cannot change the 'off' pseudo view"))
6187
 
            tree.views.set_view(name, sorted(file_list))
6188
 
            view_str = views.view_display_str(tree.views.lookup_view())
6189
 
            self.outf.write(gettext("Using '{0}' view: {1}\n").format(name, view_str))
6190
 
        else:
6191
 
            # list the files
6192
 
            if name is None:
6193
 
                # No name given and no current view set
6194
 
                self.outf.write(gettext('No current view.\n'))
6195
 
            else:
6196
 
                view_str = views.view_display_str(tree.views.lookup_view(name))
6197
 
                self.outf.write(gettext("'{0}' view is: {1}\n").format(name, view_str))
6198
 
 
6199
 
 
6200
 
class cmd_hooks(Command):
6201
 
    __doc__ = """Show hooks."""
6202
 
 
6203
 
    hidden = True
6204
 
 
6205
 
    def run(self):
6206
 
        for hook_key in sorted(hooks.known_hooks.keys()):
6207
 
            some_hooks = hooks.known_hooks_key_to_object(hook_key)
6208
 
            self.outf.write("%s:\n" % type(some_hooks).__name__)
6209
 
            for hook_name, hook_point in sorted(some_hooks.items()):
6210
 
                self.outf.write("  %s:\n" % (hook_name,))
6211
 
                found_hooks = list(hook_point)
6212
 
                if found_hooks:
6213
 
                    for hook in found_hooks:
6214
 
                        self.outf.write("    %s\n" %
6215
 
                                        (some_hooks.get_hook_name(hook),))
 
3709
        for tag_name, target in sorted(branch.tags.get_tag_dict().items()):
 
3710
            self.outf.write('%-20s %s\n' % (tag_name, target))
 
3711
 
 
3712
 
 
3713
# command-line interpretation helper for merge-related commands
 
3714
def _merge_helper(other_revision, base_revision,
 
3715
                  check_clean=True, ignore_zero=False,
 
3716
                  this_dir=None, backup_files=False,
 
3717
                  merge_type=None,
 
3718
                  file_list=None, show_base=False, reprocess=False,
 
3719
                  pull=False,
 
3720
                  pb=DummyProgress(),
 
3721
                  change_reporter=None,
 
3722
                  other_rev_id=None):
 
3723
    """Merge changes into a tree.
 
3724
 
 
3725
    base_revision
 
3726
        list(path, revno) Base for three-way merge.  
 
3727
        If [None, None] then a base will be automatically determined.
 
3728
    other_revision
 
3729
        list(path, revno) Other revision for three-way merge.
 
3730
    this_dir
 
3731
        Directory to merge changes into; '.' by default.
 
3732
    check_clean
 
3733
        If true, this_dir must have no uncommitted changes before the
 
3734
        merge begins.
 
3735
    ignore_zero - If true, suppress the "zero conflicts" message when 
 
3736
        there are no conflicts; should be set when doing something we expect
 
3737
        to complete perfectly.
 
3738
    file_list - If supplied, merge only changes to selected files.
 
3739
 
 
3740
    All available ancestors of other_revision and base_revision are
 
3741
    automatically pulled into the branch.
 
3742
 
 
3743
    The revno may be -1 to indicate the last revision on the branch, which is
 
3744
    the typical case.
 
3745
 
 
3746
    This function is intended for use from the command line; programmatic
 
3747
    clients might prefer to call merge.merge_inner(), which has less magic 
 
3748
    behavior.
 
3749
    """
 
3750
    # Loading it late, so that we don't always have to import bzrlib.merge
 
3751
    if merge_type is None:
 
3752
        merge_type = _mod_merge.Merge3Merger
 
3753
    if this_dir is None:
 
3754
        this_dir = u'.'
 
3755
    this_tree = WorkingTree.open_containing(this_dir)[0]
 
3756
    if show_base and not merge_type is _mod_merge.Merge3Merger:
 
3757
        raise errors.BzrCommandError("Show-base is not supported for this merge"
 
3758
                                     " type. %s" % merge_type)
 
3759
    if reprocess and not merge_type.supports_reprocess:
 
3760
        raise errors.BzrCommandError("Conflict reduction is not supported for merge"
 
3761
                                     " type %s." % merge_type)
 
3762
    if reprocess and show_base:
 
3763
        raise errors.BzrCommandError("Cannot do conflict reduction and show base.")
 
3764
    # TODO: jam 20070226 We should really lock these trees earlier. However, we
 
3765
    #       only want to take out a lock_tree_write() if we don't have to pull
 
3766
    #       any ancestry. But merge might fetch ancestry in the middle, in
 
3767
    #       which case we would need a lock_write().
 
3768
    #       Because we cannot upgrade locks, for now we live with the fact that
 
3769
    #       the tree will be locked multiple times during a merge. (Maybe
 
3770
    #       read-only some of the time, but it means things will get read
 
3771
    #       multiple times.)
 
3772
    try:
 
3773
        merger = _mod_merge.Merger(this_tree.branch, this_tree=this_tree,
 
3774
                                   pb=pb, change_reporter=change_reporter)
 
3775
        merger.pp = ProgressPhase("Merge phase", 5, pb)
 
3776
        merger.pp.next_phase()
 
3777
        merger.check_basis(check_clean)
 
3778
        if other_rev_id is not None:
 
3779
            merger.set_other_revision(other_rev_id, this_tree.branch)
 
3780
        else:
 
3781
            merger.set_other(other_revision)
 
3782
        merger.pp.next_phase()
 
3783
        merger.set_base(base_revision)
 
3784
        if merger.base_rev_id == merger.other_rev_id:
 
3785
            note('Nothing to do.')
 
3786
            return 0
 
3787
        if file_list is None:
 
3788
            if pull and merger.base_rev_id == merger.this_rev_id:
 
3789
                # FIXME: deduplicate with pull
 
3790
                result = merger.this_tree.pull(merger.this_branch,
 
3791
                        False, merger.other_rev_id)
 
3792
                if result.old_revid == result.new_revid:
 
3793
                    note('No revisions to pull.')
6216
3794
                else:
6217
 
                    self.outf.write(gettext("    <no hooks installed>\n"))
6218
 
 
6219
 
 
6220
 
class cmd_remove_branch(Command):
6221
 
    __doc__ = """Remove a branch.
6222
 
 
6223
 
    This will remove the branch from the specified location but 
6224
 
    will keep any working tree or repository in place.
6225
 
 
6226
 
    :Examples:
6227
 
 
6228
 
      Remove the branch at repo/trunk::
6229
 
 
6230
 
        bzr remove-branch repo/trunk
6231
 
 
6232
 
    """
6233
 
 
6234
 
    takes_args = ["location?"]
6235
 
 
6236
 
    aliases = ["rmbranch"]
6237
 
 
6238
 
    def run(self, location=None):
6239
 
        if location is None:
6240
 
            location = "."
6241
 
        branch = Branch.open_containing(location)[0]
6242
 
        branch.bzrdir.destroy_branch()
6243
 
 
6244
 
 
6245
 
class cmd_shelve(Command):
6246
 
    __doc__ = """Temporarily set aside some changes from the current tree.
6247
 
 
6248
 
    Shelve allows you to temporarily put changes you've made "on the shelf",
6249
 
    ie. out of the way, until a later time when you can bring them back from
6250
 
    the shelf with the 'unshelve' command.  The changes are stored alongside
6251
 
    your working tree, and so they aren't propagated along with your branch nor
6252
 
    will they survive its deletion.
6253
 
 
6254
 
    If shelve --list is specified, previously-shelved changes are listed.
6255
 
 
6256
 
    Shelve is intended to help separate several sets of changes that have
6257
 
    been inappropriately mingled.  If you just want to get rid of all changes
6258
 
    and you don't need to restore them later, use revert.  If you want to
6259
 
    shelve all text changes at once, use shelve --all.
6260
 
 
6261
 
    If filenames are specified, only the changes to those files will be
6262
 
    shelved. Other files will be left untouched.
6263
 
 
6264
 
    If a revision is specified, changes since that revision will be shelved.
6265
 
 
6266
 
    You can put multiple items on the shelf, and by default, 'unshelve' will
6267
 
    restore the most recently shelved changes.
6268
 
 
6269
 
    For complicated changes, it is possible to edit the changes in a separate
6270
 
    editor program to decide what the file remaining in the working copy
6271
 
    should look like.  To do this, add the configuration option
6272
 
 
6273
 
        change_editor = PROGRAM @new_path @old_path
6274
 
 
6275
 
    where @new_path is replaced with the path of the new version of the 
6276
 
    file and @old_path is replaced with the path of the old version of 
6277
 
    the file.  The PROGRAM should save the new file with the desired 
6278
 
    contents of the file in the working tree.
6279
 
        
6280
 
    """
6281
 
 
6282
 
    takes_args = ['file*']
6283
 
 
6284
 
    takes_options = [
6285
 
        'directory',
6286
 
        'revision',
6287
 
        Option('all', help='Shelve all changes.'),
6288
 
        'message',
6289
 
        RegistryOption('writer', 'Method to use for writing diffs.',
6290
 
                       bzrlib.option.diff_writer_registry,
6291
 
                       value_switches=True, enum_switch=False),
6292
 
 
6293
 
        Option('list', help='List shelved changes.'),
6294
 
        Option('destroy',
6295
 
               help='Destroy removed changes instead of shelving them.'),
6296
 
    ]
6297
 
    _see_also = ['unshelve', 'configuration']
6298
 
 
6299
 
    def run(self, revision=None, all=False, file_list=None, message=None,
6300
 
            writer=None, list=False, destroy=False, directory=None):
6301
 
        if list:
6302
 
            return self.run_for_list(directory=directory)
6303
 
        from bzrlib.shelf_ui import Shelver
6304
 
        if writer is None:
6305
 
            writer = bzrlib.option.diff_writer_registry.get()
6306
 
        try:
6307
 
            shelver = Shelver.from_args(writer(sys.stdout), revision, all,
6308
 
                file_list, message, destroy=destroy, directory=directory)
6309
 
            try:
6310
 
                shelver.run()
6311
 
            finally:
6312
 
                shelver.finalize()
6313
 
        except errors.UserAbort:
6314
 
            return 0
6315
 
 
6316
 
    def run_for_list(self, directory=None):
6317
 
        if directory is None:
6318
 
            directory = u'.'
6319
 
        tree = WorkingTree.open_containing(directory)[0]
6320
 
        self.add_cleanup(tree.lock_read().unlock)
6321
 
        manager = tree.get_shelf_manager()
6322
 
        shelves = manager.active_shelves()
6323
 
        if len(shelves) == 0:
6324
 
            note(gettext('No shelved changes.'))
6325
 
            return 0
6326
 
        for shelf_id in reversed(shelves):
6327
 
            message = manager.get_metadata(shelf_id).get('message')
6328
 
            if message is None:
6329
 
                message = '<no message>'
6330
 
            self.outf.write('%3d: %s\n' % (shelf_id, message))
6331
 
        return 1
6332
 
 
6333
 
 
6334
 
class cmd_unshelve(Command):
6335
 
    __doc__ = """Restore shelved changes.
6336
 
 
6337
 
    By default, the most recently shelved changes are restored. However if you
6338
 
    specify a shelf by id those changes will be restored instead.  This works
6339
 
    best when the changes don't depend on each other.
6340
 
    """
6341
 
 
6342
 
    takes_args = ['shelf_id?']
6343
 
    takes_options = [
6344
 
        'directory',
6345
 
        RegistryOption.from_kwargs(
6346
 
            'action', help="The action to perform.",
6347
 
            enum_switch=False, value_switches=True,
6348
 
            apply="Apply changes and remove from the shelf.",
6349
 
            dry_run="Show changes, but do not apply or remove them.",
6350
 
            preview="Instead of unshelving the changes, show the diff that "
6351
 
                    "would result from unshelving.",
6352
 
            delete_only="Delete changes without applying them.",
6353
 
            keep="Apply changes but don't delete them.",
6354
 
        )
6355
 
    ]
6356
 
    _see_also = ['shelve']
6357
 
 
6358
 
    def run(self, shelf_id=None, action='apply', directory=u'.'):
6359
 
        from bzrlib.shelf_ui import Unshelver
6360
 
        unshelver = Unshelver.from_args(shelf_id, action, directory=directory)
6361
 
        try:
6362
 
            unshelver.run()
6363
 
        finally:
6364
 
            unshelver.tree.unlock()
6365
 
 
6366
 
 
6367
 
class cmd_clean_tree(Command):
6368
 
    __doc__ = """Remove unwanted files from working tree.
6369
 
 
6370
 
    By default, only unknown files, not ignored files, are deleted.  Versioned
6371
 
    files are never deleted.
6372
 
 
6373
 
    Another class is 'detritus', which includes files emitted by bzr during
6374
 
    normal operations and selftests.  (The value of these files decreases with
6375
 
    time.)
6376
 
 
6377
 
    If no options are specified, unknown files are deleted.  Otherwise, option
6378
 
    flags are respected, and may be combined.
6379
 
 
6380
 
    To check what clean-tree will do, use --dry-run.
6381
 
    """
6382
 
    takes_options = ['directory',
6383
 
                     Option('ignored', help='Delete all ignored files.'),
6384
 
                     Option('detritus', help='Delete conflict files, merge and revert'
6385
 
                            ' backups, and failed selftest dirs.'),
6386
 
                     Option('unknown',
6387
 
                            help='Delete files unknown to bzr (default).'),
6388
 
                     Option('dry-run', help='Show files to delete instead of'
6389
 
                            ' deleting them.'),
6390
 
                     Option('force', help='Do not prompt before deleting.')]
6391
 
    def run(self, unknown=False, ignored=False, detritus=False, dry_run=False,
6392
 
            force=False, directory=u'.'):
6393
 
        from bzrlib.clean_tree import clean_tree
6394
 
        if not (unknown or ignored or detritus):
6395
 
            unknown = True
6396
 
        if dry_run:
6397
 
            force = True
6398
 
        clean_tree(directory, unknown=unknown, ignored=ignored,
6399
 
                   detritus=detritus, dry_run=dry_run, no_prompt=force)
6400
 
 
6401
 
 
6402
 
class cmd_reference(Command):
6403
 
    __doc__ = """list, view and set branch locations for nested trees.
6404
 
 
6405
 
    If no arguments are provided, lists the branch locations for nested trees.
6406
 
    If one argument is provided, display the branch location for that tree.
6407
 
    If two arguments are provided, set the branch location for that tree.
6408
 
    """
6409
 
 
6410
 
    hidden = True
6411
 
 
6412
 
    takes_args = ['path?', 'location?']
6413
 
 
6414
 
    def run(self, path=None, location=None):
6415
 
        branchdir = '.'
6416
 
        if path is not None:
6417
 
            branchdir = path
6418
 
        tree, branch, relpath =(
6419
 
            bzrdir.BzrDir.open_containing_tree_or_branch(branchdir))
6420
 
        if path is not None:
6421
 
            path = relpath
6422
 
        if tree is None:
6423
 
            tree = branch.basis_tree()
6424
 
        if path is None:
6425
 
            info = branch._get_all_reference_info().iteritems()
6426
 
            self._display_reference_info(tree, branch, info)
 
3795
                    note('Now on revision %d.' % result.new_revno)
 
3796
                return 0
 
3797
        merger.backup_files = backup_files
 
3798
        merger.merge_type = merge_type 
 
3799
        merger.set_interesting_files(file_list)
 
3800
        merger.show_base = show_base 
 
3801
        merger.reprocess = reprocess
 
3802
        conflicts = merger.do_merge()
 
3803
        if file_list is None:
 
3804
            merger.set_pending()
 
3805
    finally:
 
3806
        pb.clear()
 
3807
    return conflicts
 
3808
 
 
3809
 
 
3810
def _create_prefix(cur_transport):
 
3811
    needed = [cur_transport]
 
3812
    # Recurse upwards until we can create a directory successfully
 
3813
    while True:
 
3814
        new_transport = cur_transport.clone('..')
 
3815
        if new_transport.base == cur_transport.base:
 
3816
            raise errors.BzrCommandError(
 
3817
                "Failed to create path prefix for %s."
 
3818
                % cur_transport.base)
 
3819
        try:
 
3820
            new_transport.mkdir('.')
 
3821
        except errors.NoSuchFile:
 
3822
            needed.append(new_transport)
 
3823
            cur_transport = new_transport
6427
3824
        else:
6428
 
            file_id = tree.path2id(path)
6429
 
            if file_id is None:
6430
 
                raise errors.NotVersionedError(path)
6431
 
            if location is None:
6432
 
                info = [(file_id, branch.get_reference_info(file_id))]
6433
 
                self._display_reference_info(tree, branch, info)
6434
 
            else:
6435
 
                branch.set_reference_info(file_id, path, location)
6436
 
 
6437
 
    def _display_reference_info(self, tree, branch, info):
6438
 
        ref_list = []
6439
 
        for file_id, (path, location) in info:
6440
 
            try:
6441
 
                path = tree.id2path(file_id)
6442
 
            except errors.NoSuchId:
6443
 
                pass
6444
 
            ref_list.append((path, location))
6445
 
        for path, location in sorted(ref_list):
6446
 
            self.outf.write('%s %s\n' % (path, location))
6447
 
 
6448
 
 
6449
 
class cmd_export_pot(Command):
6450
 
    __doc__ = """Export command helps and error messages in po format."""
6451
 
 
6452
 
    hidden = True
6453
 
 
6454
 
    def run(self):
6455
 
        from bzrlib.export_pot import export_pot
6456
 
        export_pot(self.outf)
6457
 
 
6458
 
 
6459
 
def _register_lazy_builtins():
6460
 
    # register lazy builtins from other modules; called at startup and should
6461
 
    # be only called once.
6462
 
    for (name, aliases, module_name) in [
6463
 
        ('cmd_bundle_info', [], 'bzrlib.bundle.commands'),
6464
 
        ('cmd_config', [], 'bzrlib.config'),
6465
 
        ('cmd_dpush', [], 'bzrlib.foreign'),
6466
 
        ('cmd_version_info', [], 'bzrlib.cmd_version_info'),
6467
 
        ('cmd_resolve', ['resolved'], 'bzrlib.conflicts'),
6468
 
        ('cmd_conflicts', [], 'bzrlib.conflicts'),
6469
 
        ('cmd_sign_my_commits', [], 'bzrlib.commit_signature_commands'),
6470
 
        ('cmd_verify_signatures', [],
6471
 
                                        'bzrlib.commit_signature_commands'),
6472
 
        ('cmd_test_script', [], 'bzrlib.cmd_test_script'),
6473
 
        ]:
6474
 
        builtin_command_registry.register_lazy(name, aliases, module_name)
 
3825
            break
 
3826
    # Now we only need to create child directories
 
3827
    while needed:
 
3828
        cur_transport = needed.pop()
 
3829
        cur_transport.ensure_base()
 
3830
 
 
3831
 
 
3832
# Compatibility
 
3833
merge = _merge_helper
 
3834
 
 
3835
 
 
3836
# these get imported and then picked up by the scan for cmd_*
 
3837
# TODO: Some more consistent way to split command definitions across files;
 
3838
# we do need to load at least some information about them to know of 
 
3839
# aliases.  ideally we would avoid loading the implementation until the
 
3840
# details were needed.
 
3841
from bzrlib.cmd_version_info import cmd_version_info
 
3842
from bzrlib.conflicts import cmd_resolve, cmd_conflicts, restore
 
3843
from bzrlib.bundle.commands import cmd_bundle_revisions
 
3844
from bzrlib.sign_my_commits import cmd_sign_my_commits
 
3845
from bzrlib.weave_commands import cmd_versionedfile_list, cmd_weave_join, \
 
3846
        cmd_weave_plan_merge, cmd_weave_merge_text