~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/library_state.py

  • Committer: Patch Queue Manager
  • Date: 2011-10-14 16:54:26 UTC
  • mfrom: (6216.1.1 remove-this-file)
  • Revision ID: pqm@pqm.ubuntu.com-20111014165426-tjix4e6idryf1r2z
(jelmer) Remove an accidentally committed .THIS file. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import sys
24
24
 
25
25
import bzrlib
 
26
from bzrlib.lazy_import import lazy_import
 
27
lazy_import(globals(), """
 
28
from bzrlib import config
 
29
""")
26
30
 
27
31
 
28
32
class BzrLibraryState(object):
31
35
    This is the core state needed to make use of bzr. The current instance is
32
36
    currently always exposed as bzrlib.global_state, but we desired to move
33
37
    to a point where no global state is needed at all.
34
 
    
 
38
 
35
39
    :ivar saved_state: The bzrlib.global_state at the time __enter__ was
36
40
        called.
37
41
    :ivar cleanups: An ObjectWithCleanups which can be used for cleanups that
61
65
        """
62
66
        self._ui = ui
63
67
        self._trace = trace
 
68
        # There is no overrides by default, they are set later when the command
 
69
        # arguments are parsed.
 
70
        self.cmdline_overrides = config.CommandLineSection()
 
71
        self.started = False
64
72
 
65
73
    def __enter__(self):
 
74
        if not self.started:
 
75
            self._start()
 
76
        return self # This is bound to the 'as' clause in a with statement.
 
77
 
 
78
    def _start(self):
 
79
        """Do all initialization."""
66
80
        # NB: This function tweaks so much global state it's hard to test it in
67
81
        # isolation within the same interpreter.  It's not reached on normal
68
82
        # in-process run_bzr calls.  If it's broken, we expect that
86
100
 
87
101
        self.saved_state = bzrlib.global_state
88
102
        bzrlib.global_state = self
89
 
        return self # This is bound to the 'as' clause in a with statement.
 
103
        self.started = True
90
104
 
91
105
    def __exit__(self, exc_type, exc_val, exc_tb):
92
106
        self.cleanups.cleanup_now()