~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: geoffreyfishing at gmail
  • Date: 2011-06-08 21:27:57 UTC
  • mto: (431.2.18 loggerhead) (459.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 461.
  • Revision ID: geoffreyfishing@gmail.com-20110608212757-fip007uckf222p3k
Cleaned up files.

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
38
38
if __name__ == 'bzrlib.plugins.loggerhead':
39
39
    import bzrlib
40
40
    from bzrlib.api import require_any_api
 
41
    from bzrlib import commands
41
42
 
42
43
    require_any_api(bzrlib, bzr_compatible_versions)
43
44
 
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
47
 
    # --http is run.
48
 
 
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.
51
 
 
52
 
    try:
53
 
        from bzrlib.transport import transport_server_registry
54
 
    except ImportError:
55
 
        transport_server_registry = None
 
45
    from bzrlib.transport import transport_server_registry
56
46
 
57
47
    DEFAULT_HOST = '0.0.0.0'
58
48
    DEFAULT_PORT = 8080
70
60
        logging.getLogger('simpleTAL').addHandler(handler)
71
61
        logging.getLogger('simpleTALES').addHandler(handler)
72
62
 
73
 
 
74
63
    def _ensure_loggerhead_path():
75
64
        """Ensure that you can 'import loggerhead' and get the root."""
76
65
        # loggerhead internal code will try to 'import loggerhead', so
103
92
        app = HTTPExceptionHandler(app)
104
93
        serve(app, host=host, port=port)
105
94
 
106
 
    if transport_server_registry is not None:
107
 
        transport_server_registry.register('http', serve_http, help=HELP)
108
 
    else:
109
 
        import bzrlib.builtins
110
 
        from bzrlib.commands import get_cmd_object, register_command
111
 
        from bzrlib.option import Option
112
 
 
113
 
        _original_command = get_cmd_object('serve')
114
 
 
115
 
        class cmd_serve(bzrlib.builtins.cmd_serve):
116
 
            __doc__ = _original_command.__doc__
117
 
 
118
 
            takes_options = _original_command.takes_options + [
119
 
                Option('http', help=HELP)]
120
 
 
121
 
            def run(self, *args, **kw):
122
 
                if 'http' in 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(':')
130
 
                    else:
131
 
                        host = DEFAULT_HOST
132
 
                    if allow_writes:
133
 
                        transport = get_transport(path)
134
 
                    else:
135
 
                        transport = get_transport('readonly+' + path)
136
 
                    serve_http(transport, host, port)
137
 
                else:
138
 
                    super(cmd_serve, self).run(*args, **kw)
139
 
 
140
 
        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)
141
116
 
142
117
    def load_tests(standard_tests, module, loader):
143
118
        _ensure_loggerhead_path()