~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Max Bowsher
  • Date: 2011-03-04 15:49:43 UTC
  • mfrom: (431 trunk-rich)
  • mto: This revision was merged to the branch mainline in revision 432.
  • Revision ID: maxb@f2s.com-20110304154943-zrtlx1ipy49xc8u0
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009, 2010 Canonical Ltd
 
1
# Copyright 2009, 2010, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
30
30
starts a web server to browse the contents of a branch.
31
31
"""
32
32
 
33
 
version_info = (1, 17, 0)
 
33
from info import (
 
34
    bzr_plugin_version as version_info,
 
35
    bzr_compatible_versions,
 
36
    )
34
37
 
35
38
if __name__ == 'bzrlib.plugins.loggerhead':
36
39
    import bzrlib
37
40
    from bzrlib.api import require_any_api
38
 
 
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)])
42
 
 
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
46
 
    # --http is run.
47
 
 
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.
50
 
 
51
 
    try:
52
 
        from bzrlib.transport import transport_server_registry
53
 
    except ImportError:
54
 
        transport_server_registry = None
 
41
    from bzrlib import commands
 
42
 
 
43
    require_any_api(bzrlib, bzr_compatible_versions)
 
44
 
 
45
    from bzrlib.transport import transport_server_registry
55
46
 
56
47
    DEFAULT_HOST = '0.0.0.0'
57
48
    DEFAULT_PORT = 8080
69
60
        logging.getLogger('simpleTAL').addHandler(handler)
70
61
        logging.getLogger('simpleTALES').addHandler(handler)
71
62
 
72
 
 
73
63
    def _ensure_loggerhead_path():
74
64
        """Ensure that you can 'import loggerhead' and get the root."""
75
65
        # loggerhead internal code will try to 'import loggerhead', so
102
92
        app = HTTPExceptionHandler(app)
103
93
        serve(app, host=host, port=port)
104
94
 
105
 
    if transport_server_registry is not None:
106
 
        transport_server_registry.register('http', serve_http, help=HELP)
107
 
    else:
108
 
        import bzrlib.builtins
109
 
        from bzrlib.commands import get_cmd_object, register_command
110
 
        from bzrlib.option import Option
111
 
 
112
 
        _original_command = get_cmd_object('serve')
113
 
 
114
 
        class cmd_serve(bzrlib.builtins.cmd_serve):
115
 
            __doc__ = _original_command.__doc__
116
 
 
117
 
            takes_options = _original_command.takes_options + [
118
 
                Option('http', help=HELP)]
119
 
 
120
 
            def run(self, *args, **kw):
121
 
                if 'http' in 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(':')
129
 
                    else:
130
 
                        host = DEFAULT_HOST
131
 
                    if allow_writes:
132
 
                        transport = get_transport(path)
133
 
                    else:
134
 
                        transport = get_transport('readonly+' + path)
135
 
                    serve_http(transport, host, port)
136
 
                else:
137
 
                    super(cmd_serve, self).run(*args, **kw)
138
 
 
139
 
        register_command(cmd_serve)
 
95
    transport_server_registry.register('http', serve_http, help=HELP)
 
96
 
 
97
    class cmd_load_test_loggerhead(commands.Command):
 
98
        """Run a load test against a live loggerhead instance.
 
99
 
 
100
        Pass in the name of a script file to run. See loggerhead/load_test.py
 
101
        for a description of the file format.
 
102
        """
 
103
 
 
104
        takes_args = ["filename"]
 
105
 
 
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))
 
114
 
 
115
    commands.register_command(cmd_load_test_loggerhead)
140
116
 
141
117
    def load_tests(standard_tests, module, loader):
142
118
        _ensure_loggerhead_path()