14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
Developer documentation is available at
20
http://doc.bazaar.canonical.com/bzr.dev/developers/
22
The project website is at http://bazaar.canonical.com/
24
Some particularly interesting things in bzrlib are:
26
* bzrlib.initialize -- setup the library for use
27
* bzrlib.plugin.load_plugins -- load all installed plugins
28
* bzrlib.branch.Branch.open -- open a branch
29
* bzrlib.workingtree.WorkingTree.open -- open a working tree
31
We hope you enjoy this library.
114
129
__version__ = _format_version_tuple(version_info)
115
130
version_string = __version__
120
return tests.test_suite()
125
stdin=None, stdout=None, stderr=None):
132
# bzr has various bits of global state that are slowly being eliminated.
133
# This variable is intended to permit any new state-like things to be attached
134
# to a BzrLibraryState object rather than getting new global variables that
135
# need to be hunted down. Accessing the current BzrLibraryState through this
136
# variable is not encouraged: it is better to pass it around as part of the
137
# context of an operation than to look it up directly, but when that is too
138
# hard, it is better to use this variable than to make a branch new global
140
# If using this variable by looking it up (because it can't be easily obtained)
141
# it is important to store the reference you get, rather than looking it up
142
# repeatedly; that way your code will behave properly in the bzrlib test suite
143
# and from programs that do use multiple library contexts.
147
class BzrLibraryState(object):
148
"""The state about how bzrlib has been configured.
150
:ivar saved_state: The bzrlib.global_state at the time __enter__ was
152
:ivar cleanups: An ObjectWithCleanups which can be used for cleanups that
153
should occur when the use of bzrlib is completed. This is initialised
154
in __enter__ and executed in __exit__.
157
def __init__(self, setup_ui=True, stdin=None, stdout=None, stderr=None):
158
"""Create library start for normal use of bzrlib.
160
Most applications that embed bzrlib, including bzr itself, should just
161
call bzrlib.initialize(), but it is possible to use the state class
164
More options may be added in future so callers should use named
167
BzrLibraryState implements the Python 2.5 Context Manager protocol, and
168
can be used with the with statement. Upon __enter__ the global
169
variables in use by bzr are set, and they are cleared on __exit__.
171
:param setup_ui: If true (default) use a terminal UI; otherwise
172
some other ui_factory must be assigned to `bzrlib.ui.ui_factory` by
174
:param stdin, stdout, stderr: If provided, use these for terminal IO;
175
otherwise use the files in `sys`.
177
self.setup_ui = setup_ui
183
# NB: This function tweaks so much global state it's hard to test it in
184
# isolation within the same interpreter. It's not reached on normal
185
# in-process run_bzr calls. If it's broken, we expect that
186
# TestRunBzrSubprocess may fail.
187
if version_info[3] == 'final':
188
from bzrlib.symbol_versioning import suppress_deprecation_warnings
189
suppress_deprecation_warnings(override=True)
191
import bzrlib.cleanup
193
self.cleanups = bzrlib.cleanup.ObjectWithCleanups()
194
bzrlib.trace.enable_default_logging()
198
stdin = self.stdin or sys.stdin
199
stdout = self.stdout or sys.stdout
200
stderr = self.stderr or sys.stderr
201
bzrlib.ui.ui_factory = bzrlib.ui.make_ui_for_terminal(
202
stdin, stdout, stderr)
204
self.saved_state = global_state
207
def __exit__(self, exc_type, exc_val, exc_tb):
208
self.cleanups.cleanup_now()
210
bzrlib.trace._flush_stdout_stderr()
211
bzrlib.trace._flush_trace()
212
import bzrlib.osutils
213
bzrlib.osutils.report_extension_load_failures()
214
bzrlib.ui.ui_factory.__exit__(None, None, None)
215
bzrlib.ui.ui_factory = None
217
global_state = self.saved_state
218
return False # propogate exceptions.
221
def initialize(setup_ui=True, stdin=None, stdout=None, stderr=None):
126
222
"""Set up everything needed for normal use of bzrlib.
128
224
Most applications that embed bzrlib, including bzr itself, should call
131
227
More options may be added in future so callers should use named arguments.
133
229
:param setup_ui: If true (default) use a terminal UI; otherwise
134
something else must be put into `bzrlib.ui.ui_factory`.
230
some other ui_factory must be assigned to `bzrlib.ui.ui_factory` by
135
232
:param stdin, stdout, stderr: If provided, use these for terminal IO;
136
233
otherwise use the files in `sys`.
234
:return: A context manager for the use of bzrlib. The __enter__ method of
235
this context needs to be called before it takes effect, and the __exit__
236
should be called by the caller before exiting their process or
237
otherwise stopping use of bzrlib. Advanced callers can use
238
BzrLibraryState directly.
138
# TODO: mention this in a guide to embedding bzrlib
140
# NB: This function tweaks so much global state it's hard to test it in
141
# isolation within the same interpreter. It's not reached on normal
142
# in-process run_bzr calls. If it's broken, we expect that
143
# TestRunBzrSubprocess may fail.
148
bzrlib.trace.enable_default_logging()
149
atexit.register(bzrlib.trace._flush_stdout_stderr)
150
atexit.register(bzrlib.trace._flush_trace)
161
bzrlib.ui.ui_factory = bzrlib.ui.make_ui_for_terminal(
162
stdin, stdout, stderr)
164
if bzrlib.version_info[3] == 'final':
165
from bzrlib.symbol_versioning import suppress_deprecation_warnings
166
suppress_deprecation_warnings(override=True)
168
import bzrlib.osutils
169
atexit.register(osutils.report_extension_load_failures)
240
return BzrLibraryState(setup_ui=setup_ui, stdin=stdin,
241
stdout=stdout, stderr=stderr)
246
return tests.test_suite()