~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/library_state.py

  • Committer: Aaron Bentley
  • Date: 2005-10-18 18:48:27 UTC
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1474.
  • Revision ID: abentley@panoramicfeedback.com-20051018184827-2cc69376beb1cdf3
Switched to ConfigObj

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2010 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
"""The core state needed to make use of bzr is managed here."""
18
 
 
19
 
from __future__ import absolute_import
20
 
 
21
 
__all__ = [
22
 
    'BzrLibraryState',
23
 
    ]
24
 
 
25
 
 
26
 
import bzrlib
27
 
from bzrlib.lazy_import import lazy_import
28
 
lazy_import(globals(), """
29
 
from bzrlib import (
30
 
    cleanup,
31
 
    config,
32
 
    osutils,
33
 
    symbol_versioning,
34
 
    trace,
35
 
    ui,
36
 
    )
37
 
""")
38
 
 
39
 
 
40
 
class BzrLibraryState(object):
41
 
    """The state about how bzrlib has been configured.
42
 
 
43
 
    This is the core state needed to make use of bzr. The current instance is
44
 
    currently always exposed as bzrlib.global_state, but we desired to move
45
 
    to a point where no global state is needed at all.
46
 
 
47
 
    :ivar saved_state: The bzrlib.global_state at the time __enter__ was
48
 
        called.
49
 
    :ivar cleanups: An ObjectWithCleanups which can be used for cleanups that
50
 
        should occur when the use of bzrlib is completed. This is initialised
51
 
        in __enter__ and executed in __exit__.
52
 
    """
53
 
 
54
 
    def __init__(self, ui, trace):
55
 
        """Create library start for normal use of bzrlib.
56
 
 
57
 
        Most applications that embed bzrlib, including bzr itself, should just
58
 
        call bzrlib.initialize(), but it is possible to use the state class
59
 
        directly. The initialize() function provides sensible defaults for a
60
 
        CLI program, such as a text UI factory.
61
 
 
62
 
        More options may be added in future so callers should use named
63
 
        arguments.
64
 
 
65
 
        BzrLibraryState implements the Python 2.5 Context Manager protocol
66
 
        PEP343, and can be used with the with statement. Upon __enter__ the
67
 
        global variables in use by bzr are set, and they are cleared on
68
 
        __exit__.
69
 
 
70
 
        :param ui: A bzrlib.ui.ui_factory to use.
71
 
        :param trace: A bzrlib.trace.Config context manager to use, perhaps
72
 
            bzrlib.trace.DefaultConfig.
73
 
        """
74
 
        self._ui = ui
75
 
        self._trace = trace
76
 
        # There is no overrides by default, they are set later when the command
77
 
        # arguments are parsed.
78
 
        self.cmdline_overrides = config.CommandLineStore()
79
 
        self.started = False
80
 
 
81
 
    def __enter__(self):
82
 
        if not self.started:
83
 
            self._start()
84
 
        return self # This is bound to the 'as' clause in a with statement.
85
 
 
86
 
    def _start(self):
87
 
        """Do all initialization."""
88
 
        # NB: This function tweaks so much global state it's hard to test it in
89
 
        # isolation within the same interpreter.  It's not reached on normal
90
 
        # in-process run_bzr calls.  If it's broken, we expect that
91
 
        # TestRunBzrSubprocess may fail.
92
 
        self.cleanups = cleanup.ObjectWithCleanups()
93
 
 
94
 
        if bzrlib.version_info[3] == 'final':
95
 
            self.cleanups.add_cleanup(
96
 
                symbol_versioning.suppress_deprecation_warnings(override=True))
97
 
 
98
 
        self._trace.__enter__()
99
 
 
100
 
        self._orig_ui = bzrlib.ui.ui_factory
101
 
        bzrlib.ui.ui_factory = self._ui
102
 
        self._ui.__enter__()
103
 
 
104
 
        self.saved_state = bzrlib.global_state
105
 
        bzrlib.global_state = self
106
 
        self.started = True
107
 
 
108
 
    def __exit__(self, exc_type, exc_val, exc_tb):
109
 
        self.cleanups.cleanup_now()
110
 
        trace._flush_stdout_stderr()
111
 
        trace._flush_trace()
112
 
        osutils.report_extension_load_failures()
113
 
        self._ui.__exit__(None, None, None)
114
 
        self._trace.__exit__(None, None, None)
115
 
        ui.ui_factory = self._orig_ui
116
 
        bzrlib.global_state = self.saved_state
117
 
        return False # propogate exceptions.