/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1
# Copyright (C) 2004, 2005 by 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
1442.1.71 by Robert Collins
'bzr branch' sets the branch-name,
17
# DO NOT change this to cStringIO - it results in control files 
18
# written as UCS4
19
# FIXIT! (Only deal with byte streams OR unicode at any one layer.)
20
# RBC 20051018
21
from StringIO import StringIO
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
22
import sys
23
import os
24
25
import bzrlib
1460 by Robert Collins
merge from martin.
26
from bzrlib import BZRDIR
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
27
from bzrlib.commands import Command, display_command
1460 by Robert Collins
merge from martin.
28
from bzrlib.branch import Branch
1185.35.4 by Aaron Bentley
Implemented remerge
29
from bzrlib.revision import common_ancestor
1185.31.12 by John Arbash Meinel
Refactored the export code to make it easier to add new export formats.
30
import bzrlib.errors as errors
1185.35.4 by Aaron Bentley
Implemented remerge
31
from bzrlib.errors import (BzrError, BzrCheckError, BzrCommandError, 
1185.35.13 by Aaron Bentley
Merged Martin
32
                           NotBranchError, DivergedBranches, NotConflicted,
1508.1.15 by Robert Collins
Merge from mpool.
33
                           NoSuchFile, NoWorkingTree, FileInWrongBranch)
1185.16.43 by Martin Pool
- clean up handling of option objects
34
from bzrlib.option import Option
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
35
from bzrlib.revisionspec import RevisionSpec
1460 by Robert Collins
merge from martin.
36
import bzrlib.trace
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
37
from bzrlib.trace import mutter, note, log_error, warning, is_quiet
1457.1.4 by Robert Collins
Branch.relpath has been moved to WorkingTree.relpath.
38
from bzrlib.workingtree import WorkingTree
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
39
40
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
41
def tree_files(file_list, default_branch=u'.'):
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
42
    try:
1508.1.15 by Robert Collins
Merge from mpool.
43
        return internal_tree_files(file_list, default_branch)
1185.35.32 by Aaron Bentley
Fixed handling of files in mixed branches
44
    except FileInWrongBranch, e:
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
45
        raise BzrCommandError("%s is not in the same branch as %s" %
1185.35.32 by Aaron Bentley
Fixed handling of files in mixed branches
46
                             (e.path, file_list[0]))
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
47
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
48
def internal_tree_files(file_list, default_branch=u'.'):
1185.12.101 by Aaron Bentley
Made commit take branch from first argument, if supplied.
49
    """\
50
    Return a branch and list of branch-relative paths.
51
    If supplied file_list is empty or None, the branch default will be used,
52
    and returned file_list will match the original.
53
    """
54
    if file_list is None or len(file_list) == 0:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
55
        return WorkingTree.open_containing(default_branch)[0], file_list
56
    tree = WorkingTree.open_containing(file_list[0])[0]
1185.12.101 by Aaron Bentley
Made commit take branch from first argument, if supplied.
57
    new_list = []
58
    for filename in file_list:
1185.35.32 by Aaron Bentley
Fixed handling of files in mixed branches
59
        try:
60
            new_list.append(tree.relpath(filename))
61
        except NotBranchError:
1508.1.15 by Robert Collins
Merge from mpool.
62
            raise FileInWrongBranch(tree.branch, filename)
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
63
    return tree, new_list
1185.12.101 by Aaron Bentley
Made commit take branch from first argument, if supplied.
64
65
1185.16.112 by mbp at sourcefrog
todo
66
# TODO: Make sure no commands unconditionally use the working directory as a
67
# branch.  If a filename argument is used, the first of them should be used to
68
# specify the branch.  (Perhaps this can be factored out into some kind of
69
# Argument class, representing a file in a branch, where the first occurrence
70
# opens the branch?)
71
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
72
class cmd_status(Command):
73
    """Display status summary.
74
75
    This reports on versioned and unknown files, reporting them
76
    grouped by state.  Possible states are:
77
78
    added
79
        Versioned in the working copy but not in the previous revision.
80
81
    removed
82
        Versioned in the previous revision but removed or deleted
83
        in the working copy.
84
85
    renamed
86
        Path of this file changed from the previous revision;
87
        the text may also have changed.  This includes files whose
88
        parent directory was renamed.
89
90
    modified
91
        Text has changed since the previous revision.
92
93
    unchanged
94
        Nothing about this file has changed since the previous revision.
95
        Only shown with --all.
96
97
    unknown
98
        Not versioned and not matching an ignore pattern.
99
100
    To see ignored files use 'bzr ignored'.  For details in the
101
    changes to file texts, use 'bzr diff'.
102
103
    If no arguments are specified, the status of the entire working
104
    directory is shown.  Otherwise, only the status of the specified
105
    files or directories is reported.  If a directory is given, status
106
    is reported for everything inside that directory.
1185.1.35 by Robert Collins
Heikki Paajanen's status -r patch
107
108
    If a revision argument is given, the status is calculated against
109
    that revision, or between two revisions if two are provided.
1185.3.2 by Martin Pool
- remove -r option from status command because it's not used
110
    """
1185.16.76 by Martin Pool
doc
111
    
112
    # TODO: --no-recurse, --recurse options
113
    
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
114
    takes_args = ['file*']
1185.34.4 by Jelmer Vernooij
Support -r option to bzr status. The backend code already handled
115
    takes_options = ['all', 'show-ids', 'revision']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
116
    aliases = ['st', 'stat']
117
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
118
    @display_command
1185.1.35 by Robert Collins
Heikki Paajanen's status -r patch
119
    def run(self, all=False, show_ids=False, file_list=None, revision=None):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
120
        tree, file_list = tree_files(file_list)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
121
            
122
        from bzrlib.status import show_status
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
123
        show_status(tree.branch, show_unchanged=all, show_ids=show_ids,
1185.1.35 by Robert Collins
Heikki Paajanen's status -r patch
124
                    specific_files=file_list, revision=revision)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
125
126
127
class cmd_cat_revision(Command):
1185.5.3 by John Arbash Meinel
cat-revision allows --revision for easier investigation.
128
    """Write out metadata for a revision.
129
    
130
    The revision to print can either be specified by a specific
131
    revision identifier, or you can use --revision.
132
    """
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
133
134
    hidden = True
1185.5.3 by John Arbash Meinel
cat-revision allows --revision for easier investigation.
135
    takes_args = ['revision_id?']
136
    takes_options = ['revision']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
137
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
138
    @display_command
1185.5.3 by John Arbash Meinel
cat-revision allows --revision for easier investigation.
139
    def run(self, revision_id=None, revision=None):
140
141
        if revision_id is not None and revision is not None:
142
            raise BzrCommandError('You can only supply one of revision_id or --revision')
143
        if revision_id is None and revision is None:
144
            raise BzrCommandError('You must supply either --revision or a revision_id')
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
145
        b = WorkingTree.open_containing(u'.')[0].branch
1185.5.3 by John Arbash Meinel
cat-revision allows --revision for easier investigation.
146
        if revision_id is not None:
1185.42.5 by Jelmer Vernooij
Make get_revision_xml_file() private
147
            sys.stdout.write(b.get_revision_xml(revision_id))
1185.5.3 by John Arbash Meinel
cat-revision allows --revision for easier investigation.
148
        elif revision is not None:
149
            for rev in revision:
150
                if rev is None:
151
                    raise BzrCommandError('You cannot specify a NULL revision.')
152
                revno, rev_id = rev.in_history(b)
1185.42.5 by Jelmer Vernooij
Make get_revision_xml_file() private
153
                sys.stdout.write(b.get_revision_xml(rev_id))
1185.1.29 by Robert Collins
merge merge tweaks from aaron, which includes latest .dev
154
    
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
155
156
class cmd_revno(Command):
157
    """Show current revision number.
158
159
    This is equal to the number of revisions on this branch."""
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
160
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
161
    def run(self):
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
162
        print Branch.open_containing(u'.')[0].revno()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
163
1182 by Martin Pool
- more disentangling of xml storage format from objects
164
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
165
class cmd_revision_info(Command):
166
    """Show revision number and revision id for a given revision identifier.
167
    """
168
    hidden = True
169
    takes_args = ['revision_info*']
170
    takes_options = ['revision']
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
171
    @display_command
1185.5.4 by John Arbash Meinel
Updated bzr revision-info, created tests.
172
    def run(self, revision=None, revision_info_list=[]):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
173
174
        revs = []
175
        if revision is not None:
176
            revs.extend(revision)
1185.5.4 by John Arbash Meinel
Updated bzr revision-info, created tests.
177
        if revision_info_list is not None:
178
            for rev in revision_info_list:
179
                revs.append(RevisionSpec(rev))
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
180
        if len(revs) == 0:
181
            raise BzrCommandError('You must supply a revision identifier')
182
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
183
        b = WorkingTree.open_containing(u'.')[0].branch
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
184
185
        for rev in revs:
1185.5.4 by John Arbash Meinel
Updated bzr revision-info, created tests.
186
            revinfo = rev.in_history(b)
187
            if revinfo.revno is None:
188
                print '     %s' % revinfo.rev_id
189
            else:
190
                print '%4d %s' % (revinfo.revno, revinfo.rev_id)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
191
192
    
193
class cmd_add(Command):
194
    """Add specified files or directories.
195
196
    In non-recursive mode, all the named items are added, regardless
197
    of whether they were previously ignored.  A warning is given if
198
    any of the named files are already versioned.
199
200
    In recursive mode (the default), files are treated the same way
201
    but the behaviour for directories is different.  Directories that
202
    are already versioned do not give a warning.  All directories,
203
    whether already versioned or not, are searched for files or
204
    subdirectories that are neither versioned or ignored, and these
205
    are added.  This search proceeds recursively into versioned
206
    directories.  If no names are given '.' is assumed.
207
208
    Therefore simply saying 'bzr add' will version all files that
209
    are currently unknown.
210
1185.3.3 by Martin Pool
- patch from mpe to automatically add parent directories
211
    Adding a file whose parent directory is not versioned will
212
    implicitly add the parent, and so on up to the root. This means
213
    you should never need to explictly add a directory, they'll just
214
    get added when you add a file in the directory.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
215
    """
216
    takes_args = ['file*']
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
217
    takes_options = ['no-recurse']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
218
    
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
219
    def run(self, file_list, no_recurse=False):
1446 by Robert Collins
fixup the verbose-does-nothing for add - add a --quiet instead
220
        from bzrlib.add import smart_add, add_reporter_print, add_reporter_null
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
221
        if is_quiet():
1446 by Robert Collins
fixup the verbose-does-nothing for add - add a --quiet instead
222
            reporter = add_reporter_null
223
        else:
224
            reporter = add_reporter_print
225
        smart_add(file_list, not no_recurse, reporter)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
226
227
228
class cmd_mkdir(Command):
229
    """Create a new versioned directory.
230
231
    This is equivalent to creating the directory and then adding it.
232
    """
233
    takes_args = ['dir+']
234
235
    def run(self, dir_list):
236
        for d in dir_list:
237
            os.mkdir(d)
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
238
            wt, dd = WorkingTree.open_containing(d)
1508.1.5 by Robert Collins
Move add from Branch to WorkingTree.
239
            wt.add([dd])
1185.31.9 by John Arbash Meinel
Changed to printing the full path, rather than just the relative portion.
240
            print 'added', d
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
241
242
243
class cmd_relpath(Command):
244
    """Show path of a file relative to root"""
245
    takes_args = ['filename']
246
    hidden = True
247
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
248
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
249
    def run(self, filename):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
250
        tree, relpath = WorkingTree.open_containing(filename)
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
251
        print relpath
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
252
253
254
class cmd_inventory(Command):
1185.33.33 by Martin Pool
[patch] add 'bzr inventory --kind directory'; remove 'bzr directories'
255
    """Show inventory of the current working copy or a revision.
256
257
    It is possible to limit the output to a particular entry
258
    type using the --kind option.  For example; --kind file.
259
    """
260
    takes_options = ['revision', 'show-ids', 'kind']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
261
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
262
    @display_command
1185.33.33 by Martin Pool
[patch] add 'bzr inventory --kind directory'; remove 'bzr directories'
263
    def run(self, revision=None, show_ids=False, kind=None):
264
        if kind and kind not in ['file', 'directory', 'symlink']:
265
            raise BzrCommandError('invalid kind specified')
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
266
        tree = WorkingTree.open_containing(u'.')[0]
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
267
        if revision is None:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
268
            inv = tree.read_working_inventory()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
269
        else:
270
            if len(revision) > 1:
271
                raise BzrCommandError('bzr inventory --revision takes'
272
                    ' exactly one revision identifier')
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
273
            inv = tree.branch.get_revision_inventory(
274
                revision[0].in_history(tree.branch).rev_id)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
275
276
        for path, entry in inv.entries():
1185.33.33 by Martin Pool
[patch] add 'bzr inventory --kind directory'; remove 'bzr directories'
277
            if kind and kind != entry.kind:
278
                continue
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
279
            if show_ids:
280
                print '%-50s %s' % (path, entry.file_id)
281
            else:
282
                print path
283
284
285
class cmd_move(Command):
286
    """Move files to a different directory.
287
288
    examples:
289
        bzr move *.txt doc
290
291
    The destination must be a versioned directory in the same branch.
292
    """
293
    takes_args = ['source$', 'dest']
294
    def run(self, source_list, dest):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
295
        tree, source_list = tree_files(source_list)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
296
        # TODO: glob expansion on windows?
1508.1.8 by Robert Collins
move move() from Branch to WorkingTree.
297
        tree.move(source_list, tree.relpath(dest))
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
298
299
300
class cmd_rename(Command):
301
    """Change the name of an entry.
302
303
    examples:
304
      bzr rename frob.c frobber.c
305
      bzr rename src/frob.c lib/frob.c
306
307
    It is an error if the destination name exists.
308
309
    See also the 'move' command, which moves files into a different
310
    directory without changing their name.
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
311
    """
312
    # TODO: Some way to rename multiple files without invoking 
313
    # bzr for each one?"""
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
314
    takes_args = ['from_name', 'to_name']
315
    
316
    def run(self, from_name, to_name):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
317
        tree, (from_name, to_name) = tree_files((from_name, to_name))
1508.1.7 by Robert Collins
Move rename_one from Branch to WorkingTree. (Robert Collins).
318
        tree.rename_one(from_name, to_name)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
319
320
321
class cmd_mv(Command):
322
    """Move or rename a file.
323
324
    usage:
325
        bzr mv OLDNAME NEWNAME
326
        bzr mv SOURCE... DESTINATION
327
328
    If the last argument is a versioned directory, all the other names
329
    are moved into it.  Otherwise, there must be exactly two arguments
330
    and the file is changed to a new name, which must not already exist.
331
332
    Files cannot be moved between branches.
333
    """
334
    takes_args = ['names*']
335
    def run(self, names_list):
336
        if len(names_list) < 2:
337
            raise BzrCommandError("missing file argument")
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
338
        tree, rel_names = tree_files(names_list)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
339
        
340
        if os.path.isdir(names_list[-1]):
341
            # move into existing directory
1508.1.8 by Robert Collins
move move() from Branch to WorkingTree.
342
            for pair in tree.move(rel_names[:-1], rel_names[-1]):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
343
                print "%s => %s" % pair
344
        else:
345
            if len(names_list) != 2:
346
                raise BzrCommandError('to mv multiple files the destination '
347
                                      'must be a versioned directory')
1508.1.7 by Robert Collins
Move rename_one from Branch to WorkingTree. (Robert Collins).
348
            tree.rename_one(rel_names[0], rel_names[1])
1185.1.8 by Robert Collins
David Clymers patch to use rename rather than mv for two argument non-directory target bzr mv calls.
349
            print "%s => %s" % (rel_names[0], rel_names[1])
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
350
            
351
    
352
class cmd_pull(Command):
353
    """Pull any changes from another branch into the current one.
354
1185.12.92 by Aaron Bentley
Fixed pull help, renamed clobber to overwrite
355
    If there is no default location set, the first pull will set it.  After
356
    that, you can omit the location to use the default.  To change the
357
    default, use --remember.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
358
359
    This command only works on branches that have not diverged.  Branches are
360
    considered diverged if both branches have had commits without first
361
    pulling from the other.
362
363
    If branches have diverged, you can use 'bzr merge' to pull the text changes
1185.12.92 by Aaron Bentley
Fixed pull help, renamed clobber to overwrite
364
    from one into the other.  Once one branch has merged, the other should
365
    be able to pull it again.
366
367
    If you want to forget your local changes and just update your branch to
368
    match the remote one, use --overwrite.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
369
    """
1185.32.4 by John Arbash Meinel
[merge] up-to-date against bzr.dev
370
    takes_options = ['remember', 'overwrite', 'verbose']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
371
    takes_args = ['location?']
372
1185.32.4 by John Arbash Meinel
[merge] up-to-date against bzr.dev
373
    def run(self, location=None, remember=False, overwrite=False, verbose=False):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
374
        from bzrlib.merge import merge
375
        from shutil import rmtree
376
        import errno
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
377
        # FIXME: too much stuff is in the command class        
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
378
        tree_to = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
379
        stored_loc = tree_to.branch.get_parent()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
380
        if location is None:
381
            if stored_loc is None:
382
                raise BzrCommandError("No pull location known or specified.")
383
            else:
1185.12.12 by Aaron Bentley
Made merge use pull location or die if no branch specified.
384
                print "Using saved location: %s" % stored_loc
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
385
                location = stored_loc
1441 by Robert Collins
tests passing is a good idea - move the branch open in cmd_branch to ensure this, and remove noise from the test suite
386
        br_from = Branch.open(location)
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
387
        br_to = tree_to.branch
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
388
        try:
1185.32.1 by John Arbash Meinel
Updated bzr pull to support a --verbose flag, which prints out what changes.
389
            old_rh = br_to.revision_history()
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
390
            count = tree_to.pull(br_from, overwrite)
1442.1.67 by Robert Collins
Factor out the guts of 'pull' from the command into WorkingTree.pull().
391
        except DivergedBranches:
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
392
            # FIXME: Just make DivergedBranches display the right message
393
            # itself.
1442.1.67 by Robert Collins
Factor out the guts of 'pull' from the command into WorkingTree.pull().
394
            raise BzrCommandError("These branches have diverged."
395
                                  "  Try merge.")
1494 by Robert Collins
Set push and pull locations only upon success.
396
        if br_to.get_parent() is None or remember:
397
            br_to.set_parent(location)
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
398
        note('%d revision(s) pulled.', count)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
399
1185.31.5 by John Arbash Meinel
Merged pull --verbose changes
400
        if verbose:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
401
            new_rh = tree_to.branch.revision_history()
1185.31.5 by John Arbash Meinel
Merged pull --verbose changes
402
            if old_rh != new_rh:
403
                # Something changed
404
                from bzrlib.log import show_changed_revisions
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
405
                show_changed_revisions(tree_to.branch, old_rh, new_rh)
1185.31.5 by John Arbash Meinel
Merged pull --verbose changes
406
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
407
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
408
class cmd_push(Command):
409
    """Push this branch into another branch.
410
    
411
    The remote branch will not have its working tree populated because this
412
    is both expensive, and may not be supported on the remote file system.
413
    
414
    Some smart servers or protocols *may* put the working tree in place.
415
416
    If there is no default push location set, the first push will set it.
417
    After that, you can omit the location to use the default.  To change the
418
    default, use --remember.
419
420
    This command only works on branches that have not diverged.  Branches are
421
    considered diverged if the branch being pushed to is not an older version
422
    of this branch.
423
424
    If branches have diverged, you can use 'bzr push --overwrite' to replace
425
    the other branch completely.
426
    
427
    If you want to ensure you have the different changes in the other branch,
428
    do a merge (see bzr help merge) from the other branch, and commit that
429
    before doing a 'push --overwrite'.
430
    """
1495 by Robert Collins
Add a --create-prefix to the new push command.
431
    takes_options = ['remember', 'overwrite', 
432
                     Option('create-prefix', 
433
                            help='Create the path leading up to the branch '
434
                                 'if it does not already exist')]
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
435
    takes_args = ['location?']
436
1495 by Robert Collins
Add a --create-prefix to the new push command.
437
    def run(self, location=None, remember=False, overwrite=False,
1185.31.5 by John Arbash Meinel
Merged pull --verbose changes
438
            create_prefix=False, verbose=False):
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
439
        # FIXME: Way too big!  Put this into a function called from the
440
        # command.
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
441
        import errno
442
        from shutil import rmtree
443
        from bzrlib.transport import get_transport
444
        
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
445
        tree_from = WorkingTree.open_containing(u'.')[0]
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
446
        br_from = tree_from.branch
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
447
        stored_loc = tree_from.branch.get_push_location()
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
448
        if location is None:
449
            if stored_loc is None:
450
                raise BzrCommandError("No push location known or specified.")
451
            else:
452
                print "Using saved location: %s" % stored_loc
453
                location = stored_loc
454
        try:
455
            br_to = Branch.open(location)
456
        except NotBranchError:
457
            # create a branch.
458
            transport = get_transport(location).clone('..')
1495 by Robert Collins
Add a --create-prefix to the new push command.
459
            if not create_prefix:
460
                try:
461
                    transport.mkdir(transport.relpath(location))
462
                except NoSuchFile:
463
                    raise BzrCommandError("Parent directory of %s "
464
                                          "does not exist." % location)
465
            else:
466
                current = transport.base
467
                needed = [(transport, transport.relpath(location))]
468
                while needed:
469
                    try:
470
                        transport, relpath = needed[-1]
471
                        transport.mkdir(relpath)
472
                        needed.pop()
473
                    except NoSuchFile:
474
                        new_transport = transport.clone('..')
475
                        needed.append((new_transport,
476
                                       new_transport.relpath(transport.base)))
477
                        if new_transport.base == transport.base:
478
                            raise BzrCommandError("Could not creeate "
479
                                                  "path prefix.")
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
480
            br_to = Branch.initialize(location)
481
        try:
1185.31.5 by John Arbash Meinel
Merged pull --verbose changes
482
            old_rh = br_to.revision_history()
1185.33.44 by Martin Pool
[patch] show number of revisions pushed/pulled/merged (Robey Pointer)
483
            count = br_to.pull(br_from, overwrite)
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
484
        except DivergedBranches:
485
            raise BzrCommandError("These branches have diverged."
486
                                  "  Try a merge then push with overwrite.")
1494 by Robert Collins
Set push and pull locations only upon success.
487
        if br_from.get_push_location() is None or remember:
488
            br_from.set_push_location(location)
1185.33.44 by Martin Pool
[patch] show number of revisions pushed/pulled/merged (Robey Pointer)
489
        note('%d revision(s) pushed.' % (count,))
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
490
1185.31.5 by John Arbash Meinel
Merged pull --verbose changes
491
        if verbose:
492
            new_rh = br_to.revision_history()
493
            if old_rh != new_rh:
494
                # Something changed
495
                from bzrlib.log import show_changed_revisions
496
                show_changed_revisions(br_to, old_rh, new_rh)
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
497
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
498
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
499
class cmd_branch(Command):
500
    """Create a new copy of a branch.
501
502
    If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will
503
    be used.  In other words, "branch ../foo/bar" will attempt to create ./bar.
504
505
    To retrieve the branch as of a particular revision, supply the --revision
506
    parameter, as in "branch foo/bar -r 5".
1185.10.2 by Aaron Bentley
Updated help message
507
508
    --basis is to speed up branching from remote branches.  When specified, it
509
    copies all the file-contents, inventory and revision data from the basis
510
    branch before copying anything from the remote branch.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
511
    """
512
    takes_args = ['from_location', 'to_location?']
1185.10.1 by Aaron Bentley
Added --basis option to bzr branch
513
    takes_options = ['revision', 'basis']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
514
    aliases = ['get', 'clone']
515
1185.10.1 by Aaron Bentley
Added --basis option to bzr branch
516
    def run(self, from_location, to_location=None, revision=None, basis=None):
1393.1.5 by Martin Pool
- move copy_branch into bzrlib.clone
517
        from bzrlib.clone import copy_branch
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
518
        import errno
519
        from shutil import rmtree
1185.17.3 by Martin Pool
[pick] larger read lock scope for branch command
520
        if revision is None:
521
            revision = [None]
522
        elif len(revision) > 1:
523
            raise BzrCommandError(
524
                'bzr branch --revision takes exactly 1 revision value')
525
        try:
526
            br_from = Branch.open(from_location)
527
        except OSError, e:
528
            if e.errno == errno.ENOENT:
529
                raise BzrCommandError('Source location "%s" does not'
530
                                      ' exist.' % to_location)
531
            else:
532
                raise
533
        br_from.lock_read()
534
        try:
1185.10.1 by Aaron Bentley
Added --basis option to bzr branch
535
            if basis is not None:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
536
                basis_branch = WorkingTree.open_containing(basis)[0].branch
1185.10.1 by Aaron Bentley
Added --basis option to bzr branch
537
            else:
538
                basis_branch = None
1185.8.4 by Aaron Bentley
Fixed branch -r
539
            if len(revision) == 1 and revision[0] is not None:
1390 by Robert Collins
pair programming worx... merge integration and weave
540
                revision_id = revision[0].in_history(br_from)[1]
1185.8.4 by Aaron Bentley
Fixed branch -r
541
            else:
1390 by Robert Collins
pair programming worx... merge integration and weave
542
                revision_id = None
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
543
            if to_location is None:
544
                to_location = os.path.basename(from_location.rstrip("/\\"))
1442.1.71 by Robert Collins
'bzr branch' sets the branch-name,
545
                name = None
546
            else:
547
                name = os.path.basename(to_location) + '\n'
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
548
            try:
549
                os.mkdir(to_location)
550
            except OSError, e:
551
                if e.errno == errno.EEXIST:
552
                    raise BzrCommandError('Target directory "%s" already'
553
                                          ' exists.' % to_location)
554
                if e.errno == errno.ENOENT:
555
                    raise BzrCommandError('Parent of "%s" does not exist.' %
556
                                          to_location)
557
                else:
558
                    raise
559
            try:
1391 by Robert Collins
merge from integration
560
                copy_branch(br_from, to_location, revision_id, basis_branch)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
561
            except bzrlib.errors.NoSuchRevision:
562
                rmtree(to_location)
1466 by Robert Collins
revision may be None in cmd_branch, do not treat as an int.
563
                msg = "The branch %s has no revision %s." % (from_location, revision[0])
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
564
                raise BzrCommandError(msg)
1185.10.1 by Aaron Bentley
Added --basis option to bzr branch
565
            except bzrlib.errors.UnlistableBranch:
1442.1.71 by Robert Collins
'bzr branch' sets the branch-name,
566
                rmtree(to_location)
1185.10.1 by Aaron Bentley
Added --basis option to bzr branch
567
                msg = "The branch %s cannot be used as a --basis"
1442.1.71 by Robert Collins
'bzr branch' sets the branch-name,
568
                raise BzrCommandError(msg)
1185.33.44 by Martin Pool
[patch] show number of revisions pushed/pulled/merged (Robey Pointer)
569
            branch = Branch.open(to_location)
1442.1.71 by Robert Collins
'bzr branch' sets the branch-name,
570
            if name:
571
                name = StringIO(name)
572
                branch.put_controlfile('branch-name', name)
1185.33.44 by Martin Pool
[patch] show number of revisions pushed/pulled/merged (Robey Pointer)
573
            note('Branched %d revision(s).' % branch.revno())
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
574
        finally:
1185.17.3 by Martin Pool
[pick] larger read lock scope for branch command
575
            br_from.unlock()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
576
577
578
class cmd_renames(Command):
579
    """Show list of renamed files.
580
    """
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
581
    # TODO: Option to show renames between two historical versions.
582
583
    # TODO: Only show renames under dir, rather than in the whole branch.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
584
    takes_args = ['dir?']
585
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
586
    @display_command
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
587
    def run(self, dir=u'.'):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
588
        tree = WorkingTree.open_containing(dir)[0]
589
        old_inv = tree.branch.basis_tree().inventory
590
        new_inv = tree.read_working_inventory()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
591
592
        renames = list(bzrlib.tree.find_renames(old_inv, new_inv))
593
        renames.sort()
594
        for old_name, new_name in renames:
595
            print "%s => %s" % (old_name, new_name)        
596
597
598
class cmd_info(Command):
599
    """Show statistical information about a branch."""
600
    takes_args = ['branch?']
601
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
602
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
603
    def run(self, branch=None):
604
        import info
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
605
        b = WorkingTree.open_containing(branch)[0].branch
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
606
        info.show_info(b)
607
608
609
class cmd_remove(Command):
610
    """Make a file unversioned.
611
612
    This makes bzr stop tracking changes to a versioned file.  It does
613
    not delete the working copy.
614
    """
615
    takes_args = ['file+']
616
    takes_options = ['verbose']
1424 by Robert Collins
add rm alias to remove
617
    aliases = ['rm']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
618
    
619
    def run(self, file_list, verbose=False):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
620
        tree, file_list = tree_files(file_list)
1185.12.105 by Aaron Bentley
Substituted branch_files for equivalent code
621
        tree.remove(file_list, verbose=verbose)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
622
623
624
class cmd_file_id(Command):
625
    """Print file_id of a particular file or directory.
626
627
    The file_id is assigned when the file is first added and remains the
628
    same through all revisions where the file exists, even when it is
629
    moved or renamed.
630
    """
631
    hidden = True
632
    takes_args = ['filename']
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
633
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
634
    def run(self, filename):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
635
        tree, relpath = WorkingTree.open_containing(filename)
636
        i = tree.inventory.path2id(relpath)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
637
        if i == None:
638
            raise BzrError("%r is not a versioned file" % filename)
639
        else:
640
            print i
641
642
643
class cmd_file_path(Command):
644
    """Print path of file_ids to a file or directory.
645
646
    This prints one line for each directory down to the target,
647
    starting at the branch root."""
648
    hidden = True
649
    takes_args = ['filename']
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
650
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
651
    def run(self, filename):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
652
        tree, relpath = WorkingTree.open_containing(filename)
653
        inv = tree.inventory
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
654
        fid = inv.path2id(relpath)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
655
        if fid == None:
656
            raise BzrError("%r is not a versioned file" % filename)
657
        for fip in inv.get_idpath(fid):
658
            print fip
659
660
661
class cmd_revision_history(Command):
662
    """Display list of revision ids on this branch."""
663
    hidden = True
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
664
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
665
    def run(self):
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
666
        branch = WorkingTree.open_containing(u'.')[0].branch
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
667
        for patchid in branch.revision_history():
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
668
            print patchid
669
670
1225 by Martin Pool
- branch now tracks ancestry - all merged revisions
671
class cmd_ancestry(Command):
672
    """List all revisions merged into this branch."""
673
    hidden = True
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
674
    @display_command
1225 by Martin Pool
- branch now tracks ancestry - all merged revisions
675
    def run(self):
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
676
        tree = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
677
        b = tree.branch
678
        # FIXME. should be tree.last_revision
1241 by Martin Pool
- rename last_patch to last_revision
679
        for revision_id in b.get_ancestry(b.last_revision()):
1225 by Martin Pool
- branch now tracks ancestry - all merged revisions
680
            print revision_id
681
682
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
683
class cmd_init(Command):
684
    """Make a directory into a versioned branch.
685
686
    Use this to create an empty branch, or before importing an
687
    existing project.
688
689
    Recipe for importing a tree of files:
690
        cd ~/project
691
        bzr init
1185.12.93 by Aaron Bentley
Fixed obsolete help
692
        bzr add .
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
693
        bzr status
694
        bzr commit -m 'imported project'
695
    """
1185.16.138 by Martin Pool
[patch] 'bzr init DIR' (John)
696
    takes_args = ['location?']
697
    def run(self, location=None):
698
        from bzrlib.branch import Branch
699
        if location is None:
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
700
            location = u'.'
1185.16.138 by Martin Pool
[patch] 'bzr init DIR' (John)
701
        else:
702
            # The path has to exist to initialize a
703
            # branch inside of it.
704
            # Just using os.mkdir, since I don't
705
            # believe that we want to create a bunch of
706
            # locations if the user supplies an extended path
707
            if not os.path.exists(location):
708
                os.mkdir(location)
709
        Branch.initialize(location)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
710
711
712
class cmd_diff(Command):
713
    """Show differences in working tree.
714
    
715
    If files are listed, only the changes in those files are listed.
716
    Otherwise, all changes for the tree are listed.
717
718
    examples:
719
        bzr diff
720
        bzr diff -r1
1185.1.2 by Martin Pool
- merge various windows and other fixes from Ollie Rutherfurd
721
        bzr diff -r1..2
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
722
    """
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
723
    # TODO: Allow diff across branches.
724
    # TODO: Option to use external diff command; could be GNU diff, wdiff,
725
    #       or a graphical diff.
726
727
    # TODO: Python difflib is not exactly the same as unidiff; should
728
    #       either fix it up or prefer to use an external diff.
729
730
    # TODO: If a directory is given, diff everything under that.
731
732
    # TODO: Selected-file diff is inefficient and doesn't show you
733
    #       deleted files.
734
735
    # TODO: This probably handles non-Unix newlines poorly.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
736
    
737
    takes_args = ['file*']
738
    takes_options = ['revision', 'diff-options']
739
    aliases = ['di', 'dif']
740
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
741
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
742
    def run(self, revision=None, file_list=None, diff_options=None):
743
        from bzrlib.diff import show_diff
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
744
        try:
1508.1.15 by Robert Collins
Merge from mpool.
745
            tree, file_list = internal_tree_files(file_list)
746
            b = None
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
747
            b2 = None
1185.35.32 by Aaron Bentley
Fixed handling of files in mixed branches
748
        except FileInWrongBranch:
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
749
            if len(file_list) != 2:
750
                raise BzrCommandError("Files are in different branches")
751
752
            b, file1 = Branch.open_containing(file_list[0])
753
            b2, file2 = Branch.open_containing(file_list[1])
754
            if file1 != "" or file2 != "":
1508.1.15 by Robert Collins
Merge from mpool.
755
                # FIXME diff those two files. rbc 20051123
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
756
                raise BzrCommandError("Files are in different branches")
757
            file_list = None
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
758
        if revision is not None:
1185.35.28 by Aaron Bentley
Support diff with two branches as input.
759
            if b2 is not None:
760
                raise BzrCommandError("Can't specify -r with two branches")
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
761
            if len(revision) == 1:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
762
                return show_diff(tree.branch, revision[0], specific_files=file_list,
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
763
                                 external_diff_options=diff_options)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
764
            elif len(revision) == 2:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
765
                return show_diff(tree.branch, revision[0], specific_files=file_list,
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
766
                                 external_diff_options=diff_options,
767
                                 revision2=revision[1])
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
768
            else:
769
                raise BzrCommandError('bzr diff --revision takes exactly one or two revision identifiers')
770
        else:
1508.1.15 by Robert Collins
Merge from mpool.
771
            if b is not None:
772
                return show_diff(b, None, specific_files=file_list,
773
                                 external_diff_options=diff_options, b2=b2)
774
            else:
775
                return show_diff(tree.branch, None, specific_files=file_list,
776
                                 external_diff_options=diff_options)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
777
778
779
class cmd_deleted(Command):
780
    """List files deleted in the working tree.
781
    """
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
782
    # TODO: Show files deleted since a previous revision, or
783
    # between two revisions.
784
    # TODO: Much more efficient way to do this: read in new
785
    # directories with readdir, rather than stating each one.  Same
786
    # level of effort but possibly much less IO.  (Or possibly not,
787
    # if the directories are very large...)
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
788
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
789
    def run(self, show_ids=False):
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
790
        tree = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
791
        old = tree.branch.basis_tree()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
792
        for path, ie in old.inventory.iter_entries():
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
793
            if not tree.has_id(ie.file_id):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
794
                if show_ids:
795
                    print '%-50s %s' % (path, ie.file_id)
796
                else:
797
                    print path
798
799
800
class cmd_modified(Command):
801
    """List files modified in working tree."""
802
    hidden = True
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
803
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
804
    def run(self):
805
        from bzrlib.delta import compare_trees
806
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
807
        tree = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
808
        td = compare_trees(tree.branch.basis_tree(), tree)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
809
1398 by Robert Collins
integrate in Gustavos x-bit patch
810
        for path, id, kind, text_modified, meta_modified in td.modified:
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
811
            print path
812
813
814
815
class cmd_added(Command):
816
    """List files added in working tree."""
817
    hidden = True
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
818
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
819
    def run(self):
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
820
        wt = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
821
        basis_inv = wt.branch.basis_tree().inventory
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
822
        inv = wt.inventory
823
        for file_id in inv:
824
            if file_id in basis_inv:
825
                continue
826
            path = inv.id2path(file_id)
827
            if not os.access(b.abspath(path), os.F_OK):
828
                continue
829
            print path
830
                
831
        
832
833
class cmd_root(Command):
834
    """Show the tree root directory.
835
836
    The root is the nearest enclosing directory with a .bzr control
837
    directory."""
838
    takes_args = ['filename?']
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
839
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
840
    def run(self, filename=None):
841
        """Print the branch root."""
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
842
        tree = WorkingTree.open_containing(filename)[0]
843
        print tree.basedir
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
844
845
846
class cmd_log(Command):
847
    """Show log of this branch.
848
1185.16.153 by Martin Pool
[patch] fix help for bzr log (Matthieu)
849
    To request a range of logs, you can use the command -r begin..end
850
    -r revision requests a specific revision, -r ..end or -r begin.. are
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
851
    also valid.
852
    """
853
1393.1.55 by Martin Pool
doc
854
    # TODO: Make --revision support uuid: and hash: [future tag:] notation.
855
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
856
    takes_args = ['filename?']
1185.16.46 by mbp at sourcefrog
- add help strings to some options
857
    takes_options = [Option('forward', 
858
                            help='show from oldest to newest'),
859
                     'timezone', 'verbose', 
860
                     'show-ids', 'revision',
1185.16.57 by Martin Pool
[merge] from aaron
861
                     Option('line', help='format with one line per revision'),
1185.16.46 by mbp at sourcefrog
- add help strings to some options
862
                     'long', 
863
                     Option('message',
1185.16.48 by mbp at sourcefrog
- more refactoring of and tests for option parsing
864
                            help='show revisions whose message matches this regexp',
865
                            type=str),
1185.16.57 by Martin Pool
[merge] from aaron
866
                     Option('short', help='use moderately short format'),
867
                     ]
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
868
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
869
    def run(self, filename=None, timezone='original',
870
            verbose=False,
871
            show_ids=False,
872
            forward=False,
873
            revision=None,
874
            message=None,
875
            long=False,
1185.12.25 by Aaron Bentley
Added one-line log format
876
            short=False,
877
            line=False):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
878
        from bzrlib.log import log_formatter, show_log
879
        import codecs
1185.16.49 by mbp at sourcefrog
- more refactoring and tests of commandline
880
        assert message is None or isinstance(message, basestring), \
1185.16.48 by mbp at sourcefrog
- more refactoring of and tests for option parsing
881
            "invalid message argument %r" % message
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
882
        direction = (forward and 'forward') or 'reverse'
883
        
884
        if filename:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
885
            # might be a tree:
886
            tree = None
887
            try:
888
                tree, fp = WorkingTree.open_containing(filename)
889
                b = tree.branch
890
                if fp != '':
891
                    inv = tree.read_working_inventory()
892
            except NotBranchError:
893
                pass
894
            if tree is None:
895
                b, fp = Branch.open_containing(filename)
896
                if fp != '':
897
                    inv = b.get_inventory(b.last_revision())
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
898
            if fp != '':
1497 by Robert Collins
Move Branch.read_working_inventory to WorkingTree.
899
                file_id = inv.path2id(fp)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
900
            else:
901
                file_id = None  # points to branch root
902
        else:
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
903
            tree, relpath = WorkingTree.open_containing(u'.')
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
904
            b = tree.branch
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
905
            file_id = None
906
907
        if revision is None:
908
            rev1 = None
909
            rev2 = None
910
        elif len(revision) == 1:
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
911
            rev1 = rev2 = revision[0].in_history(b).revno
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
912
        elif len(revision) == 2:
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
913
            rev1 = revision[0].in_history(b).revno
914
            rev2 = revision[1].in_history(b).revno
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
915
        else:
916
            raise BzrCommandError('bzr log --revision takes one or two values.')
917
1185.36.1 by Daniel Silverstone
A revision of zero is meant to be zero, not None. Also order the revisions supplied to cope with the user being confused
918
        # By this point, the revision numbers are converted to the +ve
919
        # form if they were supplied in the -ve form, so we can do
920
        # this comparison in relative safety
921
        if rev1 > rev2:
922
            (rev2, rev1) = (rev1, rev2)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
923
1185.31.4 by John Arbash Meinel
Fixing mutter() calls to not have to do string processing.
924
        mutter('encoding log as %r', bzrlib.user_encoding)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
925
926
        # use 'replace' so that we don't abort if trying to write out
927
        # in e.g. the default C locale.
928
        outf = codecs.getwriter(bzrlib.user_encoding)(sys.stdout, errors='replace')
929
1185.12.25 by Aaron Bentley
Added one-line log format
930
        log_format = 'long'
931
        if short:
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
932
            log_format = 'short'
1185.12.25 by Aaron Bentley
Added one-line log format
933
        if line:
934
            log_format = 'line'
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
935
        lf = log_formatter(log_format,
936
                           show_ids=show_ids,
937
                           to_file=outf,
938
                           show_timezone=timezone)
939
940
        show_log(b,
941
                 lf,
942
                 file_id,
943
                 verbose=verbose,
944
                 direction=direction,
945
                 start_revision=rev1,
946
                 end_revision=rev2,
947
                 search=message)
948
949
950
951
class cmd_touching_revisions(Command):
952
    """Return revision-ids which affected a particular file.
953
954
    A more user-friendly interface is "bzr log FILE"."""
955
    hidden = True
956
    takes_args = ["filename"]
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
957
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
958
    def run(self, filename):
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
959
        tree, relpath = WorkingTree.open_containing(filename)
960
        b = tree.branch
961
        inv = tree.read_working_inventory()
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
962
        file_id = inv.path2id(relpath)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
963
        for revno, revision_id, what in bzrlib.log.find_touching_revisions(b, file_id):
964
            print "%6d %s" % (revno, what)
965
966
967
class cmd_ls(Command):
968
    """List files in a tree.
969
    """
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
970
    # TODO: Take a revision or remote path and list that tree instead.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
971
    hidden = True
1185.26.1 by John Arbash Meinel
Made ls work again, and take extra arguments.
972
    takes_options = ['verbose', 'revision',
973
                     Option('non-recursive',
974
                            help='don\'t recurse into sub-directories'),
975
                     Option('from-root',
976
                            help='Print all paths from the root of the branch.'),
977
                     Option('unknown', help='Print unknown files'),
978
                     Option('versioned', help='Print versioned files'),
979
                     Option('ignored', help='Print ignored files'),
980
981
                     Option('null', help='Null separate the files'),
982
                    ]
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
983
    @display_command
1185.26.1 by John Arbash Meinel
Made ls work again, and take extra arguments.
984
    def run(self, revision=None, verbose=False, 
985
            non_recursive=False, from_root=False,
986
            unknown=False, versioned=False, ignored=False,
987
            null=False):
988
989
        if verbose and null:
990
            raise BzrCommandError('Cannot set both --verbose and --null')
991
        all = not (unknown or versioned or ignored)
992
993
        selection = {'I':ignored, '?':unknown, 'V':versioned}
994
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
995
        tree, relpath = WorkingTree.open_containing(u'.')
1185.26.1 by John Arbash Meinel
Made ls work again, and take extra arguments.
996
        if from_root:
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
997
            relpath = u''
1185.26.1 by John Arbash Meinel
Made ls work again, and take extra arguments.
998
        elif relpath:
999
            relpath += '/'
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1000
        if revision is not None:
1001
            tree = tree.branch.revision_tree(
1002
                revision[0].in_history(tree.branch).rev_id)
1399.1.2 by Robert Collins
push kind character creation into InventoryEntry and TreeEntry
1003
        for fp, fc, kind, fid, entry in tree.list_files():
1185.26.1 by John Arbash Meinel
Made ls work again, and take extra arguments.
1004
            if fp.startswith(relpath):
1005
                fp = fp[len(relpath):]
1006
                if non_recursive and '/' in fp:
1007
                    continue
1008
                if not all and not selection[fc]:
1009
                    continue
1010
                if verbose:
1011
                    kindch = entry.kind_character()
1012
                    print '%-8s %s%s' % (fc, fp, kindch)
1013
                elif null:
1014
                    sys.stdout.write(fp)
1015
                    sys.stdout.write('\0')
1016
                    sys.stdout.flush()
1017
                else:
1018
                    print fp
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1019
1020
1021
class cmd_unknowns(Command):
1022
    """List unknown files."""
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1023
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1024
    def run(self):
1025
        from bzrlib.osutils import quotefn
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1026
        for f in WorkingTree.open_containing(u'.')[0].unknowns():
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1027
            print quotefn(f)
1028
1029
1030
class cmd_ignore(Command):
1031
    """Ignore a command or pattern.
1032
1033
    To remove patterns from the ignore list, edit the .bzrignore file.
1034
1035
    If the pattern contains a slash, it is compared to the whole path
1185.16.4 by Martin Pool
- doc and todo for ignore command
1036
    from the branch root.  Otherwise, it is compared to only the last
1037
    component of the path.  To match a file only in the root directory,
1038
    prepend './'.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1039
1040
    Ignore patterns are case-insensitive on case-insensitive systems.
1041
1042
    Note: wildcards must be quoted from the shell on Unix.
1043
1044
    examples:
1045
        bzr ignore ./Makefile
1046
        bzr ignore '*.class'
1047
    """
1185.16.4 by Martin Pool
- doc and todo for ignore command
1048
    # TODO: Complain if the filename is absolute
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1049
    takes_args = ['name_pattern']
1050
    
1051
    def run(self, name_pattern):
1052
        from bzrlib.atomicfile import AtomicFile
1053
        import os.path
1054
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1055
        tree, relpath = WorkingTree.open_containing(u'.')
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1056
        ifn = tree.abspath('.bzrignore')
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1057
1058
        if os.path.exists(ifn):
1059
            f = open(ifn, 'rt')
1060
            try:
1061
                igns = f.read().decode('utf-8')
1062
            finally:
1063
                f.close()
1064
        else:
1065
            igns = ''
1066
1067
        # TODO: If the file already uses crlf-style termination, maybe
1068
        # we should use that for the newly added lines?
1069
1070
        if igns and igns[-1] != '\n':
1071
            igns += '\n'
1072
        igns += name_pattern + '\n'
1073
1074
        try:
1075
            f = AtomicFile(ifn, 'wt')
1076
            f.write(igns.encode('utf-8'))
1077
            f.commit()
1078
        finally:
1079
            f.close()
1080
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1081
        inv = tree.inventory
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1082
        if inv.path2id('.bzrignore'):
1083
            mutter('.bzrignore is already versioned')
1084
        else:
1085
            mutter('need to make new .bzrignore file versioned')
1508.1.5 by Robert Collins
Move add from Branch to WorkingTree.
1086
            tree.add(['.bzrignore'])
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1087
1088
1089
class cmd_ignored(Command):
1090
    """List ignored files and the patterns that matched them.
1091
1092
    See also: bzr ignore"""
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1093
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1094
    def run(self):
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1095
        tree = WorkingTree.open_containing(u'.')[0]
1399.1.2 by Robert Collins
push kind character creation into InventoryEntry and TreeEntry
1096
        for path, file_class, kind, file_id, entry in tree.list_files():
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1097
            if file_class != 'I':
1098
                continue
1099
            ## XXX: Slightly inefficient since this was already calculated
1100
            pat = tree.is_ignored(path)
1101
            print '%-50s %s' % (path, pat)
1102
1103
1104
class cmd_lookup_revision(Command):
1105
    """Lookup the revision-id from a revision-number
1106
1107
    example:
1108
        bzr lookup-revision 33
1109
    """
1110
    hidden = True
1111
    takes_args = ['revno']
1112
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1113
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1114
    def run(self, revno):
1115
        try:
1116
            revno = int(revno)
1117
        except ValueError:
1118
            raise BzrCommandError("not a valid revision-number: %r" % revno)
1119
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1120
        print WorkingTree.open_containing(u'.')[0].branch.get_rev_id(revno)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1121
1122
1123
class cmd_export(Command):
1124
    """Export past revision to destination directory.
1125
1126
    If no revision is specified this exports the last committed revision.
1127
1128
    Format may be an "exporter" name, such as tar, tgz, tbz2.  If none is
1129
    given, try to find the format with the extension. If no extension
1130
    is found exports to a directory (equivalent to --format=dir).
1131
1132
    Root may be the top directory for tar, tgz and tbz2 formats. If none
1185.31.11 by John Arbash Meinel
Merging Alexander's zip export patch
1133
    is given, the top directory will be the root name of the file.
1134
1135
    Note: export of tree with non-ascii filenames to zip is not supported.
1136
1137
    Supported formats       Autodetected by extension
1138
    -----------------       -------------------------
1139
         dir                            -
1140
         tar                          .tar
1141
         tbz2                    .tar.bz2, .tbz2
1142
         tgz                      .tar.gz, .tgz
1143
         zip                          .zip
1144
    """
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1145
    takes_args = ['dest']
1146
    takes_options = ['revision', 'format', 'root']
1147
    def run(self, dest, revision=None, format=None, root=None):
1148
        import os.path
1185.31.12 by John Arbash Meinel
Refactored the export code to make it easier to add new export formats.
1149
        from bzrlib.export import export
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1150
        tree = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1151
        b = tree.branch
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1152
        if revision is None:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1153
            # should be tree.last_revision  FIXME
1241 by Martin Pool
- rename last_patch to last_revision
1154
            rev_id = b.last_revision()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1155
        else:
1156
            if len(revision) != 1:
1157
                raise BzrError('bzr export --revision takes exactly 1 argument')
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
1158
            rev_id = revision[0].in_history(b).rev_id
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1159
        t = b.revision_tree(rev_id)
1185.31.12 by John Arbash Meinel
Refactored the export code to make it easier to add new export formats.
1160
        try:
1161
            export(t, dest, format, root)
1162
        except errors.NoSuchExportFormat, e:
1163
            raise BzrCommandError('Unsupported export format: %s' % e.format)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1164
1165
1166
class cmd_cat(Command):
1167
    """Write a file's text from a previous revision."""
1168
1169
    takes_options = ['revision']
1170
    takes_args = ['filename']
1171
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1172
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1173
    def run(self, filename, revision=None):
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
1174
        if revision is None:
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1175
            raise BzrCommandError("bzr cat requires a revision number")
1176
        elif len(revision) != 1:
1177
            raise BzrCommandError("bzr cat --revision takes exactly one number")
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1178
        tree = None
1179
        try:
1180
            tree, relpath = WorkingTree.open_containing(filename)
1181
            b = tree.branch
1182
        except NotBranchError:
1183
            pass
1184
        if tree is None:
1185
            b, relpath = Branch.open_containing(filename)
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
1186
        b.print_file(relpath, revision[0].in_history(b).revno)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1187
1188
1189
class cmd_local_time_offset(Command):
1190
    """Show the offset in seconds from GMT to local time."""
1191
    hidden = True    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1192
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1193
    def run(self):
1194
        print bzrlib.osutils.local_time_offset()
1195
1196
1197
1198
class cmd_commit(Command):
1199
    """Commit changes into a new revision.
1200
    
1201
    If no arguments are given, the entire tree is committed.
1202
1203
    If selected files are specified, only changes to those files are
1204
    committed.  If a directory is specified then the directory and everything 
1205
    within it is committed.
1206
1207
    A selected-file commit may fail in some cases where the committed
1208
    tree would be invalid, such as trying to commit a file in a
1209
    newly-added directory that is not itself committed.
1210
    """
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
1211
    # TODO: Run hooks on tree to-be-committed, and after commit.
1212
1185.16.65 by mbp at sourcefrog
- new commit --strict option
1213
    # TODO: Strict commit that fails if there are deleted files.
1214
    #       (what does "deleted files" mean ??)
1215
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
1216
    # TODO: Give better message for -s, --summary, used by tla people
1217
1218
    # XXX: verbose currently does nothing
1219
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1220
    takes_args = ['selected*']
1185.16.48 by mbp at sourcefrog
- more refactoring of and tests for option parsing
1221
    takes_options = ['message', 'verbose', 
1222
                     Option('unchanged',
1223
                            help='commit even if nothing has changed'),
1224
                     Option('file', type=str, 
1225
                            argname='msgfile',
1226
                            help='file containing commit message'),
1185.16.65 by mbp at sourcefrog
- new commit --strict option
1227
                     Option('strict',
1228
                            help="refuse to commit if there are unknown "
1229
                            "files in the working tree."),
1185.16.43 by Martin Pool
- clean up handling of option objects
1230
                     ]
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1231
    aliases = ['ci', 'checkin']
1232
1233
    def run(self, message=None, file=None, verbose=True, selected_list=None,
1185.16.65 by mbp at sourcefrog
- new commit --strict option
1234
            unchanged=False, strict=False):
1235
        from bzrlib.errors import (PointlessCommit, ConflictsInTree,
1236
                StrictCommitFailed)
1167 by Martin Pool
- split commit message editor functions out into own file
1237
        from bzrlib.msgeditor import edit_commit_message
1169 by Martin Pool
- clean up nasty code for inserting the status summary into commit template
1238
        from bzrlib.status import show_status
1239
        from cStringIO import StringIO
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1240
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1241
        tree, selected_list = tree_files(selected_list)
1414 by Robert Collins
merge in an adjusted version of Jelmer's empty-log detection patch.
1242
        if message is None and not file:
1169 by Martin Pool
- clean up nasty code for inserting the status summary into commit template
1243
            catcher = StringIO()
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1244
            show_status(tree.branch, specific_files=selected_list,
1169 by Martin Pool
- clean up nasty code for inserting the status summary into commit template
1245
                        to_file=catcher)
1246
            message = edit_commit_message(catcher.getvalue())
1393.3.2 by Jelmer Vernooij
Fix error message when an empty commit message was specified (when using an editor). Previously bzr warned that it wanted either --message or --file.
1247
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1248
            if message is None:
1169 by Martin Pool
- clean up nasty code for inserting the status summary into commit template
1249
                raise BzrCommandError("please specify a commit message"
1250
                                      " with either --message or --file")
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1251
        elif message and file:
1252
            raise BzrCommandError("please specify either --message or --file")
1253
        
1254
        if file:
1255
            import codecs
1256
            message = codecs.open(file, 'rt', bzrlib.user_encoding).read()
1257
1414 by Robert Collins
merge in an adjusted version of Jelmer's empty-log detection patch.
1258
        if message == "":
1259
                raise BzrCommandError("empty commit message specified")
1260
            
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1261
        try:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1262
            tree.commit(message, specific_files=selected_list,
1263
                        allow_pointless=unchanged, strict=strict)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1264
        except PointlessCommit:
1265
            # FIXME: This should really happen before the file is read in;
1266
            # perhaps prepare the commit; get the message; then actually commit
1267
            raise BzrCommandError("no changes to commit",
1268
                                  ["use --unchanged to commit anyhow"])
1185.14.10 by Aaron Bentley
Commit aborts with conflicts in the tree.
1269
        except ConflictsInTree:
1270
            raise BzrCommandError("Conflicts detected in working tree.  "
1271
                'Use "bzr conflicts" to list, "bzr resolve FILE" to resolve.')
1185.16.65 by mbp at sourcefrog
- new commit --strict option
1272
        except StrictCommitFailed:
1273
            raise BzrCommandError("Commit refused because there are unknown "
1274
                                  "files in the working tree.")
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
1275
        note('Committed revision %d.' % (tree.branch.revno(),))
1185.33.44 by Martin Pool
[patch] show number of revisions pushed/pulled/merged (Robey Pointer)
1276
        
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1277
1278
class cmd_check(Command):
1279
    """Validate consistency of branch history.
1280
1281
    This command checks various invariants about the branch storage to
1282
    detect data corruption or bzr bugs.
1283
    """
1512 by Robert Collins
Merge from Martin. Adjust check to work with HTTP again.
1284
    takes_args = ['branch?']
1449 by Robert Collins
teach check about ghosts
1285
    takes_options = ['verbose']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1286
1512 by Robert Collins
Merge from Martin. Adjust check to work with HTTP again.
1287
    def run(self, branch=None, verbose=False):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1288
        from bzrlib.check import check
1512 by Robert Collins
Merge from Martin. Adjust check to work with HTTP again.
1289
        if branch is None:
1290
            tree = WorkingTree.open_containing()[0]
1291
            branch = tree.branch
1292
        else:
1293
            branch = Branch.open(branch)
1294
        check(branch, verbose)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1295
1296
1297
class cmd_scan_cache(Command):
1298
    hidden = True
1299
    def run(self):
1300
        from bzrlib.hashcache import HashCache
1301
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1302
        c = HashCache(u'.')
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1303
        c.read()
1304
        c.scan()
1305
            
1306
        print '%6d stats' % c.stat_count
1307
        print '%6d in hashcache' % len(c._cache)
1308
        print '%6d files removed from cache' % c.removed_count
1309
        print '%6d hashes updated' % c.update_count
1310
        print '%6d files changed too recently to cache' % c.danger_count
1311
1312
        if c.needs_write:
1313
            c.write()
1314
            
1315
1316
1317
class cmd_upgrade(Command):
1318
    """Upgrade branch storage to current format.
1319
1320
    The check command or bzr developers may sometimes advise you to run
1321
    this command.
1377 by Martin Pool
- run conversion to weaves from the 'bzr upgrade' command
1322
1323
    This version of this command upgrades from the full-text storage
1324
    used by bzr 0.0.8 and earlier to the weave format (v5).
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1325
    """
1326
    takes_args = ['dir?']
1327
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1328
    def run(self, dir=u'.'):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1329
        from bzrlib.upgrade import upgrade
1377 by Martin Pool
- run conversion to weaves from the 'bzr upgrade' command
1330
        upgrade(dir)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1331
1332
1333
class cmd_whoami(Command):
1334
    """Show bzr user id."""
1335
    takes_options = ['email']
1336
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1337
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1338
    def run(self, email=False):
1371 by Martin Pool
- raise NotBranchError if format file can't be read
1339
        try:
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1340
            b = WorkingTree.open_containing(u'.')[0].branch
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
1341
            config = bzrlib.config.BranchConfig(b)
1371 by Martin Pool
- raise NotBranchError if format file can't be read
1342
        except NotBranchError:
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
1343
            config = bzrlib.config.GlobalConfig()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1344
        
1345
        if email:
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
1346
            print config.user_email()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1347
        else:
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
1348
            print config.username()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1349
1185.35.14 by Aaron Bentley
Implemented nick command
1350
class cmd_nick(Command):
1351
    """\
1352
    Print or set the branch nickname.  
1353
    If unset, the tree root directory name is used as the nickname
1354
    To print the current nickname, execute with no argument.  
1355
    """
1356
    takes_args = ['nickname?']
1357
    def run(self, nickname=None):
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1358
        branch = Branch.open_containing(u'.')[0]
1185.35.14 by Aaron Bentley
Implemented nick command
1359
        if nickname is None:
1360
            self.printme(branch)
1361
        else:
1362
            branch.nick = nickname
1363
1364
    @display_command
1365
    def printme(self, branch):
1366
        print branch.nick 
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1367
1368
class cmd_selftest(Command):
1393.1.46 by Martin Pool
- bzr selftest arguments can be partial ids of tests to run
1369
    """Run internal test suite.
1370
    
1371
    This creates temporary test directories in the working directory,
1372
    but not existing data is affected.  These directories are deleted
1373
    if the tests pass, or left behind to help in debugging if they
1185.35.20 by Aaron Bentley
Only keep test failure directories if --keep-output is specified
1374
    fail and --keep-output is specified.
1393.1.46 by Martin Pool
- bzr selftest arguments can be partial ids of tests to run
1375
    
1376
    If arguments are given, they are regular expressions that say
1185.16.58 by mbp at sourcefrog
- run all selftests by default
1377
    which tests should run.
1378
    """
1393.1.46 by Martin Pool
- bzr selftest arguments can be partial ids of tests to run
1379
    # TODO: --list should give a list of all available tests
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1380
    hidden = True
1185.1.57 by Robert Collins
nuke --pattern to selftest, replace with regexp.search calls.
1381
    takes_args = ['testspecs*']
1185.16.58 by mbp at sourcefrog
- run all selftests by default
1382
    takes_options = ['verbose', 
1383
                     Option('one', help='stop when one test fails'),
1185.35.20 by Aaron Bentley
Only keep test failure directories if --keep-output is specified
1384
                     Option('keep-output', 
1385
                            help='keep output directories when tests fail')
1185.16.58 by mbp at sourcefrog
- run all selftests by default
1386
                    ]
1387
1185.35.20 by Aaron Bentley
Only keep test failure directories if --keep-output is specified
1388
    def run(self, testspecs_list=None, verbose=False, one=False,
1389
            keep_output=False):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1390
        import bzrlib.ui
1185.31.25 by John Arbash Meinel
Renamed all of the tests from selftest/foo.py to tests/test_foo.py
1391
        from bzrlib.tests import selftest
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1392
        # we don't want progress meters from the tests to go to the
1393
        # real output; and we don't want log messages cluttering up
1394
        # the real logs.
1395
        save_ui = bzrlib.ui.ui_factory
1396
        bzrlib.trace.info('running tests...')
1397
        try:
1398
            bzrlib.ui.ui_factory = bzrlib.ui.SilentUIFactory()
1185.1.57 by Robert Collins
nuke --pattern to selftest, replace with regexp.search calls.
1399
            if testspecs_list is not None:
1400
                pattern = '|'.join(testspecs_list)
1401
            else:
1402
                pattern = ".*"
1393.1.46 by Martin Pool
- bzr selftest arguments can be partial ids of tests to run
1403
            result = selftest(verbose=verbose, 
1185.16.58 by mbp at sourcefrog
- run all selftests by default
1404
                              pattern=pattern,
1185.35.20 by Aaron Bentley
Only keep test failure directories if --keep-output is specified
1405
                              stop_on_failure=one, 
1406
                              keep_output=keep_output)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1407
            if result:
1408
                bzrlib.trace.info('tests passed')
1409
            else:
1410
                bzrlib.trace.info('tests failed')
1411
            return int(not result)
1412
        finally:
1413
            bzrlib.ui.ui_factory = save_ui
1414
1415
1416
def show_version():
1417
    print "bzr (bazaar-ng) %s" % bzrlib.__version__
1418
    # is bzrlib itself in a branch?
1419
    bzrrev = bzrlib.get_bzr_revision()
1420
    if bzrrev:
1421
        print "  (bzr checkout, revision %d {%s})" % bzrrev
1422
    print bzrlib.__copyright__
1423
    print "http://bazaar-ng.org/"
1424
    print
1425
    print "bzr comes with ABSOLUTELY NO WARRANTY.  bzr is free software, and"
1426
    print "you may use, modify and redistribute it under the terms of the GNU"
1427
    print "General Public License version 2 or later."
1428
1429
1430
class cmd_version(Command):
1431
    """Show version of bzr."""
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1432
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1433
    def run(self):
1434
        show_version()
1435
1436
class cmd_rocks(Command):
1437
    """Statement of optimism."""
1438
    hidden = True
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1439
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1440
    def run(self):
1441
        print "it sure does!"
1442
1443
1444
class cmd_find_merge_base(Command):
1445
    """Find and print a base revision for merging two branches.
1446
    """
1185.16.3 by Martin Pool
- remove all TODOs from bzr help messages
1447
    # TODO: Options to specify revisions on either side, as if
1448
    #       merging only part of the history.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1449
    takes_args = ['branch', 'other']
1450
    hidden = True
1451
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1452
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1453
    def run(self, branch, other):
1155 by Martin Pool
- update find-merge-base to use new common_ancestor code
1454
        from bzrlib.revision import common_ancestor, MultipleRevisionSources
1455
        
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
1456
        branch1 = Branch.open_containing(branch)[0]
1457
        branch2 = Branch.open_containing(other)[0]
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1458
1155 by Martin Pool
- update find-merge-base to use new common_ancestor code
1459
        history_1 = branch1.revision_history()
1460
        history_2 = branch2.revision_history()
1461
1241 by Martin Pool
- rename last_patch to last_revision
1462
        last1 = branch1.last_revision()
1463
        last2 = branch2.last_revision()
1155 by Martin Pool
- update find-merge-base to use new common_ancestor code
1464
1465
        source = MultipleRevisionSources(branch1, branch2)
1466
        
1467
        base_rev_id = common_ancestor(last1, last2, source)
1468
1469
        print 'merge base is revision %s' % base_rev_id
1470
        
1471
        return
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1472
1473
        if base_revno is None:
1474
            raise bzrlib.errors.UnrelatedBranches()
1475
1476
        print ' r%-6d in %s' % (base_revno, branch)
1477
1478
        other_revno = branch2.revision_id_to_revno(base_revid)
1479
        
1480
        print ' r%-6d in %s' % (other_revno, other)
1481
1482
1483
1484
class cmd_merge(Command):
1485
    """Perform a three-way merge.
1486
    
1172 by Martin Pool
- better explanation when merge fails with AmbiguousBase
1487
    The branch is the branch you will merge from.  By default, it will
1488
    merge the latest revision.  If you specify a revision, that
1489
    revision will be merged.  If you specify two revisions, the first
1490
    will be used as a BASE, and the second one as OTHER.  Revision
1491
    numbers are always relative to the specified branch.
1492
1493
    By default bzr will try to merge in all new work from the other
1494
    branch, automatically determining an appropriate base.  If this
1495
    fails, you may need to give an explicit base.
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1496
    
1497
    Examples:
1498
1499
    To merge the latest revision from bzr.dev
1500
    bzr merge ../bzr.dev
1501
1502
    To merge changes up to and including revision 82 from bzr.dev
1503
    bzr merge -r 82 ../bzr.dev
1504
1505
    To merge the changes introduced by 82, without previous changes:
1506
    bzr merge -r 81..82 ../bzr.dev
1507
    
1508
    merge refuses to run if there are any uncommitted changes, unless
1509
    --force is given.
1510
    """
1511
    takes_args = ['branch?']
1185.24.3 by Aaron Bentley
Integrated reprocessing into the rest of the merge stuff
1512
    takes_options = ['revision', 'force', 'merge-type', 'reprocess',
1185.18.1 by Aaron Bentley
Added --show-base to merge
1513
                     Option('show-base', help="Show base revision text in "
1514
                            "conflicts")]
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1515
1185.18.1 by Aaron Bentley
Added --show-base to merge
1516
    def run(self, branch=None, revision=None, force=False, merge_type=None,
1185.24.3 by Aaron Bentley
Integrated reprocessing into the rest of the merge stuff
1517
            show_base=False, reprocess=False):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1518
        from bzrlib.merge import merge
1519
        from bzrlib.merge_core import ApplyMerge3
1520
        if merge_type is None:
1521
            merge_type = ApplyMerge3
1185.12.12 by Aaron Bentley
Made merge use pull location or die if no branch specified.
1522
        if branch is None:
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1523
            branch = WorkingTree.open_containing(u'.')[0].branch.get_parent()
1185.12.12 by Aaron Bentley
Made merge use pull location or die if no branch specified.
1524
            if branch is None:
1525
                raise BzrCommandError("No merge location known or specified.")
1526
            else:
1527
                print "Using saved location: %s" % branch 
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1528
        if revision is None or len(revision) < 1:
1529
            base = [None, None]
974.1.52 by aaron.bentley at utoronto
Merged mpool's latest changes (~0.0.7)
1530
            other = [branch, -1]
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1531
        else:
1532
            if len(revision) == 1:
974.1.52 by aaron.bentley at utoronto
Merged mpool's latest changes (~0.0.7)
1533
                base = [None, None]
1185.12.53 by Aaron Bentley
Merged more from Robert
1534
                other_branch = Branch.open_containing(branch)[0]
1185.12.46 by Aaron Bentley
Fixed -r brokenness in merge
1535
                revno = revision[0].in_history(other_branch).revno
1536
                other = [branch, revno]
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1537
            else:
1538
                assert len(revision) == 2
1539
                if None in revision:
1540
                    raise BzrCommandError(
1541
                        "Merge doesn't permit that revision specifier.")
1185.12.53 by Aaron Bentley
Merged more from Robert
1542
                b = Branch.open_containing(branch)[0]
1185.5.1 by John Arbash Meinel
Applying bad-merge revision patch.
1543
1544
                base = [branch, revision[0].in_history(b).revno]
1545
                other = [branch, revision[1].in_history(b).revno]
1172 by Martin Pool
- better explanation when merge fails with AmbiguousBase
1546
1547
        try:
1476 by Robert Collins
Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
1548
            conflict_count = merge(other, base, check_clean=(not force),
1185.24.3 by Aaron Bentley
Integrated reprocessing into the rest of the merge stuff
1549
                                   merge_type=merge_type, reprocess=reprocess,
1476 by Robert Collins
Merge now has a retcode of 1 when conflicts occur. (Robert Collins)
1550
                                   show_base=show_base)
1551
            if conflict_count != 0:
1552
                return 1
1553
            else:
1554
                return 0
1172 by Martin Pool
- better explanation when merge fails with AmbiguousBase
1555
        except bzrlib.errors.AmbiguousBase, e:
1173 by Martin Pool
- message typo
1556
            m = ("sorry, bzr can't determine the right merge base yet\n"
1172 by Martin Pool
- better explanation when merge fails with AmbiguousBase
1557
                 "candidates are:\n  "
1558
                 + "\n  ".join(e.bases)
1559
                 + "\n"
1560
                 "please specify an explicit base with -r,\n"
1561
                 "and (if you want) report this to the bzr developers\n")
1562
            log_error(m)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1563
1564
1185.35.4 by Aaron Bentley
Implemented remerge
1565
class cmd_remerge(Command):
1566
    """Redo a merge.
1567
    """
1568
    takes_args = ['file*']
1569
    takes_options = ['merge-type', 'reprocess',
1570
                     Option('show-base', help="Show base revision text in "
1571
                            "conflicts")]
1572
1573
    def run(self, file_list=None, merge_type=None, show_base=False,
1574
            reprocess=False):
1575
        from bzrlib.merge import merge_inner, transform_tree
1576
        from bzrlib.merge_core import ApplyMerge3
1577
        if merge_type is None:
1578
            merge_type = ApplyMerge3
1508.1.15 by Robert Collins
Merge from mpool.
1579
        tree, file_list = tree_files(file_list)
1580
        tree.lock_write()
1185.35.4 by Aaron Bentley
Implemented remerge
1581
        try:
1508.1.15 by Robert Collins
Merge from mpool.
1582
            pending_merges = tree.pending_merges() 
1185.35.4 by Aaron Bentley
Implemented remerge
1583
            if len(pending_merges) != 1:
1584
                raise BzrCommandError("Sorry, remerge only works after normal"
1585
                                      + " merges.  Not cherrypicking or"
1586
                                      + "multi-merges.")
1508.1.15 by Robert Collins
Merge from mpool.
1587
            base_revision = common_ancestor(tree.branch.last_revision(), 
1588
                                            pending_merges[0], tree.branch)
1589
            base_tree = tree.branch.revision_tree(base_revision)
1590
            other_tree = tree.branch.revision_tree(pending_merges[0])
1185.35.4 by Aaron Bentley
Implemented remerge
1591
            interesting_ids = None
1592
            if file_list is not None:
1593
                interesting_ids = set()
1594
                for filename in file_list:
1508.1.15 by Robert Collins
Merge from mpool.
1595
                    file_id = tree.path2id(filename)
1185.35.4 by Aaron Bentley
Implemented remerge
1596
                    interesting_ids.add(file_id)
1508.1.15 by Robert Collins
Merge from mpool.
1597
                    if tree.kind(file_id) != "directory":
1185.35.4 by Aaron Bentley
Implemented remerge
1598
                        continue
1185.35.13 by Aaron Bentley
Merged Martin
1599
                    
1508.1.15 by Robert Collins
Merge from mpool.
1600
                    for name, ie in tree.inventory.iter_entries(file_id):
1185.35.4 by Aaron Bentley
Implemented remerge
1601
                        interesting_ids.add(ie.file_id)
1508.1.15 by Robert Collins
Merge from mpool.
1602
            transform_tree(tree, tree.branch.basis_tree(), interesting_ids)
1185.35.4 by Aaron Bentley
Implemented remerge
1603
            if file_list is None:
1508.1.15 by Robert Collins
Merge from mpool.
1604
                restore_files = list(tree.iter_conflicts())
1185.35.4 by Aaron Bentley
Implemented remerge
1605
            else:
1606
                restore_files = file_list
1607
            for filename in restore_files:
1608
                try:
1508.1.15 by Robert Collins
Merge from mpool.
1609
                    restore(tree.abspath(filename))
1185.35.4 by Aaron Bentley
Implemented remerge
1610
                except NotConflicted:
1611
                    pass
1508.1.15 by Robert Collins
Merge from mpool.
1612
            conflicts =  merge_inner(tree.branch, other_tree, base_tree, 
1185.35.4 by Aaron Bentley
Implemented remerge
1613
                                     interesting_ids = interesting_ids, 
1614
                                     other_rev_id=pending_merges[0], 
1615
                                     merge_type=merge_type, 
1616
                                     show_base=show_base,
1617
                                     reprocess=reprocess)
1618
        finally:
1508.1.15 by Robert Collins
Merge from mpool.
1619
            tree.unlock()
1185.35.4 by Aaron Bentley
Implemented remerge
1620
        if conflicts > 0:
1621
            return 1
1622
        else:
1623
            return 0
1624
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1625
class cmd_revert(Command):
1626
    """Reverse all changes since the last commit.
1627
1628
    Only versioned files are affected.  Specify filenames to revert only 
1629
    those files.  By default, any files that are changed will be backed up
1630
    first.  Backup files have a '~' appended to their name.
1631
    """
1632
    takes_options = ['revision', 'no-backup']
1633
    takes_args = ['file*']
1634
    aliases = ['merge-revert']
1635
1636
    def run(self, revision=None, no_backup=False, file_list=None):
1457.1.7 by Robert Collins
Change cmd_revert to use merge_inner.
1637
        from bzrlib.merge import merge_inner
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1638
        from bzrlib.commands import parse_spec
1639
        if file_list is not None:
1640
            if len(file_list) == 0:
1641
                raise BzrCommandError("No files specified")
1457.1.9 by Robert Collins
Change cmd_revert implementation to call workingtree.Revert.
1642
        else:
1643
            file_list = []
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1644
        if revision is None:
1185.5.8 by John Arbash Meinel
Fixed bzr revert with the new RevisionSpec code.
1645
            revno = -1
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1646
            tree = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1647
            # FIXME should be tree.last_revision
1648
            rev_id = tree.branch.last_revision()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1649
        elif len(revision) != 1:
1650
            raise BzrCommandError('bzr revert --revision takes exactly 1 argument')
1185.5.8 by John Arbash Meinel
Fixed bzr revert with the new RevisionSpec code.
1651
        else:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1652
            tree, file_list = tree_files(file_list)
1653
            rev_id = revision[0].in_history(tree.branch).rev_id
1654
        tree.revert(file_list, tree.branch.revision_tree(rev_id),
1457.1.9 by Robert Collins
Change cmd_revert implementation to call workingtree.Revert.
1655
                                not no_backup)
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1656
1657
1658
class cmd_assert_fail(Command):
1659
    """Test reporting of assertion failures"""
1660
    hidden = True
1661
    def run(self):
1662
        assert False, "always fails"
1663
1664
1665
class cmd_help(Command):
1666
    """Show help on a command or other topic.
1667
1668
    For a list of all available commands, say 'bzr help commands'."""
1669
    takes_options = ['long']
1670
    takes_args = ['topic?']
1671
    aliases = ['?']
1672
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1673
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1674
    def run(self, topic=None, long=False):
1675
        import help
1676
        if topic is None and long:
1677
            topic = "commands"
1678
        help.help(topic)
1679
1680
1681
class cmd_shell_complete(Command):
1682
    """Show appropriate completions for context.
1683
1684
    For a list of all available commands, say 'bzr shell-complete'."""
1685
    takes_args = ['context?']
1686
    aliases = ['s-c']
1687
    hidden = True
1688
    
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1689
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1690
    def run(self, context=None):
1691
        import shellcomplete
1692
        shellcomplete.shellcomplete(context)
1693
1694
1228 by Martin Pool
- add fetch command as builtin
1695
class cmd_fetch(Command):
1696
    """Copy in history from another branch but don't merge it.
1697
1698
    This is an internal method used for pull and merge."""
1699
    hidden = True
1700
    takes_args = ['from_branch', 'to_branch']
1701
    def run(self, from_branch, to_branch):
1702
        from bzrlib.fetch import Fetcher
1703
        from bzrlib.branch import Branch
1185.16.100 by mbp at sourcefrog
Update fetch command for new Branch constructors.
1704
        from_b = Branch.open(from_branch)
1705
        to_b = Branch.open(to_branch)
1706
        from_b.lock_read()
1707
        try:
1708
            to_b.lock_write()
1709
            try:
1710
                Fetcher(to_b, from_b)
1711
            finally:
1712
                to_b.unlock()
1713
        finally:
1714
            from_b.unlock()
1228 by Martin Pool
- add fetch command as builtin
1715
1716
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1717
class cmd_missing(Command):
1718
    """What is missing in this branch relative to other branch.
1719
    """
1228 by Martin Pool
- add fetch command as builtin
1720
    # TODO: rewrite this in terms of ancestry so that it shows only
1721
    # unmerged things
1722
    
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1723
    takes_args = ['remote?']
1724
    aliases = ['mis', 'miss']
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
1725
    takes_options = ['verbose']
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1726
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1727
    @display_command
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
1728
    def run(self, remote=None, verbose=False):
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1729
        from bzrlib.errors import BzrCommandError
1149 by Martin Pool
- make get_parent() be a method of Branch; add simple tests for it
1730
        from bzrlib.missing import show_missing
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1731
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
1732
        if verbose and is_quiet():
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1733
            raise BzrCommandError('Cannot pass both quiet and verbose')
1734
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1735
        tree = WorkingTree.open_containing(u'.')[0]
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1736
        parent = tree.branch.get_parent()
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1737
        if remote is None:
1738
            if parent is None:
1739
                raise BzrCommandError("No missing location known or specified.")
1740
            else:
1185.33.42 by Martin Pool
[patch] make --quiet a global option (robey)
1741
                if not is_quiet():
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1742
                    print "Using last location: %s" % parent
1743
                remote = parent
1744
        elif parent is None:
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
1745
            # We only update parent if it did not exist, missing
1746
            # should not change the parent
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1747
            tree.branch.set_parent(remote)
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
1748
        br_remote = Branch.open_containing(remote)[0]
1185.33.45 by Martin Pool
[merge] refactoring of branch vs working tree, etc (robertc)
1749
        return show_missing(tree.branch, br_remote, verbose=verbose, 
1750
                            quiet=is_quiet())
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1751
1752
1753
class cmd_plugins(Command):
1754
    """List plugins"""
1755
    hidden = True
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1756
    @display_command
1147 by Martin Pool
- split builtin commands into separate module bzrlib.builtins;
1757
    def run(self):
1758
        import bzrlib.plugin
1759
        from inspect import getdoc
1760
        for plugin in bzrlib.plugin.all_plugins:
1761
            if hasattr(plugin, '__path__'):
1762
                print plugin.__path__[0]
1763
            elif hasattr(plugin, '__file__'):
1764
                print plugin.__file__
1765
            else:
1766
                print `plugin`
1767
                
1768
            d = getdoc(plugin)
1769
            if d:
1770
                print '\t', d.split('\n')[0]
1771
1772
1185.16.24 by Martin Pool
- add and test 'testament' builtin command
1773
class cmd_testament(Command):
1774
    """Show testament (signing-form) of a revision."""
1775
    takes_options = ['revision', 'long']
1776
    takes_args = ['branch?']
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1777
    @display_command
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1778
    def run(self, branch=u'.', revision=None, long=False):
1185.16.24 by Martin Pool
- add and test 'testament' builtin command
1779
        from bzrlib.testament import Testament
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1780
        b = WorkingTree.open_containing(branch)[0].branch
1185.16.24 by Martin Pool
- add and test 'testament' builtin command
1781
        b.lock_read()
1782
        try:
1783
            if revision is None:
1784
                rev_id = b.last_revision()
1785
            else:
1786
                rev_id = revision[0].in_history(b).rev_id
1787
            t = Testament.from_revision(b, rev_id)
1788
            if long:
1789
                sys.stdout.writelines(t.as_text_lines())
1790
            else:
1791
                sys.stdout.write(t.as_short_text())
1792
        finally:
1793
            b.unlock()
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1794
1795
1796
class cmd_annotate(Command):
1797
    """Show the origin of each line in a file.
1798
1185.16.53 by Martin Pool
- annotate improvements from Goffreddo, with extra bug fixes and tests
1799
    This prints out the given file with an annotation on the left side
1800
    indicating which revision, author and date introduced the change.
1801
1802
    If the origin is the same for a run of consecutive lines, it is 
1803
    shown only at the top, unless the --all option is given.
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1804
    """
1805
    # TODO: annotate directories; showing when each file was last changed
1806
    # TODO: annotate a previous version of a file
1185.16.53 by Martin Pool
- annotate improvements from Goffreddo, with extra bug fixes and tests
1807
    # TODO: if the working copy is modified, show annotations on that 
1808
    #       with new uncommitted lines marked
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1809
    aliases = ['blame', 'praise']
1810
    takes_args = ['filename']
1185.16.53 by Martin Pool
- annotate improvements from Goffreddo, with extra bug fixes and tests
1811
    takes_options = [Option('all', help='show annotations on all lines'),
1812
                     Option('long', help='show date in annotations'),
1813
                     ]
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1814
1185.12.56 by Aaron Bentley
Prevented display commands from printing broken pipe errors
1815
    @display_command
1185.16.53 by Martin Pool
- annotate improvements from Goffreddo, with extra bug fixes and tests
1816
    def run(self, filename, all=False, long=False):
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1817
        from bzrlib.annotate import annotate_file
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1818
        tree, relpath = WorkingTree.open_containing(filename)
1819
        branch = tree.branch
1820
        branch.lock_read()
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1821
        try:
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
1822
            file_id = tree.inventory.path2id(relpath)
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1823
            tree = branch.revision_tree(branch.last_revision())
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1824
            file_version = tree.inventory[file_id].revision
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1825
            annotate_file(branch, file_version, file_id, long, all, sys.stdout)
1185.16.32 by Martin Pool
- add a basic annotate built-in command
1826
        finally:
1508.1.4 by Robert Collins
Convert most of the front ends commands to use WorkingTree.open_containing
1827
            branch.unlock()
1185.16.33 by Martin Pool
- move 'conflict' and 'resolved' from shipped plugin to regular builtins
1828
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
1829
1830
class cmd_re_sign(Command):
1831
    """Create a digital signature for an existing revision."""
1832
    # TODO be able to replace existing ones.
1833
1834
    hidden = True # is this right ?
1835
    takes_args = ['revision_id?']
1836
    takes_options = ['revision']
1837
    
1838
    def run(self, revision_id=None, revision=None):
1839
        import bzrlib.config as config
1840
        import bzrlib.gpg as gpg
1841
        if revision_id is not None and revision is not None:
1842
            raise BzrCommandError('You can only supply one of revision_id or --revision')
1843
        if revision_id is None and revision is None:
1844
            raise BzrCommandError('You must supply either --revision or a revision_id')
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1845
        b = WorkingTree.open_containing(u'.')[0].branch
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
1846
        gpg_strategy = gpg.GPGStrategy(config.BranchConfig(b))
1847
        if revision_id is not None:
1442.1.60 by Robert Collins
gpg sign commits if the policy says we need to
1848
            b.sign_revision(revision_id, gpg_strategy)
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
1849
        elif revision is not None:
1483 by Robert Collins
BUGFIX: re-sign should accept ranges
1850
            if len(revision) == 1:
1851
                revno, rev_id = revision[0].in_history(b)
1442.1.60 by Robert Collins
gpg sign commits if the policy says we need to
1852
                b.sign_revision(rev_id, gpg_strategy)
1483 by Robert Collins
BUGFIX: re-sign should accept ranges
1853
            elif len(revision) == 2:
1854
                # are they both on rh- if so we can walk between them
1855
                # might be nice to have a range helper for arbitrary
1856
                # revision paths. hmm.
1857
                from_revno, from_revid = revision[0].in_history(b)
1858
                to_revno, to_revid = revision[1].in_history(b)
1859
                if to_revid is None:
1860
                    to_revno = b.revno()
1861
                if from_revno is None or to_revno is None:
1862
                    raise BzrCommandError('Cannot sign a range of non-revision-history revisions')
1863
                for revno in range(from_revno, to_revno + 1):
1864
                    b.sign_revision(b.get_rev_id(revno), gpg_strategy)
1865
            else:
1866
                raise BzrCommandError('Please supply either one revision, or a range.')
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
1867
1868
1185.31.24 by John Arbash Meinel
[merge] Added the uncommit plugin
1869
class cmd_uncommit(bzrlib.commands.Command):
1870
    """Remove the last committed revision.
1871
1872
    By supplying the --all flag, it will not only remove the entry 
1873
    from revision_history, but also remove all of the entries in the
1874
    stores.
1875
1876
    --verbose will print out what is being removed.
1877
    --dry-run will go through all the motions, but not actually
1878
    remove anything.
1879
    
1880
    In the future, uncommit will create a changeset, which can then
1881
    be re-applied.
1882
    """
1883
    takes_options = ['all', 'verbose', 'revision',
1884
                    Option('dry-run', help='Don\'t actually make changes'),
1885
                    Option('force', help='Say yes to all questions.')]
1886
    takes_args = ['location?']
1887
    aliases = []
1888
1889
    def run(self, location=None, all=False,
1890
            dry_run=False, verbose=False,
1891
            revision=None, force=False):
1892
        from bzrlib.branch import Branch
1893
        from bzrlib.log import log_formatter
1894
        import sys
1895
        from bzrlib.uncommit import uncommit
1896
1897
        if location is None:
1185.33.66 by Martin Pool
[patch] use unicode literals for all hardcoded paths (Alexander Belchenko)
1898
            location = u'.'
1185.31.24 by John Arbash Meinel
[merge] Added the uncommit plugin
1899
        b, relpath = Branch.open_containing(location)
1900
1901
        if revision is None:
1902
            revno = b.revno()
1903
            rev_id = b.last_revision()
1904
        else:
1905
            revno, rev_id = revision[0].in_history(b)
1906
        if rev_id is None:
1907
            print 'No revisions to uncommit.'
1908
1909
        for r in range(revno, b.revno()+1):
1910
            rev_id = b.get_rev_id(r)
1911
            lf = log_formatter('short', to_file=sys.stdout,show_timezone='original')
1912
            lf.show(r, b.get_revision(rev_id), None)
1913
1914
        if dry_run:
1915
            print 'Dry-run, pretending to remove the above revisions.'
1916
            if not force:
1917
                val = raw_input('Press <enter> to continue')
1918
        else:
1919
            print 'The above revision(s) will be removed.'
1920
            if not force:
1921
                val = raw_input('Are you sure [y/N]? ')
1922
                if val.lower() not in ('y', 'yes'):
1923
                    print 'Canceled'
1924
                    return 0
1925
1926
        uncommit(b, remove_files=all,
1927
                dry_run=dry_run, verbose=verbose,
1928
                revno=revno)
1929
1930
1185.16.33 by Martin Pool
- move 'conflict' and 'resolved' from shipped plugin to regular builtins
1931
# these get imported and then picked up by the scan for cmd_*
1932
# TODO: Some more consistent way to split command definitions across files;
1933
# we do need to load at least some information about them to know of 
1934
# aliases.
1185.35.4 by Aaron Bentley
Implemented remerge
1935
from bzrlib.conflicts import cmd_resolve, cmd_conflicts, restore