~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

Merge the "don't run template on HEAD requests" branch.

This should stop us from getting OOPS during HEAD requests from haproxy
(bug #701329). It also should mean that at least most HEAD requests stop
returning body content (bug #716201), and that we perform less total work
to return HEAD info (bug #716217).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009, 2010, 2011 Canonical Ltd
 
1
# Copyright 2009, 2010 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
42
41
 
43
42
    require_any_api(bzrlib, bzr_compatible_versions)
44
43
 
45
 
    from bzrlib.transport import transport_server_registry
 
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
46
56
 
47
57
    DEFAULT_HOST = '0.0.0.0'
48
58
    DEFAULT_PORT = 8080
60
70
        logging.getLogger('simpleTAL').addHandler(handler)
61
71
        logging.getLogger('simpleTALES').addHandler(handler)
62
72
 
 
73
 
63
74
    def _ensure_loggerhead_path():
64
75
        """Ensure that you can 'import loggerhead' and get the root."""
65
76
        # loggerhead internal code will try to 'import loggerhead', so
92
103
        app = HTTPExceptionHandler(app)
93
104
        serve(app, host=host, port=port)
94
105
 
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)
 
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)
116
141
 
117
142
    def load_tests(standard_tests, module, loader):
118
143
        _ensure_loggerhead_path()