~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: John Arbash Meinel
  • Date: 2010-08-02 17:16:12 UTC
  • mto: This revision was merged to the branch mainline in revision 5369.
  • Revision ID: john@arbash-meinel.com-20100802171612-rdh5ods70w2bl3j7
We also have to re-implement it for _simple_set_pyx.pyx

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /usr/bin/env python
2
2
 
3
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
3
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Canonical Ltd
4
4
#
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
14
14
#
15
15
# You should have received a copy of the GNU General Public License
16
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
 
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
 
19
19
"""Bazaar -- a free distributed version-control tool"""
20
20
 
21
21
import os
22
22
import sys
23
 
 
24
 
 
25
 
if __doc__ is None:
26
 
    print "bzr does not support python -OO."
27
 
    sys.exit(2)
 
23
import warnings
 
24
 
 
25
# update this on each release
 
26
_script_version = (2, 3, 0)
 
27
 
28
28
try:
29
29
    version_info = sys.version_info
30
30
except AttributeError:
32
32
 
33
33
REINVOKE = "__BZR_REINVOKE"
34
34
NEED_VERS = (2, 4)
35
 
KNOWN_PYTHONS = ('python2.4', 'python2.5')
 
35
KNOWN_PYTHONS = ('python2.4', 'python2.5', 'python2.6')
36
36
 
37
37
if version_info < NEED_VERS:
38
38
    if not os.environ.has_key(REINVOKE):
43
43
                os.execvp(python, [python] + sys.argv)
44
44
            except OSError:
45
45
                pass
46
 
    print >>sys.stderr, "bzr: error: cannot find a suitable python interpreter"
47
 
    print >>sys.stderr, "  (need %d.%d or later)" % NEED_VERS
 
46
    sys.stderr.write("bzr: error: cannot find a suitable python interpreter\n")
 
47
    sys.stderr.write("  (need %d.%d or later)\n" % NEED_VERS)
48
48
    sys.exit(1)
49
49
if hasattr(os, "unsetenv"):
50
50
    os.unsetenv(REINVOKE)
52
52
 
53
53
profiling = False
54
54
if '--profile-imports' in sys.argv:
55
 
    sys.argv.remove('--profile-imports')
56
55
    import profile_imports
57
56
    profile_imports.install()
58
57
    profiling = True
59
58
 
60
 
 
 
59
if sys.platform == 'darwin':
 
60
    # jameinel says this hack is to force python to honor the LANG setting,
 
61
    # even on Darwin.  Otherwise it is apparently hardcoded to Mac-Roman,
 
62
    # which is incorrect for the normal Terminal.app which wants UTF-8.
 
63
    #
 
64
    # "It might be that I should be setting the "system locale" somewhere else
 
65
    # on the system, rather than setting LANG=en_US.UTF-8 in .bashrc.
 
66
    # Switching to 'posix' and setting LANG worked for me."
 
67
    #
 
68
    # So we can remove this if someone works out the right way to tell Mac
 
69
    # Python which encoding to use.  -- mbp 20080703
 
70
    sys.platform = 'posix'
 
71
    try:
 
72
        import locale
 
73
    finally:
 
74
        sys.platform = 'darwin'
 
75
else:
 
76
    import locale
 
77
 
 
78
 
 
79
# The python2.6 release includes some libraries that have deprecation warnings
 
80
# against the interpreter - see https://bugs.launchpad.net/bzr/+bug/387139
 
81
warnings.filterwarnings('ignore',
 
82
    r"(struct integer overflow masking is deprecated|"
 
83
    r"'L' format requires 0 <= number <= 4294967295)",
 
84
    DeprecationWarning,
 
85
    'gzip',
 
86
    )
 
87
 
 
88
 
 
89
try:
 
90
    locale.setlocale(locale.LC_ALL, '')
 
91
except locale.Error, e:
 
92
    sys.stderr.write('bzr: warning: %s\n'
 
93
                     '  bzr could not set the application locale.\n'
 
94
                     '  Although this should be no problem for bzr itself,\n'
 
95
                     '  it might cause problems with some plugins.\n'
 
96
                     '  To investigate the issue, look at the output\n'
 
97
                     '  of the locale(1p) tool available on POSIX systems.\n'
 
98
                     % e)
 
99
 
 
100
# instruct bzrlib/__init__.py to install lazy_regex
 
101
sys._bzr_lazy_regex = True
61
102
try:
62
103
    import bzrlib
63
104
except ImportError, e:
64
105
    sys.stderr.write("bzr: ERROR: "
65
 
                     "Couldn't import bzrlib and dependencies.\n"
66
 
                     "Please check bzrlib is on your PYTHONPATH.\n"
67
 
                     "\n")
 
106
        "Couldn't import bzrlib and dependencies.\n"
 
107
        "Please check the directory containing bzrlib is on your PYTHONPATH.\n"
 
108
        "\n")
68
109
    raise
69
110
 
 
111
if bzrlib.version_info[:3] != _script_version:
 
112
    sys.stderr.write("bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
 
113
            "This may indicate an installation problem.\n"
 
114
            "bzrlib from %s is version %r\n"
 
115
            % (bzrlib.__path__, bzrlib.version_info))
 
116
 
70
117
import bzrlib.inspect_for_copy
71
118
bzrlib.inspect_for_copy.import_copy_with_hacked_inspect()
72
119
 
73
 
import bzrlib.lazy_regex
74
 
bzrlib.lazy_regex.install_lazy_compile()
75
 
 
76
120
import bzrlib.breakin
77
 
bzrlib.breakin.hook_sigquit()
 
121
bzrlib.breakin.hook_debugger_to_signal()
78
122
 
79
123
import bzrlib.decorators
80
124
if ('--lsprof' in sys.argv
88
132
import bzrlib.commands
89
133
import bzrlib.trace
90
134
 
91
 
if bzrlib.version_info[:3] != (0, 17, 0):
92
 
    sys.stderr.write("bzr: WARNING: bzrlib version doesn't match the bzr program.\n"
93
 
            "This may indicate an installation problem.\n"
94
 
            "bzrlib from %s is version %r\n"
95
 
            % (bzrlib.__path__, bzrlib.version_info))
96
135
 
97
136
if __name__ == '__main__':
98
 
    bzrlib.trace.enable_default_logging()
99
 
    exit_val = bzrlib.commands.main(sys.argv)
100
 
 
101
 
    if profiling:
102
 
        profile_imports.log_stack_info(sys.stderr)
 
137
    library_state = bzrlib.initialize()
 
138
    library_state.__enter__()
 
139
    try:
 
140
        exit_val = bzrlib.commands.main()
 
141
        if profiling:
 
142
            profile_imports.log_stack_info(sys.stderr)
 
143
    finally:
 
144
        library_state.__exit__(None, None, None)
103
145
 
104
146
    # By this point we really have completed everything we want to do, and
105
147
    # there's no point doing any additional cleanup.  Abruptly exiting here
108
150
    # are just about to be discarded anyhow.  This does mean that atexit hooks
109
151
    # won't run but we don't use them.  Also file buffers won't be flushed,
110
152
    # but our policy is to always close files from a finally block. -- mbp 20070215
111
 
    try:
112
 
        sys.stdout.flush()
113
 
        sys.stderr.flush()
114
 
    except IOError, e:
115
 
        import errno
116
 
        if sys.platform != 'win32' or e.errno != errno.EINVAL:
117
 
            raise
118
 
    if bzrlib.trace._trace_file:
119
 
        # this is also _bzr_log
120
 
        bzrlib.trace._trace_file.flush()
 
153
    sys.exitfunc()
121
154
    os._exit(exit_val)
122
155
else:
123
 
    pass    # should this give an error? - it can't be used as a lib
 
156
    raise ImportError("The bzr script cannot be imported.")