/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: John Arbash Meinel
  • Date: 2008-09-30 20:30:04 UTC
  • mto: This revision was merged to the branch mainline in revision 3761.
  • Revision ID: john@arbash-meinel.com-20080930203004-sf06gl9iaovamxzl
Add some simple direct tests for WT.open and WT.open_containing.
Fixes bug #276436.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005, 2006, 2007, 2008 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""builtin bzr commands"""
 
18
 
 
19
import os
 
20
from StringIO import StringIO
 
21
 
 
22
from bzrlib.lazy_import import lazy_import
 
23
lazy_import(globals(), """
 
24
import codecs
 
25
import sys
 
26
import time
 
27
 
 
28
import bzrlib
 
29
from bzrlib import (
 
30
    bugtracker,
 
31
    bundle,
 
32
    bzrdir,
 
33
    delta,
 
34
    config,
 
35
    errors,
 
36
    globbing,
 
37
    ignores,
 
38
    log,
 
39
    merge as _mod_merge,
 
40
    merge_directive,
 
41
    osutils,
 
42
    reconfigure,
 
43
    revision as _mod_revision,
 
44
    symbol_versioning,
 
45
    transport,
 
46
    tree as _mod_tree,
 
47
    ui,
 
48
    urlutils,
 
49
    )
 
50
from bzrlib.branch import Branch
 
51
from bzrlib.conflicts import ConflictList
 
52
from bzrlib.revisionspec import RevisionSpec
 
53
from bzrlib.smtp_connection import SMTPConnection
 
54
from bzrlib.workingtree import WorkingTree
 
55
""")
 
56
 
 
57
from bzrlib.commands import Command, display_command
 
58
from bzrlib.option import ListOption, Option, RegistryOption, custom_help
 
59
from bzrlib.trace import mutter, note, warning, is_quiet, info
 
60
 
 
61
 
 
62
def tree_files(file_list, default_branch=u'.'):
 
63
    try:
 
64
        return internal_tree_files(file_list, default_branch)
 
65
    except errors.FileInWrongBranch, e:
 
66
        raise errors.BzrCommandError("%s is not in the same branch as %s" %
 
67
                                     (e.path, file_list[0]))
 
68
 
 
69
 
 
70
def _get_one_revision_tree(command_name, revisions, branch=None, tree=None):
 
71
    if branch is None:
 
72
        branch = tree.branch
 
73
    if revisions is None:
 
74
        if tree is not None:
 
75
            rev_tree = tree.basis_tree()
 
76
        else:
 
77
            rev_tree = branch.basis_tree()
 
78
    else:
 
79
        if len(revisions) != 1:
 
80
            raise errors.BzrCommandError(
 
81
                'bzr %s --revision takes exactly one revision identifier' % (
 
82
                    command_name,))
 
83
        rev_tree = revisions[0].as_tree(branch)
 
84
    return rev_tree
 
85
 
 
86
 
 
87
# XXX: Bad function name; should possibly also be a class method of
 
88
# WorkingTree rather than a function.
 
89
def internal_tree_files(file_list, default_branch=u'.'):
 
90
    """Convert command-line paths to a WorkingTree and relative paths.
 
91
 
 
92
    This is typically used for command-line processors that take one or
 
93
    more filenames, and infer the workingtree that contains them.
 
94
 
 
95
    The filenames given are not required to exist.
 
96
 
 
97
    :param file_list: Filenames to convert.  
 
98
 
 
99
    :param default_branch: Fallback tree path to use if file_list is empty or
 
100
        None.
 
101
 
 
102
    :return: workingtree, [relative_paths]
 
103
    """
 
104
    if file_list is None or len(file_list) == 0:
 
105
        return WorkingTree.open_containing(default_branch)[0], file_list
 
106
    tree = WorkingTree.open_containing(osutils.realpath(file_list[0]))[0]
 
107
    return tree, safe_relpath_files(tree, file_list)
 
108
 
 
109
 
 
110
def safe_relpath_files(tree, file_list):
 
111
    """Convert file_list into a list of relpaths in tree.
 
112
 
 
113
    :param tree: A tree to operate on.
 
114
    :param file_list: A list of user provided paths or None.
 
115
    :return: A list of relative paths.
 
116
    :raises errors.PathNotChild: When a provided path is in a different tree
 
117
        than tree.
 
118
    """
 
119
    if file_list is None:
 
120
        return None
 
121
    new_list = []
 
122
    for filename in file_list:
 
123
        try:
 
124
            new_list.append(tree.relpath(osutils.dereference_path(filename)))
 
125
        except errors.PathNotChild:
 
126
            raise errors.FileInWrongBranch(tree.branch, filename)
 
127
    return new_list
 
128
 
 
129
 
 
130
# TODO: Make sure no commands unconditionally use the working directory as a
 
131
# branch.  If a filename argument is used, the first of them should be used to
 
132
# specify the branch.  (Perhaps this can be factored out into some kind of
 
133
# Argument class, representing a file in a branch, where the first occurrence
 
134
# opens the branch?)
 
135
 
 
136
class cmd_status(Command):
 
137
    """Display status summary.
 
138
 
 
139
    This reports on versioned and unknown files, reporting them
 
140
    grouped by state.  Possible states are:
 
141
 
 
142
    added
 
143
        Versioned in the working copy but not in the previous revision.
 
144
 
 
145
    removed
 
146
        Versioned in the previous revision but removed or deleted
 
147
        in the working copy.
 
148
 
 
149
    renamed
 
150
        Path of this file changed from the previous revision;
 
151
        the text may also have changed.  This includes files whose
 
152
        parent directory was renamed.
 
153
 
 
154
    modified
 
155
        Text has changed since the previous revision.
 
156
 
 
157
    kind changed
 
158
        File kind has been changed (e.g. from file to directory).
 
159
 
 
160
    unknown
 
161
        Not versioned and not matching an ignore pattern.
 
162
 
 
163
    To see ignored files use 'bzr ignored'.  For details on the
 
164
    changes to file texts, use 'bzr diff'.
 
165
    
 
166
    Note that --short or -S gives status flags for each item, similar
 
167
    to Subversion's status command. To get output similar to svn -q,
 
168
    use bzr status -SV.
 
169
 
 
170
    If no arguments are specified, the status of the entire working
 
171
    directory is shown.  Otherwise, only the status of the specified
 
172
    files or directories is reported.  If a directory is given, status
 
173
    is reported for everything inside that directory.
 
174
 
 
175
    If a revision argument is given, the status is calculated against
 
176
    that revision, or between two revisions if two are provided.
 
177
    """
 
178
    
 
179
    # TODO: --no-recurse, --recurse options
 
180
    
 
181
    takes_args = ['file*']
 
182
    takes_options = ['show-ids', 'revision', 'change',
 
183
                     Option('short', help='Use short status indicators.',
 
184
                            short_name='S'),
 
185
                     Option('versioned', help='Only show versioned files.',
 
186
                            short_name='V'),
 
187
                     Option('no-pending', help='Don\'t show pending merges.',
 
188
                           ),
 
189
                     ]
 
190
    aliases = ['st', 'stat']
 
191
 
 
192
    encoding_type = 'replace'
 
193
    _see_also = ['diff', 'revert', 'status-flags']
 
194
    
 
195
    @display_command
 
196
    def run(self, show_ids=False, file_list=None, revision=None, short=False,
 
197
            versioned=False, no_pending=False):
 
198
        from bzrlib.status import show_tree_status
 
199
 
 
200
        if revision and len(revision) > 2:
 
201
            raise errors.BzrCommandError('bzr status --revision takes exactly'
 
202
                                         ' one or two revision specifiers')
 
203
 
 
204
        tree, relfile_list = tree_files(file_list)
 
205
        # Avoid asking for specific files when that is not needed.
 
206
        if relfile_list == ['']:
 
207
            relfile_list = None
 
208
            # Don't disable pending merges for full trees other than '.'.
 
209
            if file_list == ['.']:
 
210
                no_pending = True
 
211
        # A specific path within a tree was given.
 
212
        elif relfile_list is not None:
 
213
            no_pending = True
 
214
        show_tree_status(tree, show_ids=show_ids,
 
215
                         specific_files=relfile_list, revision=revision,
 
216
                         to_file=self.outf, short=short, versioned=versioned,
 
217
                         show_pending=(not no_pending))
 
218
 
 
219
 
 
220
class cmd_cat_revision(Command):
 
221
    """Write out metadata for a revision.
 
222
    
 
223
    The revision to print can either be specified by a specific
 
224
    revision identifier, or you can use --revision.
 
225
    """
 
226
 
 
227
    hidden = True
 
228
    takes_args = ['revision_id?']
 
229
    takes_options = ['revision']
 
230
    # cat-revision is more for frontends so should be exact
 
231
    encoding = 'strict'
 
232
    
 
233
    @display_command
 
234
    def run(self, revision_id=None, revision=None):
 
235
        if revision_id is not None and revision is not None:
 
236
            raise errors.BzrCommandError('You can only supply one of'
 
237
                                         ' revision_id or --revision')
 
238
        if revision_id is None and revision is None:
 
239
            raise errors.BzrCommandError('You must supply either'
 
240
                                         ' --revision or a revision_id')
 
241
        b = WorkingTree.open_containing(u'.')[0].branch
 
242
 
 
243
        # TODO: jam 20060112 should cat-revision always output utf-8?
 
244
        if revision_id is not None:
 
245
            revision_id = osutils.safe_revision_id(revision_id, warn=False)
 
246
            try:
 
247
                self.outf.write(b.repository.get_revision_xml(revision_id).decode('utf-8'))
 
248
            except errors.NoSuchRevision:
 
249
                msg = "The repository %s contains no revision %s." % (b.repository.base,
 
250
                    revision_id)
 
251
                raise errors.BzrCommandError(msg)
 
252
        elif revision is not None:
 
253
            for rev in revision:
 
254
                if rev is None:
 
255
                    raise errors.BzrCommandError('You cannot specify a NULL'
 
256
                                                 ' revision.')
 
257
                rev_id = rev.as_revision_id(b)
 
258
                self.outf.write(b.repository.get_revision_xml(rev_id).decode('utf-8'))
 
259
    
 
260
 
 
261
class cmd_remove_tree(Command):
 
262
    """Remove the working tree from a given branch/checkout.
 
263
 
 
264
    Since a lightweight checkout is little more than a working tree
 
265
    this will refuse to run against one.
 
266
 
 
267
    To re-create the working tree, use "bzr checkout".
 
268
    """
 
269
    _see_also = ['checkout', 'working-trees']
 
270
    takes_args = ['location?']
 
271
    takes_options = [
 
272
        Option('force',
 
273
               help='Remove the working tree even if it has '
 
274
                    'uncommitted changes.'),
 
275
        ]
 
276
 
 
277
    def run(self, location='.', force=False):
 
278
        d = bzrdir.BzrDir.open(location)
 
279
        
 
280
        try:
 
281
            working = d.open_workingtree()
 
282
        except errors.NoWorkingTree:
 
283
            raise errors.BzrCommandError("No working tree to remove")
 
284
        except errors.NotLocalUrl:
 
285
            raise errors.BzrCommandError("You cannot remove the working tree of a "
 
286
                                         "remote path")
 
287
        if not force:
 
288
            changes = working.changes_from(working.basis_tree())
 
289
            if changes.has_changed():
 
290
                raise errors.UncommittedChanges(working)
 
291
 
 
292
        working_path = working.bzrdir.root_transport.base
 
293
        branch_path = working.branch.bzrdir.root_transport.base
 
294
        if working_path != branch_path:
 
295
            raise errors.BzrCommandError("You cannot remove the working tree from "
 
296
                                         "a lightweight checkout")
 
297
        
 
298
        d.destroy_workingtree()
 
299
        
 
300
 
 
301
class cmd_revno(Command):
 
302
    """Show current revision number.
 
303
 
 
304
    This is equal to the number of revisions on this branch.
 
305
    """
 
306
 
 
307
    _see_also = ['info']
 
308
    takes_args = ['location?']
 
309
 
 
310
    @display_command
 
311
    def run(self, location=u'.'):
 
312
        self.outf.write(str(Branch.open_containing(location)[0].revno()))
 
313
        self.outf.write('\n')
 
314
 
 
315
 
 
316
class cmd_revision_info(Command):
 
317
    """Show revision number and revision id for a given revision identifier.
 
318
    """
 
319
    hidden = True
 
320
    takes_args = ['revision_info*']
 
321
    takes_options = ['revision']
 
322
 
 
323
    @display_command
 
324
    def run(self, revision=None, revision_info_list=[]):
 
325
 
 
326
        revs = []
 
327
        if revision is not None:
 
328
            revs.extend(revision)
 
329
        if revision_info_list is not None:
 
330
            for rev in revision_info_list:
 
331
                revs.append(RevisionSpec.from_string(rev))
 
332
 
 
333
        b = Branch.open_containing(u'.')[0]
 
334
 
 
335
        if len(revs) == 0:
 
336
            revs.append(RevisionSpec.from_string('-1'))
 
337
 
 
338
        for rev in revs:
 
339
            revision_id = rev.as_revision_id(b)
 
340
            try:
 
341
                revno = '%4d' % (b.revision_id_to_revno(revision_id))
 
342
            except errors.NoSuchRevision:
 
343
                dotted_map = b.get_revision_id_to_revno_map()
 
344
                revno = '.'.join(str(i) for i in dotted_map[revision_id])
 
345
            print '%s %s' % (revno, revision_id)
 
346
 
 
347
    
 
348
class cmd_add(Command):
 
349
    """Add specified files or directories.
 
350
 
 
351
    In non-recursive mode, all the named items are added, regardless
 
352
    of whether they were previously ignored.  A warning is given if
 
353
    any of the named files are already versioned.
 
354
 
 
355
    In recursive mode (the default), files are treated the same way
 
356
    but the behaviour for directories is different.  Directories that
 
357
    are already versioned do not give a warning.  All directories,
 
358
    whether already versioned or not, are searched for files or
 
359
    subdirectories that are neither versioned or ignored, and these
 
360
    are added.  This search proceeds recursively into versioned
 
361
    directories.  If no names are given '.' is assumed.
 
362
 
 
363
    Therefore simply saying 'bzr add' will version all files that
 
364
    are currently unknown.
 
365
 
 
366
    Adding a file whose parent directory is not versioned will
 
367
    implicitly add the parent, and so on up to the root. This means
 
368
    you should never need to explicitly add a directory, they'll just
 
369
    get added when you add a file in the directory.
 
370
 
 
371
    --dry-run will show which files would be added, but not actually 
 
372
    add them.
 
373
 
 
374
    --file-ids-from will try to use the file ids from the supplied path.
 
375
    It looks up ids trying to find a matching parent directory with the
 
376
    same filename, and then by pure path. This option is rarely needed
 
377
    but can be useful when adding the same logical file into two
 
378
    branches that will be merged later (without showing the two different
 
379
    adds as a conflict). It is also useful when merging another project
 
380
    into a subdirectory of this one.
 
381
    """
 
382
    takes_args = ['file*']
 
383
    takes_options = [
 
384
        Option('no-recurse',
 
385
               help="Don't recursively add the contents of directories."),
 
386
        Option('dry-run',
 
387
               help="Show what would be done, but don't actually do anything."),
 
388
        'verbose',
 
389
        Option('file-ids-from',
 
390
               type=unicode,
 
391
               help='Lookup file ids from this tree.'),
 
392
        ]
 
393
    encoding_type = 'replace'
 
394
    _see_also = ['remove']
 
395
 
 
396
    def run(self, file_list, no_recurse=False, dry_run=False, verbose=False,
 
397
            file_ids_from=None):
 
398
        import bzrlib.add
 
399
 
 
400
        base_tree = None
 
401
        if file_ids_from is not None:
 
402
            try:
 
403
                base_tree, base_path = WorkingTree.open_containing(
 
404
                                            file_ids_from)
 
405
            except errors.NoWorkingTree:
 
406
                base_branch, base_path = Branch.open_containing(
 
407
                                            file_ids_from)
 
408
                base_tree = base_branch.basis_tree()
 
409
 
 
410
            action = bzrlib.add.AddFromBaseAction(base_tree, base_path,
 
411
                          to_file=self.outf, should_print=(not is_quiet()))
 
412
        else:
 
413
            action = bzrlib.add.AddAction(to_file=self.outf,
 
414
                should_print=(not is_quiet()))
 
415
 
 
416
        if base_tree:
 
417
            base_tree.lock_read()
 
418
        try:
 
419
            file_list = self._maybe_expand_globs(file_list)
 
420
            if file_list:
 
421
                tree = WorkingTree.open_containing(file_list[0])[0]
 
422
            else:
 
423
                tree = WorkingTree.open_containing(u'.')[0]
 
424
            added, ignored = tree.smart_add(file_list, not
 
425
                no_recurse, action=action, save=not dry_run)
 
426
        finally:
 
427
            if base_tree is not None:
 
428
                base_tree.unlock()
 
429
        if len(ignored) > 0:
 
430
            if verbose:
 
431
                for glob in sorted(ignored.keys()):
 
432
                    for path in ignored[glob]:
 
433
                        self.outf.write("ignored %s matching \"%s\"\n" 
 
434
                                        % (path, glob))
 
435
            else:
 
436
                match_len = 0
 
437
                for glob, paths in ignored.items():
 
438
                    match_len += len(paths)
 
439
                self.outf.write("ignored %d file(s).\n" % match_len)
 
440
            self.outf.write("If you wish to add some of these files,"
 
441
                            " please add them by name.\n")
 
442
 
 
443
 
 
444
class cmd_mkdir(Command):
 
445
    """Create a new versioned directory.
 
446
 
 
447
    This is equivalent to creating the directory and then adding it.
 
448
    """
 
449
 
 
450
    takes_args = ['dir+']
 
451
    encoding_type = 'replace'
 
452
 
 
453
    def run(self, dir_list):
 
454
        for d in dir_list:
 
455
            os.mkdir(d)
 
456
            wt, dd = WorkingTree.open_containing(d)
 
457
            wt.add([dd])
 
458
            self.outf.write('added %s\n' % d)
 
459
 
 
460
 
 
461
class cmd_relpath(Command):
 
462
    """Show path of a file relative to root"""
 
463
 
 
464
    takes_args = ['filename']
 
465
    hidden = True
 
466
    
 
467
    @display_command
 
468
    def run(self, filename):
 
469
        # TODO: jam 20050106 Can relpath return a munged path if
 
470
        #       sys.stdout encoding cannot represent it?
 
471
        tree, relpath = WorkingTree.open_containing(filename)
 
472
        self.outf.write(relpath)
 
473
        self.outf.write('\n')
 
474
 
 
475
 
 
476
class cmd_inventory(Command):
 
477
    """Show inventory of the current working copy or a revision.
 
478
 
 
479
    It is possible to limit the output to a particular entry
 
480
    type using the --kind option.  For example: --kind file.
 
481
 
 
482
    It is also possible to restrict the list of files to a specific
 
483
    set. For example: bzr inventory --show-ids this/file
 
484
    """
 
485
 
 
486
    hidden = True
 
487
    _see_also = ['ls']
 
488
    takes_options = [
 
489
        'revision',
 
490
        'show-ids',
 
491
        Option('kind',
 
492
               help='List entries of a particular kind: file, directory, symlink.',
 
493
               type=unicode),
 
494
        ]
 
495
    takes_args = ['file*']
 
496
 
 
497
    @display_command
 
498
    def run(self, revision=None, show_ids=False, kind=None, file_list=None):
 
499
        if kind and kind not in ['file', 'directory', 'symlink']:
 
500
            raise errors.BzrCommandError('invalid kind %r specified' % (kind,))
 
501
 
 
502
        work_tree, file_list = tree_files(file_list)
 
503
        work_tree.lock_read()
 
504
        try:
 
505
            if revision is not None:
 
506
                if len(revision) > 1:
 
507
                    raise errors.BzrCommandError(
 
508
                        'bzr inventory --revision takes exactly one revision'
 
509
                        ' identifier')
 
510
                tree = revision[0].as_tree(work_tree.branch)
 
511
 
 
512
                extra_trees = [work_tree]
 
513
                tree.lock_read()
 
514
            else:
 
515
                tree = work_tree
 
516
                extra_trees = []
 
517
 
 
518
            if file_list is not None:
 
519
                file_ids = tree.paths2ids(file_list, trees=extra_trees,
 
520
                                          require_versioned=True)
 
521
                # find_ids_across_trees may include some paths that don't
 
522
                # exist in 'tree'.
 
523
                entries = sorted((tree.id2path(file_id), tree.inventory[file_id])
 
524
                                 for file_id in file_ids if file_id in tree)
 
525
            else:
 
526
                entries = tree.inventory.entries()
 
527
        finally:
 
528
            tree.unlock()
 
529
            if tree is not work_tree:
 
530
                work_tree.unlock()
 
531
 
 
532
        for path, entry in entries:
 
533
            if kind and kind != entry.kind:
 
534
                continue
 
535
            if show_ids:
 
536
                self.outf.write('%-50s %s\n' % (path, entry.file_id))
 
537
            else:
 
538
                self.outf.write(path)
 
539
                self.outf.write('\n')
 
540
 
 
541
 
 
542
class cmd_mv(Command):
 
543
    """Move or rename a file.
 
544
 
 
545
    :Usage:
 
546
        bzr mv OLDNAME NEWNAME
 
547
 
 
548
        bzr mv SOURCE... DESTINATION
 
549
 
 
550
    If the last argument is a versioned directory, all the other names
 
551
    are moved into it.  Otherwise, there must be exactly two arguments
 
552
    and the file is changed to a new name.
 
553
 
 
554
    If OLDNAME does not exist on the filesystem but is versioned and
 
555
    NEWNAME does exist on the filesystem but is not versioned, mv
 
556
    assumes that the file has been manually moved and only updates
 
557
    its internal inventory to reflect that change.
 
558
    The same is valid when moving many SOURCE files to a DESTINATION.
 
559
 
 
560
    Files cannot be moved between branches.
 
561
    """
 
562
 
 
563
    takes_args = ['names*']
 
564
    takes_options = [Option("after", help="Move only the bzr identifier"
 
565
        " of the file, because the file has already been moved."),
 
566
        ]
 
567
    aliases = ['move', 'rename']
 
568
    encoding_type = 'replace'
 
569
 
 
570
    def run(self, names_list, after=False):
 
571
        if names_list is None:
 
572
            names_list = []
 
573
 
 
574
        if len(names_list) < 2:
 
575
            raise errors.BzrCommandError("missing file argument")
 
576
        tree, rel_names = tree_files(names_list)
 
577
        tree.lock_write()
 
578
        try:
 
579
            self._run(tree, names_list, rel_names, after)
 
580
        finally:
 
581
            tree.unlock()
 
582
 
 
583
    def _run(self, tree, names_list, rel_names, after):
 
584
        into_existing = osutils.isdir(names_list[-1])
 
585
        if into_existing and len(names_list) == 2:
 
586
            # special cases:
 
587
            # a. case-insensitive filesystem and change case of dir
 
588
            # b. move directory after the fact (if the source used to be
 
589
            #    a directory, but now doesn't exist in the working tree
 
590
            #    and the target is an existing directory, just rename it)
 
591
            if (not tree.case_sensitive
 
592
                and rel_names[0].lower() == rel_names[1].lower()):
 
593
                into_existing = False
 
594
            else:
 
595
                inv = tree.inventory
 
596
                from_id = tree.path2id(rel_names[0])
 
597
                if (not osutils.lexists(names_list[0]) and
 
598
                    from_id and inv.get_file_kind(from_id) == "directory"):
 
599
                    into_existing = False
 
600
        # move/rename
 
601
        if into_existing:
 
602
            # move into existing directory
 
603
            for pair in tree.move(rel_names[:-1], rel_names[-1], after=after):
 
604
                self.outf.write("%s => %s\n" % pair)
 
605
        else:
 
606
            if len(names_list) != 2:
 
607
                raise errors.BzrCommandError('to mv multiple files the'
 
608
                                             ' destination must be a versioned'
 
609
                                             ' directory')
 
610
            tree.rename_one(rel_names[0], rel_names[1], after=after)
 
611
            self.outf.write("%s => %s\n" % (rel_names[0], rel_names[1]))
 
612
 
 
613
 
 
614
class cmd_pull(Command):
 
615
    """Turn this branch into a mirror of another branch.
 
616
 
 
617
    This command only works on branches that have not diverged.  Branches are
 
618
    considered diverged if the destination branch's most recent commit is one
 
619
    that has not been merged (directly or indirectly) into the parent.
 
620
 
 
621
    If branches have diverged, you can use 'bzr merge' to integrate the changes
 
622
    from one into the other.  Once one branch has merged, the other should
 
623
    be able to pull it again.
 
624
 
 
625
    If you want to forget your local changes and just update your branch to
 
626
    match the remote one, use pull --overwrite.
 
627
 
 
628
    If there is no default location set, the first pull will set it.  After
 
629
    that, you can omit the location to use the default.  To change the
 
630
    default, use --remember. The value will only be saved if the remote
 
631
    location can be accessed.
 
632
 
 
633
    Note: The location can be specified either in the form of a branch,
 
634
    or in the form of a path to a file containing a merge directive generated
 
635
    with bzr send.
 
636
    """
 
637
 
 
638
    _see_also = ['push', 'update', 'status-flags']
 
639
    takes_options = ['remember', 'overwrite', 'revision',
 
640
        custom_help('verbose',
 
641
            help='Show logs of pulled revisions.'),
 
642
        Option('directory',
 
643
            help='Branch to pull into, '
 
644
                 'rather than the one containing the working directory.',
 
645
            short_name='d',
 
646
            type=unicode,
 
647
            ),
 
648
        ]
 
649
    takes_args = ['location?']
 
650
    encoding_type = 'replace'
 
651
 
 
652
    def run(self, location=None, remember=False, overwrite=False,
 
653
            revision=None, verbose=False,
 
654
            directory=None):
 
655
        # FIXME: too much stuff is in the command class
 
656
        revision_id = None
 
657
        mergeable = None
 
658
        if directory is None:
 
659
            directory = u'.'
 
660
        try:
 
661
            tree_to = WorkingTree.open_containing(directory)[0]
 
662
            branch_to = tree_to.branch
 
663
        except errors.NoWorkingTree:
 
664
            tree_to = None
 
665
            branch_to = Branch.open_containing(directory)[0]
 
666
 
 
667
        possible_transports = []
 
668
        if location is not None:
 
669
            try:
 
670
                mergeable = bundle.read_mergeable_from_url(location,
 
671
                    possible_transports=possible_transports)
 
672
            except errors.NotABundle:
 
673
                mergeable = None
 
674
 
 
675
        stored_loc = branch_to.get_parent()
 
676
        if location is None:
 
677
            if stored_loc is None:
 
678
                raise errors.BzrCommandError("No pull location known or"
 
679
                                             " specified.")
 
680
            else:
 
681
                display_url = urlutils.unescape_for_display(stored_loc,
 
682
                        self.outf.encoding)
 
683
                if not is_quiet():
 
684
                    self.outf.write("Using saved parent location: %s\n" % display_url)
 
685
                location = stored_loc
 
686
 
 
687
        if mergeable is not None:
 
688
            if revision is not None:
 
689
                raise errors.BzrCommandError(
 
690
                    'Cannot use -r with merge directives or bundles')
 
691
            mergeable.install_revisions(branch_to.repository)
 
692
            base_revision_id, revision_id, verified = \
 
693
                mergeable.get_merge_request(branch_to.repository)
 
694
            branch_from = branch_to
 
695
        else:
 
696
            branch_from = Branch.open(location,
 
697
                possible_transports=possible_transports)
 
698
 
 
699
            if branch_to.get_parent() is None or remember:
 
700
                branch_to.set_parent(branch_from.base)
 
701
 
 
702
        if revision is not None:
 
703
            if len(revision) == 1:
 
704
                revision_id = revision[0].as_revision_id(branch_from)
 
705
            else:
 
706
                raise errors.BzrCommandError(
 
707
                    'bzr pull --revision takes one value.')
 
708
 
 
709
        branch_to.lock_write()
 
710
        try:
 
711
            if tree_to is not None:
 
712
                change_reporter = delta._ChangeReporter(
 
713
                    unversioned_filter=tree_to.is_ignored)
 
714
                result = tree_to.pull(branch_from, overwrite, revision_id,
 
715
                                      change_reporter,
 
716
                                      possible_transports=possible_transports)
 
717
            else:
 
718
                result = branch_to.pull(branch_from, overwrite, revision_id)
 
719
 
 
720
            result.report(self.outf)
 
721
            if verbose and result.old_revid != result.new_revid:
 
722
                old_rh = list(
 
723
                    branch_to.repository.iter_reverse_revision_history(
 
724
                    result.old_revid))
 
725
                old_rh.reverse()
 
726
                new_rh = branch_to.revision_history()
 
727
                log.show_changed_revisions(branch_to, old_rh, new_rh,
 
728
                                           to_file=self.outf)
 
729
        finally:
 
730
            branch_to.unlock()
 
731
 
 
732
 
 
733
class cmd_push(Command):
 
734
    """Update a mirror of this branch.
 
735
    
 
736
    The target branch will not have its working tree populated because this
 
737
    is both expensive, and is not supported on remote file systems.
 
738
    
 
739
    Some smart servers or protocols *may* put the working tree in place in
 
740
    the future.
 
741
 
 
742
    This command only works on branches that have not diverged.  Branches are
 
743
    considered diverged if the destination branch's most recent commit is one
 
744
    that has not been merged (directly or indirectly) by the source branch.
 
745
 
 
746
    If branches have diverged, you can use 'bzr push --overwrite' to replace
 
747
    the other branch completely, discarding its unmerged changes.
 
748
    
 
749
    If you want to ensure you have the different changes in the other branch,
 
750
    do a merge (see bzr help merge) from the other branch, and commit that.
 
751
    After that you will be able to do a push without '--overwrite'.
 
752
 
 
753
    If there is no default push location set, the first push will set it.
 
754
    After that, you can omit the location to use the default.  To change the
 
755
    default, use --remember. The value will only be saved if the remote
 
756
    location can be accessed.
 
757
    """
 
758
 
 
759
    _see_also = ['pull', 'update', 'working-trees']
 
760
    takes_options = ['remember', 'overwrite', 'verbose', 'revision',
 
761
        Option('create-prefix',
 
762
               help='Create the path leading up to the branch '
 
763
                    'if it does not already exist.'),
 
764
        Option('directory',
 
765
            help='Branch to push from, '
 
766
                 'rather than the one containing the working directory.',
 
767
            short_name='d',
 
768
            type=unicode,
 
769
            ),
 
770
        Option('use-existing-dir',
 
771
               help='By default push will fail if the target'
 
772
                    ' directory exists, but does not already'
 
773
                    ' have a control directory.  This flag will'
 
774
                    ' allow push to proceed.'),
 
775
        Option('stacked',
 
776
            help='Create a stacked branch that references the public location '
 
777
                'of the parent branch.'),
 
778
        Option('stacked-on',
 
779
            help='Create a stacked branch that refers to another branch '
 
780
                'for the commit history. Only the work not present in the '
 
781
                'referenced branch is included in the branch created.',
 
782
            type=unicode),
 
783
        ]
 
784
    takes_args = ['location?']
 
785
    encoding_type = 'replace'
 
786
 
 
787
    def run(self, location=None, remember=False, overwrite=False,
 
788
        create_prefix=False, verbose=False, revision=None,
 
789
        use_existing_dir=False, directory=None, stacked_on=None,
 
790
        stacked=False):
 
791
        from bzrlib.push import _show_push_branch
 
792
 
 
793
        # Get the source branch and revision_id
 
794
        if directory is None:
 
795
            directory = '.'
 
796
        br_from = Branch.open_containing(directory)[0]
 
797
        if revision is not None:
 
798
            if len(revision) == 1:
 
799
                revision_id = revision[0].in_history(br_from).rev_id
 
800
            else:
 
801
                raise errors.BzrCommandError(
 
802
                    'bzr push --revision takes one value.')
 
803
        else:
 
804
            revision_id = br_from.last_revision()
 
805
 
 
806
        # Get the stacked_on branch, if any
 
807
        if stacked_on is not None:
 
808
            stacked_on = urlutils.normalize_url(stacked_on)
 
809
        elif stacked:
 
810
            parent_url = br_from.get_parent()
 
811
            if parent_url:
 
812
                parent = Branch.open(parent_url)
 
813
                stacked_on = parent.get_public_branch()
 
814
                if not stacked_on:
 
815
                    # I considered excluding non-http url's here, thus forcing
 
816
                    # 'public' branches only, but that only works for some
 
817
                    # users, so it's best to just depend on the user spotting an
 
818
                    # error by the feedback given to them. RBC 20080227.
 
819
                    stacked_on = parent_url
 
820
            if not stacked_on:
 
821
                raise errors.BzrCommandError(
 
822
                    "Could not determine branch to refer to.")
 
823
 
 
824
        # Get the destination location
 
825
        if location is None:
 
826
            stored_loc = br_from.get_push_location()
 
827
            if stored_loc is None:
 
828
                raise errors.BzrCommandError(
 
829
                    "No push location known or specified.")
 
830
            else:
 
831
                display_url = urlutils.unescape_for_display(stored_loc,
 
832
                        self.outf.encoding)
 
833
                self.outf.write("Using saved push location: %s\n" % display_url)
 
834
                location = stored_loc
 
835
 
 
836
        _show_push_branch(br_from, revision_id, location, self.outf,
 
837
            verbose=verbose, overwrite=overwrite, remember=remember,
 
838
            stacked_on=stacked_on, create_prefix=create_prefix,
 
839
            use_existing_dir=use_existing_dir)
 
840
 
 
841
 
 
842
class cmd_branch(Command):
 
843
    """Create a new copy of a branch.
 
844
 
 
845
    If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will
 
846
    be used.  In other words, "branch ../foo/bar" will attempt to create ./bar.
 
847
    If the FROM_LOCATION has no / or path separator embedded, the TO_LOCATION
 
848
    is derived from the FROM_LOCATION by stripping a leading scheme or drive
 
849
    identifier, if any. For example, "branch lp:foo-bar" will attempt to
 
850
    create ./foo-bar.
 
851
 
 
852
    To retrieve the branch as of a particular revision, supply the --revision
 
853
    parameter, as in "branch foo/bar -r 5".
 
854
    """
 
855
 
 
856
    _see_also = ['checkout']
 
857
    takes_args = ['from_location', 'to_location?']
 
858
    takes_options = ['revision', Option('hardlink',
 
859
        help='Hard-link working tree files where possible.'),
 
860
        Option('stacked',
 
861
            help='Create a stacked branch referring to the source branch. '
 
862
                'The new branch will depend on the availability of the source '
 
863
                'branch for all operations.'),
 
864
        Option('standalone',
 
865
               help='Do not use a shared repository, even if available.'),
 
866
        ]
 
867
    aliases = ['get', 'clone']
 
868
 
 
869
    def run(self, from_location, to_location=None, revision=None,
 
870
            hardlink=False, stacked=False, standalone=False):
 
871
        from bzrlib.tag import _merge_tags_if_possible
 
872
        if revision is None:
 
873
            revision = [None]
 
874
        elif len(revision) > 1:
 
875
            raise errors.BzrCommandError(
 
876
                'bzr branch --revision takes exactly 1 revision value')
 
877
 
 
878
        accelerator_tree, br_from = bzrdir.BzrDir.open_tree_or_branch(
 
879
            from_location)
 
880
        br_from.lock_read()
 
881
        try:
 
882
            if len(revision) == 1 and revision[0] is not None:
 
883
                revision_id = revision[0].as_revision_id(br_from)
 
884
            else:
 
885
                # FIXME - wt.last_revision, fallback to branch, fall back to
 
886
                # None or perhaps NULL_REVISION to mean copy nothing
 
887
                # RBC 20060209
 
888
                revision_id = br_from.last_revision()
 
889
            if to_location is None:
 
890
                to_location = urlutils.derive_to_location(from_location)
 
891
            to_transport = transport.get_transport(to_location)
 
892
            try:
 
893
                to_transport.mkdir('.')
 
894
            except errors.FileExists:
 
895
                raise errors.BzrCommandError('Target directory "%s" already'
 
896
                                             ' exists.' % to_location)
 
897
            except errors.NoSuchFile:
 
898
                raise errors.BzrCommandError('Parent of "%s" does not exist.'
 
899
                                             % to_location)
 
900
            try:
 
901
                # preserve whatever source format we have.
 
902
                dir = br_from.bzrdir.sprout(to_transport.base, revision_id,
 
903
                                            possible_transports=[to_transport],
 
904
                                            accelerator_tree=accelerator_tree,
 
905
                                            hardlink=hardlink, stacked=stacked,
 
906
                                            force_new_repo=standalone)
 
907
                branch = dir.open_branch()
 
908
            except errors.NoSuchRevision:
 
909
                to_transport.delete_tree('.')
 
910
                msg = "The branch %s has no revision %s." % (from_location,
 
911
                    revision[0])
 
912
                raise errors.BzrCommandError(msg)
 
913
            _merge_tags_if_possible(br_from, branch)
 
914
            # If the source branch is stacked, the new branch may
 
915
            # be stacked whether we asked for that explicitly or not.
 
916
            # We therefore need a try/except here and not just 'if stacked:'
 
917
            try:
 
918
                note('Created new stacked branch referring to %s.' %
 
919
                    branch.get_stacked_on_url())
 
920
            except (errors.NotStacked, errors.UnstackableBranchFormat,
 
921
                errors.UnstackableRepositoryFormat), e:
 
922
                note('Branched %d revision(s).' % branch.revno())
 
923
        finally:
 
924
            br_from.unlock()
 
925
 
 
926
 
 
927
class cmd_checkout(Command):
 
928
    """Create a new checkout of an existing branch.
 
929
 
 
930
    If BRANCH_LOCATION is omitted, checkout will reconstitute a working tree for
 
931
    the branch found in '.'. This is useful if you have removed the working tree
 
932
    or if it was never created - i.e. if you pushed the branch to its current
 
933
    location using SFTP.
 
934
    
 
935
    If the TO_LOCATION is omitted, the last component of the BRANCH_LOCATION will
 
936
    be used.  In other words, "checkout ../foo/bar" will attempt to create ./bar.
 
937
    If the BRANCH_LOCATION has no / or path separator embedded, the TO_LOCATION
 
938
    is derived from the BRANCH_LOCATION by stripping a leading scheme or drive
 
939
    identifier, if any. For example, "checkout lp:foo-bar" will attempt to
 
940
    create ./foo-bar.
 
941
 
 
942
    To retrieve the branch as of a particular revision, supply the --revision
 
943
    parameter, as in "checkout foo/bar -r 5". Note that this will be immediately
 
944
    out of date [so you cannot commit] but it may be useful (i.e. to examine old
 
945
    code.)
 
946
    """
 
947
 
 
948
    _see_also = ['checkouts', 'branch']
 
949
    takes_args = ['branch_location?', 'to_location?']
 
950
    takes_options = ['revision',
 
951
                     Option('lightweight',
 
952
                            help="Perform a lightweight checkout.  Lightweight "
 
953
                                 "checkouts depend on access to the branch for "
 
954
                                 "every operation.  Normal checkouts can perform "
 
955
                                 "common operations like diff and status without "
 
956
                                 "such access, and also support local commits."
 
957
                            ),
 
958
                     Option('files-from', type=str,
 
959
                            help="Get file contents from this tree."),
 
960
                     Option('hardlink',
 
961
                            help='Hard-link working tree files where possible.'
 
962
                            ),
 
963
                     ]
 
964
    aliases = ['co']
 
965
 
 
966
    def run(self, branch_location=None, to_location=None, revision=None,
 
967
            lightweight=False, files_from=None, hardlink=False):
 
968
        if revision is None:
 
969
            revision = [None]
 
970
        elif len(revision) > 1:
 
971
            raise errors.BzrCommandError(
 
972
                'bzr checkout --revision takes exactly 1 revision value')
 
973
        if branch_location is None:
 
974
            branch_location = osutils.getcwd()
 
975
            to_location = branch_location
 
976
        accelerator_tree, source = bzrdir.BzrDir.open_tree_or_branch(
 
977
            branch_location)
 
978
        if files_from is not None:
 
979
            accelerator_tree = WorkingTree.open(files_from)
 
980
        if len(revision) == 1 and revision[0] is not None:
 
981
            revision_id = revision[0].as_revision_id(source)
 
982
        else:
 
983
            revision_id = None
 
984
        if to_location is None:
 
985
            to_location = urlutils.derive_to_location(branch_location)
 
986
        # if the source and to_location are the same, 
 
987
        # and there is no working tree,
 
988
        # then reconstitute a branch
 
989
        if (osutils.abspath(to_location) ==
 
990
            osutils.abspath(branch_location)):
 
991
            try:
 
992
                source.bzrdir.open_workingtree()
 
993
            except errors.NoWorkingTree:
 
994
                source.bzrdir.create_workingtree(revision_id)
 
995
                return
 
996
        source.create_checkout(to_location, revision_id, lightweight,
 
997
                               accelerator_tree, hardlink)
 
998
 
 
999
 
 
1000
class cmd_renames(Command):
 
1001
    """Show list of renamed files.
 
1002
    """
 
1003
    # TODO: Option to show renames between two historical versions.
 
1004
 
 
1005
    # TODO: Only show renames under dir, rather than in the whole branch.
 
1006
    _see_also = ['status']
 
1007
    takes_args = ['dir?']
 
1008
 
 
1009
    @display_command
 
1010
    def run(self, dir=u'.'):
 
1011
        tree = WorkingTree.open_containing(dir)[0]
 
1012
        tree.lock_read()
 
1013
        try:
 
1014
            new_inv = tree.inventory
 
1015
            old_tree = tree.basis_tree()
 
1016
            old_tree.lock_read()
 
1017
            try:
 
1018
                old_inv = old_tree.inventory
 
1019
                renames = list(_mod_tree.find_renames(old_inv, new_inv))
 
1020
                renames.sort()
 
1021
                for old_name, new_name in renames:
 
1022
                    self.outf.write("%s => %s\n" % (old_name, new_name))
 
1023
            finally:
 
1024
                old_tree.unlock()
 
1025
        finally:
 
1026
            tree.unlock()
 
1027
 
 
1028
 
 
1029
class cmd_update(Command):
 
1030
    """Update a tree to have the latest code committed to its branch.
 
1031
    
 
1032
    This will perform a merge into the working tree, and may generate
 
1033
    conflicts. If you have any local changes, you will still 
 
1034
    need to commit them after the update for the update to be complete.
 
1035
    
 
1036
    If you want to discard your local changes, you can just do a 
 
1037
    'bzr revert' instead of 'bzr commit' after the update.
 
1038
    """
 
1039
 
 
1040
    _see_also = ['pull', 'working-trees', 'status-flags']
 
1041
    takes_args = ['dir?']
 
1042
    aliases = ['up']
 
1043
 
 
1044
    def run(self, dir='.'):
 
1045
        tree = WorkingTree.open_containing(dir)[0]
 
1046
        possible_transports = []
 
1047
        master = tree.branch.get_master_branch(
 
1048
            possible_transports=possible_transports)
 
1049
        if master is not None:
 
1050
            tree.lock_write()
 
1051
        else:
 
1052
            tree.lock_tree_write()
 
1053
        try:
 
1054
            existing_pending_merges = tree.get_parent_ids()[1:]
 
1055
            last_rev = _mod_revision.ensure_null(tree.last_revision())
 
1056
            if last_rev == _mod_revision.ensure_null(
 
1057
                tree.branch.last_revision()):
 
1058
                # may be up to date, check master too.
 
1059
                if master is None or last_rev == _mod_revision.ensure_null(
 
1060
                    master.last_revision()):
 
1061
                    revno = tree.branch.revision_id_to_revno(last_rev)
 
1062
                    note("Tree is up to date at revision %d." % (revno,))
 
1063
                    return 0
 
1064
            conflicts = tree.update(
 
1065
                delta._ChangeReporter(unversioned_filter=tree.is_ignored),
 
1066
                possible_transports=possible_transports)
 
1067
            revno = tree.branch.revision_id_to_revno(
 
1068
                _mod_revision.ensure_null(tree.last_revision()))
 
1069
            note('Updated to revision %d.' % (revno,))
 
1070
            if tree.get_parent_ids()[1:] != existing_pending_merges:
 
1071
                note('Your local commits will now show as pending merges with '
 
1072
                     "'bzr status', and can be committed with 'bzr commit'.")
 
1073
            if conflicts != 0:
 
1074
                return 1
 
1075
            else:
 
1076
                return 0
 
1077
        finally:
 
1078
            tree.unlock()
 
1079
 
 
1080
 
 
1081
class cmd_info(Command):
 
1082
    """Show information about a working tree, branch or repository.
 
1083
 
 
1084
    This command will show all known locations and formats associated to the
 
1085
    tree, branch or repository.  Statistical information is included with
 
1086
    each report.
 
1087
 
 
1088
    Branches and working trees will also report any missing revisions.
 
1089
    """
 
1090
    _see_also = ['revno', 'working-trees', 'repositories']
 
1091
    takes_args = ['location?']
 
1092
    takes_options = ['verbose']
 
1093
    encoding_type = 'replace'
 
1094
 
 
1095
    @display_command
 
1096
    def run(self, location=None, verbose=False):
 
1097
        if verbose:
 
1098
            noise_level = 2
 
1099
        else:
 
1100
            noise_level = 0
 
1101
        from bzrlib.info import show_bzrdir_info
 
1102
        show_bzrdir_info(bzrdir.BzrDir.open_containing(location)[0],
 
1103
                         verbose=noise_level, outfile=self.outf)
 
1104
 
 
1105
 
 
1106
class cmd_remove(Command):
 
1107
    """Remove files or directories.
 
1108
 
 
1109
    This makes bzr stop tracking changes to the specified files. bzr will delete
 
1110
    them if they can easily be recovered using revert. If no options or
 
1111
    parameters are given bzr will scan for files that are being tracked by bzr
 
1112
    but missing in your tree and stop tracking them for you.
 
1113
    """
 
1114
    takes_args = ['file*']
 
1115
    takes_options = ['verbose',
 
1116
        Option('new', help='Only remove files that have never been committed.'),
 
1117
        RegistryOption.from_kwargs('file-deletion-strategy',
 
1118
            'The file deletion mode to be used.',
 
1119
            title='Deletion Strategy', value_switches=True, enum_switch=False,
 
1120
            safe='Only delete files if they can be'
 
1121
                 ' safely recovered (default).',
 
1122
            keep="Don't delete any files.",
 
1123
            force='Delete all the specified files, even if they can not be '
 
1124
                'recovered and even if they are non-empty directories.')]
 
1125
    aliases = ['rm', 'del']
 
1126
    encoding_type = 'replace'
 
1127
 
 
1128
    def run(self, file_list, verbose=False, new=False,
 
1129
        file_deletion_strategy='safe'):
 
1130
        tree, file_list = tree_files(file_list)
 
1131
 
 
1132
        if file_list is not None:
 
1133
            file_list = [f for f in file_list]
 
1134
 
 
1135
        tree.lock_write()
 
1136
        try:
 
1137
            # Heuristics should probably all move into tree.remove_smart or
 
1138
            # some such?
 
1139
            if new:
 
1140
                added = tree.changes_from(tree.basis_tree(),
 
1141
                    specific_files=file_list).added
 
1142
                file_list = sorted([f[0] for f in added], reverse=True)
 
1143
                if len(file_list) == 0:
 
1144
                    raise errors.BzrCommandError('No matching files.')
 
1145
            elif file_list is None:
 
1146
                # missing files show up in iter_changes(basis) as
 
1147
                # versioned-with-no-kind.
 
1148
                missing = []
 
1149
                for change in tree.iter_changes(tree.basis_tree()):
 
1150
                    # Find paths in the working tree that have no kind:
 
1151
                    if change[1][1] is not None and change[6][1] is None:
 
1152
                        missing.append(change[1][1])
 
1153
                file_list = sorted(missing, reverse=True)
 
1154
                file_deletion_strategy = 'keep'
 
1155
            tree.remove(file_list, verbose=verbose, to_file=self.outf,
 
1156
                keep_files=file_deletion_strategy=='keep',
 
1157
                force=file_deletion_strategy=='force')
 
1158
        finally:
 
1159
            tree.unlock()
 
1160
 
 
1161
 
 
1162
class cmd_file_id(Command):
 
1163
    """Print file_id of a particular file or directory.
 
1164
 
 
1165
    The file_id is assigned when the file is first added and remains the
 
1166
    same through all revisions where the file exists, even when it is
 
1167
    moved or renamed.
 
1168
    """
 
1169
 
 
1170
    hidden = True
 
1171
    _see_also = ['inventory', 'ls']
 
1172
    takes_args = ['filename']
 
1173
 
 
1174
    @display_command
 
1175
    def run(self, filename):
 
1176
        tree, relpath = WorkingTree.open_containing(filename)
 
1177
        i = tree.path2id(relpath)
 
1178
        if i is None:
 
1179
            raise errors.NotVersionedError(filename)
 
1180
        else:
 
1181
            self.outf.write(i + '\n')
 
1182
 
 
1183
 
 
1184
class cmd_file_path(Command):
 
1185
    """Print path of file_ids to a file or directory.
 
1186
 
 
1187
    This prints one line for each directory down to the target,
 
1188
    starting at the branch root.
 
1189
    """
 
1190
 
 
1191
    hidden = True
 
1192
    takes_args = ['filename']
 
1193
 
 
1194
    @display_command
 
1195
    def run(self, filename):
 
1196
        tree, relpath = WorkingTree.open_containing(filename)
 
1197
        fid = tree.path2id(relpath)
 
1198
        if fid is None:
 
1199
            raise errors.NotVersionedError(filename)
 
1200
        segments = osutils.splitpath(relpath)
 
1201
        for pos in range(1, len(segments) + 1):
 
1202
            path = osutils.joinpath(segments[:pos])
 
1203
            self.outf.write("%s\n" % tree.path2id(path))
 
1204
 
 
1205
 
 
1206
class cmd_reconcile(Command):
 
1207
    """Reconcile bzr metadata in a branch.
 
1208
 
 
1209
    This can correct data mismatches that may have been caused by
 
1210
    previous ghost operations or bzr upgrades. You should only
 
1211
    need to run this command if 'bzr check' or a bzr developer 
 
1212
    advises you to run it.
 
1213
 
 
1214
    If a second branch is provided, cross-branch reconciliation is
 
1215
    also attempted, which will check that data like the tree root
 
1216
    id which was not present in very early bzr versions is represented
 
1217
    correctly in both branches.
 
1218
 
 
1219
    At the same time it is run it may recompress data resulting in 
 
1220
    a potential saving in disk space or performance gain.
 
1221
 
 
1222
    The branch *MUST* be on a listable system such as local disk or sftp.
 
1223
    """
 
1224
 
 
1225
    _see_also = ['check']
 
1226
    takes_args = ['branch?']
 
1227
 
 
1228
    def run(self, branch="."):
 
1229
        from bzrlib.reconcile import reconcile
 
1230
        dir = bzrdir.BzrDir.open(branch)
 
1231
        reconcile(dir)
 
1232
 
 
1233
 
 
1234
class cmd_revision_history(Command):
 
1235
    """Display the list of revision ids on a branch."""
 
1236
 
 
1237
    _see_also = ['log']
 
1238
    takes_args = ['location?']
 
1239
 
 
1240
    hidden = True
 
1241
 
 
1242
    @display_command
 
1243
    def run(self, location="."):
 
1244
        branch = Branch.open_containing(location)[0]
 
1245
        for revid in branch.revision_history():
 
1246
            self.outf.write(revid)
 
1247
            self.outf.write('\n')
 
1248
 
 
1249
 
 
1250
class cmd_ancestry(Command):
 
1251
    """List all revisions merged into this branch."""
 
1252
 
 
1253
    _see_also = ['log', 'revision-history']
 
1254
    takes_args = ['location?']
 
1255
 
 
1256
    hidden = True
 
1257
 
 
1258
    @display_command
 
1259
    def run(self, location="."):
 
1260
        try:
 
1261
            wt = WorkingTree.open_containing(location)[0]
 
1262
        except errors.NoWorkingTree:
 
1263
            b = Branch.open(location)
 
1264
            last_revision = b.last_revision()
 
1265
        else:
 
1266
            b = wt.branch
 
1267
            last_revision = wt.last_revision()
 
1268
 
 
1269
        revision_ids = b.repository.get_ancestry(last_revision)
 
1270
        revision_ids.pop(0)
 
1271
        for revision_id in revision_ids:
 
1272
            self.outf.write(revision_id + '\n')
 
1273
 
 
1274
 
 
1275
class cmd_init(Command):
 
1276
    """Make a directory into a versioned branch.
 
1277
 
 
1278
    Use this to create an empty branch, or before importing an
 
1279
    existing project.
 
1280
 
 
1281
    If there is a repository in a parent directory of the location, then 
 
1282
    the history of the branch will be stored in the repository.  Otherwise
 
1283
    init creates a standalone branch which carries its own history
 
1284
    in the .bzr directory.
 
1285
 
 
1286
    If there is already a branch at the location but it has no working tree,
 
1287
    the tree can be populated with 'bzr checkout'.
 
1288
 
 
1289
    Recipe for importing a tree of files::
 
1290
 
 
1291
        cd ~/project
 
1292
        bzr init
 
1293
        bzr add .
 
1294
        bzr status
 
1295
        bzr commit -m "imported project"
 
1296
    """
 
1297
 
 
1298
    _see_also = ['init-repository', 'branch', 'checkout']
 
1299
    takes_args = ['location?']
 
1300
    takes_options = [
 
1301
        Option('create-prefix',
 
1302
               help='Create the path leading up to the branch '
 
1303
                    'if it does not already exist.'),
 
1304
         RegistryOption('format',
 
1305
                help='Specify a format for this branch. '
 
1306
                'See "help formats".',
 
1307
                registry=bzrdir.format_registry,
 
1308
                converter=bzrdir.format_registry.make_bzrdir,
 
1309
                value_switches=True,
 
1310
                title="Branch Format",
 
1311
                ),
 
1312
         Option('append-revisions-only',
 
1313
                help='Never change revnos or the existing log.'
 
1314
                '  Append revisions to it only.')
 
1315
         ]
 
1316
    def run(self, location=None, format=None, append_revisions_only=False,
 
1317
            create_prefix=False):
 
1318
        if format is None:
 
1319
            format = bzrdir.format_registry.make_bzrdir('default')
 
1320
        if location is None:
 
1321
            location = u'.'
 
1322
 
 
1323
        to_transport = transport.get_transport(location)
 
1324
 
 
1325
        # The path has to exist to initialize a
 
1326
        # branch inside of it.
 
1327
        # Just using os.mkdir, since I don't
 
1328
        # believe that we want to create a bunch of
 
1329
        # locations if the user supplies an extended path
 
1330
        try:
 
1331
            to_transport.ensure_base()
 
1332
        except errors.NoSuchFile:
 
1333
            if not create_prefix:
 
1334
                raise errors.BzrCommandError("Parent directory of %s"
 
1335
                    " does not exist."
 
1336
                    "\nYou may supply --create-prefix to create all"
 
1337
                    " leading parent directories."
 
1338
                    % location)
 
1339
            _create_prefix(to_transport)
 
1340
 
 
1341
        try:
 
1342
            a_bzrdir = bzrdir.BzrDir.open_from_transport(to_transport)
 
1343
        except errors.NotBranchError:
 
1344
            # really a NotBzrDir error...
 
1345
            create_branch = bzrdir.BzrDir.create_branch_convenience
 
1346
            branch = create_branch(to_transport.base, format=format,
 
1347
                                   possible_transports=[to_transport])
 
1348
            a_bzrdir = branch.bzrdir
 
1349
        else:
 
1350
            from bzrlib.transport.local import LocalTransport
 
1351
            if a_bzrdir.has_branch():
 
1352
                if (isinstance(to_transport, LocalTransport)
 
1353
                    and not a_bzrdir.has_workingtree()):
 
1354
                        raise errors.BranchExistsWithoutWorkingTree(location)
 
1355
                raise errors.AlreadyBranchError(location)
 
1356
            branch = a_bzrdir.create_branch()
 
1357
            a_bzrdir.create_workingtree()
 
1358
        if append_revisions_only:
 
1359
            try:
 
1360
                branch.set_append_revisions_only(True)
 
1361
            except errors.UpgradeRequired:
 
1362
                raise errors.BzrCommandError('This branch format cannot be set'
 
1363
                    ' to append-revisions-only.  Try --experimental-branch6')
 
1364
        if not is_quiet():
 
1365
            from bzrlib.info import show_bzrdir_info
 
1366
            show_bzrdir_info(a_bzrdir, verbose=0, outfile=self.outf)
 
1367
 
 
1368
 
 
1369
class cmd_init_repository(Command):
 
1370
    """Create a shared repository to hold branches.
 
1371
 
 
1372
    New branches created under the repository directory will store their
 
1373
    revisions in the repository, not in the branch directory.
 
1374
 
 
1375
    If the --no-trees option is used then the branches in the repository
 
1376
    will not have working trees by default.
 
1377
 
 
1378
    :Examples:
 
1379
        Create a shared repositories holding just branches::
 
1380
 
 
1381
            bzr init-repo --no-trees repo
 
1382
            bzr init repo/trunk
 
1383
 
 
1384
        Make a lightweight checkout elsewhere::
 
1385
 
 
1386
            bzr checkout --lightweight repo/trunk trunk-checkout
 
1387
            cd trunk-checkout
 
1388
            (add files here)
 
1389
    """
 
1390
 
 
1391
    _see_also = ['init', 'branch', 'checkout', 'repositories']
 
1392
    takes_args = ["location"]
 
1393
    takes_options = [RegistryOption('format',
 
1394
                            help='Specify a format for this repository. See'
 
1395
                                 ' "bzr help formats" for details.',
 
1396
                            registry=bzrdir.format_registry,
 
1397
                            converter=bzrdir.format_registry.make_bzrdir,
 
1398
                            value_switches=True, title='Repository format'),
 
1399
                     Option('no-trees',
 
1400
                             help='Branches in the repository will default to'
 
1401
                                  ' not having a working tree.'),
 
1402
                    ]
 
1403
    aliases = ["init-repo"]
 
1404
 
 
1405
    def run(self, location, format=None, no_trees=False):
 
1406
        if format is None:
 
1407
            format = bzrdir.format_registry.make_bzrdir('default')
 
1408
 
 
1409
        if location is None:
 
1410
            location = '.'
 
1411
 
 
1412
        to_transport = transport.get_transport(location)
 
1413
        to_transport.ensure_base()
 
1414
 
 
1415
        newdir = format.initialize_on_transport(to_transport)
 
1416
        repo = newdir.create_repository(shared=True)
 
1417
        repo.set_make_working_trees(not no_trees)
 
1418
        if not is_quiet():
 
1419
            from bzrlib.info import show_bzrdir_info
 
1420
            show_bzrdir_info(repo.bzrdir, verbose=0, outfile=self.outf)
 
1421
 
 
1422
 
 
1423
class cmd_diff(Command):
 
1424
    """Show differences in the working tree, between revisions or branches.
 
1425
    
 
1426
    If no arguments are given, all changes for the current tree are listed.
 
1427
    If files are given, only the changes in those files are listed.
 
1428
    Remote and multiple branches can be compared by using the --old and
 
1429
    --new options. If not provided, the default for both is derived from
 
1430
    the first argument, if any, or the current tree if no arguments are
 
1431
    given.
 
1432
 
 
1433
    "bzr diff -p1" is equivalent to "bzr diff --prefix old/:new/", and
 
1434
    produces patches suitable for "patch -p1".
 
1435
 
 
1436
    :Exit values:
 
1437
        1 - changed
 
1438
        2 - unrepresentable changes
 
1439
        3 - error
 
1440
        0 - no change
 
1441
 
 
1442
    :Examples:
 
1443
        Shows the difference in the working tree versus the last commit::
 
1444
 
 
1445
            bzr diff
 
1446
 
 
1447
        Difference between the working tree and revision 1::
 
1448
 
 
1449
            bzr diff -r1
 
1450
 
 
1451
        Difference between revision 2 and revision 1::
 
1452
 
 
1453
            bzr diff -r1..2
 
1454
 
 
1455
        Difference between revision 2 and revision 1 for branch xxx::
 
1456
 
 
1457
            bzr diff -r1..2 xxx
 
1458
 
 
1459
        Show just the differences for file NEWS::
 
1460
 
 
1461
            bzr diff NEWS
 
1462
 
 
1463
        Show the differences in working tree xxx for file NEWS::
 
1464
 
 
1465
            bzr diff xxx/NEWS
 
1466
 
 
1467
        Show the differences from branch xxx to this working tree:
 
1468
 
 
1469
            bzr diff --old xxx
 
1470
 
 
1471
        Show the differences between two branches for file NEWS::
 
1472
 
 
1473
            bzr diff --old xxx --new yyy NEWS
 
1474
 
 
1475
        Same as 'bzr diff' but prefix paths with old/ and new/::
 
1476
 
 
1477
            bzr diff --prefix old/:new/
 
1478
    """
 
1479
    _see_also = ['status']
 
1480
    takes_args = ['file*']
 
1481
    takes_options = [
 
1482
        Option('diff-options', type=str,
 
1483
               help='Pass these options to the external diff program.'),
 
1484
        Option('prefix', type=str,
 
1485
               short_name='p',
 
1486
               help='Set prefixes added to old and new filenames, as '
 
1487
                    'two values separated by a colon. (eg "old/:new/").'),
 
1488
        Option('old',
 
1489
            help='Branch/tree to compare from.',
 
1490
            type=unicode,
 
1491
            ),
 
1492
        Option('new',
 
1493
            help='Branch/tree to compare to.',
 
1494
            type=unicode,
 
1495
            ),
 
1496
        'revision',
 
1497
        'change',
 
1498
        Option('using',
 
1499
            help='Use this command to compare files.',
 
1500
            type=unicode,
 
1501
            ),
 
1502
        ]
 
1503
    aliases = ['di', 'dif']
 
1504
    encoding_type = 'exact'
 
1505
 
 
1506
    @display_command
 
1507
    def run(self, revision=None, file_list=None, diff_options=None,
 
1508
            prefix=None, old=None, new=None, using=None):
 
1509
        from bzrlib.diff import _get_trees_to_diff, show_diff_trees
 
1510
 
 
1511
        if (prefix is None) or (prefix == '0'):
 
1512
            # diff -p0 format
 
1513
            old_label = ''
 
1514
            new_label = ''
 
1515
        elif prefix == '1':
 
1516
            old_label = 'old/'
 
1517
            new_label = 'new/'
 
1518
        elif ':' in prefix:
 
1519
            old_label, new_label = prefix.split(":")
 
1520
        else:
 
1521
            raise errors.BzrCommandError(
 
1522
                '--prefix expects two values separated by a colon'
 
1523
                ' (eg "old/:new/")')
 
1524
 
 
1525
        if revision and len(revision) > 2:
 
1526
            raise errors.BzrCommandError('bzr diff --revision takes exactly'
 
1527
                                         ' one or two revision specifiers')
 
1528
 
 
1529
        old_tree, new_tree, specific_files, extra_trees = \
 
1530
                _get_trees_to_diff(file_list, revision, old, new)
 
1531
        return show_diff_trees(old_tree, new_tree, sys.stdout, 
 
1532
                               specific_files=specific_files,
 
1533
                               external_diff_options=diff_options,
 
1534
                               old_label=old_label, new_label=new_label,
 
1535
                               extra_trees=extra_trees, using=using)
 
1536
 
 
1537
 
 
1538
class cmd_deleted(Command):
 
1539
    """List files deleted in the working tree.
 
1540
    """
 
1541
    # TODO: Show files deleted since a previous revision, or
 
1542
    # between two revisions.
 
1543
    # TODO: Much more efficient way to do this: read in new
 
1544
    # directories with readdir, rather than stating each one.  Same
 
1545
    # level of effort but possibly much less IO.  (Or possibly not,
 
1546
    # if the directories are very large...)
 
1547
    _see_also = ['status', 'ls']
 
1548
    takes_options = ['show-ids']
 
1549
 
 
1550
    @display_command
 
1551
    def run(self, show_ids=False):
 
1552
        tree = WorkingTree.open_containing(u'.')[0]
 
1553
        tree.lock_read()
 
1554
        try:
 
1555
            old = tree.basis_tree()
 
1556
            old.lock_read()
 
1557
            try:
 
1558
                for path, ie in old.inventory.iter_entries():
 
1559
                    if not tree.has_id(ie.file_id):
 
1560
                        self.outf.write(path)
 
1561
                        if show_ids:
 
1562
                            self.outf.write(' ')
 
1563
                            self.outf.write(ie.file_id)
 
1564
                        self.outf.write('\n')
 
1565
            finally:
 
1566
                old.unlock()
 
1567
        finally:
 
1568
            tree.unlock()
 
1569
 
 
1570
 
 
1571
class cmd_modified(Command):
 
1572
    """List files modified in working tree.
 
1573
    """
 
1574
 
 
1575
    hidden = True
 
1576
    _see_also = ['status', 'ls']
 
1577
    takes_options = [
 
1578
            Option('null',
 
1579
                   help='Write an ascii NUL (\\0) separator '
 
1580
                   'between files rather than a newline.')
 
1581
            ]
 
1582
 
 
1583
    @display_command
 
1584
    def run(self, null=False):
 
1585
        tree = WorkingTree.open_containing(u'.')[0]
 
1586
        td = tree.changes_from(tree.basis_tree())
 
1587
        for path, id, kind, text_modified, meta_modified in td.modified:
 
1588
            if null:
 
1589
                self.outf.write(path + '\0')
 
1590
            else:
 
1591
                self.outf.write(osutils.quotefn(path) + '\n')
 
1592
 
 
1593
 
 
1594
class cmd_added(Command):
 
1595
    """List files added in working tree.
 
1596
    """
 
1597
 
 
1598
    hidden = True
 
1599
    _see_also = ['status', 'ls']
 
1600
    takes_options = [
 
1601
            Option('null',
 
1602
                   help='Write an ascii NUL (\\0) separator '
 
1603
                   'between files rather than a newline.')
 
1604
            ]
 
1605
 
 
1606
    @display_command
 
1607
    def run(self, null=False):
 
1608
        wt = WorkingTree.open_containing(u'.')[0]
 
1609
        wt.lock_read()
 
1610
        try:
 
1611
            basis = wt.basis_tree()
 
1612
            basis.lock_read()
 
1613
            try:
 
1614
                basis_inv = basis.inventory
 
1615
                inv = wt.inventory
 
1616
                for file_id in inv:
 
1617
                    if file_id in basis_inv:
 
1618
                        continue
 
1619
                    if inv.is_root(file_id) and len(basis_inv) == 0:
 
1620
                        continue
 
1621
                    path = inv.id2path(file_id)
 
1622
                    if not os.access(osutils.abspath(path), os.F_OK):
 
1623
                        continue
 
1624
                    if null:
 
1625
                        self.outf.write(path + '\0')
 
1626
                    else:
 
1627
                        self.outf.write(osutils.quotefn(path) + '\n')
 
1628
            finally:
 
1629
                basis.unlock()
 
1630
        finally:
 
1631
            wt.unlock()
 
1632
 
 
1633
 
 
1634
class cmd_root(Command):
 
1635
    """Show the tree root directory.
 
1636
 
 
1637
    The root is the nearest enclosing directory with a .bzr control
 
1638
    directory."""
 
1639
 
 
1640
    takes_args = ['filename?']
 
1641
    @display_command
 
1642
    def run(self, filename=None):
 
1643
        """Print the branch root."""
 
1644
        tree = WorkingTree.open_containing(filename)[0]
 
1645
        self.outf.write(tree.basedir + '\n')
 
1646
 
 
1647
 
 
1648
def _parse_limit(limitstring):
 
1649
    try:
 
1650
        return int(limitstring)
 
1651
    except ValueError:
 
1652
        msg = "The limit argument must be an integer."
 
1653
        raise errors.BzrCommandError(msg)
 
1654
 
 
1655
 
 
1656
class cmd_log(Command):
 
1657
    """Show log of a branch, file, or directory.
 
1658
 
 
1659
    By default show the log of the branch containing the working directory.
 
1660
 
 
1661
    To request a range of logs, you can use the command -r begin..end
 
1662
    -r revision requests a specific revision, -r ..end or -r begin.. are
 
1663
    also valid.
 
1664
 
 
1665
    :Examples:
 
1666
        Log the current branch::
 
1667
 
 
1668
            bzr log
 
1669
 
 
1670
        Log a file::
 
1671
 
 
1672
            bzr log foo.c
 
1673
 
 
1674
        Log the last 10 revisions of a branch::
 
1675
 
 
1676
            bzr log -r -10.. http://server/branch
 
1677
    """
 
1678
 
 
1679
    # TODO: Make --revision support uuid: and hash: [future tag:] notation.
 
1680
 
 
1681
    takes_args = ['location?']
 
1682
    takes_options = [
 
1683
            Option('forward',
 
1684
                   help='Show from oldest to newest.'),
 
1685
            Option('timezone',
 
1686
                   type=str,
 
1687
                   help='Display timezone as local, original, or utc.'),
 
1688
            custom_help('verbose',
 
1689
                   help='Show files changed in each revision.'),
 
1690
            'show-ids',
 
1691
            'revision',
 
1692
            Option('change',
 
1693
                   type=bzrlib.option._parse_revision_str,
 
1694
                   short_name='c',
 
1695
                   help='Show just the specified revision.'
 
1696
                   ' See also "help revisionspec".'),
 
1697
            'log-format',
 
1698
            Option('message',
 
1699
                   short_name='m',
 
1700
                   help='Show revisions whose message matches this '
 
1701
                        'regular expression.',
 
1702
                   type=str),
 
1703
            Option('limit',
 
1704
                   short_name='l',
 
1705
                   help='Limit the output to the first N revisions.',
 
1706
                   argname='N',
 
1707
                   type=_parse_limit),
 
1708
            ]
 
1709
    encoding_type = 'replace'
 
1710
 
 
1711
    @display_command
 
1712
    def run(self, location=None, timezone='original',
 
1713
            verbose=False,
 
1714
            show_ids=False,
 
1715
            forward=False,
 
1716
            revision=None,
 
1717
            change=None,
 
1718
            log_format=None,
 
1719
            message=None,
 
1720
            limit=None):
 
1721
        from bzrlib.log import show_log
 
1722
        direction = (forward and 'forward') or 'reverse'
 
1723
 
 
1724
        if change is not None:
 
1725
            if len(change) > 1:
 
1726
                raise errors.RangeInChangeOption()
 
1727
            if revision is not None:
 
1728
                raise errors.BzrCommandError(
 
1729
                    '--revision and --change are mutually exclusive')
 
1730
            else:
 
1731
                revision = change
 
1732
 
 
1733
        # log everything
 
1734
        file_id = None
 
1735
        if location:
 
1736
            # find the file id to log:
 
1737
 
 
1738
            tree, b, fp = bzrdir.BzrDir.open_containing_tree_or_branch(
 
1739
                location)
 
1740
            if fp != '':
 
1741
                if tree is None:
 
1742
                    tree = b.basis_tree()
 
1743
                file_id = tree.path2id(fp)
 
1744
                if file_id is None:
 
1745
                    raise errors.BzrCommandError(
 
1746
                        "Path does not have any revision history: %s" %
 
1747
                        location)
 
1748
        else:
 
1749
            # local dir only
 
1750
            # FIXME ? log the current subdir only RBC 20060203 
 
1751
            if revision is not None \
 
1752
                    and len(revision) > 0 and revision[0].get_branch():
 
1753
                location = revision[0].get_branch()
 
1754
            else:
 
1755
                location = '.'
 
1756
            dir, relpath = bzrdir.BzrDir.open_containing(location)
 
1757
            b = dir.open_branch()
 
1758
 
 
1759
        b.lock_read()
 
1760
        try:
 
1761
            if revision is None:
 
1762
                rev1 = None
 
1763
                rev2 = None
 
1764
            elif len(revision) == 1:
 
1765
                rev1 = rev2 = revision[0].in_history(b)
 
1766
            elif len(revision) == 2:
 
1767
                if revision[1].get_branch() != revision[0].get_branch():
 
1768
                    # b is taken from revision[0].get_branch(), and
 
1769
                    # show_log will use its revision_history. Having
 
1770
                    # different branches will lead to weird behaviors.
 
1771
                    raise errors.BzrCommandError(
 
1772
                        "Log doesn't accept two revisions in different"
 
1773
                        " branches.")
 
1774
                rev1 = revision[0].in_history(b)
 
1775
                rev2 = revision[1].in_history(b)
 
1776
            else:
 
1777
                raise errors.BzrCommandError(
 
1778
                    'bzr log --revision takes one or two values.')
 
1779
 
 
1780
            if log_format is None:
 
1781
                log_format = log.log_formatter_registry.get_default(b)
 
1782
 
 
1783
            lf = log_format(show_ids=show_ids, to_file=self.outf,
 
1784
                            show_timezone=timezone)
 
1785
 
 
1786
            show_log(b,
 
1787
                     lf,
 
1788
                     file_id,
 
1789
                     verbose=verbose,
 
1790
                     direction=direction,
 
1791
                     start_revision=rev1,
 
1792
                     end_revision=rev2,
 
1793
                     search=message,
 
1794
                     limit=limit)
 
1795
        finally:
 
1796
            b.unlock()
 
1797
 
 
1798
 
 
1799
def get_log_format(long=False, short=False, line=False, default='long'):
 
1800
    log_format = default
 
1801
    if long:
 
1802
        log_format = 'long'
 
1803
    if short:
 
1804
        log_format = 'short'
 
1805
    if line:
 
1806
        log_format = 'line'
 
1807
    return log_format
 
1808
 
 
1809
 
 
1810
class cmd_touching_revisions(Command):
 
1811
    """Return revision-ids which affected a particular file.
 
1812
 
 
1813
    A more user-friendly interface is "bzr log FILE".
 
1814
    """
 
1815
 
 
1816
    hidden = True
 
1817
    takes_args = ["filename"]
 
1818
 
 
1819
    @display_command
 
1820
    def run(self, filename):
 
1821
        tree, relpath = WorkingTree.open_containing(filename)
 
1822
        b = tree.branch
 
1823
        file_id = tree.path2id(relpath)
 
1824
        for revno, revision_id, what in log.find_touching_revisions(b, file_id):
 
1825
            self.outf.write("%6d %s\n" % (revno, what))
 
1826
 
 
1827
 
 
1828
class cmd_ls(Command):
 
1829
    """List files in a tree.
 
1830
    """
 
1831
 
 
1832
    _see_also = ['status', 'cat']
 
1833
    takes_args = ['path?']
 
1834
    # TODO: Take a revision or remote path and list that tree instead.
 
1835
    takes_options = [
 
1836
            'verbose',
 
1837
            'revision',
 
1838
            Option('non-recursive',
 
1839
                   help='Don\'t recurse into subdirectories.'),
 
1840
            Option('from-root',
 
1841
                   help='Print paths relative to the root of the branch.'),
 
1842
            Option('unknown', help='Print unknown files.'),
 
1843
            Option('versioned', help='Print versioned files.',
 
1844
                   short_name='V'),
 
1845
            Option('ignored', help='Print ignored files.'),
 
1846
            Option('null',
 
1847
                   help='Write an ascii NUL (\\0) separator '
 
1848
                   'between files rather than a newline.'),
 
1849
            Option('kind',
 
1850
                   help='List entries of a particular kind: file, directory, symlink.',
 
1851
                   type=unicode),
 
1852
            'show-ids',
 
1853
            ]
 
1854
    @display_command
 
1855
    def run(self, revision=None, verbose=False,
 
1856
            non_recursive=False, from_root=False,
 
1857
            unknown=False, versioned=False, ignored=False,
 
1858
            null=False, kind=None, show_ids=False, path=None):
 
1859
 
 
1860
        if kind and kind not in ('file', 'directory', 'symlink'):
 
1861
            raise errors.BzrCommandError('invalid kind specified')
 
1862
 
 
1863
        if verbose and null:
 
1864
            raise errors.BzrCommandError('Cannot set both --verbose and --null')
 
1865
        all = not (unknown or versioned or ignored)
 
1866
 
 
1867
        selection = {'I':ignored, '?':unknown, 'V':versioned}
 
1868
 
 
1869
        if path is None:
 
1870
            fs_path = '.'
 
1871
            prefix = ''
 
1872
        else:
 
1873
            if from_root:
 
1874
                raise errors.BzrCommandError('cannot specify both --from-root'
 
1875
                                             ' and PATH')
 
1876
            fs_path = path
 
1877
            prefix = path
 
1878
        tree, branch, relpath = bzrdir.BzrDir.open_containing_tree_or_branch(
 
1879
            fs_path)
 
1880
        if from_root:
 
1881
            relpath = u''
 
1882
        elif relpath:
 
1883
            relpath += '/'
 
1884
        if revision is not None or tree is None:
 
1885
            tree = _get_one_revision_tree('ls', revision, branch=branch)
 
1886
 
 
1887
        tree.lock_read()
 
1888
        try:
 
1889
            for fp, fc, fkind, fid, entry in tree.list_files(include_root=False):
 
1890
                if fp.startswith(relpath):
 
1891
                    fp = osutils.pathjoin(prefix, fp[len(relpath):])
 
1892
                    if non_recursive and '/' in fp:
 
1893
                        continue
 
1894
                    if not all and not selection[fc]:
 
1895
                        continue
 
1896
                    if kind is not None and fkind != kind:
 
1897
                        continue
 
1898
                    if verbose:
 
1899
                        kindch = entry.kind_character()
 
1900
                        outstring = '%-8s %s%s' % (fc, fp, kindch)
 
1901
                        if show_ids and fid is not None:
 
1902
                            outstring = "%-50s %s" % (outstring, fid)
 
1903
                        self.outf.write(outstring + '\n')
 
1904
                    elif null:
 
1905
                        self.outf.write(fp + '\0')
 
1906
                        if show_ids:
 
1907
                            if fid is not None:
 
1908
                                self.outf.write(fid)
 
1909
                            self.outf.write('\0')
 
1910
                        self.outf.flush()
 
1911
                    else:
 
1912
                        if fid is not None:
 
1913
                            my_id = fid
 
1914
                        else:
 
1915
                            my_id = ''
 
1916
                        if show_ids:
 
1917
                            self.outf.write('%-50s %s\n' % (fp, my_id))
 
1918
                        else:
 
1919
                            self.outf.write(fp + '\n')
 
1920
        finally:
 
1921
            tree.unlock()
 
1922
 
 
1923
 
 
1924
class cmd_unknowns(Command):
 
1925
    """List unknown files.
 
1926
    """
 
1927
 
 
1928
    hidden = True
 
1929
    _see_also = ['ls']
 
1930
 
 
1931
    @display_command
 
1932
    def run(self):
 
1933
        for f in WorkingTree.open_containing(u'.')[0].unknowns():
 
1934
            self.outf.write(osutils.quotefn(f) + '\n')
 
1935
 
 
1936
 
 
1937
class cmd_ignore(Command):
 
1938
    """Ignore specified files or patterns.
 
1939
 
 
1940
    See ``bzr help patterns`` for details on the syntax of patterns.
 
1941
 
 
1942
    To remove patterns from the ignore list, edit the .bzrignore file.
 
1943
    After adding, editing or deleting that file either indirectly by
 
1944
    using this command or directly by using an editor, be sure to commit
 
1945
    it.
 
1946
 
 
1947
    Note: ignore patterns containing shell wildcards must be quoted from 
 
1948
    the shell on Unix.
 
1949
 
 
1950
    :Examples:
 
1951
        Ignore the top level Makefile::
 
1952
 
 
1953
            bzr ignore ./Makefile
 
1954
 
 
1955
        Ignore class files in all directories::
 
1956
 
 
1957
            bzr ignore "*.class"
 
1958
 
 
1959
        Ignore .o files under the lib directory::
 
1960
 
 
1961
            bzr ignore "lib/**/*.o"
 
1962
 
 
1963
        Ignore .o files under the lib directory::
 
1964
 
 
1965
            bzr ignore "RE:lib/.*\.o"
 
1966
 
 
1967
        Ignore everything but the "debian" toplevel directory::
 
1968
 
 
1969
            bzr ignore "RE:(?!debian/).*"
 
1970
    """
 
1971
 
 
1972
    _see_also = ['status', 'ignored', 'patterns']
 
1973
    takes_args = ['name_pattern*']
 
1974
    takes_options = [
 
1975
        Option('old-default-rules',
 
1976
               help='Write out the ignore rules bzr < 0.9 always used.')
 
1977
        ]
 
1978
    
 
1979
    def run(self, name_pattern_list=None, old_default_rules=None):
 
1980
        from bzrlib import ignores
 
1981
        if old_default_rules is not None:
 
1982
            # dump the rules and exit
 
1983
            for pattern in ignores.OLD_DEFAULTS:
 
1984
                print pattern
 
1985
            return
 
1986
        if not name_pattern_list:
 
1987
            raise errors.BzrCommandError("ignore requires at least one "
 
1988
                                  "NAME_PATTERN or --old-default-rules")
 
1989
        name_pattern_list = [globbing.normalize_pattern(p) 
 
1990
                             for p in name_pattern_list]
 
1991
        for name_pattern in name_pattern_list:
 
1992
            if (name_pattern[0] == '/' or 
 
1993
                (len(name_pattern) > 1 and name_pattern[1] == ':')):
 
1994
                raise errors.BzrCommandError(
 
1995
                    "NAME_PATTERN should not be an absolute path")
 
1996
        tree, relpath = WorkingTree.open_containing(u'.')
 
1997
        ignores.tree_ignores_add_patterns(tree, name_pattern_list)
 
1998
        ignored = globbing.Globster(name_pattern_list)
 
1999
        matches = []
 
2000
        tree.lock_read()
 
2001
        for entry in tree.list_files():
 
2002
            id = entry[3]
 
2003
            if id is not None:
 
2004
                filename = entry[0]
 
2005
                if ignored.match(filename):
 
2006
                    matches.append(filename.encode('utf-8'))
 
2007
        tree.unlock()
 
2008
        if len(matches) > 0:
 
2009
            print "Warning: the following files are version controlled and" \
 
2010
                  " match your ignore pattern:\n%s" % ("\n".join(matches),)
 
2011
 
 
2012
 
 
2013
class cmd_ignored(Command):
 
2014
    """List ignored files and the patterns that matched them.
 
2015
 
 
2016
    List all the ignored files and the ignore pattern that caused the file to
 
2017
    be ignored.
 
2018
 
 
2019
    Alternatively, to list just the files::
 
2020
 
 
2021
        bzr ls --ignored
 
2022
    """
 
2023
 
 
2024
    encoding_type = 'replace'
 
2025
    _see_also = ['ignore', 'ls']
 
2026
 
 
2027
    @display_command
 
2028
    def run(self):
 
2029
        tree = WorkingTree.open_containing(u'.')[0]
 
2030
        tree.lock_read()
 
2031
        try:
 
2032
            for path, file_class, kind, file_id, entry in tree.list_files():
 
2033
                if file_class != 'I':
 
2034
                    continue
 
2035
                ## XXX: Slightly inefficient since this was already calculated
 
2036
                pat = tree.is_ignored(path)
 
2037
                self.outf.write('%-50s %s\n' % (path, pat))
 
2038
        finally:
 
2039
            tree.unlock()
 
2040
 
 
2041
 
 
2042
class cmd_lookup_revision(Command):
 
2043
    """Lookup the revision-id from a revision-number
 
2044
 
 
2045
    :Examples:
 
2046
        bzr lookup-revision 33
 
2047
    """
 
2048
    hidden = True
 
2049
    takes_args = ['revno']
 
2050
    
 
2051
    @display_command
 
2052
    def run(self, revno):
 
2053
        try:
 
2054
            revno = int(revno)
 
2055
        except ValueError:
 
2056
            raise errors.BzrCommandError("not a valid revision-number: %r" % revno)
 
2057
 
 
2058
        print WorkingTree.open_containing(u'.')[0].branch.get_rev_id(revno)
 
2059
 
 
2060
 
 
2061
class cmd_export(Command):
 
2062
    """Export current or past revision to a destination directory or archive.
 
2063
 
 
2064
    If no revision is specified this exports the last committed revision.
 
2065
 
 
2066
    Format may be an "exporter" name, such as tar, tgz, tbz2.  If none is
 
2067
    given, try to find the format with the extension. If no extension
 
2068
    is found exports to a directory (equivalent to --format=dir).
 
2069
 
 
2070
    If root is supplied, it will be used as the root directory inside
 
2071
    container formats (tar, zip, etc). If it is not supplied it will default
 
2072
    to the exported filename. The root option has no effect for 'dir' format.
 
2073
 
 
2074
    If branch is omitted then the branch containing the current working
 
2075
    directory will be used.
 
2076
 
 
2077
    Note: Export of tree with non-ASCII filenames to zip is not supported.
 
2078
 
 
2079
      =================       =========================
 
2080
      Supported formats       Autodetected by extension
 
2081
      =================       =========================
 
2082
         dir                         (none)
 
2083
         tar                          .tar
 
2084
         tbz2                    .tar.bz2, .tbz2
 
2085
         tgz                      .tar.gz, .tgz
 
2086
         zip                          .zip
 
2087
      =================       =========================
 
2088
    """
 
2089
    takes_args = ['dest', 'branch_or_subdir?']
 
2090
    takes_options = [
 
2091
        Option('format',
 
2092
               help="Type of file to export to.",
 
2093
               type=unicode),
 
2094
        'revision',
 
2095
        Option('root',
 
2096
               type=str,
 
2097
               help="Name of the root directory inside the exported file."),
 
2098
        ]
 
2099
    def run(self, dest, branch_or_subdir=None, revision=None, format=None,
 
2100
        root=None):
 
2101
        from bzrlib.export import export
 
2102
 
 
2103
        if branch_or_subdir is None:
 
2104
            tree = WorkingTree.open_containing(u'.')[0]
 
2105
            b = tree.branch
 
2106
            subdir = None
 
2107
        else:
 
2108
            b, subdir = Branch.open_containing(branch_or_subdir)
 
2109
            tree = None
 
2110
 
 
2111
        rev_tree = _get_one_revision_tree('export', revision, branch=b, tree=tree)
 
2112
        try:
 
2113
            export(rev_tree, dest, format, root, subdir)
 
2114
        except errors.NoSuchExportFormat, e:
 
2115
            raise errors.BzrCommandError('Unsupported export format: %s' % e.format)
 
2116
 
 
2117
 
 
2118
class cmd_cat(Command):
 
2119
    """Write the contents of a file as of a given revision to standard output.
 
2120
 
 
2121
    If no revision is nominated, the last revision is used.
 
2122
 
 
2123
    Note: Take care to redirect standard output when using this command on a
 
2124
    binary file. 
 
2125
    """
 
2126
 
 
2127
    _see_also = ['ls']
 
2128
    takes_options = [
 
2129
        Option('name-from-revision', help='The path name in the old tree.'),
 
2130
        'revision',
 
2131
        ]
 
2132
    takes_args = ['filename']
 
2133
    encoding_type = 'exact'
 
2134
 
 
2135
    @display_command
 
2136
    def run(self, filename, revision=None, name_from_revision=False):
 
2137
        if revision is not None and len(revision) != 1:
 
2138
            raise errors.BzrCommandError("bzr cat --revision takes exactly"
 
2139
                                         " one revision specifier")
 
2140
        tree, branch, relpath = \
 
2141
            bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
2142
        branch.lock_read()
 
2143
        try:
 
2144
            return self._run(tree, branch, relpath, filename, revision,
 
2145
                             name_from_revision)
 
2146
        finally:
 
2147
            branch.unlock()
 
2148
 
 
2149
    def _run(self, tree, b, relpath, filename, revision, name_from_revision):
 
2150
        if tree is None:
 
2151
            tree = b.basis_tree()
 
2152
        rev_tree = _get_one_revision_tree('cat', revision, branch=b)
 
2153
 
 
2154
        cur_file_id = tree.path2id(relpath)
 
2155
        old_file_id = rev_tree.path2id(relpath)
 
2156
 
 
2157
        if name_from_revision:
 
2158
            if old_file_id is None:
 
2159
                raise errors.BzrCommandError(
 
2160
                    "%r is not present in revision %s" % (
 
2161
                        filename, rev_tree.get_revision_id()))
 
2162
            else:
 
2163
                content = rev_tree.get_file_text(old_file_id)
 
2164
        elif cur_file_id is not None:
 
2165
            content = rev_tree.get_file_text(cur_file_id)
 
2166
        elif old_file_id is not None:
 
2167
            content = rev_tree.get_file_text(old_file_id)
 
2168
        else:
 
2169
            raise errors.BzrCommandError(
 
2170
                "%r is not present in revision %s" % (
 
2171
                    filename, rev_tree.get_revision_id()))
 
2172
        self.outf.write(content)
 
2173
 
 
2174
 
 
2175
class cmd_local_time_offset(Command):
 
2176
    """Show the offset in seconds from GMT to local time."""
 
2177
    hidden = True    
 
2178
    @display_command
 
2179
    def run(self):
 
2180
        print osutils.local_time_offset()
 
2181
 
 
2182
 
 
2183
 
 
2184
class cmd_commit(Command):
 
2185
    """Commit changes into a new revision.
 
2186
    
 
2187
    If no arguments are given, the entire tree is committed.
 
2188
 
 
2189
    If selected files are specified, only changes to those files are
 
2190
    committed.  If a directory is specified then the directory and everything 
 
2191
    within it is committed.
 
2192
 
 
2193
    When excludes are given, they take precedence over selected files.
 
2194
    For example, too commit only changes within foo, but not changes within
 
2195
    foo/bar::
 
2196
 
 
2197
      bzr commit foo -x foo/bar
 
2198
 
 
2199
    If author of the change is not the same person as the committer, you can
 
2200
    specify the author's name using the --author option. The name should be
 
2201
    in the same format as a committer-id, e.g. "John Doe <jdoe@example.com>".
 
2202
 
 
2203
    A selected-file commit may fail in some cases where the committed
 
2204
    tree would be invalid. Consider::
 
2205
 
 
2206
      bzr init foo
 
2207
      mkdir foo/bar
 
2208
      bzr add foo/bar
 
2209
      bzr commit foo -m "committing foo"
 
2210
      bzr mv foo/bar foo/baz
 
2211
      mkdir foo/bar
 
2212
      bzr add foo/bar
 
2213
      bzr commit foo/bar -m "committing bar but not baz"
 
2214
 
 
2215
    In the example above, the last commit will fail by design. This gives
 
2216
    the user the opportunity to decide whether they want to commit the
 
2217
    rename at the same time, separately first, or not at all. (As a general
 
2218
    rule, when in doubt, Bazaar has a policy of Doing the Safe Thing.)
 
2219
 
 
2220
    Note: A selected-file commit after a merge is not yet supported.
 
2221
    """
 
2222
    # TODO: Run hooks on tree to-be-committed, and after commit.
 
2223
 
 
2224
    # TODO: Strict commit that fails if there are deleted files.
 
2225
    #       (what does "deleted files" mean ??)
 
2226
 
 
2227
    # TODO: Give better message for -s, --summary, used by tla people
 
2228
 
 
2229
    # XXX: verbose currently does nothing
 
2230
 
 
2231
    _see_also = ['bugs', 'uncommit']
 
2232
    takes_args = ['selected*']
 
2233
    takes_options = [
 
2234
            ListOption('exclude', type=str, short_name='x',
 
2235
                help="Do not consider changes made to a given path."),
 
2236
            Option('message', type=unicode,
 
2237
                   short_name='m',
 
2238
                   help="Description of the new revision."),
 
2239
            'verbose',
 
2240
             Option('unchanged',
 
2241
                    help='Commit even if nothing has changed.'),
 
2242
             Option('file', type=str,
 
2243
                    short_name='F',
 
2244
                    argname='msgfile',
 
2245
                    help='Take commit message from this file.'),
 
2246
             Option('strict',
 
2247
                    help="Refuse to commit if there are unknown "
 
2248
                    "files in the working tree."),
 
2249
             ListOption('fixes', type=str,
 
2250
                    help="Mark a bug as being fixed by this revision."),
 
2251
             Option('author', type=unicode,
 
2252
                    help="Set the author's name, if it's different "
 
2253
                         "from the committer."),
 
2254
             Option('local',
 
2255
                    help="Perform a local commit in a bound "
 
2256
                         "branch.  Local commits are not pushed to "
 
2257
                         "the master branch until a normal commit "
 
2258
                         "is performed."
 
2259
                    ),
 
2260
              Option('show-diff',
 
2261
                     help='When no message is supplied, show the diff along'
 
2262
                     ' with the status summary in the message editor.'),
 
2263
             ]
 
2264
    aliases = ['ci', 'checkin']
 
2265
 
 
2266
    def _get_bug_fix_properties(self, fixes, branch):
 
2267
        properties = []
 
2268
        # Configure the properties for bug fixing attributes.
 
2269
        for fixed_bug in fixes:
 
2270
            tokens = fixed_bug.split(':')
 
2271
            if len(tokens) != 2:
 
2272
                raise errors.BzrCommandError(
 
2273
                    "Invalid bug %s. Must be in the form of 'tag:id'. "
 
2274
                    "Commit refused." % fixed_bug)
 
2275
            tag, bug_id = tokens
 
2276
            try:
 
2277
                bug_url = bugtracker.get_bug_url(tag, branch, bug_id)
 
2278
            except errors.UnknownBugTrackerAbbreviation:
 
2279
                raise errors.BzrCommandError(
 
2280
                    'Unrecognized bug %s. Commit refused.' % fixed_bug)
 
2281
            except errors.MalformedBugIdentifier:
 
2282
                raise errors.BzrCommandError(
 
2283
                    "Invalid bug identifier for %s. Commit refused."
 
2284
                    % fixed_bug)
 
2285
            properties.append('%s fixed' % bug_url)
 
2286
        return '\n'.join(properties)
 
2287
 
 
2288
    def run(self, message=None, file=None, verbose=False, selected_list=None,
 
2289
            unchanged=False, strict=False, local=False, fixes=None,
 
2290
            author=None, show_diff=False, exclude=None):
 
2291
        from bzrlib.errors import (
 
2292
            PointlessCommit,
 
2293
            ConflictsInTree,
 
2294
            StrictCommitFailed
 
2295
        )
 
2296
        from bzrlib.msgeditor import (
 
2297
            edit_commit_message_encoded,
 
2298
            make_commit_message_template_encoded
 
2299
        )
 
2300
 
 
2301
        # TODO: Need a blackbox test for invoking the external editor; may be
 
2302
        # slightly problematic to run this cross-platform.
 
2303
 
 
2304
        # TODO: do more checks that the commit will succeed before 
 
2305
        # spending the user's valuable time typing a commit message.
 
2306
 
 
2307
        properties = {}
 
2308
 
 
2309
        tree, selected_list = tree_files(selected_list)
 
2310
        if selected_list == ['']:
 
2311
            # workaround - commit of root of tree should be exactly the same
 
2312
            # as just default commit in that tree, and succeed even though
 
2313
            # selected-file merge commit is not done yet
 
2314
            selected_list = []
 
2315
 
 
2316
        if fixes is None:
 
2317
            fixes = []
 
2318
        bug_property = self._get_bug_fix_properties(fixes, tree.branch)
 
2319
        if bug_property:
 
2320
            properties['bugs'] = bug_property
 
2321
 
 
2322
        if local and not tree.branch.get_bound_location():
 
2323
            raise errors.LocalRequiresBoundBranch()
 
2324
 
 
2325
        def get_message(commit_obj):
 
2326
            """Callback to get commit message"""
 
2327
            my_message = message
 
2328
            if my_message is None and not file:
 
2329
                t = make_commit_message_template_encoded(tree,
 
2330
                        selected_list, diff=show_diff,
 
2331
                        output_encoding=bzrlib.user_encoding)
 
2332
                my_message = edit_commit_message_encoded(t)
 
2333
                if my_message is None:
 
2334
                    raise errors.BzrCommandError("please specify a commit"
 
2335
                        " message with either --message or --file")
 
2336
            elif my_message and file:
 
2337
                raise errors.BzrCommandError(
 
2338
                    "please specify either --message or --file")
 
2339
            if file:
 
2340
                my_message = codecs.open(file, 'rt',
 
2341
                                         bzrlib.user_encoding).read()
 
2342
            if my_message == "":
 
2343
                raise errors.BzrCommandError("empty commit message specified")
 
2344
            return my_message
 
2345
 
 
2346
        try:
 
2347
            tree.commit(message_callback=get_message,
 
2348
                        specific_files=selected_list,
 
2349
                        allow_pointless=unchanged, strict=strict, local=local,
 
2350
                        reporter=None, verbose=verbose, revprops=properties,
 
2351
                        author=author,
 
2352
                        exclude=safe_relpath_files(tree, exclude))
 
2353
        except PointlessCommit:
 
2354
            # FIXME: This should really happen before the file is read in;
 
2355
            # perhaps prepare the commit; get the message; then actually commit
 
2356
            raise errors.BzrCommandError("no changes to commit."
 
2357
                              " use --unchanged to commit anyhow")
 
2358
        except ConflictsInTree:
 
2359
            raise errors.BzrCommandError('Conflicts detected in working '
 
2360
                'tree.  Use "bzr conflicts" to list, "bzr resolve FILE" to'
 
2361
                ' resolve.')
 
2362
        except StrictCommitFailed:
 
2363
            raise errors.BzrCommandError("Commit refused because there are"
 
2364
                              " unknown files in the working tree.")
 
2365
        except errors.BoundBranchOutOfDate, e:
 
2366
            raise errors.BzrCommandError(str(e) + "\n"
 
2367
            'To commit to master branch, run update and then commit.\n'
 
2368
            'You can also pass --local to commit to continue working '
 
2369
            'disconnected.')
 
2370
 
 
2371
 
 
2372
class cmd_check(Command):
 
2373
    """Validate working tree structure, branch consistency and repository history.
 
2374
 
 
2375
    This command checks various invariants about branch and repository storage
 
2376
    to detect data corruption or bzr bugs.
 
2377
 
 
2378
    The working tree and branch checks will only give output if a problem is
 
2379
    detected. The output fields of the repository check are:
 
2380
 
 
2381
        revisions: This is just the number of revisions checked.  It doesn't
 
2382
            indicate a problem.
 
2383
        versionedfiles: This is just the number of versionedfiles checked.  It
 
2384
            doesn't indicate a problem.
 
2385
        unreferenced ancestors: Texts that are ancestors of other texts, but
 
2386
            are not properly referenced by the revision ancestry.  This is a
 
2387
            subtle problem that Bazaar can work around.
 
2388
        unique file texts: This is the total number of unique file contents
 
2389
            seen in the checked revisions.  It does not indicate a problem.
 
2390
        repeated file texts: This is the total number of repeated texts seen
 
2391
            in the checked revisions.  Texts can be repeated when their file
 
2392
            entries are modified, but the file contents are not.  It does not
 
2393
            indicate a problem.
 
2394
 
 
2395
    If no restrictions are specified, all Bazaar data that is found at the given
 
2396
    location will be checked.
 
2397
 
 
2398
    :Examples:
 
2399
 
 
2400
        Check the tree and branch at 'foo'::
 
2401
 
 
2402
            bzr check --tree --branch foo
 
2403
 
 
2404
        Check only the repository at 'bar'::
 
2405
 
 
2406
            bzr check --repo bar
 
2407
 
 
2408
        Check everything at 'baz'::
 
2409
 
 
2410
            bzr check baz
 
2411
    """
 
2412
 
 
2413
    _see_also = ['reconcile']
 
2414
    takes_args = ['path?']
 
2415
    takes_options = ['verbose',
 
2416
                     Option('branch', help="Check the branch related to the"
 
2417
                                           " current directory."),
 
2418
                     Option('repo', help="Check the repository related to the"
 
2419
                                         " current directory."),
 
2420
                     Option('tree', help="Check the working tree related to"
 
2421
                                         " the current directory.")]
 
2422
 
 
2423
    def run(self, path=None, verbose=False, branch=False, repo=False,
 
2424
            tree=False):
 
2425
        from bzrlib.check import check_dwim
 
2426
        if path is None:
 
2427
            path = '.'
 
2428
        if not branch and not repo and not tree:
 
2429
            branch = repo = tree = True
 
2430
        check_dwim(path, verbose, do_branch=branch, do_repo=repo, do_tree=tree)
 
2431
 
 
2432
 
 
2433
class cmd_upgrade(Command):
 
2434
    """Upgrade branch storage to current format.
 
2435
 
 
2436
    The check command or bzr developers may sometimes advise you to run
 
2437
    this command. When the default format has changed you may also be warned
 
2438
    during other operations to upgrade.
 
2439
    """
 
2440
 
 
2441
    _see_also = ['check']
 
2442
    takes_args = ['url?']
 
2443
    takes_options = [
 
2444
                    RegistryOption('format',
 
2445
                        help='Upgrade to a specific format.  See "bzr help'
 
2446
                             ' formats" for details.',
 
2447
                        registry=bzrdir.format_registry,
 
2448
                        converter=bzrdir.format_registry.make_bzrdir,
 
2449
                        value_switches=True, title='Branch format'),
 
2450
                    ]
 
2451
 
 
2452
    def run(self, url='.', format=None):
 
2453
        from bzrlib.upgrade import upgrade
 
2454
        if format is None:
 
2455
            format = bzrdir.format_registry.make_bzrdir('default')
 
2456
        upgrade(url, format)
 
2457
 
 
2458
 
 
2459
class cmd_whoami(Command):
 
2460
    """Show or set bzr user id.
 
2461
    
 
2462
    :Examples:
 
2463
        Show the email of the current user::
 
2464
 
 
2465
            bzr whoami --email
 
2466
 
 
2467
        Set the current user::
 
2468
 
 
2469
            bzr whoami "Frank Chu <fchu@example.com>"
 
2470
    """
 
2471
    takes_options = [ Option('email',
 
2472
                             help='Display email address only.'),
 
2473
                      Option('branch',
 
2474
                             help='Set identity for the current branch instead of '
 
2475
                                  'globally.'),
 
2476
                    ]
 
2477
    takes_args = ['name?']
 
2478
    encoding_type = 'replace'
 
2479
    
 
2480
    @display_command
 
2481
    def run(self, email=False, branch=False, name=None):
 
2482
        if name is None:
 
2483
            # use branch if we're inside one; otherwise global config
 
2484
            try:
 
2485
                c = Branch.open_containing('.')[0].get_config()
 
2486
            except errors.NotBranchError:
 
2487
                c = config.GlobalConfig()
 
2488
            if email:
 
2489
                self.outf.write(c.user_email() + '\n')
 
2490
            else:
 
2491
                self.outf.write(c.username() + '\n')
 
2492
            return
 
2493
 
 
2494
        # display a warning if an email address isn't included in the given name.
 
2495
        try:
 
2496
            config.extract_email_address(name)
 
2497
        except errors.NoEmailInUsername, e:
 
2498
            warning('"%s" does not seem to contain an email address.  '
 
2499
                    'This is allowed, but not recommended.', name)
 
2500
        
 
2501
        # use global config unless --branch given
 
2502
        if branch:
 
2503
            c = Branch.open_containing('.')[0].get_config()
 
2504
        else:
 
2505
            c = config.GlobalConfig()
 
2506
        c.set_user_option('email', name)
 
2507
 
 
2508
 
 
2509
class cmd_nick(Command):
 
2510
    """Print or set the branch nickname.  
 
2511
 
 
2512
    If unset, the tree root directory name is used as the nickname
 
2513
    To print the current nickname, execute with no argument.  
 
2514
    """
 
2515
 
 
2516
    _see_also = ['info']
 
2517
    takes_args = ['nickname?']
 
2518
    def run(self, nickname=None):
 
2519
        branch = Branch.open_containing(u'.')[0]
 
2520
        if nickname is None:
 
2521
            self.printme(branch)
 
2522
        else:
 
2523
            branch.nick = nickname
 
2524
 
 
2525
    @display_command
 
2526
    def printme(self, branch):
 
2527
        print branch.nick
 
2528
 
 
2529
 
 
2530
class cmd_alias(Command):
 
2531
    """Set/unset and display aliases.
 
2532
 
 
2533
    :Examples:
 
2534
        Show the current aliases::
 
2535
 
 
2536
            bzr alias
 
2537
 
 
2538
        Show the alias specified for 'll'::
 
2539
 
 
2540
            bzr alias ll
 
2541
 
 
2542
        Set an alias for 'll'::
 
2543
 
 
2544
            bzr alias ll="log --line -r-10..-1"
 
2545
 
 
2546
        To remove an alias for 'll'::
 
2547
 
 
2548
            bzr alias --remove ll
 
2549
 
 
2550
    """
 
2551
    takes_args = ['name?']
 
2552
    takes_options = [
 
2553
        Option('remove', help='Remove the alias.'),
 
2554
        ]
 
2555
 
 
2556
    def run(self, name=None, remove=False):
 
2557
        if remove:
 
2558
            self.remove_alias(name)
 
2559
        elif name is None:
 
2560
            self.print_aliases()
 
2561
        else:
 
2562
            equal_pos = name.find('=')
 
2563
            if equal_pos == -1:
 
2564
                self.print_alias(name)
 
2565
            else:
 
2566
                self.set_alias(name[:equal_pos], name[equal_pos+1:])
 
2567
 
 
2568
    def remove_alias(self, alias_name):
 
2569
        if alias_name is None:
 
2570
            raise errors.BzrCommandError(
 
2571
                'bzr alias --remove expects an alias to remove.')
 
2572
        # If alias is not found, print something like:
 
2573
        # unalias: foo: not found
 
2574
        c = config.GlobalConfig()
 
2575
        c.unset_alias(alias_name)
 
2576
 
 
2577
    @display_command
 
2578
    def print_aliases(self):
 
2579
        """Print out the defined aliases in a similar format to bash."""
 
2580
        aliases = config.GlobalConfig().get_aliases()
 
2581
        for key, value in sorted(aliases.iteritems()):
 
2582
            self.outf.write('bzr alias %s="%s"\n' % (key, value))
 
2583
 
 
2584
    @display_command
 
2585
    def print_alias(self, alias_name):
 
2586
        from bzrlib.commands import get_alias
 
2587
        alias = get_alias(alias_name)
 
2588
        if alias is None:
 
2589
            self.outf.write("bzr alias: %s: not found\n" % alias_name)
 
2590
        else:
 
2591
            self.outf.write(
 
2592
                'bzr alias %s="%s"\n' % (alias_name, ' '.join(alias)))
 
2593
 
 
2594
    def set_alias(self, alias_name, alias_command):
 
2595
        """Save the alias in the global config."""
 
2596
        c = config.GlobalConfig()
 
2597
        c.set_alias(alias_name, alias_command)
 
2598
 
 
2599
 
 
2600
class cmd_selftest(Command):
 
2601
    """Run internal test suite.
 
2602
    
 
2603
    If arguments are given, they are regular expressions that say which tests
 
2604
    should run.  Tests matching any expression are run, and other tests are
 
2605
    not run.
 
2606
 
 
2607
    Alternatively if --first is given, matching tests are run first and then
 
2608
    all other tests are run.  This is useful if you have been working in a
 
2609
    particular area, but want to make sure nothing else was broken.
 
2610
 
 
2611
    If --exclude is given, tests that match that regular expression are
 
2612
    excluded, regardless of whether they match --first or not.
 
2613
 
 
2614
    To help catch accidential dependencies between tests, the --randomize
 
2615
    option is useful. In most cases, the argument used is the word 'now'.
 
2616
    Note that the seed used for the random number generator is displayed
 
2617
    when this option is used. The seed can be explicitly passed as the
 
2618
    argument to this option if required. This enables reproduction of the
 
2619
    actual ordering used if and when an order sensitive problem is encountered.
 
2620
 
 
2621
    If --list-only is given, the tests that would be run are listed. This is
 
2622
    useful when combined with --first, --exclude and/or --randomize to
 
2623
    understand their impact. The test harness reports "Listed nn tests in ..."
 
2624
    instead of "Ran nn tests in ..." when list mode is enabled.
 
2625
 
 
2626
    If the global option '--no-plugins' is given, plugins are not loaded
 
2627
    before running the selftests.  This has two effects: features provided or
 
2628
    modified by plugins will not be tested, and tests provided by plugins will
 
2629
    not be run.
 
2630
 
 
2631
    Tests that need working space on disk use a common temporary directory, 
 
2632
    typically inside $TMPDIR or /tmp.
 
2633
 
 
2634
    :Examples:
 
2635
        Run only tests relating to 'ignore'::
 
2636
 
 
2637
            bzr selftest ignore
 
2638
 
 
2639
        Disable plugins and list tests as they're run::
 
2640
 
 
2641
            bzr --no-plugins selftest -v
 
2642
    """
 
2643
    # NB: this is used from the class without creating an instance, which is
 
2644
    # why it does not have a self parameter.
 
2645
    def get_transport_type(typestring):
 
2646
        """Parse and return a transport specifier."""
 
2647
        if typestring == "sftp":
 
2648
            from bzrlib.transport.sftp import SFTPAbsoluteServer
 
2649
            return SFTPAbsoluteServer
 
2650
        if typestring == "memory":
 
2651
            from bzrlib.transport.memory import MemoryServer
 
2652
            return MemoryServer
 
2653
        if typestring == "fakenfs":
 
2654
            from bzrlib.transport.fakenfs import FakeNFSServer
 
2655
            return FakeNFSServer
 
2656
        msg = "No known transport type %s. Supported types are: sftp\n" %\
 
2657
            (typestring)
 
2658
        raise errors.BzrCommandError(msg)
 
2659
 
 
2660
    hidden = True
 
2661
    takes_args = ['testspecs*']
 
2662
    takes_options = ['verbose',
 
2663
                     Option('one',
 
2664
                             help='Stop when one test fails.',
 
2665
                             short_name='1',
 
2666
                             ),
 
2667
                     Option('transport',
 
2668
                            help='Use a different transport by default '
 
2669
                                 'throughout the test suite.',
 
2670
                            type=get_transport_type),
 
2671
                     Option('benchmark',
 
2672
                            help='Run the benchmarks rather than selftests.'),
 
2673
                     Option('lsprof-timed',
 
2674
                            help='Generate lsprof output for benchmarked'
 
2675
                                 ' sections of code.'),
 
2676
                     Option('cache-dir', type=str,
 
2677
                            help='Cache intermediate benchmark output in this '
 
2678
                                 'directory.'),
 
2679
                     Option('first',
 
2680
                            help='Run all tests, but run specified tests first.',
 
2681
                            short_name='f',
 
2682
                            ),
 
2683
                     Option('list-only',
 
2684
                            help='List the tests instead of running them.'),
 
2685
                     Option('randomize', type=str, argname="SEED",
 
2686
                            help='Randomize the order of tests using the given'
 
2687
                                 ' seed or "now" for the current time.'),
 
2688
                     Option('exclude', type=str, argname="PATTERN",
 
2689
                            short_name='x',
 
2690
                            help='Exclude tests that match this regular'
 
2691
                                 ' expression.'),
 
2692
                     Option('strict', help='Fail on missing dependencies or '
 
2693
                            'known failures.'),
 
2694
                     Option('load-list', type=str, argname='TESTLISTFILE',
 
2695
                            help='Load a test id list from a text file.'),
 
2696
                     ListOption('debugflag', type=str, short_name='E',
 
2697
                                help='Turn on a selftest debug flag.'),
 
2698
                     ListOption('starting-with', type=str, argname='TESTID',
 
2699
                                param_name='starting_with', short_name='s',
 
2700
                                help=
 
2701
                                'Load only the tests starting with TESTID.'),
 
2702
                     ]
 
2703
    encoding_type = 'replace'
 
2704
 
 
2705
    def run(self, testspecs_list=None, verbose=False, one=False,
 
2706
            transport=None, benchmark=None,
 
2707
            lsprof_timed=None, cache_dir=None,
 
2708
            first=False, list_only=False,
 
2709
            randomize=None, exclude=None, strict=False,
 
2710
            load_list=None, debugflag=None, starting_with=None):
 
2711
        import bzrlib.ui
 
2712
        from bzrlib.tests import selftest
 
2713
        import bzrlib.benchmarks as benchmarks
 
2714
        from bzrlib.benchmarks import tree_creator
 
2715
 
 
2716
        # Make deprecation warnings visible, unless -Werror is set
 
2717
        symbol_versioning.activate_deprecation_warnings(override=False)
 
2718
 
 
2719
        if cache_dir is not None:
 
2720
            tree_creator.TreeCreator.CACHE_ROOT = osutils.abspath(cache_dir)
 
2721
        if not list_only:
 
2722
            print 'testing: %s' % (osutils.realpath(sys.argv[0]),)
 
2723
            print '   %s (%s python%s)' % (
 
2724
                    bzrlib.__path__[0],
 
2725
                    bzrlib.version_string,
 
2726
                    bzrlib._format_version_tuple(sys.version_info),
 
2727
                    )
 
2728
        print
 
2729
        if testspecs_list is not None:
 
2730
            pattern = '|'.join(testspecs_list)
 
2731
        else:
 
2732
            pattern = ".*"
 
2733
        if benchmark:
 
2734
            test_suite_factory = benchmarks.test_suite
 
2735
            # Unless user explicitly asks for quiet, be verbose in benchmarks
 
2736
            verbose = not is_quiet()
 
2737
            # TODO: should possibly lock the history file...
 
2738
            benchfile = open(".perf_history", "at", buffering=1)
 
2739
        else:
 
2740
            test_suite_factory = None
 
2741
            benchfile = None
 
2742
        try:
 
2743
            result = selftest(verbose=verbose,
 
2744
                              pattern=pattern,
 
2745
                              stop_on_failure=one,
 
2746
                              transport=transport,
 
2747
                              test_suite_factory=test_suite_factory,
 
2748
                              lsprof_timed=lsprof_timed,
 
2749
                              bench_history=benchfile,
 
2750
                              matching_tests_first=first,
 
2751
                              list_only=list_only,
 
2752
                              random_seed=randomize,
 
2753
                              exclude_pattern=exclude,
 
2754
                              strict=strict,
 
2755
                              load_list=load_list,
 
2756
                              debug_flags=debugflag,
 
2757
                              starting_with=starting_with,
 
2758
                              )
 
2759
        finally:
 
2760
            if benchfile is not None:
 
2761
                benchfile.close()
 
2762
        if result:
 
2763
            note('tests passed')
 
2764
        else:
 
2765
            note('tests failed')
 
2766
        return int(not result)
 
2767
 
 
2768
 
 
2769
class cmd_version(Command):
 
2770
    """Show version of bzr."""
 
2771
 
 
2772
    encoding_type = 'replace'
 
2773
    takes_options = [
 
2774
        Option("short", help="Print just the version number."),
 
2775
        ]
 
2776
 
 
2777
    @display_command
 
2778
    def run(self, short=False):
 
2779
        from bzrlib.version import show_version
 
2780
        if short:
 
2781
            self.outf.write(bzrlib.version_string + '\n')
 
2782
        else:
 
2783
            show_version(to_file=self.outf)
 
2784
 
 
2785
 
 
2786
class cmd_rocks(Command):
 
2787
    """Statement of optimism."""
 
2788
 
 
2789
    hidden = True
 
2790
 
 
2791
    @display_command
 
2792
    def run(self):
 
2793
        print "It sure does!"
 
2794
 
 
2795
 
 
2796
class cmd_find_merge_base(Command):
 
2797
    """Find and print a base revision for merging two branches."""
 
2798
    # TODO: Options to specify revisions on either side, as if
 
2799
    #       merging only part of the history.
 
2800
    takes_args = ['branch', 'other']
 
2801
    hidden = True
 
2802
    
 
2803
    @display_command
 
2804
    def run(self, branch, other):
 
2805
        from bzrlib.revision import ensure_null
 
2806
        
 
2807
        branch1 = Branch.open_containing(branch)[0]
 
2808
        branch2 = Branch.open_containing(other)[0]
 
2809
        branch1.lock_read()
 
2810
        try:
 
2811
            branch2.lock_read()
 
2812
            try:
 
2813
                last1 = ensure_null(branch1.last_revision())
 
2814
                last2 = ensure_null(branch2.last_revision())
 
2815
 
 
2816
                graph = branch1.repository.get_graph(branch2.repository)
 
2817
                base_rev_id = graph.find_unique_lca(last1, last2)
 
2818
 
 
2819
                print 'merge base is revision %s' % base_rev_id
 
2820
            finally:
 
2821
                branch2.unlock()
 
2822
        finally:
 
2823
            branch1.unlock()
 
2824
 
 
2825
 
 
2826
class cmd_merge(Command):
 
2827
    """Perform a three-way merge.
 
2828
    
 
2829
    The source of the merge can be specified either in the form of a branch,
 
2830
    or in the form of a path to a file containing a merge directive generated
 
2831
    with bzr send. If neither is specified, the default is the upstream branch
 
2832
    or the branch most recently merged using --remember.
 
2833
 
 
2834
    When merging a branch, by default the tip will be merged. To pick a different
 
2835
    revision, pass --revision. If you specify two values, the first will be used as
 
2836
    BASE and the second one as OTHER. Merging individual revisions, or a subset of
 
2837
    available revisions, like this is commonly referred to as "cherrypicking".
 
2838
 
 
2839
    Revision numbers are always relative to the branch being merged.
 
2840
 
 
2841
    By default, bzr will try to merge in all new work from the other
 
2842
    branch, automatically determining an appropriate base.  If this
 
2843
    fails, you may need to give an explicit base.
 
2844
    
 
2845
    Merge will do its best to combine the changes in two branches, but there
 
2846
    are some kinds of problems only a human can fix.  When it encounters those,
 
2847
    it will mark a conflict.  A conflict means that you need to fix something,
 
2848
    before you should commit.
 
2849
 
 
2850
    Use bzr resolve when you have fixed a problem.  See also bzr conflicts.
 
2851
 
 
2852
    If there is no default branch set, the first merge will set it. After
 
2853
    that, you can omit the branch to use the default.  To change the
 
2854
    default, use --remember. The value will only be saved if the remote
 
2855
    location can be accessed.
 
2856
 
 
2857
    The results of the merge are placed into the destination working
 
2858
    directory, where they can be reviewed (with bzr diff), tested, and then
 
2859
    committed to record the result of the merge.
 
2860
    
 
2861
    merge refuses to run if there are any uncommitted changes, unless
 
2862
    --force is given.
 
2863
 
 
2864
    :Examples:
 
2865
        To merge the latest revision from bzr.dev::
 
2866
 
 
2867
            bzr merge ../bzr.dev
 
2868
 
 
2869
        To merge changes up to and including revision 82 from bzr.dev::
 
2870
 
 
2871
            bzr merge -r 82 ../bzr.dev
 
2872
 
 
2873
        To merge the changes introduced by 82, without previous changes::
 
2874
 
 
2875
            bzr merge -r 81..82 ../bzr.dev
 
2876
 
 
2877
        To apply a merge directive contained in in /tmp/merge:
 
2878
 
 
2879
            bzr merge /tmp/merge
 
2880
    """
 
2881
 
 
2882
    encoding_type = 'exact'
 
2883
    _see_also = ['update', 'remerge', 'status-flags']
 
2884
    takes_args = ['location?']
 
2885
    takes_options = [
 
2886
        'change',
 
2887
        'revision',
 
2888
        Option('force',
 
2889
               help='Merge even if the destination tree has uncommitted changes.'),
 
2890
        'merge-type',
 
2891
        'reprocess',
 
2892
        'remember',
 
2893
        Option('show-base', help="Show base revision text in "
 
2894
               "conflicts."),
 
2895
        Option('uncommitted', help='Apply uncommitted changes'
 
2896
               ' from a working copy, instead of branch changes.'),
 
2897
        Option('pull', help='If the destination is already'
 
2898
                ' completely merged into the source, pull from the'
 
2899
                ' source rather than merging.  When this happens,'
 
2900
                ' you do not need to commit the result.'),
 
2901
        Option('directory',
 
2902
               help='Branch to merge into, '
 
2903
                    'rather than the one containing the working directory.',
 
2904
               short_name='d',
 
2905
               type=unicode,
 
2906
               ),
 
2907
        Option('preview', help='Instead of merging, show a diff of the merge.')
 
2908
    ]
 
2909
 
 
2910
    def run(self, location=None, revision=None, force=False,
 
2911
            merge_type=None, show_base=False, reprocess=False, remember=False,
 
2912
            uncommitted=False, pull=False,
 
2913
            directory=None,
 
2914
            preview=False,
 
2915
            ):
 
2916
        if merge_type is None:
 
2917
            merge_type = _mod_merge.Merge3Merger
 
2918
 
 
2919
        if directory is None: directory = u'.'
 
2920
        possible_transports = []
 
2921
        merger = None
 
2922
        allow_pending = True
 
2923
        verified = 'inapplicable'
 
2924
        tree = WorkingTree.open_containing(directory)[0]
 
2925
        change_reporter = delta._ChangeReporter(
 
2926
            unversioned_filter=tree.is_ignored)
 
2927
        cleanups = []
 
2928
        try:
 
2929
            pb = ui.ui_factory.nested_progress_bar()
 
2930
            cleanups.append(pb.finished)
 
2931
            tree.lock_write()
 
2932
            cleanups.append(tree.unlock)
 
2933
            if location is not None:
 
2934
                try:
 
2935
                    mergeable = bundle.read_mergeable_from_url(location,
 
2936
                        possible_transports=possible_transports)
 
2937
                except errors.NotABundle:
 
2938
                    mergeable = None
 
2939
                else:
 
2940
                    if uncommitted:
 
2941
                        raise errors.BzrCommandError('Cannot use --uncommitted'
 
2942
                            ' with bundles or merge directives.')
 
2943
 
 
2944
                    if revision is not None:
 
2945
                        raise errors.BzrCommandError(
 
2946
                            'Cannot use -r with merge directives or bundles')
 
2947
                    merger, verified = _mod_merge.Merger.from_mergeable(tree,
 
2948
                       mergeable, pb)
 
2949
 
 
2950
            if merger is None and uncommitted:
 
2951
                if revision is not None and len(revision) > 0:
 
2952
                    raise errors.BzrCommandError('Cannot use --uncommitted and'
 
2953
                        ' --revision at the same time.')
 
2954
                location = self._select_branch_location(tree, location)[0]
 
2955
                other_tree, other_path = WorkingTree.open_containing(location)
 
2956
                merger = _mod_merge.Merger.from_uncommitted(tree, other_tree,
 
2957
                    pb)
 
2958
                allow_pending = False
 
2959
                if other_path != '':
 
2960
                    merger.interesting_files = [other_path]
 
2961
 
 
2962
            if merger is None:
 
2963
                merger, allow_pending = self._get_merger_from_branch(tree,
 
2964
                    location, revision, remember, possible_transports, pb)
 
2965
 
 
2966
            merger.merge_type = merge_type
 
2967
            merger.reprocess = reprocess
 
2968
            merger.show_base = show_base
 
2969
            self.sanity_check_merger(merger)
 
2970
            if (merger.base_rev_id == merger.other_rev_id and
 
2971
                merger.other_rev_id is not None):
 
2972
                note('Nothing to do.')
 
2973
                return 0
 
2974
            if pull:
 
2975
                if merger.interesting_files is not None:
 
2976
                    raise errors.BzrCommandError('Cannot pull individual files')
 
2977
                if (merger.base_rev_id == tree.last_revision()):
 
2978
                    result = tree.pull(merger.other_branch, False,
 
2979
                                       merger.other_rev_id)
 
2980
                    result.report(self.outf)
 
2981
                    return 0
 
2982
            merger.check_basis(not force)
 
2983
            if preview:
 
2984
                return self._do_preview(merger)
 
2985
            else:
 
2986
                return self._do_merge(merger, change_reporter, allow_pending,
 
2987
                                      verified)
 
2988
        finally:
 
2989
            for cleanup in reversed(cleanups):
 
2990
                cleanup()
 
2991
 
 
2992
    def _do_preview(self, merger):
 
2993
        from bzrlib.diff import show_diff_trees
 
2994
        tree_merger = merger.make_merger()
 
2995
        tt = tree_merger.make_preview_transform()
 
2996
        try:
 
2997
            result_tree = tt.get_preview_tree()
 
2998
            show_diff_trees(merger.this_tree, result_tree, self.outf,
 
2999
                            old_label='', new_label='')
 
3000
        finally:
 
3001
            tt.finalize()
 
3002
 
 
3003
    def _do_merge(self, merger, change_reporter, allow_pending, verified):
 
3004
        merger.change_reporter = change_reporter
 
3005
        conflict_count = merger.do_merge()
 
3006
        if allow_pending:
 
3007
            merger.set_pending()
 
3008
        if verified == 'failed':
 
3009
            warning('Preview patch does not match changes')
 
3010
        if conflict_count != 0:
 
3011
            return 1
 
3012
        else:
 
3013
            return 0
 
3014
 
 
3015
    def sanity_check_merger(self, merger):
 
3016
        if (merger.show_base and
 
3017
            not merger.merge_type is _mod_merge.Merge3Merger):
 
3018
            raise errors.BzrCommandError("Show-base is not supported for this"
 
3019
                                         " merge type. %s" % merger.merge_type)
 
3020
        if merger.reprocess and not merger.merge_type.supports_reprocess:
 
3021
            raise errors.BzrCommandError("Conflict reduction is not supported"
 
3022
                                         " for merge type %s." %
 
3023
                                         merger.merge_type)
 
3024
        if merger.reprocess and merger.show_base:
 
3025
            raise errors.BzrCommandError("Cannot do conflict reduction and"
 
3026
                                         " show base.")
 
3027
 
 
3028
    def _get_merger_from_branch(self, tree, location, revision, remember,
 
3029
                                possible_transports, pb):
 
3030
        """Produce a merger from a location, assuming it refers to a branch."""
 
3031
        from bzrlib.tag import _merge_tags_if_possible
 
3032
        # find the branch locations
 
3033
        other_loc, user_location = self._select_branch_location(tree, location,
 
3034
            revision, -1)
 
3035
        if revision is not None and len(revision) == 2:
 
3036
            base_loc, _unused = self._select_branch_location(tree,
 
3037
                location, revision, 0)
 
3038
        else:
 
3039
            base_loc = other_loc
 
3040
        # Open the branches
 
3041
        other_branch, other_path = Branch.open_containing(other_loc,
 
3042
            possible_transports)
 
3043
        if base_loc == other_loc:
 
3044
            base_branch = other_branch
 
3045
        else:
 
3046
            base_branch, base_path = Branch.open_containing(base_loc,
 
3047
                possible_transports)
 
3048
        # Find the revision ids
 
3049
        if revision is None or len(revision) < 1 or revision[-1] is None:
 
3050
            other_revision_id = _mod_revision.ensure_null(
 
3051
                other_branch.last_revision())
 
3052
        else:
 
3053
            other_revision_id = revision[-1].as_revision_id(other_branch)
 
3054
        if (revision is not None and len(revision) == 2
 
3055
            and revision[0] is not None):
 
3056
            base_revision_id = revision[0].as_revision_id(base_branch)
 
3057
        else:
 
3058
            base_revision_id = None
 
3059
        # Remember where we merge from
 
3060
        if ((remember or tree.branch.get_submit_branch() is None) and
 
3061
             user_location is not None):
 
3062
            tree.branch.set_submit_branch(other_branch.base)
 
3063
        _merge_tags_if_possible(other_branch, tree.branch)
 
3064
        merger = _mod_merge.Merger.from_revision_ids(pb, tree,
 
3065
            other_revision_id, base_revision_id, other_branch, base_branch)
 
3066
        if other_path != '':
 
3067
            allow_pending = False
 
3068
            merger.interesting_files = [other_path]
 
3069
        else:
 
3070
            allow_pending = True
 
3071
        return merger, allow_pending
 
3072
 
 
3073
    def _select_branch_location(self, tree, user_location, revision=None,
 
3074
                                index=None):
 
3075
        """Select a branch location, according to possible inputs.
 
3076
 
 
3077
        If provided, branches from ``revision`` are preferred.  (Both
 
3078
        ``revision`` and ``index`` must be supplied.)
 
3079
 
 
3080
        Otherwise, the ``location`` parameter is used.  If it is None, then the
 
3081
        ``submit`` or ``parent`` location is used, and a note is printed.
 
3082
 
 
3083
        :param tree: The working tree to select a branch for merging into
 
3084
        :param location: The location entered by the user
 
3085
        :param revision: The revision parameter to the command
 
3086
        :param index: The index to use for the revision parameter.  Negative
 
3087
            indices are permitted.
 
3088
        :return: (selected_location, user_location).  The default location
 
3089
            will be the user-entered location.
 
3090
        """
 
3091
        if (revision is not None and index is not None
 
3092
            and revision[index] is not None):
 
3093
            branch = revision[index].get_branch()
 
3094
            if branch is not None:
 
3095
                return branch, branch
 
3096
        if user_location is None:
 
3097
            location = self._get_remembered(tree, 'Merging from')
 
3098
        else:
 
3099
            location = user_location
 
3100
        return location, user_location
 
3101
 
 
3102
    def _get_remembered(self, tree, verb_string):
 
3103
        """Use tree.branch's parent if none was supplied.
 
3104
 
 
3105
        Report if the remembered location was used.
 
3106
        """
 
3107
        stored_location = tree.branch.get_submit_branch()
 
3108
        stored_location_type = "submit"
 
3109
        if stored_location is None:
 
3110
            stored_location = tree.branch.get_parent()
 
3111
            stored_location_type = "parent"
 
3112
        mutter("%s", stored_location)
 
3113
        if stored_location is None:
 
3114
            raise errors.BzrCommandError("No location specified or remembered")
 
3115
        display_url = urlutils.unescape_for_display(stored_location, 'utf-8')
 
3116
        note(u"%s remembered %s location %s", verb_string,
 
3117
                stored_location_type, display_url)
 
3118
        return stored_location
 
3119
 
 
3120
 
 
3121
class cmd_remerge(Command):
 
3122
    """Redo a merge.
 
3123
 
 
3124
    Use this if you want to try a different merge technique while resolving
 
3125
    conflicts.  Some merge techniques are better than others, and remerge 
 
3126
    lets you try different ones on different files.
 
3127
 
 
3128
    The options for remerge have the same meaning and defaults as the ones for
 
3129
    merge.  The difference is that remerge can (only) be run when there is a
 
3130
    pending merge, and it lets you specify particular files.
 
3131
 
 
3132
    :Examples:
 
3133
        Re-do the merge of all conflicted files, and show the base text in
 
3134
        conflict regions, in addition to the usual THIS and OTHER texts::
 
3135
      
 
3136
            bzr remerge --show-base
 
3137
 
 
3138
        Re-do the merge of "foobar", using the weave merge algorithm, with
 
3139
        additional processing to reduce the size of conflict regions::
 
3140
      
 
3141
            bzr remerge --merge-type weave --reprocess foobar
 
3142
    """
 
3143
    takes_args = ['file*']
 
3144
    takes_options = [
 
3145
            'merge-type',
 
3146
            'reprocess',
 
3147
            Option('show-base',
 
3148
                   help="Show base revision text in conflicts."),
 
3149
            ]
 
3150
 
 
3151
    def run(self, file_list=None, merge_type=None, show_base=False,
 
3152
            reprocess=False):
 
3153
        if merge_type is None:
 
3154
            merge_type = _mod_merge.Merge3Merger
 
3155
        tree, file_list = tree_files(file_list)
 
3156
        tree.lock_write()
 
3157
        try:
 
3158
            parents = tree.get_parent_ids()
 
3159
            if len(parents) != 2:
 
3160
                raise errors.BzrCommandError("Sorry, remerge only works after normal"
 
3161
                                             " merges.  Not cherrypicking or"
 
3162
                                             " multi-merges.")
 
3163
            repository = tree.branch.repository
 
3164
            interesting_ids = None
 
3165
            new_conflicts = []
 
3166
            conflicts = tree.conflicts()
 
3167
            if file_list is not None:
 
3168
                interesting_ids = set()
 
3169
                for filename in file_list:
 
3170
                    file_id = tree.path2id(filename)
 
3171
                    if file_id is None:
 
3172
                        raise errors.NotVersionedError(filename)
 
3173
                    interesting_ids.add(file_id)
 
3174
                    if tree.kind(file_id) != "directory":
 
3175
                        continue
 
3176
                    
 
3177
                    for name, ie in tree.inventory.iter_entries(file_id):
 
3178
                        interesting_ids.add(ie.file_id)
 
3179
                new_conflicts = conflicts.select_conflicts(tree, file_list)[0]
 
3180
            else:
 
3181
                # Remerge only supports resolving contents conflicts
 
3182
                allowed_conflicts = ('text conflict', 'contents conflict')
 
3183
                restore_files = [c.path for c in conflicts
 
3184
                                 if c.typestring in allowed_conflicts]
 
3185
            _mod_merge.transform_tree(tree, tree.basis_tree(), interesting_ids)
 
3186
            tree.set_conflicts(ConflictList(new_conflicts))
 
3187
            if file_list is not None:
 
3188
                restore_files = file_list
 
3189
            for filename in restore_files:
 
3190
                try:
 
3191
                    restore(tree.abspath(filename))
 
3192
                except errors.NotConflicted:
 
3193
                    pass
 
3194
            # Disable pending merges, because the file texts we are remerging
 
3195
            # have not had those merges performed.  If we use the wrong parents
 
3196
            # list, we imply that the working tree text has seen and rejected
 
3197
            # all the changes from the other tree, when in fact those changes
 
3198
            # have not yet been seen.
 
3199
            pb = ui.ui_factory.nested_progress_bar()
 
3200
            tree.set_parent_ids(parents[:1])
 
3201
            try:
 
3202
                merger = _mod_merge.Merger.from_revision_ids(pb,
 
3203
                                                             tree, parents[1])
 
3204
                merger.interesting_ids = interesting_ids
 
3205
                merger.merge_type = merge_type
 
3206
                merger.show_base = show_base
 
3207
                merger.reprocess = reprocess
 
3208
                conflicts = merger.do_merge()
 
3209
            finally:
 
3210
                tree.set_parent_ids(parents)
 
3211
                pb.finished()
 
3212
        finally:
 
3213
            tree.unlock()
 
3214
        if conflicts > 0:
 
3215
            return 1
 
3216
        else:
 
3217
            return 0
 
3218
 
 
3219
 
 
3220
class cmd_revert(Command):
 
3221
    """Revert files to a previous revision.
 
3222
 
 
3223
    Giving a list of files will revert only those files.  Otherwise, all files
 
3224
    will be reverted.  If the revision is not specified with '--revision', the
 
3225
    last committed revision is used.
 
3226
 
 
3227
    To remove only some changes, without reverting to a prior version, use
 
3228
    merge instead.  For example, "merge . --revision -2..-3" will remove the
 
3229
    changes introduced by -2, without affecting the changes introduced by -1.
 
3230
    Or to remove certain changes on a hunk-by-hunk basis, see the Shelf plugin.
 
3231
    
 
3232
    By default, any files that have been manually changed will be backed up
 
3233
    first.  (Files changed only by merge are not backed up.)  Backup files have
 
3234
    '.~#~' appended to their name, where # is a number.
 
3235
 
 
3236
    When you provide files, you can use their current pathname or the pathname
 
3237
    from the target revision.  So you can use revert to "undelete" a file by
 
3238
    name.  If you name a directory, all the contents of that directory will be
 
3239
    reverted.
 
3240
 
 
3241
    Any files that have been newly added since that revision will be deleted,
 
3242
    with a backup kept if appropriate.  Directories containing unknown files
 
3243
    will not be deleted.
 
3244
 
 
3245
    The working tree contains a list of pending merged revisions, which will
 
3246
    be included as parents in the next commit.  Normally, revert clears that
 
3247
    list as well as reverting the files.  If any files are specified, revert
 
3248
    leaves the pending merge list alone and reverts only the files.  Use "bzr
 
3249
    revert ." in the tree root to revert all files but keep the merge record,
 
3250
    and "bzr revert --forget-merges" to clear the pending merge list without
 
3251
    reverting any files.
 
3252
    """
 
3253
 
 
3254
    _see_also = ['cat', 'export']
 
3255
    takes_options = [
 
3256
        'revision',
 
3257
        Option('no-backup', "Do not save backups of reverted files."),
 
3258
        Option('forget-merges',
 
3259
               'Remove pending merge marker, without changing any files.'),
 
3260
        ]
 
3261
    takes_args = ['file*']
 
3262
 
 
3263
    def run(self, revision=None, no_backup=False, file_list=None,
 
3264
            forget_merges=None):
 
3265
        tree, file_list = tree_files(file_list)
 
3266
        tree.lock_write()
 
3267
        try:
 
3268
            if forget_merges:
 
3269
                tree.set_parent_ids(tree.get_parent_ids()[:1])
 
3270
            else:
 
3271
                self._revert_tree_to_revision(tree, revision, file_list, no_backup)
 
3272
        finally:
 
3273
            tree.unlock()
 
3274
 
 
3275
    @staticmethod
 
3276
    def _revert_tree_to_revision(tree, revision, file_list, no_backup):
 
3277
        rev_tree = _get_one_revision_tree('revert', revision, tree=tree)
 
3278
        pb = ui.ui_factory.nested_progress_bar()
 
3279
        try:
 
3280
            tree.revert(file_list, rev_tree, not no_backup, pb,
 
3281
                report_changes=True)
 
3282
        finally:
 
3283
            pb.finished()
 
3284
 
 
3285
 
 
3286
class cmd_assert_fail(Command):
 
3287
    """Test reporting of assertion failures"""
 
3288
    # intended just for use in testing
 
3289
 
 
3290
    hidden = True
 
3291
 
 
3292
    def run(self):
 
3293
        raise AssertionError("always fails")
 
3294
 
 
3295
 
 
3296
class cmd_help(Command):
 
3297
    """Show help on a command or other topic.
 
3298
    """
 
3299
 
 
3300
    _see_also = ['topics']
 
3301
    takes_options = [
 
3302
            Option('long', 'Show help on all commands.'),
 
3303
            ]
 
3304
    takes_args = ['topic?']
 
3305
    aliases = ['?', '--help', '-?', '-h']
 
3306
    
 
3307
    @display_command
 
3308
    def run(self, topic=None, long=False):
 
3309
        import bzrlib.help
 
3310
        if topic is None and long:
 
3311
            topic = "commands"
 
3312
        bzrlib.help.help(topic)
 
3313
 
 
3314
 
 
3315
class cmd_shell_complete(Command):
 
3316
    """Show appropriate completions for context.
 
3317
 
 
3318
    For a list of all available commands, say 'bzr shell-complete'.
 
3319
    """
 
3320
    takes_args = ['context?']
 
3321
    aliases = ['s-c']
 
3322
    hidden = True
 
3323
    
 
3324
    @display_command
 
3325
    def run(self, context=None):
 
3326
        import shellcomplete
 
3327
        shellcomplete.shellcomplete(context)
 
3328
 
 
3329
 
 
3330
class cmd_missing(Command):
 
3331
    """Show unmerged/unpulled revisions between two branches.
 
3332
    
 
3333
    OTHER_BRANCH may be local or remote.
 
3334
    """
 
3335
 
 
3336
    _see_also = ['merge', 'pull']
 
3337
    takes_args = ['other_branch?']
 
3338
    takes_options = [
 
3339
            Option('reverse', 'Reverse the order of revisions.'),
 
3340
            Option('mine-only',
 
3341
                   'Display changes in the local branch only.'),
 
3342
            Option('this' , 'Same as --mine-only.'),
 
3343
            Option('theirs-only',
 
3344
                   'Display changes in the remote branch only.'),
 
3345
            Option('other', 'Same as --theirs-only.'),
 
3346
            'log-format',
 
3347
            'show-ids',
 
3348
            'verbose',
 
3349
            Option('include-merges', 'Show merged revisions.'),
 
3350
            ]
 
3351
    encoding_type = 'replace'
 
3352
 
 
3353
    @display_command
 
3354
    def run(self, other_branch=None, reverse=False, mine_only=False,
 
3355
            theirs_only=False,
 
3356
            log_format=None, long=False, short=False, line=False,
 
3357
            show_ids=False, verbose=False, this=False, other=False,
 
3358
            include_merges=False):
 
3359
        from bzrlib.missing import find_unmerged, iter_log_revisions
 
3360
 
 
3361
        if this:
 
3362
            mine_only = this
 
3363
        if other:
 
3364
            theirs_only = other
 
3365
        # TODO: We should probably check that we don't have mine-only and
 
3366
        #       theirs-only set, but it gets complicated because we also have
 
3367
        #       this and other which could be used.
 
3368
        restrict = 'all'
 
3369
        if mine_only:
 
3370
            restrict = 'local'
 
3371
        elif theirs_only:
 
3372
            restrict = 'remote'
 
3373
 
 
3374
        local_branch = Branch.open_containing(u".")[0]
 
3375
        parent = local_branch.get_parent()
 
3376
        if other_branch is None:
 
3377
            other_branch = parent
 
3378
            if other_branch is None:
 
3379
                raise errors.BzrCommandError("No peer location known"
 
3380
                                             " or specified.")
 
3381
            display_url = urlutils.unescape_for_display(parent,
 
3382
                                                        self.outf.encoding)
 
3383
            self.outf.write("Using saved parent location: "
 
3384
                    + display_url + "\n")
 
3385
 
 
3386
        remote_branch = Branch.open(other_branch)
 
3387
        if remote_branch.base == local_branch.base:
 
3388
            remote_branch = local_branch
 
3389
        local_branch.lock_read()
 
3390
        try:
 
3391
            remote_branch.lock_read()
 
3392
            try:
 
3393
                local_extra, remote_extra = find_unmerged(
 
3394
                    local_branch, remote_branch, restrict,
 
3395
                    backward=not reverse,
 
3396
                    include_merges=include_merges)
 
3397
 
 
3398
                if log_format is None:
 
3399
                    registry = log.log_formatter_registry
 
3400
                    log_format = registry.get_default(local_branch)
 
3401
                lf = log_format(to_file=self.outf,
 
3402
                                show_ids=show_ids,
 
3403
                                show_timezone='original')
 
3404
 
 
3405
                status_code = 0
 
3406
                if local_extra and not theirs_only:
 
3407
                    self.outf.write("You have %d extra revision(s):\n" %
 
3408
                                    len(local_extra))
 
3409
                    for revision in iter_log_revisions(local_extra,
 
3410
                                        local_branch.repository,
 
3411
                                        verbose):
 
3412
                        lf.log_revision(revision)
 
3413
                    printed_local = True
 
3414
                    status_code = 1
 
3415
                else:
 
3416
                    printed_local = False
 
3417
 
 
3418
                if remote_extra and not mine_only:
 
3419
                    if printed_local is True:
 
3420
                        self.outf.write("\n\n\n")
 
3421
                    self.outf.write("You are missing %d revision(s):\n" %
 
3422
                                    len(remote_extra))
 
3423
                    for revision in iter_log_revisions(remote_extra,
 
3424
                                        remote_branch.repository,
 
3425
                                        verbose):
 
3426
                        lf.log_revision(revision)
 
3427
                    status_code = 1
 
3428
 
 
3429
                if mine_only and not local_extra:
 
3430
                    # We checked local, and found nothing extra
 
3431
                    self.outf.write('This branch is up to date.\n')
 
3432
                elif theirs_only and not remote_extra:
 
3433
                    # We checked remote, and found nothing extra
 
3434
                    self.outf.write('Other branch is up to date.\n')
 
3435
                elif not (mine_only or theirs_only or local_extra or
 
3436
                          remote_extra):
 
3437
                    # We checked both branches, and neither one had extra
 
3438
                    # revisions
 
3439
                    self.outf.write("Branches are up to date.\n")
 
3440
            finally:
 
3441
                remote_branch.unlock()
 
3442
        finally:
 
3443
            local_branch.unlock()
 
3444
        if not status_code and parent is None and other_branch is not None:
 
3445
            local_branch.lock_write()
 
3446
            try:
 
3447
                # handle race conditions - a parent might be set while we run.
 
3448
                if local_branch.get_parent() is None:
 
3449
                    local_branch.set_parent(remote_branch.base)
 
3450
            finally:
 
3451
                local_branch.unlock()
 
3452
        return status_code
 
3453
 
 
3454
 
 
3455
class cmd_pack(Command):
 
3456
    """Compress the data within a repository."""
 
3457
 
 
3458
    _see_also = ['repositories']
 
3459
    takes_args = ['branch_or_repo?']
 
3460
 
 
3461
    def run(self, branch_or_repo='.'):
 
3462
        dir = bzrdir.BzrDir.open_containing(branch_or_repo)[0]
 
3463
        try:
 
3464
            branch = dir.open_branch()
 
3465
            repository = branch.repository
 
3466
        except errors.NotBranchError:
 
3467
            repository = dir.open_repository()
 
3468
        repository.pack()
 
3469
 
 
3470
 
 
3471
class cmd_plugins(Command):
 
3472
    """List the installed plugins.
 
3473
    
 
3474
    This command displays the list of installed plugins including
 
3475
    version of plugin and a short description of each.
 
3476
 
 
3477
    --verbose shows the path where each plugin is located.
 
3478
 
 
3479
    A plugin is an external component for Bazaar that extends the
 
3480
    revision control system, by adding or replacing code in Bazaar.
 
3481
    Plugins can do a variety of things, including overriding commands,
 
3482
    adding new commands, providing additional network transports and
 
3483
    customizing log output.
 
3484
 
 
3485
    See the Bazaar web site, http://bazaar-vcs.org, for further
 
3486
    information on plugins including where to find them and how to
 
3487
    install them. Instructions are also provided there on how to
 
3488
    write new plugins using the Python programming language.
 
3489
    """
 
3490
    takes_options = ['verbose']
 
3491
 
 
3492
    @display_command
 
3493
    def run(self, verbose=False):
 
3494
        import bzrlib.plugin
 
3495
        from inspect import getdoc
 
3496
        result = []
 
3497
        for name, plugin in bzrlib.plugin.plugins().items():
 
3498
            version = plugin.__version__
 
3499
            if version == 'unknown':
 
3500
                version = ''
 
3501
            name_ver = '%s %s' % (name, version)
 
3502
            d = getdoc(plugin.module)
 
3503
            if d:
 
3504
                doc = d.split('\n')[0]
 
3505
            else:
 
3506
                doc = '(no description)'
 
3507
            result.append((name_ver, doc, plugin.path()))
 
3508
        for name_ver, doc, path in sorted(result):
 
3509
            print name_ver
 
3510
            print '   ', doc
 
3511
            if verbose:
 
3512
                print '   ', path
 
3513
            print
 
3514
 
 
3515
 
 
3516
class cmd_testament(Command):
 
3517
    """Show testament (signing-form) of a revision."""
 
3518
    takes_options = [
 
3519
            'revision',
 
3520
            Option('long', help='Produce long-format testament.'),
 
3521
            Option('strict',
 
3522
                   help='Produce a strict-format testament.')]
 
3523
    takes_args = ['branch?']
 
3524
    @display_command
 
3525
    def run(self, branch=u'.', revision=None, long=False, strict=False):
 
3526
        from bzrlib.testament import Testament, StrictTestament
 
3527
        if strict is True:
 
3528
            testament_class = StrictTestament
 
3529
        else:
 
3530
            testament_class = Testament
 
3531
        if branch == '.':
 
3532
            b = Branch.open_containing(branch)[0]
 
3533
        else:
 
3534
            b = Branch.open(branch)
 
3535
        b.lock_read()
 
3536
        try:
 
3537
            if revision is None:
 
3538
                rev_id = b.last_revision()
 
3539
            else:
 
3540
                rev_id = revision[0].as_revision_id(b)
 
3541
            t = testament_class.from_revision(b.repository, rev_id)
 
3542
            if long:
 
3543
                sys.stdout.writelines(t.as_text_lines())
 
3544
            else:
 
3545
                sys.stdout.write(t.as_short_text())
 
3546
        finally:
 
3547
            b.unlock()
 
3548
 
 
3549
 
 
3550
class cmd_annotate(Command):
 
3551
    """Show the origin of each line in a file.
 
3552
 
 
3553
    This prints out the given file with an annotation on the left side
 
3554
    indicating which revision, author and date introduced the change.
 
3555
 
 
3556
    If the origin is the same for a run of consecutive lines, it is 
 
3557
    shown only at the top, unless the --all option is given.
 
3558
    """
 
3559
    # TODO: annotate directories; showing when each file was last changed
 
3560
    # TODO: if the working copy is modified, show annotations on that 
 
3561
    #       with new uncommitted lines marked
 
3562
    aliases = ['ann', 'blame', 'praise']
 
3563
    takes_args = ['filename']
 
3564
    takes_options = [Option('all', help='Show annotations on all lines.'),
 
3565
                     Option('long', help='Show commit date in annotations.'),
 
3566
                     'revision',
 
3567
                     'show-ids',
 
3568
                     ]
 
3569
    encoding_type = 'exact'
 
3570
 
 
3571
    @display_command
 
3572
    def run(self, filename, all=False, long=False, revision=None,
 
3573
            show_ids=False):
 
3574
        from bzrlib.annotate import annotate_file, annotate_file_tree
 
3575
        wt, branch, relpath = \
 
3576
            bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
3577
        if wt is not None:
 
3578
            wt.lock_read()
 
3579
        else:
 
3580
            branch.lock_read()
 
3581
        try:
 
3582
            tree = _get_one_revision_tree('annotate', revision, branch=branch)
 
3583
            if wt is not None:
 
3584
                file_id = wt.path2id(relpath)
 
3585
            else:
 
3586
                file_id = tree.path2id(relpath)
 
3587
            if file_id is None:
 
3588
                raise errors.NotVersionedError(filename)
 
3589
            file_version = tree.inventory[file_id].revision
 
3590
            if wt is not None and revision is None:
 
3591
                # If there is a tree and we're not annotating historical
 
3592
                # versions, annotate the working tree's content.
 
3593
                annotate_file_tree(wt, file_id, self.outf, long, all,
 
3594
                    show_ids=show_ids)
 
3595
            else:
 
3596
                annotate_file(branch, file_version, file_id, long, all, self.outf,
 
3597
                              show_ids=show_ids)
 
3598
        finally:
 
3599
            if wt is not None:
 
3600
                wt.unlock()
 
3601
            else:
 
3602
                branch.unlock()
 
3603
 
 
3604
 
 
3605
class cmd_re_sign(Command):
 
3606
    """Create a digital signature for an existing revision."""
 
3607
    # TODO be able to replace existing ones.
 
3608
 
 
3609
    hidden = True # is this right ?
 
3610
    takes_args = ['revision_id*']
 
3611
    takes_options = ['revision']
 
3612
    
 
3613
    def run(self, revision_id_list=None, revision=None):
 
3614
        if revision_id_list is not None and revision is not None:
 
3615
            raise errors.BzrCommandError('You can only supply one of revision_id or --revision')
 
3616
        if revision_id_list is None and revision is None:
 
3617
            raise errors.BzrCommandError('You must supply either --revision or a revision_id')
 
3618
        b = WorkingTree.open_containing(u'.')[0].branch
 
3619
        b.lock_write()
 
3620
        try:
 
3621
            return self._run(b, revision_id_list, revision)
 
3622
        finally:
 
3623
            b.unlock()
 
3624
 
 
3625
    def _run(self, b, revision_id_list, revision):
 
3626
        import bzrlib.gpg as gpg
 
3627
        gpg_strategy = gpg.GPGStrategy(b.get_config())
 
3628
        if revision_id_list is not None:
 
3629
            b.repository.start_write_group()
 
3630
            try:
 
3631
                for revision_id in revision_id_list:
 
3632
                    b.repository.sign_revision(revision_id, gpg_strategy)
 
3633
            except:
 
3634
                b.repository.abort_write_group()
 
3635
                raise
 
3636
            else:
 
3637
                b.repository.commit_write_group()
 
3638
        elif revision is not None:
 
3639
            if len(revision) == 1:
 
3640
                revno, rev_id = revision[0].in_history(b)
 
3641
                b.repository.start_write_group()
 
3642
                try:
 
3643
                    b.repository.sign_revision(rev_id, gpg_strategy)
 
3644
                except:
 
3645
                    b.repository.abort_write_group()
 
3646
                    raise
 
3647
                else:
 
3648
                    b.repository.commit_write_group()
 
3649
            elif len(revision) == 2:
 
3650
                # are they both on rh- if so we can walk between them
 
3651
                # might be nice to have a range helper for arbitrary
 
3652
                # revision paths. hmm.
 
3653
                from_revno, from_revid = revision[0].in_history(b)
 
3654
                to_revno, to_revid = revision[1].in_history(b)
 
3655
                if to_revid is None:
 
3656
                    to_revno = b.revno()
 
3657
                if from_revno is None or to_revno is None:
 
3658
                    raise errors.BzrCommandError('Cannot sign a range of non-revision-history revisions')
 
3659
                b.repository.start_write_group()
 
3660
                try:
 
3661
                    for revno in range(from_revno, to_revno + 1):
 
3662
                        b.repository.sign_revision(b.get_rev_id(revno),
 
3663
                                                   gpg_strategy)
 
3664
                except:
 
3665
                    b.repository.abort_write_group()
 
3666
                    raise
 
3667
                else:
 
3668
                    b.repository.commit_write_group()
 
3669
            else:
 
3670
                raise errors.BzrCommandError('Please supply either one revision, or a range.')
 
3671
 
 
3672
 
 
3673
class cmd_bind(Command):
 
3674
    """Convert the current branch into a checkout of the supplied branch.
 
3675
 
 
3676
    Once converted into a checkout, commits must succeed on the master branch
 
3677
    before they will be applied to the local branch.
 
3678
    """
 
3679
 
 
3680
    _see_also = ['checkouts', 'unbind']
 
3681
    takes_args = ['location?']
 
3682
    takes_options = []
 
3683
 
 
3684
    def run(self, location=None):
 
3685
        b, relpath = Branch.open_containing(u'.')
 
3686
        if location is None:
 
3687
            try:
 
3688
                location = b.get_old_bound_location()
 
3689
            except errors.UpgradeRequired:
 
3690
                raise errors.BzrCommandError('No location supplied.  '
 
3691
                    'This format does not remember old locations.')
 
3692
            else:
 
3693
                if location is None:
 
3694
                    raise errors.BzrCommandError('No location supplied and no '
 
3695
                        'previous location known')
 
3696
        b_other = Branch.open(location)
 
3697
        try:
 
3698
            b.bind(b_other)
 
3699
        except errors.DivergedBranches:
 
3700
            raise errors.BzrCommandError('These branches have diverged.'
 
3701
                                         ' Try merging, and then bind again.')
 
3702
 
 
3703
 
 
3704
class cmd_unbind(Command):
 
3705
    """Convert the current checkout into a regular branch.
 
3706
 
 
3707
    After unbinding, the local branch is considered independent and subsequent
 
3708
    commits will be local only.
 
3709
    """
 
3710
 
 
3711
    _see_also = ['checkouts', 'bind']
 
3712
    takes_args = []
 
3713
    takes_options = []
 
3714
 
 
3715
    def run(self):
 
3716
        b, relpath = Branch.open_containing(u'.')
 
3717
        if not b.unbind():
 
3718
            raise errors.BzrCommandError('Local branch is not bound')
 
3719
 
 
3720
 
 
3721
class cmd_uncommit(Command):
 
3722
    """Remove the last committed revision.
 
3723
 
 
3724
    --verbose will print out what is being removed.
 
3725
    --dry-run will go through all the motions, but not actually
 
3726
    remove anything.
 
3727
 
 
3728
    If --revision is specified, uncommit revisions to leave the branch at the
 
3729
    specified revision.  For example, "bzr uncommit -r 15" will leave the
 
3730
    branch at revision 15.
 
3731
 
 
3732
    Uncommit leaves the working tree ready for a new commit.  The only change
 
3733
    it may make is to restore any pending merges that were present before
 
3734
    the commit.
 
3735
    """
 
3736
 
 
3737
    # TODO: jam 20060108 Add an option to allow uncommit to remove
 
3738
    # unreferenced information in 'branch-as-repository' branches.
 
3739
    # TODO: jam 20060108 Add the ability for uncommit to remove unreferenced
 
3740
    # information in shared branches as well.
 
3741
    _see_also = ['commit']
 
3742
    takes_options = ['verbose', 'revision',
 
3743
                    Option('dry-run', help='Don\'t actually make changes.'),
 
3744
                    Option('force', help='Say yes to all questions.'),
 
3745
                    Option('local',
 
3746
                           help="Only remove the commits from the local branch"
 
3747
                                " when in a checkout."
 
3748
                           ),
 
3749
                    ]
 
3750
    takes_args = ['location?']
 
3751
    aliases = []
 
3752
    encoding_type = 'replace'
 
3753
 
 
3754
    def run(self, location=None,
 
3755
            dry_run=False, verbose=False,
 
3756
            revision=None, force=False, local=False):
 
3757
        if location is None:
 
3758
            location = u'.'
 
3759
        control, relpath = bzrdir.BzrDir.open_containing(location)
 
3760
        try:
 
3761
            tree = control.open_workingtree()
 
3762
            b = tree.branch
 
3763
        except (errors.NoWorkingTree, errors.NotLocalUrl):
 
3764
            tree = None
 
3765
            b = control.open_branch()
 
3766
 
 
3767
        if tree is not None:
 
3768
            tree.lock_write()
 
3769
        else:
 
3770
            b.lock_write()
 
3771
        try:
 
3772
            return self._run(b, tree, dry_run, verbose, revision, force,
 
3773
                             local=local)
 
3774
        finally:
 
3775
            if tree is not None:
 
3776
                tree.unlock()
 
3777
            else:
 
3778
                b.unlock()
 
3779
 
 
3780
    def _run(self, b, tree, dry_run, verbose, revision, force, local=False):
 
3781
        from bzrlib.log import log_formatter, show_log
 
3782
        from bzrlib.uncommit import uncommit
 
3783
 
 
3784
        last_revno, last_rev_id = b.last_revision_info()
 
3785
 
 
3786
        rev_id = None
 
3787
        if revision is None:
 
3788
            revno = last_revno
 
3789
            rev_id = last_rev_id
 
3790
        else:
 
3791
            # 'bzr uncommit -r 10' actually means uncommit
 
3792
            # so that the final tree is at revno 10.
 
3793
            # but bzrlib.uncommit.uncommit() actually uncommits
 
3794
            # the revisions that are supplied.
 
3795
            # So we need to offset it by one
 
3796
            revno = revision[0].in_history(b).revno + 1
 
3797
            if revno <= last_revno:
 
3798
                rev_id = b.get_rev_id(revno)
 
3799
 
 
3800
        if rev_id is None or _mod_revision.is_null(rev_id):
 
3801
            self.outf.write('No revisions to uncommit.\n')
 
3802
            return 1
 
3803
 
 
3804
        lf = log_formatter('short',
 
3805
                           to_file=self.outf,
 
3806
                           show_timezone='original')
 
3807
 
 
3808
        show_log(b,
 
3809
                 lf,
 
3810
                 verbose=False,
 
3811
                 direction='forward',
 
3812
                 start_revision=revno,
 
3813
                 end_revision=last_revno)
 
3814
 
 
3815
        if dry_run:
 
3816
            print 'Dry-run, pretending to remove the above revisions.'
 
3817
            if not force:
 
3818
                val = raw_input('Press <enter> to continue')
 
3819
        else:
 
3820
            print 'The above revision(s) will be removed.'
 
3821
            if not force:
 
3822
                val = raw_input('Are you sure [y/N]? ')
 
3823
                if val.lower() not in ('y', 'yes'):
 
3824
                    print 'Canceled'
 
3825
                    return 0
 
3826
 
 
3827
        mutter('Uncommitting from {%s} to {%s}',
 
3828
               last_rev_id, rev_id)
 
3829
        uncommit(b, tree=tree, dry_run=dry_run, verbose=verbose,
 
3830
                 revno=revno, local=local)
 
3831
        note('You can restore the old tip by running:\n'
 
3832
             '  bzr pull . -r revid:%s', last_rev_id)
 
3833
 
 
3834
 
 
3835
class cmd_break_lock(Command):
 
3836
    """Break a dead lock on a repository, branch or working directory.
 
3837
 
 
3838
    CAUTION: Locks should only be broken when you are sure that the process
 
3839
    holding the lock has been stopped.
 
3840
 
 
3841
    You can get information on what locks are open via the 'bzr info' command.
 
3842
    
 
3843
    :Examples:
 
3844
        bzr break-lock
 
3845
    """
 
3846
    takes_args = ['location?']
 
3847
 
 
3848
    def run(self, location=None, show=False):
 
3849
        if location is None:
 
3850
            location = u'.'
 
3851
        control, relpath = bzrdir.BzrDir.open_containing(location)
 
3852
        try:
 
3853
            control.break_lock()
 
3854
        except NotImplementedError:
 
3855
            pass
 
3856
        
 
3857
 
 
3858
class cmd_wait_until_signalled(Command):
 
3859
    """Test helper for test_start_and_stop_bzr_subprocess_send_signal.
 
3860
 
 
3861
    This just prints a line to signal when it is ready, then blocks on stdin.
 
3862
    """
 
3863
 
 
3864
    hidden = True
 
3865
 
 
3866
    def run(self):
 
3867
        sys.stdout.write("running\n")
 
3868
        sys.stdout.flush()
 
3869
        sys.stdin.readline()
 
3870
 
 
3871
 
 
3872
class cmd_serve(Command):
 
3873
    """Run the bzr server."""
 
3874
 
 
3875
    aliases = ['server']
 
3876
 
 
3877
    takes_options = [
 
3878
        Option('inet',
 
3879
               help='Serve on stdin/out for use from inetd or sshd.'),
 
3880
        Option('port',
 
3881
               help='Listen for connections on nominated port of the form '
 
3882
                    '[hostname:]portnumber.  Passing 0 as the port number will '
 
3883
                    'result in a dynamically allocated port.  The default port is '
 
3884
                    '4155.',
 
3885
               type=str),
 
3886
        Option('directory',
 
3887
               help='Serve contents of this directory.',
 
3888
               type=unicode),
 
3889
        Option('allow-writes',
 
3890
               help='By default the server is a readonly server.  Supplying '
 
3891
                    '--allow-writes enables write access to the contents of '
 
3892
                    'the served directory and below.'
 
3893
                ),
 
3894
        ]
 
3895
 
 
3896
    def run(self, port=None, inet=False, directory=None, allow_writes=False):
 
3897
        from bzrlib import lockdir
 
3898
        from bzrlib.smart import medium, server
 
3899
        from bzrlib.transport import get_transport
 
3900
        from bzrlib.transport.chroot import ChrootServer
 
3901
        if directory is None:
 
3902
            directory = os.getcwd()
 
3903
        url = urlutils.local_path_to_url(directory)
 
3904
        if not allow_writes:
 
3905
            url = 'readonly+' + url
 
3906
        chroot_server = ChrootServer(get_transport(url))
 
3907
        chroot_server.setUp()
 
3908
        t = get_transport(chroot_server.get_url())
 
3909
        if inet:
 
3910
            smart_server = medium.SmartServerPipeStreamMedium(
 
3911
                sys.stdin, sys.stdout, t)
 
3912
        else:
 
3913
            host = medium.BZR_DEFAULT_INTERFACE
 
3914
            if port is None:
 
3915
                port = medium.BZR_DEFAULT_PORT
 
3916
            else:
 
3917
                if ':' in port:
 
3918
                    host, port = port.split(':')
 
3919
                port = int(port)
 
3920
            smart_server = server.SmartTCPServer(t, host=host, port=port)
 
3921
            print 'listening on port: ', smart_server.port
 
3922
            sys.stdout.flush()
 
3923
        # for the duration of this server, no UI output is permitted.
 
3924
        # note that this may cause problems with blackbox tests. This should
 
3925
        # be changed with care though, as we dont want to use bandwidth sending
 
3926
        # progress over stderr to smart server clients!
 
3927
        old_factory = ui.ui_factory
 
3928
        old_lockdir_timeout = lockdir._DEFAULT_TIMEOUT_SECONDS
 
3929
        try:
 
3930
            ui.ui_factory = ui.SilentUIFactory()
 
3931
            lockdir._DEFAULT_TIMEOUT_SECONDS = 0
 
3932
            smart_server.serve()
 
3933
        finally:
 
3934
            ui.ui_factory = old_factory
 
3935
            lockdir._DEFAULT_TIMEOUT_SECONDS = old_lockdir_timeout
 
3936
 
 
3937
 
 
3938
class cmd_join(Command):
 
3939
    """Combine a subtree into its containing tree.
 
3940
    
 
3941
    This command is for experimental use only.  It requires the target tree
 
3942
    to be in dirstate-with-subtree format, which cannot be converted into
 
3943
    earlier formats.
 
3944
 
 
3945
    The TREE argument should be an independent tree, inside another tree, but
 
3946
    not part of it.  (Such trees can be produced by "bzr split", but also by
 
3947
    running "bzr branch" with the target inside a tree.)
 
3948
 
 
3949
    The result is a combined tree, with the subtree no longer an independant
 
3950
    part.  This is marked as a merge of the subtree into the containing tree,
 
3951
    and all history is preserved.
 
3952
 
 
3953
    If --reference is specified, the subtree retains its independence.  It can
 
3954
    be branched by itself, and can be part of multiple projects at the same
 
3955
    time.  But operations performed in the containing tree, such as commit
 
3956
    and merge, will recurse into the subtree.
 
3957
    """
 
3958
 
 
3959
    _see_also = ['split']
 
3960
    takes_args = ['tree']
 
3961
    takes_options = [
 
3962
            Option('reference', help='Join by reference.'),
 
3963
            ]
 
3964
    hidden = True
 
3965
 
 
3966
    def run(self, tree, reference=False):
 
3967
        sub_tree = WorkingTree.open(tree)
 
3968
        parent_dir = osutils.dirname(sub_tree.basedir)
 
3969
        containing_tree = WorkingTree.open_containing(parent_dir)[0]
 
3970
        repo = containing_tree.branch.repository
 
3971
        if not repo.supports_rich_root():
 
3972
            raise errors.BzrCommandError(
 
3973
                "Can't join trees because %s doesn't support rich root data.\n"
 
3974
                "You can use bzr upgrade on the repository."
 
3975
                % (repo,))
 
3976
        if reference:
 
3977
            try:
 
3978
                containing_tree.add_reference(sub_tree)
 
3979
            except errors.BadReferenceTarget, e:
 
3980
                # XXX: Would be better to just raise a nicely printable
 
3981
                # exception from the real origin.  Also below.  mbp 20070306
 
3982
                raise errors.BzrCommandError("Cannot join %s.  %s" %
 
3983
                                             (tree, e.reason))
 
3984
        else:
 
3985
            try:
 
3986
                containing_tree.subsume(sub_tree)
 
3987
            except errors.BadSubsumeSource, e:
 
3988
                raise errors.BzrCommandError("Cannot join %s.  %s" % 
 
3989
                                             (tree, e.reason))
 
3990
 
 
3991
 
 
3992
class cmd_split(Command):
 
3993
    """Split a subdirectory of a tree into a separate tree.
 
3994
 
 
3995
    This command will produce a target tree in a format that supports
 
3996
    rich roots, like 'rich-root' or 'rich-root-pack'.  These formats cannot be
 
3997
    converted into earlier formats like 'dirstate-tags'.
 
3998
 
 
3999
    The TREE argument should be a subdirectory of a working tree.  That
 
4000
    subdirectory will be converted into an independent tree, with its own
 
4001
    branch.  Commits in the top-level tree will not apply to the new subtree.
 
4002
    """
 
4003
 
 
4004
    # join is not un-hidden yet
 
4005
    #_see_also = ['join']
 
4006
    takes_args = ['tree']
 
4007
 
 
4008
    def run(self, tree):
 
4009
        containing_tree, subdir = WorkingTree.open_containing(tree)
 
4010
        sub_id = containing_tree.path2id(subdir)
 
4011
        if sub_id is None:
 
4012
            raise errors.NotVersionedError(subdir)
 
4013
        try:
 
4014
            containing_tree.extract(sub_id)
 
4015
        except errors.RootNotRich:
 
4016
            raise errors.UpgradeRequired(containing_tree.branch.base)
 
4017
 
 
4018
 
 
4019
class cmd_merge_directive(Command):
 
4020
    """Generate a merge directive for auto-merge tools.
 
4021
 
 
4022
    A directive requests a merge to be performed, and also provides all the
 
4023
    information necessary to do so.  This means it must either include a
 
4024
    revision bundle, or the location of a branch containing the desired
 
4025
    revision.
 
4026
 
 
4027
    A submit branch (the location to merge into) must be supplied the first
 
4028
    time the command is issued.  After it has been supplied once, it will
 
4029
    be remembered as the default.
 
4030
 
 
4031
    A public branch is optional if a revision bundle is supplied, but required
 
4032
    if --diff or --plain is specified.  It will be remembered as the default
 
4033
    after the first use.
 
4034
    """
 
4035
 
 
4036
    takes_args = ['submit_branch?', 'public_branch?']
 
4037
 
 
4038
    hidden = True
 
4039
 
 
4040
    _see_also = ['send']
 
4041
 
 
4042
    takes_options = [
 
4043
        RegistryOption.from_kwargs('patch-type',
 
4044
            'The type of patch to include in the directive.',
 
4045
            title='Patch type',
 
4046
            value_switches=True,
 
4047
            enum_switch=False,
 
4048
            bundle='Bazaar revision bundle (default).',
 
4049
            diff='Normal unified diff.',
 
4050
            plain='No patch, just directive.'),
 
4051
        Option('sign', help='GPG-sign the directive.'), 'revision',
 
4052
        Option('mail-to', type=str,
 
4053
            help='Instead of printing the directive, email to this address.'),
 
4054
        Option('message', type=str, short_name='m',
 
4055
            help='Message to use when committing this merge.')
 
4056
        ]
 
4057
 
 
4058
    encoding_type = 'exact'
 
4059
 
 
4060
    def run(self, submit_branch=None, public_branch=None, patch_type='bundle',
 
4061
            sign=False, revision=None, mail_to=None, message=None):
 
4062
        from bzrlib.revision import ensure_null, NULL_REVISION
 
4063
        include_patch, include_bundle = {
 
4064
            'plain': (False, False),
 
4065
            'diff': (True, False),
 
4066
            'bundle': (True, True),
 
4067
            }[patch_type]
 
4068
        branch = Branch.open('.')
 
4069
        stored_submit_branch = branch.get_submit_branch()
 
4070
        if submit_branch is None:
 
4071
            submit_branch = stored_submit_branch
 
4072
        else:
 
4073
            if stored_submit_branch is None:
 
4074
                branch.set_submit_branch(submit_branch)
 
4075
        if submit_branch is None:
 
4076
            submit_branch = branch.get_parent()
 
4077
        if submit_branch is None:
 
4078
            raise errors.BzrCommandError('No submit branch specified or known')
 
4079
 
 
4080
        stored_public_branch = branch.get_public_branch()
 
4081
        if public_branch is None:
 
4082
            public_branch = stored_public_branch
 
4083
        elif stored_public_branch is None:
 
4084
            branch.set_public_branch(public_branch)
 
4085
        if not include_bundle and public_branch is None:
 
4086
            raise errors.BzrCommandError('No public branch specified or'
 
4087
                                         ' known')
 
4088
        base_revision_id = None
 
4089
        if revision is not None:
 
4090
            if len(revision) > 2:
 
4091
                raise errors.BzrCommandError('bzr merge-directive takes '
 
4092
                    'at most two one revision identifiers')
 
4093
            revision_id = revision[-1].as_revision_id(branch)
 
4094
            if len(revision) == 2:
 
4095
                base_revision_id = revision[0].as_revision_id(branch)
 
4096
        else:
 
4097
            revision_id = branch.last_revision()
 
4098
        revision_id = ensure_null(revision_id)
 
4099
        if revision_id == NULL_REVISION:
 
4100
            raise errors.BzrCommandError('No revisions to bundle.')
 
4101
        directive = merge_directive.MergeDirective2.from_objects(
 
4102
            branch.repository, revision_id, time.time(),
 
4103
            osutils.local_time_offset(), submit_branch,
 
4104
            public_branch=public_branch, include_patch=include_patch,
 
4105
            include_bundle=include_bundle, message=message,
 
4106
            base_revision_id=base_revision_id)
 
4107
        if mail_to is None:
 
4108
            if sign:
 
4109
                self.outf.write(directive.to_signed(branch))
 
4110
            else:
 
4111
                self.outf.writelines(directive.to_lines())
 
4112
        else:
 
4113
            message = directive.to_email(mail_to, branch, sign)
 
4114
            s = SMTPConnection(branch.get_config())
 
4115
            s.send_email(message)
 
4116
 
 
4117
 
 
4118
class cmd_send(Command):
 
4119
    """Mail or create a merge-directive for submiting changes.
 
4120
 
 
4121
    A merge directive provides many things needed for requesting merges:
 
4122
 
 
4123
    * A machine-readable description of the merge to perform
 
4124
 
 
4125
    * An optional patch that is a preview of the changes requested
 
4126
 
 
4127
    * An optional bundle of revision data, so that the changes can be applied
 
4128
      directly from the merge directive, without retrieving data from a
 
4129
      branch.
 
4130
 
 
4131
    If --no-bundle is specified, then public_branch is needed (and must be
 
4132
    up-to-date), so that the receiver can perform the merge using the
 
4133
    public_branch.  The public_branch is always included if known, so that
 
4134
    people can check it later.
 
4135
 
 
4136
    The submit branch defaults to the parent, but can be overridden.  Both
 
4137
    submit branch and public branch will be remembered if supplied.
 
4138
 
 
4139
    If a public_branch is known for the submit_branch, that public submit
 
4140
    branch is used in the merge instructions.  This means that a local mirror
 
4141
    can be used as your actual submit branch, once you have set public_branch
 
4142
    for that mirror.
 
4143
 
 
4144
    Mail is sent using your preferred mail program.  This should be transparent
 
4145
    on Windows (it uses MAPI).  On Linux, it requires the xdg-email utility.
 
4146
    If the preferred client can't be found (or used), your editor will be used.
 
4147
    
 
4148
    To use a specific mail program, set the mail_client configuration option.
 
4149
    (For Thunderbird 1.5, this works around some bugs.)  Supported values for
 
4150
    specific clients are "evolution", "kmail", "mutt", and "thunderbird";
 
4151
    generic options are "default", "editor", "emacsclient", "mapi", and
 
4152
    "xdg-email".  Plugins may also add supported clients.
 
4153
 
 
4154
    If mail is being sent, a to address is required.  This can be supplied
 
4155
    either on the commandline, by setting the submit_to configuration
 
4156
    option in the branch itself or the child_submit_to configuration option 
 
4157
    in the submit branch.
 
4158
 
 
4159
    Two formats are currently supported: "4" uses revision bundle format 4 and
 
4160
    merge directive format 2.  It is significantly faster and smaller than
 
4161
    older formats.  It is compatible with Bazaar 0.19 and later.  It is the
 
4162
    default.  "0.9" uses revision bundle format 0.9 and merge directive
 
4163
    format 1.  It is compatible with Bazaar 0.12 - 0.18.
 
4164
    
 
4165
    Merge directives are applied using the merge command or the pull command.
 
4166
    """
 
4167
 
 
4168
    encoding_type = 'exact'
 
4169
 
 
4170
    _see_also = ['merge', 'pull']
 
4171
 
 
4172
    takes_args = ['submit_branch?', 'public_branch?']
 
4173
 
 
4174
    takes_options = [
 
4175
        Option('no-bundle',
 
4176
               help='Do not include a bundle in the merge directive.'),
 
4177
        Option('no-patch', help='Do not include a preview patch in the merge'
 
4178
               ' directive.'),
 
4179
        Option('remember',
 
4180
               help='Remember submit and public branch.'),
 
4181
        Option('from',
 
4182
               help='Branch to generate the submission from, '
 
4183
               'rather than the one containing the working directory.',
 
4184
               short_name='f',
 
4185
               type=unicode),
 
4186
        Option('output', short_name='o',
 
4187
               help='Write merge directive to this file; '
 
4188
                    'use - for stdout.',
 
4189
               type=unicode),
 
4190
        Option('mail-to', help='Mail the request to this address.',
 
4191
               type=unicode),
 
4192
        'revision',
 
4193
        'message',
 
4194
        RegistryOption.from_kwargs('format',
 
4195
        'Use the specified output format.',
 
4196
        **{'4': 'Bundle format 4, Merge Directive 2 (default)',
 
4197
           '0.9': 'Bundle format 0.9, Merge Directive 1',})
 
4198
        ]
 
4199
 
 
4200
    def run(self, submit_branch=None, public_branch=None, no_bundle=False,
 
4201
            no_patch=False, revision=None, remember=False, output=None,
 
4202
            format='4', mail_to=None, message=None, **kwargs):
 
4203
        return self._run(submit_branch, revision, public_branch, remember,
 
4204
                         format, no_bundle, no_patch, output,
 
4205
                         kwargs.get('from', '.'), mail_to, message)
 
4206
 
 
4207
    def _run(self, submit_branch, revision, public_branch, remember, format,
 
4208
             no_bundle, no_patch, output, from_, mail_to, message):
 
4209
        from bzrlib.revision import NULL_REVISION
 
4210
        branch = Branch.open_containing(from_)[0]
 
4211
        if output is None:
 
4212
            outfile = StringIO()
 
4213
        elif output == '-':
 
4214
            outfile = self.outf
 
4215
        else:
 
4216
            outfile = open(output, 'wb')
 
4217
        # we may need to write data into branch's repository to calculate
 
4218
        # the data to send.
 
4219
        branch.lock_write()
 
4220
        try:
 
4221
            if output is None:
 
4222
                config = branch.get_config()
 
4223
                if mail_to is None:
 
4224
                    mail_to = config.get_user_option('submit_to')
 
4225
                mail_client = config.get_mail_client()
 
4226
            if remember and submit_branch is None:
 
4227
                raise errors.BzrCommandError(
 
4228
                    '--remember requires a branch to be specified.')
 
4229
            stored_submit_branch = branch.get_submit_branch()
 
4230
            remembered_submit_branch = None
 
4231
            if submit_branch is None:
 
4232
                submit_branch = stored_submit_branch
 
4233
                remembered_submit_branch = "submit"
 
4234
            else:
 
4235
                if stored_submit_branch is None or remember:
 
4236
                    branch.set_submit_branch(submit_branch)
 
4237
            if submit_branch is None:
 
4238
                submit_branch = branch.get_parent()
 
4239
                remembered_submit_branch = "parent"
 
4240
            if submit_branch is None:
 
4241
                raise errors.BzrCommandError('No submit branch known or'
 
4242
                                             ' specified')
 
4243
            if remembered_submit_branch is not None:
 
4244
                note('Using saved %s location "%s" to determine what '
 
4245
                        'changes to submit.', remembered_submit_branch,
 
4246
                        submit_branch)
 
4247
 
 
4248
            if mail_to is None:
 
4249
                submit_config = Branch.open(submit_branch).get_config()
 
4250
                mail_to = submit_config.get_user_option("child_submit_to")
 
4251
 
 
4252
            stored_public_branch = branch.get_public_branch()
 
4253
            if public_branch is None:
 
4254
                public_branch = stored_public_branch
 
4255
            elif stored_public_branch is None or remember:
 
4256
                branch.set_public_branch(public_branch)
 
4257
            if no_bundle and public_branch is None:
 
4258
                raise errors.BzrCommandError('No public branch specified or'
 
4259
                                             ' known')
 
4260
            base_revision_id = None
 
4261
            revision_id = None
 
4262
            if revision is not None:
 
4263
                if len(revision) > 2:
 
4264
                    raise errors.BzrCommandError('bzr send takes '
 
4265
                        'at most two one revision identifiers')
 
4266
                revision_id = revision[-1].as_revision_id(branch)
 
4267
                if len(revision) == 2:
 
4268
                    base_revision_id = revision[0].as_revision_id(branch)
 
4269
            if revision_id is None:
 
4270
                revision_id = branch.last_revision()
 
4271
            if revision_id == NULL_REVISION:
 
4272
                raise errors.BzrCommandError('No revisions to submit.')
 
4273
            if format == '4':
 
4274
                directive = merge_directive.MergeDirective2.from_objects(
 
4275
                    branch.repository, revision_id, time.time(),
 
4276
                    osutils.local_time_offset(), submit_branch,
 
4277
                    public_branch=public_branch, include_patch=not no_patch,
 
4278
                    include_bundle=not no_bundle, message=message,
 
4279
                    base_revision_id=base_revision_id)
 
4280
            elif format == '0.9':
 
4281
                if not no_bundle:
 
4282
                    if not no_patch:
 
4283
                        patch_type = 'bundle'
 
4284
                    else:
 
4285
                        raise errors.BzrCommandError('Format 0.9 does not'
 
4286
                            ' permit bundle with no patch')
 
4287
                else:
 
4288
                    if not no_patch:
 
4289
                        patch_type = 'diff'
 
4290
                    else:
 
4291
                        patch_type = None
 
4292
                directive = merge_directive.MergeDirective.from_objects(
 
4293
                    branch.repository, revision_id, time.time(),
 
4294
                    osutils.local_time_offset(), submit_branch,
 
4295
                    public_branch=public_branch, patch_type=patch_type,
 
4296
                    message=message)
 
4297
 
 
4298
            outfile.writelines(directive.to_lines())
 
4299
            if output is None:
 
4300
                subject = '[MERGE] '
 
4301
                if message is not None:
 
4302
                    subject += message
 
4303
                else:
 
4304
                    revision = branch.repository.get_revision(revision_id)
 
4305
                    subject += revision.get_summary()
 
4306
                basename = directive.get_disk_name(branch)
 
4307
                mail_client.compose_merge_request(mail_to, subject,
 
4308
                                                  outfile.getvalue(), basename)
 
4309
        finally:
 
4310
            if output != '-':
 
4311
                outfile.close()
 
4312
            branch.unlock()
 
4313
 
 
4314
 
 
4315
class cmd_bundle_revisions(cmd_send):
 
4316
 
 
4317
    """Create a merge-directive for submiting changes.
 
4318
 
 
4319
    A merge directive provides many things needed for requesting merges:
 
4320
 
 
4321
    * A machine-readable description of the merge to perform
 
4322
 
 
4323
    * An optional patch that is a preview of the changes requested
 
4324
 
 
4325
    * An optional bundle of revision data, so that the changes can be applied
 
4326
      directly from the merge directive, without retrieving data from a
 
4327
      branch.
 
4328
 
 
4329
    If --no-bundle is specified, then public_branch is needed (and must be
 
4330
    up-to-date), so that the receiver can perform the merge using the
 
4331
    public_branch.  The public_branch is always included if known, so that
 
4332
    people can check it later.
 
4333
 
 
4334
    The submit branch defaults to the parent, but can be overridden.  Both
 
4335
    submit branch and public branch will be remembered if supplied.
 
4336
 
 
4337
    If a public_branch is known for the submit_branch, that public submit
 
4338
    branch is used in the merge instructions.  This means that a local mirror
 
4339
    can be used as your actual submit branch, once you have set public_branch
 
4340
    for that mirror.
 
4341
 
 
4342
    Two formats are currently supported: "4" uses revision bundle format 4 and
 
4343
    merge directive format 2.  It is significantly faster and smaller than
 
4344
    older formats.  It is compatible with Bazaar 0.19 and later.  It is the
 
4345
    default.  "0.9" uses revision bundle format 0.9 and merge directive
 
4346
    format 1.  It is compatible with Bazaar 0.12 - 0.18.
 
4347
    """
 
4348
 
 
4349
    takes_options = [
 
4350
        Option('no-bundle',
 
4351
               help='Do not include a bundle in the merge directive.'),
 
4352
        Option('no-patch', help='Do not include a preview patch in the merge'
 
4353
               ' directive.'),
 
4354
        Option('remember',
 
4355
               help='Remember submit and public branch.'),
 
4356
        Option('from',
 
4357
               help='Branch to generate the submission from, '
 
4358
               'rather than the one containing the working directory.',
 
4359
               short_name='f',
 
4360
               type=unicode),
 
4361
        Option('output', short_name='o', help='Write directive to this file.',
 
4362
               type=unicode),
 
4363
        'revision',
 
4364
        RegistryOption.from_kwargs('format',
 
4365
        'Use the specified output format.',
 
4366
        **{'4': 'Bundle format 4, Merge Directive 2 (default)',
 
4367
           '0.9': 'Bundle format 0.9, Merge Directive 1',})
 
4368
        ]
 
4369
    aliases = ['bundle']
 
4370
 
 
4371
    _see_also = ['send', 'merge']
 
4372
 
 
4373
    hidden = True
 
4374
 
 
4375
    def run(self, submit_branch=None, public_branch=None, no_bundle=False,
 
4376
            no_patch=False, revision=None, remember=False, output=None,
 
4377
            format='4', **kwargs):
 
4378
        if output is None:
 
4379
            output = '-'
 
4380
        return self._run(submit_branch, revision, public_branch, remember,
 
4381
                         format, no_bundle, no_patch, output,
 
4382
                         kwargs.get('from', '.'), None, None)
 
4383
 
 
4384
 
 
4385
class cmd_tag(Command):
 
4386
    """Create, remove or modify a tag naming a revision.
 
4387
    
 
4388
    Tags give human-meaningful names to revisions.  Commands that take a -r
 
4389
    (--revision) option can be given -rtag:X, where X is any previously
 
4390
    created tag.
 
4391
 
 
4392
    Tags are stored in the branch.  Tags are copied from one branch to another
 
4393
    along when you branch, push, pull or merge.
 
4394
 
 
4395
    It is an error to give a tag name that already exists unless you pass 
 
4396
    --force, in which case the tag is moved to point to the new revision.
 
4397
 
 
4398
    To rename a tag (change the name but keep it on the same revsion), run ``bzr
 
4399
    tag new-name -r tag:old-name`` and then ``bzr tag --delete oldname``.
 
4400
    """
 
4401
 
 
4402
    _see_also = ['commit', 'tags']
 
4403
    takes_args = ['tag_name']
 
4404
    takes_options = [
 
4405
        Option('delete',
 
4406
            help='Delete this tag rather than placing it.',
 
4407
            ),
 
4408
        Option('directory',
 
4409
            help='Branch in which to place the tag.',
 
4410
            short_name='d',
 
4411
            type=unicode,
 
4412
            ),
 
4413
        Option('force',
 
4414
            help='Replace existing tags.',
 
4415
            ),
 
4416
        'revision',
 
4417
        ]
 
4418
 
 
4419
    def run(self, tag_name,
 
4420
            delete=None,
 
4421
            directory='.',
 
4422
            force=None,
 
4423
            revision=None,
 
4424
            ):
 
4425
        branch, relpath = Branch.open_containing(directory)
 
4426
        branch.lock_write()
 
4427
        try:
 
4428
            if delete:
 
4429
                branch.tags.delete_tag(tag_name)
 
4430
                self.outf.write('Deleted tag %s.\n' % tag_name)
 
4431
            else:
 
4432
                if revision:
 
4433
                    if len(revision) != 1:
 
4434
                        raise errors.BzrCommandError(
 
4435
                            "Tags can only be placed on a single revision, "
 
4436
                            "not on a range")
 
4437
                    revision_id = revision[0].as_revision_id(branch)
 
4438
                else:
 
4439
                    revision_id = branch.last_revision()
 
4440
                if (not force) and branch.tags.has_tag(tag_name):
 
4441
                    raise errors.TagAlreadyExists(tag_name)
 
4442
                branch.tags.set_tag(tag_name, revision_id)
 
4443
                self.outf.write('Created tag %s.\n' % tag_name)
 
4444
        finally:
 
4445
            branch.unlock()
 
4446
 
 
4447
 
 
4448
class cmd_tags(Command):
 
4449
    """List tags.
 
4450
 
 
4451
    This command shows a table of tag names and the revisions they reference.
 
4452
    """
 
4453
 
 
4454
    _see_also = ['tag']
 
4455
    takes_options = [
 
4456
        Option('directory',
 
4457
            help='Branch whose tags should be displayed.',
 
4458
            short_name='d',
 
4459
            type=unicode,
 
4460
            ),
 
4461
        RegistryOption.from_kwargs('sort',
 
4462
            'Sort tags by different criteria.', title='Sorting',
 
4463
            alpha='Sort tags lexicographically (default).',
 
4464
            time='Sort tags chronologically.',
 
4465
            ),
 
4466
        'show-ids',
 
4467
    ]
 
4468
 
 
4469
    @display_command
 
4470
    def run(self,
 
4471
            directory='.',
 
4472
            sort='alpha',
 
4473
            show_ids=False,
 
4474
            ):
 
4475
        branch, relpath = Branch.open_containing(directory)
 
4476
        tags = branch.tags.get_tag_dict().items()
 
4477
        if not tags:
 
4478
            return
 
4479
        if sort == 'alpha':
 
4480
            tags.sort()
 
4481
        elif sort == 'time':
 
4482
            timestamps = {}
 
4483
            for tag, revid in tags:
 
4484
                try:
 
4485
                    revobj = branch.repository.get_revision(revid)
 
4486
                except errors.NoSuchRevision:
 
4487
                    timestamp = sys.maxint # place them at the end
 
4488
                else:
 
4489
                    timestamp = revobj.timestamp
 
4490
                timestamps[revid] = timestamp
 
4491
            tags.sort(key=lambda x: timestamps[x[1]])
 
4492
        if not show_ids:
 
4493
            # [ (tag, revid), ... ] -> [ (tag, dotted_revno), ... ]
 
4494
            revno_map = branch.get_revision_id_to_revno_map()
 
4495
            tags = [ (tag, '.'.join(map(str, revno_map.get(revid, ('?',)))))
 
4496
                        for tag, revid in tags ]
 
4497
        for tag, revspec in tags:
 
4498
            self.outf.write('%-20s %s\n' % (tag, revspec))
 
4499
 
 
4500
 
 
4501
class cmd_reconfigure(Command):
 
4502
    """Reconfigure the type of a bzr directory.
 
4503
 
 
4504
    A target configuration must be specified.
 
4505
 
 
4506
    For checkouts, the bind-to location will be auto-detected if not specified.
 
4507
    The order of preference is
 
4508
    1. For a lightweight checkout, the current bound location.
 
4509
    2. For branches that used to be checkouts, the previously-bound location.
 
4510
    3. The push location.
 
4511
    4. The parent location.
 
4512
    If none of these is available, --bind-to must be specified.
 
4513
    """
 
4514
 
 
4515
    _see_also = ['branches', 'checkouts', 'standalone-trees', 'working-trees']
 
4516
    takes_args = ['location?']
 
4517
    takes_options = [RegistryOption.from_kwargs('target_type',
 
4518
                     title='Target type',
 
4519
                     help='The type to reconfigure the directory to.',
 
4520
                     value_switches=True, enum_switch=False,
 
4521
                     branch='Reconfigure to be an unbound branch '
 
4522
                        'with no working tree.',
 
4523
                     tree='Reconfigure to be an unbound branch '
 
4524
                        'with a working tree.',
 
4525
                     checkout='Reconfigure to be a bound branch '
 
4526
                        'with a working tree.',
 
4527
                     lightweight_checkout='Reconfigure to be a lightweight'
 
4528
                     ' checkout (with no local history).',
 
4529
                     standalone='Reconfigure to be a standalone branch '
 
4530
                        '(i.e. stop using shared repository).',
 
4531
                     use_shared='Reconfigure to use a shared repository.'),
 
4532
                     Option('bind-to', help='Branch to bind checkout to.',
 
4533
                            type=str),
 
4534
                     Option('force',
 
4535
                        help='Perform reconfiguration even if local changes'
 
4536
                        ' will be lost.')
 
4537
                     ]
 
4538
 
 
4539
    def run(self, location=None, target_type=None, bind_to=None, force=False):
 
4540
        directory = bzrdir.BzrDir.open(location)
 
4541
        if target_type is None:
 
4542
            raise errors.BzrCommandError('No target configuration specified')
 
4543
        elif target_type == 'branch':
 
4544
            reconfiguration = reconfigure.Reconfigure.to_branch(directory)
 
4545
        elif target_type == 'tree':
 
4546
            reconfiguration = reconfigure.Reconfigure.to_tree(directory)
 
4547
        elif target_type == 'checkout':
 
4548
            reconfiguration = reconfigure.Reconfigure.to_checkout(directory,
 
4549
                                                                  bind_to)
 
4550
        elif target_type == 'lightweight-checkout':
 
4551
            reconfiguration = reconfigure.Reconfigure.to_lightweight_checkout(
 
4552
                directory, bind_to)
 
4553
        elif target_type == 'use-shared':
 
4554
            reconfiguration = reconfigure.Reconfigure.to_use_shared(directory)
 
4555
        elif target_type == 'standalone':
 
4556
            reconfiguration = reconfigure.Reconfigure.to_standalone(directory)
 
4557
        reconfiguration.apply(force)
 
4558
 
 
4559
 
 
4560
class cmd_switch(Command):
 
4561
    """Set the branch of a checkout and update.
 
4562
    
 
4563
    For lightweight checkouts, this changes the branch being referenced.
 
4564
    For heavyweight checkouts, this checks that there are no local commits
 
4565
    versus the current bound branch, then it makes the local branch a mirror
 
4566
    of the new location and binds to it.
 
4567
    
 
4568
    In both cases, the working tree is updated and uncommitted changes
 
4569
    are merged. The user can commit or revert these as they desire.
 
4570
 
 
4571
    Pending merges need to be committed or reverted before using switch.
 
4572
 
 
4573
    The path to the branch to switch to can be specified relative to the parent
 
4574
    directory of the current branch. For example, if you are currently in a
 
4575
    checkout of /path/to/branch, specifying 'newbranch' will find a branch at
 
4576
    /path/to/newbranch.
 
4577
    """
 
4578
 
 
4579
    takes_args = ['to_location']
 
4580
    takes_options = [Option('force',
 
4581
                        help='Switch even if local commits will be lost.')
 
4582
                     ]
 
4583
 
 
4584
    def run(self, to_location, force=False):
 
4585
        from bzrlib import switch
 
4586
        tree_location = '.'
 
4587
        control_dir = bzrdir.BzrDir.open_containing(tree_location)[0]
 
4588
        try:
 
4589
            to_branch = Branch.open(to_location)
 
4590
        except errors.NotBranchError:
 
4591
            this_branch = control_dir.open_branch()
 
4592
            # This may be a heavy checkout, where we want the master branch
 
4593
            this_url = this_branch.get_bound_location()
 
4594
            # If not, use a local sibling
 
4595
            if this_url is None:
 
4596
                this_url = this_branch.base
 
4597
            to_branch = Branch.open(
 
4598
                urlutils.join(this_url, '..', to_location))
 
4599
        switch.switch(control_dir, to_branch, force)
 
4600
        note('Switched to branch: %s',
 
4601
            urlutils.unescape_for_display(to_branch.base, 'utf-8'))
 
4602
 
 
4603
 
 
4604
class cmd_hooks(Command):
 
4605
    """Show a branch's currently registered hooks.
 
4606
    """
 
4607
 
 
4608
    hidden = True
 
4609
    takes_args = ['path?']
 
4610
 
 
4611
    def run(self, path=None):
 
4612
        if path is None:
 
4613
            path = '.'
 
4614
        branch_hooks = Branch.open(path).hooks
 
4615
        for hook_type in branch_hooks:
 
4616
            hooks = branch_hooks[hook_type]
 
4617
            self.outf.write("%s:\n" % (hook_type,))
 
4618
            if hooks:
 
4619
                for hook in hooks:
 
4620
                    self.outf.write("  %s\n" %
 
4621
                                    (branch_hooks.get_hook_name(hook),))
 
4622
            else:
 
4623
                self.outf.write("  <no hooks installed>\n")
 
4624
 
 
4625
 
 
4626
def _create_prefix(cur_transport):
 
4627
    needed = [cur_transport]
 
4628
    # Recurse upwards until we can create a directory successfully
 
4629
    while True:
 
4630
        new_transport = cur_transport.clone('..')
 
4631
        if new_transport.base == cur_transport.base:
 
4632
            raise errors.BzrCommandError(
 
4633
                "Failed to create path prefix for %s."
 
4634
                % cur_transport.base)
 
4635
        try:
 
4636
            new_transport.mkdir('.')
 
4637
        except errors.NoSuchFile:
 
4638
            needed.append(new_transport)
 
4639
            cur_transport = new_transport
 
4640
        else:
 
4641
            break
 
4642
    # Now we only need to create child directories
 
4643
    while needed:
 
4644
        cur_transport = needed.pop()
 
4645
        cur_transport.ensure_base()
 
4646
 
 
4647
 
 
4648
# these get imported and then picked up by the scan for cmd_*
 
4649
# TODO: Some more consistent way to split command definitions across files;
 
4650
# we do need to load at least some information about them to know of 
 
4651
# aliases.  ideally we would avoid loading the implementation until the
 
4652
# details were needed.
 
4653
from bzrlib.cmd_version_info import cmd_version_info
 
4654
from bzrlib.conflicts import cmd_resolve, cmd_conflicts, restore
 
4655
from bzrlib.bundle.commands import (
 
4656
    cmd_bundle_info,
 
4657
    )
 
4658
from bzrlib.sign_my_commits import cmd_sign_my_commits
 
4659
from bzrlib.weave_commands import cmd_versionedfile_list, \
 
4660
        cmd_weave_plan_merge, cmd_weave_merge_text