38
38
if __name__ == 'bzrlib.plugins.loggerhead':
40
40
from bzrlib.api import require_any_api
41
from bzrlib import commands
42
43
require_any_api(bzrlib, bzr_compatible_versions)
44
# NB: Normally plugins should lazily load almost everything, but this
45
# seems reasonable to have in-line here: bzrlib.commands and options are
46
# normally loaded, and the rest of loggerhead won't be loaded until serve
49
# transport_server_registry was added in bzr 1.16. When we drop support for
50
# older releases, we can remove the code to override cmd_serve.
53
from bzrlib.transport import transport_server_registry
55
transport_server_registry = None
45
from bzrlib.transport import transport_server_registry
57
47
DEFAULT_HOST = '0.0.0.0'
58
48
DEFAULT_PORT = 8080
103
92
app = HTTPExceptionHandler(app)
104
93
serve(app, host=host, port=port)
106
if transport_server_registry is not None:
107
transport_server_registry.register('http', serve_http, help=HELP)
109
import bzrlib.builtins
110
from bzrlib.commands import get_cmd_object, register_command
111
from bzrlib.option import Option
113
_original_command = get_cmd_object('serve')
115
class cmd_serve(bzrlib.builtins.cmd_serve):
116
__doc__ = _original_command.__doc__
118
takes_options = _original_command.takes_options + [
119
Option('http', help=HELP)]
121
def run(self, *args, **kw):
123
from bzrlib.transport import get_transport
124
allow_writes = kw.get('allow_writes', False)
125
path = kw.get('directory', '.')
126
port = kw.get('port', DEFAULT_PORT)
127
# port might be an int already...
128
if isinstance(port, basestring) and ':' in port:
129
host, port = port.split(':')
133
transport = get_transport(path)
135
transport = get_transport('readonly+' + path)
136
serve_http(transport, host, port)
138
super(cmd_serve, self).run(*args, **kw)
140
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)
142
117
def load_tests(standard_tests, module, loader):
143
118
_ensure_loggerhead_path()