~bzr-pqm/bzr/bzr.dev

1 by mbp at sourcefrog
import from baz patch-364
1
#! /usr/bin/python
2
3
4
# Copyright (C) 2004, 2005 by Martin Pool
5
# Copyright (C) 2005 by Canonical Ltd
6
7
8
# This program is free software; you can redistribute it and/or modify
9
# it under the terms of the GNU General Public License as published by
10
# the Free Software Foundation; either version 2 of the License, or
11
# (at your option) any later version.
12
13
# This program is distributed in the hope that it will be useful,
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
# GNU General Public License for more details.
17
18
# You should have received a copy of the GNU General Public License
19
# along with this program; if not, write to the Free Software
20
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
22
"""Bazaar-NG -- a free distributed version-control tool
23
24
**WARNING: THIS IS AN UNSTABLE DEVELOPMENT VERSION**
25
26
Current limitation include:
27
28
* Metadata format is not stable yet -- you may need to
29
  discard history in the future.
30
31
* No handling of subdirectories, symlinks or any non-text files.
32
33
* Insufficient error handling.
34
35
* Many commands unimplemented or partially implemented.
36
37
* Space-inefficient storage.
38
39
* No merge operators yet.
40
41
Interesting commands::
42
43
  bzr help
44
       Show summary help screen
45
  bzr version
46
       Show software version/licence/non-warranty.
47
  bzr init
48
       Start versioning the current directory
49
  bzr add FILE...
50
       Make files versioned.
51
  bzr log
52
       Show revision history.
53
  bzr diff
54
       Show changes from last revision to working copy.
55
  bzr commit -m 'MESSAGE'
56
       Store current state as new revision.
57
  bzr export REVNO DESTINATION
58
       Export the branch state at a previous version.
59
  bzr status
60
       Show summary of pending changes.
61
  bzr remove FILE...
62
       Make a file not versioned.
63
"""
64
65
# not currently working:
66
#  bzr check
67
#       Run internal consistency checks.
68
#  bzr info
69
#       Show some information about this branch.
70
71
72
73
__copyright__ = "Copyright 2005 Canonical Development Ltd."
74
__author__ = "Martin Pool <mbp@canonical.com>"
75
__docformat__ = "restructuredtext en"
76
__version__ = '0.0.0'
77
78
79
import sys, os, random, time, sha, sets, types, re, shutil, tempfile
80
import traceback, socket, fnmatch, difflib
81
from os import path
82
from sets import Set
83
from pprint import pprint
84
from stat import *
85
from glob import glob
86
87
import bzrlib
88
from bzrlib.store import ImmutableStore
89
from bzrlib.trace import mutter, note, log_error
90
from bzrlib.errors import bailout, BzrError
91
from bzrlib.osutils import quotefn, pumpfile, isdir, isfile
92
from bzrlib.tree import RevisionTree, EmptyTree, WorkingTree, Tree
93
from bzrlib.revision import Revision
94
from bzrlib import Branch, Inventory, InventoryEntry, ScratchBranch, BZRDIR, \
95
     format_date
96
97
BZR_DIFF_FORMAT = "## Bazaar-NG diff, format 0 ##\n"
98
BZR_PATCHNAME_FORMAT = 'cset:sha1:%s'
99
100
## standard representation
101
NONE_STRING = '(none)'
102
EMPTY = 'empty'
103
104
105
## TODO: Perhaps a different version of inventory commands that
106
## returns iterators...
107
108
## TODO: Perhaps an AtomicFile class that writes to a temporary file and then renames.
109
110
## TODO: Some kind of locking on branches.  Perhaps there should be a
111
## parameter to the branch object saying whether we want a read or
112
## write lock; release it from destructor.  Perhaps don't even need a
113
## read lock to look at immutable objects?
114
115
## TODO: Perhaps make UUIDs predictable in test mode to make it easier
116
## to compare output?
117
118
119
120
121
######################################################################
122
# check status
123
124
125
def cmd_status(all=False):
126
    """Display status summary.
127
128
    For each file there is a single line giving its file state and name.
129
    The name is that in the current revision unless it is deleted or
130
    missing, in which case the old name is shown.
131
132
    :todo: Don't show unchanged files unless ``--all`` is given?
133
    """
134
    Branch('.').show_status(show_all=all)
135
136
137
138
######################################################################
139
# examining history
140
def cmd_get_revision(revision_id):
141
    Branch('.').get_revision(revision_id).write_xml(sys.stdout)
142
143
144
def cmd_get_inventory(inventory_id):
145
    """Return inventory in XML by hash"""
146
    Branch('.').get_inventory(inventory_hash).write_xml(sys.stdout)
147
148
149
def cmd_get_revision_inventory(revision_id):
150
    """Output inventory for a revision."""
151
    b = Branch('.')
152
    b.get_revision_inventory(revision_id).write_xml(sys.stdout)
153
154
155
def cmd_get_file_text(text_id):
156
    """Get contents of a file by hash."""
157
    sf = Branch('.').text_store[text_id]
158
    pumpfile(sf, sys.stdout)
159
160
161
162
######################################################################
163
# commands
164
    
165
166
def cmd_revno():
167
    """Show number of revisions on this branch"""
168
    print Branch('.').revno()
169
    
170
171
def cmd_add(file_list, verbose=False):
172
    """Add specified files.
173
    
174
    Fails if the files are already added.
175
    """
176
    Branch('.').add(file_list, verbose=verbose)
177
178
179
def cmd_inventory(revision=None):
180
    """Show inventory of the current working copy."""
181
    ## TODO: Also optionally show a previous inventory
182
    ## TODO: Format options
183
    b = Branch('.')
184
    if revision == None:
185
        inv = b.read_working_inventory()
186
    else:
187
        inv = b.get_revision_inventory(b.lookup_revision(revision))
188
        
189
    for path, entry in inv.iter_entries():
190
        print '%-50s %s' % (entry.file_id, path)
191
192
193
194
def cmd_info():
195
    b = Branch('.')
196
    print 'branch format:', b.controlfile('branch-format', 'r').readline().rstrip('\n')
21 by mbp at sourcefrog
- bzr info: show summary information on branch history
197
198
    def plural(n, base='', pl=None):
199
        if n == 1:
200
            return base
201
        elif pl is not None:
202
            return pl
203
        else:
204
            return 's'
18 by mbp at sourcefrog
show count of versioned/unknown/ignored files
205
206
    count_version_dirs = 0
19 by mbp at sourcefrog
more information in info command
207
208
    count_status = {'A': 0, 'D': 0, 'M': 0, 'R': 0, '?': 0, 'I': 0, '.': 0}
209
    for st_tup in bzrlib.diff_trees(b.basis_tree(), b.working_tree()):
210
        fs = st_tup[0]
211
        count_status[fs] += 1
212
        if fs not in ['I', '?'] and st_tup[4] == 'directory':
213
            count_version_dirs += 1
214
215
    print
216
    print 'in the working tree:'
217
    for name, fs in (('unchanged', '.'),
218
                     ('modified', 'M'), ('added', 'A'), ('removed', 'D'),
219
                     ('renamed', 'R'), ('unknown', '?'), ('ignored', 'I'),
220
                     ):
221
        print '  %5d %s' % (count_status[fs], name)
21 by mbp at sourcefrog
- bzr info: show summary information on branch history
222
    print '  %5d versioned subdirector%s' % (count_version_dirs,
223
                                             plural(count_version_dirs, 'y', 'ies'))
224
225
    print
226
    print 'branch history:'
227
    history = b.revision_history()
228
    revno = len(history)
229
    print '  %5d revision%s' % (revno, plural(revno))
230
    committers = Set()
231
    for rev in history:
232
        committers.add(b.get_revision(rev).committer)
233
    print '  %5d committer%s' % (len(committers), plural(len(committers)))
234
    if revno > 0:
235
        firstrev = b.get_revision(history[0])
236
        age = int((time.time() - firstrev.timestamp) / 3600 / 24)
237
        print '  %5d day%s old' % (age, plural(age))
22 by mbp at sourcefrog
bzr info: show date of first and latest commit
238
        print '  first revision: %s' % format_date(firstrev.timestamp,
239
                                                 firstrev.timezone)
240
241
        lastrev = b.get_revision(history[-1])
242
        print '  latest revision: %s' % format_date(lastrev.timestamp,
243
                                                    lastrev.timezone)
244
        
21 by mbp at sourcefrog
- bzr info: show summary information on branch history
245
    
1 by mbp at sourcefrog
import from baz patch-364
246
247
248
def cmd_remove(file_list, verbose=False):
249
    Branch('.').remove(file_list, verbose=verbose)
250
251
252
253
def cmd_file_id(filename):
254
    i = Branch('.').read_working_inventory().path2id(filename)
255
    if i is None:
256
        bailout("%s is not a versioned file" % filename)
257
    else:
258
        print i
259
260
261
def cmd_find_filename(fileid):
262
    n = find_filename(fileid)
263
    if n is None:
264
        bailout("%s is not a live file id" % fileid)
265
    else:
266
        print n
267
268
269
def cmd_revision_history():
270
    for patchid in Branch('.').revision_history():
271
        print patchid
272
273
274
275
def cmd_init():
276
    # TODO: Check we're not already in a working directory?  At the
277
    # moment you'll get an ugly error.
278
    
279
    # TODO: What if we're in a subdirectory of a branch?  Would like
280
    # to allow that, but then the parent may need to understand that
281
    # the children have disappeared, or should they be versioned in
282
    # both?
283
284
    # TODO: Take an argument/option for branch name.
285
    Branch('.', init=True)
286
287
288
def cmd_diff(revision=None):
289
    """Show diff from basis to working copy.
290
291
    :todo: Take one or two revision arguments, look up those trees,
292
           and diff them.
293
294
    :todo: Allow diff across branches.
295
296
    :todo: Mangle filenames in diff to be more relevant.
297
298
    :todo: Shouldn't be in the cmd function.
299
    """
300
301
    b = Branch('.')
302
303
    if revision == None:
304
        old_tree = b.basis_tree()
305
    else:
306
        old_tree = b.revision_tree(b.lookup_revision(revision))
307
        
308
    new_tree = b.working_tree()
309
    old_inv = old_tree.inventory
310
    new_inv = new_tree.inventory
311
312
    # TODO: Options to control putting on a prefix or suffix, perhaps as a format string
313
    old_label = ''
314
    new_label = ''
315
316
    DEVNULL = '/dev/null'
317
    # Windows users, don't panic about this filename -- it is a
318
    # special signal to GNU patch that the file should be created or
319
    # deleted respectively.
320
321
    # TODO: Generation of pseudo-diffs for added/deleted files could
322
    # be usefully made into a much faster special case.
323
324
    # TODO: Better to return them in sorted order I think.
325
    
326
    for file_state, fid, old_name, new_name, kind in bzrlib.diff_trees(old_tree, new_tree):
327
        d = None
328
329
        # Don't show this by default; maybe do it if an option is passed
330
        # idlabel = '      {%s}' % fid
331
        idlabel = ''
332
333
        # FIXME: Something about the diff format makes patch unhappy
334
        # with newly-added files.
335
336
        def diffit(*a, **kw):
337
            sys.stdout.writelines(difflib.unified_diff(*a, **kw))
338
            print
339
        
340
        if file_state in ['.', '?', 'I']:
341
            continue
342
        elif file_state == 'A':
343
            print '*** added %s %r' % (kind, new_name)
344
            if kind == 'file':
345
                diffit([],
346
                       new_tree.get_file(fid).readlines(),
347
                       fromfile=DEVNULL,
348
                       tofile=new_label + new_name + idlabel)
349
        elif file_state == 'D':
350
            assert isinstance(old_name, types.StringTypes)
351
            print '*** deleted %s %r' % (kind, old_name)
352
            if kind == 'file':
353
                diffit(old_tree.get_file(fid).readlines(), [],
354
                       fromfile=old_label + old_name + idlabel,
355
                       tofile=DEVNULL)
356
        elif file_state in ['M', 'R']:
357
            if file_state == 'M':
358
                assert kind == 'file'
359
                assert old_name == new_name
360
                print '*** modified %s %r' % (kind, new_name)
361
            elif file_state == 'R':
362
                print '*** renamed %s %r => %r' % (kind, old_name, new_name)
363
364
            if kind == 'file':
365
                diffit(old_tree.get_file(fid).readlines(),
366
                       new_tree.get_file(fid).readlines(),
367
                       fromfile=old_label + old_name + idlabel,
368
                       tofile=new_label + new_name)
369
        else:
370
            bailout("can't represent state %s {%s}" % (file_state, fid))
371
372
373
13 by mbp at sourcefrog
fix up cmd_log args
374
def cmd_log(timezone='original'):
1 by mbp at sourcefrog
import from baz patch-364
375
    """Show log of this branch.
376
377
    :todo: Options for utc; to show ids; to limit range; etc.
378
    """
12 by mbp at sourcefrog
new --timezone option for bzr log
379
    Branch('.').write_log(show_timezone=timezone)
1 by mbp at sourcefrog
import from baz patch-364
380
381
382
def cmd_ls(revision=None, verbose=False):
383
    """List files in a tree.
384
385
    :todo: Take a revision or remote path and list that tree instead.
386
    """
387
    b = Branch('.')
388
    if revision == None:
389
        tree = b.working_tree()
390
    else:
391
        tree = b.revision_tree(b.lookup_revision(revision))
392
        
393
    for fp, fc, kind, fid in tree.list_files():
394
        if verbose:
395
            if kind == 'directory':
396
                kindch = '/'
397
            elif kind == 'file':
398
                kindch = ''
399
            else:
400
                kindch = '???'
401
                
402
            print '%-8s %s%s' % (fc, fp, kindch)
403
        else:
404
            print fp
405
    
406
    
407
408
def cmd_unknowns():
409
    """List unknown files"""
410
    for f in Branch('.').unknowns():
411
        print quotefn(f)
412
413
414
def cmd_lookup_revision(revno):
415
    try:
416
        revno = int(revno)
417
    except ValueError:
418
        bailout("usage: lookup-revision REVNO",
419
                ["REVNO is a non-negative revision number for this branch"])
420
421
    print Branch('.').lookup_revision(revno) or NONE_STRING
422
423
424
425
def cmd_export(revno, dest):
426
    """Export past revision to destination directory."""
427
    b = Branch('.')
428
    rh = b.lookup_revision(int(revno))
429
    t = b.revision_tree(rh)
430
    t.export(dest)
431
432
433
434
######################################################################
435
# internal/test commands
436
437
438
def cmd_uuid():
439
    """Print a newly-generated UUID."""
440
    print uuid()
441
442
443
8 by mbp at sourcefrog
store committer's timezone in revision and show
444
def cmd_local_time_offset():
445
    print bzrlib.osutils.local_time_offset()
446
447
448
1 by mbp at sourcefrog
import from baz patch-364
449
def cmd_commit(message, verbose=False):
450
    Branch('.').commit(message, verbose=verbose)
451
452
453
def cmd_check():
454
    """Check consistency of the branch."""
455
    check()
456
457
458
def cmd_is(pred, *rest):
459
    """Test whether PREDICATE is true."""
460
    try:
461
        cmd_handler = globals()['assert_' + pred.replace('-', '_')]
462
    except KeyError:
463
        bailout("unknown predicate: %s" % quotefn(pred))
464
        
465
    try:
466
        cmd_handler(*rest)
467
    except BzrCheckError:
468
        # by default we don't print the message so that this can
469
        # be used from shell scripts without producing noise
470
        sys.exit(1)
471
472
473
def cmd_username():
474
    print bzrlib.osutils.username()
475
476
477
def cmd_user_email():
478
    print bzrlib.osutils.user_email()
479
480
481
def cmd_gen_revision_id():
482
    import time
483
    print bzrlib.branch._gen_revision_id(time.time())
484
485
486
def cmd_doctest():
487
    """Run internal doctest suite"""
488
    ## -v, if present, is seen by doctest; the argument is just here
489
    ## so our parser doesn't complain
490
491
    ## TODO: --verbose option
492
    
493
    import bzr, doctest, bzrlib.store
494
    bzrlib.trace.verbose = False
495
    doctest.testmod(bzr)
496
    doctest.testmod(bzrlib.store)
497
    doctest.testmod(bzrlib.inventory)
498
    doctest.testmod(bzrlib.branch)
499
    doctest.testmod(bzrlib.osutils)
500
    doctest.testmod(bzrlib.tree)
501
502
    # more strenuous tests;
503
    import bzrlib.tests
504
    doctest.testmod(bzrlib.tests)
505
506
507
######################################################################
508
# help
509
510
511
def cmd_help():
512
    # TODO: Specific help for particular commands
513
    print __doc__
514
515
516
def cmd_version():
517
    print "bzr (bazaar-ng) %s" % __version__
518
    print __copyright__
519
    print "http://bazaar-ng.org/"
520
    print
521
    print \
522
"""bzr comes with ABSOLUTELY NO WARRANTY.  bzr is free software, and
523
you may use, modify and redistribute it under the terms of the GNU 
524
General Public License version 2 or later."""
525
526
527
def cmd_rocks():
528
    """Statement of optimism."""
529
    print "it sure does!"
530
531
532
533
######################################################################
534
# main routine
535
536
537
# list of all available options; the rhs can be either None for an
538
# option that takes no argument, or a constructor function that checks
539
# the type.
540
OPTIONS = {
541
    'all':                    None,
542
    'help':                   None,
543
    'message':                unicode,
544
    'revision':               int,
545
    'show-ids':               None,
12 by mbp at sourcefrog
new --timezone option for bzr log
546
    'timezone':               str,
1 by mbp at sourcefrog
import from baz patch-364
547
    'verbose':                None,
548
    'version':                None,
549
    }
550
551
SHORT_OPTIONS = {
552
    'm':                      'message',
553
    'r':                      'revision',
554
    'v':                      'verbose',
555
}
556
557
# List of options that apply to particular commands; commands not
558
# listed take none.
559
cmd_options = {
560
    'add':                    ['verbose'],
561
    'commit':                 ['message', 'verbose'],
562
    'diff':                   ['revision'],
563
    'inventory':              ['revision'],
12 by mbp at sourcefrog
new --timezone option for bzr log
564
    'log':                    ['show-ids', 'timezone'],
1 by mbp at sourcefrog
import from baz patch-364
565
    'ls':                     ['revision', 'verbose'],
12 by mbp at sourcefrog
new --timezone option for bzr log
566
    'remove':                 ['verbose'],
1 by mbp at sourcefrog
import from baz patch-364
567
    'status':                 ['all'],
568
    }
569
570
571
cmd_args = {
572
    'init':                   [],
573
    'add':                    ['file+'],
574
    'commit':                 [],
575
    'diff':                   [],
576
    'file-id':                ['filename'],
577
    'get-file-text':          ['text_id'],
578
    'get-inventory':          ['inventory_id'],
579
    'get-revision':           ['revision_id'],
580
    'get-revision-inventory': ['revision_id'],
581
    'log':                    [],
582
    'lookup-revision':        ['revno'],
583
    'export':                 ['revno', 'dest'],
584
    'remove':                 ['file+'],
585
    'status':                 [],
586
    }
587
588
589
def parse_args(argv):
590
    """Parse command line.
591
    
592
    Arguments and options are parsed at this level before being passed
593
    down to specific command handlers.  This routine knows, from a
594
    lookup table, something about the available options, what optargs
595
    they take, and which commands will accept them.
596
597
    >>> parse_args('bzr --help'.split())
598
    ([], {'help': True})
599
    >>> parse_args('bzr --version'.split())
600
    ([], {'version': True})
601
    >>> parse_args('bzr status --all'.split())
602
    (['status'], {'all': True})
17 by mbp at sourcefrog
allow --option=ARG syntax
603
    >>> parse_args('bzr commit --message=biter'.split())
604
    (['commit'], {'message': u'biter'})
1 by mbp at sourcefrog
import from baz patch-364
605
    """
606
    args = []
607
    opts = {}
608
609
    # TODO: Maybe handle '--' to end options?
610
611
    it = iter(argv[1:])
612
    while it:
613
        a = it.next()
614
        if a[0] == '-':
17 by mbp at sourcefrog
allow --option=ARG syntax
615
            optarg = None
1 by mbp at sourcefrog
import from baz patch-364
616
            if a[1] == '-':
617
                mutter("  got option %r" % a)
17 by mbp at sourcefrog
allow --option=ARG syntax
618
                if '=' in a:
619
                    optname, optarg = a[2:].split('=', 1)
620
                else:
621
                    optname = a[2:]
1 by mbp at sourcefrog
import from baz patch-364
622
                if optname not in OPTIONS:
623
                    bailout('unknown long option %r' % a)
624
            else:
625
                shortopt = a[1:]
626
                if shortopt not in SHORT_OPTIONS:
627
                    bailout('unknown short option %r' % a)
628
                optname = SHORT_OPTIONS[shortopt]
629
            
630
            if optname in opts:
631
                # XXX: Do we ever want to support this, e.g. for -r?
632
                bailout('repeated option %r' % a)
17 by mbp at sourcefrog
allow --option=ARG syntax
633
                
1 by mbp at sourcefrog
import from baz patch-364
634
            optargfn = OPTIONS[optname]
635
            if optargfn:
17 by mbp at sourcefrog
allow --option=ARG syntax
636
                if optarg == None:
637
                    if not it:
638
                        bailout('option %r needs an argument' % a)
639
                    else:
640
                        optarg = it.next()
641
                opts[optname] = optargfn(optarg)
1 by mbp at sourcefrog
import from baz patch-364
642
                mutter("    option argument %r" % opts[optname])
643
            else:
17 by mbp at sourcefrog
allow --option=ARG syntax
644
                if optarg != None:
645
                    bailout('option %r takes no argument' % optname)
1 by mbp at sourcefrog
import from baz patch-364
646
                opts[optname] = True
647
        else:
648
            args.append(a)
649
650
    return args, opts
651
652
653
654
def _match_args(cmd, args):
655
    """Check non-option arguments match required pattern.
656
657
    >>> _match_args('status', ['asdasdsadasd'])
658
    Traceback (most recent call last):
659
    ...
660
    BzrError: ("extra arguments to command status: ['asdasdsadasd']", [])
661
    >>> _match_args('add', ['asdasdsadasd'])
662
    {'file_list': ['asdasdsadasd']}
663
    >>> _match_args('add', 'abc def gj'.split())
664
    {'file_list': ['abc', 'def', 'gj']}
665
    """
666
    # match argument pattern
667
    argform = cmd_args.get(cmd, [])
668
    argdict = {}
669
    # TODO: Need a way to express 'cp SRC... DEST', where it matches
670
    # all but one.
671
    for ap in argform:
672
        argname = ap[:-1]
673
        if ap[-1] == '?':
674
            assert 0
675
        elif ap[-1] == '*':
676
            assert 0
677
        elif ap[-1] == '+':
678
            if not args:
679
                bailout("command %r needs one or more %s"
680
                        % (cmd, argname.upper()))
681
            else:
682
                argdict[argname + '_list'] = args[:]
683
                args = []
684
        else:
685
            # just a plain arg
686
            argname = ap
687
            if not args:
688
                bailout("command %r requires argument %s"
689
                        % (cmd, argname.upper()))
690
            else:
691
                argdict[argname] = args.pop(0)
692
            
693
    if args:
694
        bailout("extra arguments to command %s: %r"
695
                % (cmd, args))
696
697
    return argdict
698
699
700
701
def run_bzr(argv):
702
    """Execute a command.
703
704
    This is similar to main(), but without all the trappings for
705
    logging and error handling.
706
    """
707
    try:
708
        args, opts = parse_args(argv)
709
        if 'help' in opts:
710
            # TODO: pass down other arguments in case they asked for
711
            # help on a command name?
712
            cmd_help()
713
            return 0
714
        elif 'version' in opts:
715
            cmd_version()
716
            return 0
717
        cmd = args.pop(0)
718
    except IndexError:
719
        log_error('usage: bzr COMMAND\n')
720
        log_error('  try "bzr help"\n')
721
        return 1
722
            
723
    try:
724
        cmd_handler = globals()['cmd_' + cmd.replace('-', '_')]
725
    except KeyError:
726
        bailout("unknown command " + `cmd`)
727
728
    # TODO: special --profile option to turn on the Python profiler
729
730
    # check options are reasonable
731
    allowed = cmd_options.get(cmd, [])
732
    for oname in opts:
733
        if oname not in allowed:
734
            bailout("option %r is not allowed for command %r"
735
                    % (oname, cmd))
736
737
    cmdargs = _match_args(cmd, args)
738
    cmdargs.update(opts)
739
740
    ret = cmd_handler(**cmdargs) or 0
741
742
743
744
def main(argv):
745
    ## TODO: Handle command-line options; probably know what options are valid for
746
    ## each command
747
748
    ## TODO: If the arguments are wrong, give a usage message rather
749
    ## than just a backtrace.
750
751
    try:
752
        t = bzrlib.trace._tracefile
753
        t.write('-' * 60 + '\n')
754
        t.write('bzr invoked at %s\n' % format_date(time.time()))
755
        t.write('  by %s on %s\n' % (bzrlib.osutils.username(), socket.gethostname()))
756
        t.write('  arguments: %r\n' % argv)
757
758
        starttime = os.times()[4]
759
760
        import platform
761
        t.write('  platform: %s\n' % platform.platform())
762
        t.write('  python: %s\n' % platform.python_version())
763
764
        ret = run_bzr(argv)
765
        
766
        times = os.times()
767
        mutter("finished, %.3fu/%.3fs cpu, %.3fu/%.3fs cum"
768
               % times[:4])
769
        mutter("    %.3f elapsed" % (times[4] - starttime))
770
771
        return ret
772
    except BzrError, e:
773
        log_error('bzr: error: ' + e.args[0] + '\n')
774
        if len(e.args) > 1:
775
            for h in e.args[1]:
776
                log_error('  ' + h + '\n')
777
        return 1
778
    except Exception, e:
779
        log_error('bzr: exception: %s\n' % e)
780
        log_error('    see .bzr.log for details\n')
781
        traceback.print_exc(None, bzrlib.trace._tracefile)
782
        traceback.print_exc(None, sys.stderr)
783
        return 1
784
785
    # TODO: Maybe nicer handling of IOError?
786
787
788
789
if __name__ == '__main__':
790
    sys.exit(main(sys.argv))
791
    ##import profile
792
    ##profile.run('main(sys.argv)')
793