~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Matt Nordhoff
  • Date: 2009-10-17 09:28:42 UTC
  • mto: This revision was merged to the branch mainline in revision 406.
  • Revision ID: mnordhoff@mattnordhoff.com-20091017092842-o9oefagbqdh7ud4t
Remove trailing whitespace in the non-Python files too

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009, 2010, 2011 Canonical Ltd
 
1
# Copyright 2009 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
 
from info import (
34
 
    bzr_plugin_version as version_info,
35
 
    bzr_compatible_versions,
36
 
    )
 
33
version_info = (1, 17, 0)
37
34
 
38
35
if __name__ == 'bzrlib.plugins.loggerhead':
39
36
    import bzrlib
40
37
    from bzrlib.api import require_any_api
41
 
    from bzrlib import commands
42
38
 
43
 
    require_any_api(bzrlib, bzr_compatible_versions)
 
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)])
44
42
 
45
43
    # NB: Normally plugins should lazily load almost everything, but this
46
44
    # seems reasonable to have in-line here: bzrlib.commands and options are
60
58
    HELP = ('Loggerhead, a web-based code viewer and server. (default port: %d)' %
61
59
            (DEFAULT_PORT,))
62
60
 
63
 
    def setup_logging(config):
64
 
        import logging
65
 
        import sys
66
 
 
67
 
        logger = logging.getLogger('loggerhead')
68
 
        handler = logging.StreamHandler(sys.stderr)
69
 
        handler.setLevel(logging.DEBUG)
70
 
        logger.addHandler(handler)
71
 
        logging.getLogger('simpleTAL').addHandler(handler)
72
 
        logging.getLogger('simpleTALES').addHandler(handler)
73
 
 
74
 
 
75
 
    def _ensure_loggerhead_path():
76
 
        """Ensure that you can 'import loggerhead' and get the root."""
 
61
    def serve_http(transport, host=None, port=None, inet=None):
 
62
        from paste.httpexceptions import HTTPExceptionHandler
 
63
        from paste.httpserver import serve
 
64
 
77
65
        # loggerhead internal code will try to 'import loggerhead', so
78
66
        # let's put it on the path if we can't find it in the existing path
79
67
        try:
80
 
            import loggerhead.apps.transport
 
68
            import loggerhead
81
69
        except ImportError:
82
70
            import os.path, sys
83
71
            sys.path.append(os.path.dirname(__file__))
84
72
 
85
 
    def serve_http(transport, host=None, port=None, inet=None):
86
 
        from paste.httpexceptions import HTTPExceptionHandler
87
 
        from paste.httpserver import serve
88
 
 
89
 
        _ensure_loggerhead_path()
90
 
 
91
73
        from loggerhead.apps.transport import BranchesFromTransportRoot
92
74
        from loggerhead.config import LoggerheadConfig
93
75
 
99
81
        if not transport.is_readonly():
100
82
            argv.insert(0, '--allow-writes')
101
83
        config = LoggerheadConfig(argv)
102
 
        setup_logging(config)
103
84
        app = BranchesFromTransportRoot(transport.base, config)
104
85
        app = HTTPExceptionHandler(app)
105
86
        serve(app, host=host, port=port)
108
89
        transport_server_registry.register('http', serve_http, help=HELP)
109
90
    else:
110
91
        import bzrlib.builtins
 
92
        from bzrlib.commands import get_cmd_object, register_command
111
93
        from bzrlib.option import Option
112
94
 
113
 
        _original_command = commands.get_cmd_object('serve')
 
95
        _original_command = get_cmd_object('serve')
114
96
 
115
97
        class cmd_serve(bzrlib.builtins.cmd_serve):
116
98
            __doc__ = _original_command.__doc__
137
119
                else:
138
120
                    super(cmd_serve, self).run(*args, **kw)
139
121
 
140
 
        commands.register_command(cmd_serve)
141
 
 
142
 
    class cmd_load_test_loggerhead(commands.Command):
143
 
        """Run a load test against a live loggerhead instance.
144
 
 
145
 
        Pass in the name of a script file to run. See loggerhead/load_test.py
146
 
        for a description of the file format.
147
 
        """
148
 
 
149
 
        takes_args = ["filename"]
150
 
 
151
 
        def run(self, filename):
152
 
            from bzrlib.plugins.loggerhead.loggerhead import load_test
153
 
            script = load_test.run_script(filename)
154
 
            for thread_id in sorted(script._threads):
155
 
                worker = script._threads[thread_id][0]
156
 
                for url, success, time in worker.stats:
157
 
                    self.outf.write(' %5.3fs %s %s\n'
158
 
                                    % (time, str(success)[0], url))
159
 
 
160
 
    commands.register_command(cmd_load_test_loggerhead)
161
 
 
162
 
    def load_tests(standard_tests, module, loader):
163
 
        _ensure_loggerhead_path()
164
 
        standard_tests.addTests(loader.loadTestsFromModuleNames(
165
 
            ['bzrlib.plugins.loggerhead.loggerhead.tests']))
166
 
        return standard_tests
 
122
        register_command(cmd_serve)