~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Martin Pool
  • Date: 2005-08-18 05:52:29 UTC
  • Revision ID: mbp@sourcefrog.net-20050818055229-cac46ebce364d04c
- avoid compiling REs at module load time

Show diffs side-by-side

added added

removed removed

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