~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Martin Pool
  • Date: 2009-03-10 01:05:08 UTC
  • mfrom: (262.2.6 loggerhead-plugin)
  • Revision ID: mbp@sourcefrog.net-20090310010508-rvs68o2223720rxn
loggerhead can now be installed as a plugin and run by 'bzr serve --http'

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
from optparse import OptionParser
23
23
 
 
24
from bzrlib.plugin import load_plugins
 
25
 
24
26
from paste import httpserver
25
 
from paste.httpexceptions import HTTPExceptionHandler
 
27
from paste.httpexceptions import HTTPExceptionHandler, HTTPInternalServerError
26
28
from paste.translogger import TransLogger
27
29
 
28
30
from loggerhead import __version__
50
52
                      help="Host Loggerhead should listen on.")
51
53
    parser.add_option("--prefix", dest="user_prefix",
52
54
                      help="Specify host prefix.")
 
55
    parser.add_option("--profile", action="store_true", dest="profile",
 
56
                      help="Generate callgrind profile data to "
 
57
                        "%d-stats.callgrind on each request.")
53
58
    parser.add_option("--reload", action="store_true", dest="reload",
54
59
                      help="Restarts the application when changing python"
55
60
                           " files. Only used for development purposes.")
113
118
    logfile.setLevel(logging.DEBUG)
114
119
    logger.addHandler(logfile)
115
120
    # setup_logging() #end
116
 
    app = ErrorHandlerApp(app)
117
 
    app = HTTPExceptionHandler(app)
118
121
    app = TransLogger(app, logger=logger)
 
122
    if options.profile:
 
123
        from loggerhead.middleware.profile import LSProfMiddleware
 
124
        app = LSProfMiddleware(app)
119
125
 
120
126
    if not options.user_prefix:
121
127
        prefix = '/'
122
128
    else:
123
129
        prefix = options.user_prefix
 
130
        if not prefix.startswith('/'):
 
131
            prefix = '/' + prefix
124
132
 
125
133
    try:
126
134
        from paste.deploy.config import PrefixMiddleware
127
135
    except ImportError:
128
 
        pass
 
136
        cant_proxy_correctly_message = (
 
137
            'Unsupported configuration: PasteDeploy not available, but '
 
138
            'loggerhead appears to be behind a proxy.')
 
139
        def check_not_proxied(app):
 
140
            def wrapped(environ, start_response):
 
141
                if 'HTTP_X_FORWARDED_SERVER' in environ:
 
142
                    exc = HTTPInternalServerError()
 
143
                    exc.explanation = cant_proxy_correctly_message
 
144
                    raise exc
 
145
                return app(environ, start_response)
 
146
            return wrapped
 
147
        app = check_not_proxied(app)
129
148
    else:
130
149
        app = PrefixMiddleware(app, prefix=prefix)
131
150
 
 
151
    app = HTTPExceptionHandler(app)
 
152
    app = ErrorHandlerApp(app)
 
153
 
132
154
    if not options.user_port:
133
155
        port = '8080'
134
156
    else:
139
161
    else:
140
162
        host = options.user_host
141
163
 
 
164
    load_plugins()
 
165
 
142
166
    httpserver.serve(app, host=host, port=port)
143
167
 
144
168