/brz/remove-bazaar

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

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Alexander Belchenko
  • Date: 2007-12-15 18:33:10 UTC
  • mto: This revision was merged to the branch mainline in revision 3118.
  • Revision ID: bialix@ukr.net-20071215183310-q5xcwedkn6bh2yjg
XFAIL test for #174055: can't run bzr info while dirstate is locked

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
 
3
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
 
19
"""Bazaar -- a free distributed version-control tool"""
 
20
 
 
21
import os
 
22
import sys
 
23
 
 
24
# update this on each release
 
25
_script_version = (1, 1, 0)
 
26
 
 
27
if __doc__ is None:
 
28
    print "bzr does not support python -OO."
 
29
    sys.exit(2)
 
30
try:
 
31
    version_info = sys.version_info
 
32
except AttributeError:
 
33
    version_info = 1, 5 # 1.5 or older
 
34
 
 
35
REINVOKE = "__BZR_REINVOKE"
 
36
NEED_VERS = (2, 4)
 
37
KNOWN_PYTHONS = ('python2.4', 'python2.5')
 
38
 
 
39
if version_info < NEED_VERS:
 
40
    if not os.environ.has_key(REINVOKE):
 
41
        # mutating os.environ doesn't work in old Pythons
 
42
        os.putenv(REINVOKE, "1")
 
43
        for python in KNOWN_PYTHONS:
 
44
            try:
 
45
                os.execvp(python, [python] + sys.argv)
 
46
            except OSError:
 
47
                pass
 
48
    sys.stderr.write("bzr: error: cannot find a suitable python interpreter\n")
 
49
    sys.stderr.write("  (need %d.%d or later)\n" % NEED_VERS)
 
50
    sys.exit(1)
 
51
if hasattr(os, "unsetenv"):
 
52
    os.unsetenv(REINVOKE)
 
53
 
 
54
 
 
55
profiling = False
 
56
if '--profile-imports' in sys.argv:
 
57
    sys.argv.remove('--profile-imports')
 
58
    import profile_imports
 
59
    profile_imports.install()
 
60
    profiling = True
 
61
 
 
62
 
 
63
try:
 
64
    import bzrlib
 
65
except ImportError, e:
 
66
    sys.stderr.write("bzr: ERROR: "
 
67
                     "Couldn't import bzrlib and dependencies.\n"
 
68
                     "Please check bzrlib is on your PYTHONPATH.\n"
 
69
                     "\n")
 
70
    raise
 
71
 
 
72
if bzrlib.version_info[:3] != _script_version:
 
73
    sys.stderr.write("bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
 
74
            "This may indicate an installation problem.\n"
 
75
            "bzrlib from %s is version %r\n"
 
76
            % (bzrlib.__path__, bzrlib.version_info))
 
77
 
 
78
import bzrlib.inspect_for_copy
 
79
bzrlib.inspect_for_copy.import_copy_with_hacked_inspect()
 
80
 
 
81
import bzrlib.lazy_regex
 
82
bzrlib.lazy_regex.install_lazy_compile()
 
83
 
 
84
import bzrlib.breakin
 
85
bzrlib.breakin.hook_sigquit()
 
86
 
 
87
import bzrlib.decorators
 
88
if ('--lsprof' in sys.argv
 
89
    or '--lsprof-file' in sys.argv
 
90
    or '--profile' in sys.argv
 
91
    or '--lsprof-timed' in sys.argv):
 
92
    bzrlib.decorators.use_pretty_decorators()
 
93
else:
 
94
    bzrlib.decorators.use_fast_decorators()
 
95
 
 
96
import bzrlib.commands
 
97
import bzrlib.trace
 
98
 
 
99
 
 
100
if __name__ == '__main__':
 
101
    bzrlib.trace.enable_default_logging()
 
102
    exit_val = bzrlib.commands.main(sys.argv)
 
103
 
 
104
    if profiling:
 
105
        profile_imports.log_stack_info(sys.stderr)
 
106
 
 
107
    # run anything registered by atexit, because it won't be run in the normal
 
108
    # way
 
109
    sys.exitfunc()
 
110
 
 
111
    # By this point we really have completed everything we want to do, and
 
112
    # there's no point doing any additional cleanup.  Abruptly exiting here
 
113
    # stops any background threads getting into trouble as code is unloaded,
 
114
    # and it may also be slightly faster, through avoiding gc of objects that
 
115
    # are just about to be discarded anyhow.  This does mean that atexit hooks
 
116
    # won't run but we don't use them.  Also file buffers won't be flushed,
 
117
    # but our policy is to always close files from a finally block. -- mbp 20070215
 
118
    try:
 
119
        sys.stdout.flush()
 
120
        sys.stderr.flush()
 
121
    except IOError, e:
 
122
        import errno
 
123
        if e.errno in [errno.EINVAL, errno.EPIPE]:
 
124
            pass
 
125
        else:
 
126
            raise
 
127
    if bzrlib.trace._trace_file:
 
128
        # this is also _bzr_log
 
129
        bzrlib.trace._trace_file.flush()
 
130
    os._exit(exit_val)
 
131
else:
 
132
    pass    # should this give an error? - it can't be used as a lib