30
30
starts a web server to browse the contents of a branch.
33
version_info = (1, 17, 0)
34
bzr_plugin_version as version_info,
35
bzr_compatible_versions,
35
38
if __name__ == 'bzrlib.plugins.loggerhead':
37
40
from bzrlib.api import require_any_api
39
require_any_api(bzrlib, [
40
(1, 13, 0), (1, 15, 0), (1, 16, 0), (1, 17, 0), (1, 18, 0),
41
(2, 0, 0), (2, 1, 0), (2, 2, 0)])
43
# NB: Normally plugins should lazily load almost everything, but this
44
# seems reasonable to have in-line here: bzrlib.commands and options are
45
# normally loaded, and the rest of loggerhead won't be loaded until serve
48
# transport_server_registry was added in bzr 1.16. When we drop support for
49
# older releases, we can remove the code to override cmd_serve.
52
from bzrlib.transport import transport_server_registry
54
transport_server_registry = None
41
from bzrlib import commands
43
require_any_api(bzrlib, bzr_compatible_versions)
45
from bzrlib.transport import transport_server_registry
56
47
DEFAULT_HOST = '0.0.0.0'
57
48
DEFAULT_PORT = 8080
102
92
app = HTTPExceptionHandler(app)
103
93
serve(app, host=host, port=port)
105
if transport_server_registry is not None:
106
transport_server_registry.register('http', serve_http, help=HELP)
108
import bzrlib.builtins
109
from bzrlib.commands import get_cmd_object, register_command
110
from bzrlib.option import Option
112
_original_command = get_cmd_object('serve')
114
class cmd_serve(bzrlib.builtins.cmd_serve):
115
__doc__ = _original_command.__doc__
117
takes_options = _original_command.takes_options + [
118
Option('http', help=HELP)]
120
def run(self, *args, **kw):
122
from bzrlib.transport import get_transport
123
allow_writes = kw.get('allow_writes', False)
124
path = kw.get('directory', '.')
125
port = kw.get('port', DEFAULT_PORT)
126
# port might be an int already...
127
if isinstance(port, basestring) and ':' in port:
128
host, port = port.split(':')
132
transport = get_transport(path)
134
transport = get_transport('readonly+' + path)
135
serve_http(transport, host, port)
137
super(cmd_serve, self).run(*args, **kw)
139
register_command(cmd_serve)
95
transport_server_registry.register('http', serve_http, help=HELP)
97
class cmd_load_test_loggerhead(commands.Command):
98
"""Run a load test against a live loggerhead instance.
100
Pass in the name of a script file to run. See loggerhead/load_test.py
101
for a description of the file format.
104
takes_args = ["filename"]
106
def run(self, filename):
107
from bzrlib.plugins.loggerhead.loggerhead import load_test
108
script = load_test.run_script(filename)
109
for thread_id in sorted(script._threads):
110
worker = script._threads[thread_id][0]
111
for url, success, time in worker.stats:
112
self.outf.write(' %5.3fs %s %s\n'
113
% (time, str(success)[0], url))
115
commands.register_command(cmd_load_test_loggerhead)
141
117
def load_tests(standard_tests, module, loader):
142
118
_ensure_loggerhead_path()