~loggerhead-team/loggerhead/trunk-rich

167 by Michael Hudson
make serve-branches.py executable
1
#!/usr/bin/env python
352.5.2 by Martin Albisetti
Refactored command registering to allow pluging in
2
#
3
# Copyright (C) 2008, 2009 Canonical Ltd
4
#
183.2.1 by John Arbash Meinel
Add Copyright information to most files.
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
9
#
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
"""Search for branches underneath a directory and serve them all."""
20
174 by Michael Hudson
misc logging improvements:
21
import logging
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
22
import os
165.1.4 by Michael Hudson
change serve-branches.py to be easier to document :)
23
import sys
24
270.1.1 by Michael Hudson
defer loading of plugins until after we've set up the logging
25
from bzrlib.plugin import load_plugins
336.2.1 by Jelmer Vernooij
Use transports internally rather than local file system.
26
from bzrlib.transport import get_transport
270.1.1 by Michael Hudson
defer loading of plugins until after we've set up the logging
27
165.1.4 by Michael Hudson
change serve-branches.py to be easier to document :)
28
from paste import httpserver
264 by Michael Hudson
error if you run serve-branches behind proxy when paste.deploy is not available
29
from paste.httpexceptions import HTTPExceptionHandler, HTTPInternalServerError
165.1.4 by Michael Hudson
change serve-branches.py to be easier to document :)
30
from paste.translogger import TransLogger
31
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
32
from loggerhead import __version__
336.2.3 by Matt Nordhoff
Review:
33
from loggerhead.apps.transport import (
34
    BranchesFromTransportRoot, UserBranchesFromTransportRoot)
315.1.3 by Paul Hummer
Moar integrations for the config codes!
35
from loggerhead.config import LoggerheadConfig
219.1.2 by Guillermo Gonzalez
* update NEWS and serve-branches man page
36
from loggerhead.util import Reloader
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
37
from loggerhead.apps.error import ErrorHandlerApp
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
38
39
40
def main(args):
315.1.3 by Paul Hummer
Moar integrations for the config codes!
41
    config = LoggerheadConfig()
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
42
315.1.3 by Paul Hummer
Moar integrations for the config codes!
43
    if config.get_option('show_version'):
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
44
        print "loggerhead %s" % __version__
45
        sys.exit(0)
46
315.1.3 by Paul Hummer
Moar integrations for the config codes!
47
    if config.arg_count > 1:
48
        config.print_help()
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
49
        sys.exit(1)
315.1.3 by Paul Hummer
Moar integrations for the config codes!
50
    elif config.arg_count == 1:
321 by Michael Hudson
fix bug #353230, thanks Peter Bui
51
        path = config.get_arg(0)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
52
    else:
53
        path = '.'
54
336.2.1 by Jelmer Vernooij
Use transports internally rather than local file system.
55
    load_plugins()
56
57
    transport = get_transport(path)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
58
315.1.3 by Paul Hummer
Moar integrations for the config codes!
59
    if config.get_option('trunk_dir') and not config.get_option('user_dirs'):
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
60
        print "--trunk-dir is only valid with --user-dirs"
61
        sys.exit(1)
217.2.1 by Michael Hudson
whitespace, style, typos
62
315.1.3 by Paul Hummer
Moar integrations for the config codes!
63
    if config.get_option('reload'):
219.1.2 by Guillermo Gonzalez
* update NEWS and serve-branches man page
64
        if Reloader.is_installed():
65
            Reloader.install()
219.1.1 by Guillermo Gonzalez
* added --reload option
66
        else:
219.1.2 by Guillermo Gonzalez
* update NEWS and serve-branches man page
67
            return Reloader.restart_with_reloader()
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
68
315.1.3 by Paul Hummer
Moar integrations for the config codes!
69
    if config.get_option('user_dirs'):
327 by Matt Nordhoff
Fix incorrect calls to config.get_option() (bug #361238)
70
        if not config.get_option('trunk_dir'):
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
71
            print "You didn't specify a directory for the trunk directories."
72
            sys.exit(1)
336.2.3 by Matt Nordhoff
Review:
73
        app = UserBranchesFromTransportRoot(transport, config)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
74
    else:
336.2.3 by Matt Nordhoff
Review:
75
        app = BranchesFromTransportRoot(transport, config)
217.2.1 by Michael Hudson
whitespace, style, typos
76
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
77
    # setup_logging()
78
    logging.basicConfig()
79
    logging.getLogger('').setLevel(logging.DEBUG)
80
    logger = getattr(app, 'log', logging.getLogger('loggerhead'))
315.1.3 by Paul Hummer
Moar integrations for the config codes!
81
    if config.get_option('log_folder'):
82
        logfile_path = os.path.join(
327 by Matt Nordhoff
Fix incorrect calls to config.get_option() (bug #361238)
83
            config.get_option('log_folder'), 'serve-branches.log')
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
84
    else:
85
        logfile_path = 'serve-branches.log'
86
    logfile = logging.FileHandler(logfile_path, 'a')
87
    formatter = logging.Formatter('%(asctime)s %(levelname)-8s %(name)s:'
88
                                  ' %(message)s')
89
    logfile.setFormatter(formatter)
90
    logfile.setLevel(logging.DEBUG)
91
    logger.addHandler(logfile)
314.1.7 by Paul Hummer
Fixed logging for memory profiling
92
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
93
    # setup_logging() #end
314.1.9 by Paul Hummer
Whitespace fix
94
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
95
    app = TransLogger(app, logger=logger)
315.1.3 by Paul Hummer
Moar integrations for the config codes!
96
    if config.get_option('profile'):
232.1.7 by Robert Collins
Allow lsprofile data on requests to be gathered.
97
        from loggerhead.middleware.profile import LSProfMiddleware
98
        app = LSProfMiddleware(app)
315.1.3 by Paul Hummer
Moar integrations for the config codes!
99
    if config.get_option('memory_profile'):
318.1.1 by Paul Hummer
Memory profiling. Dozer is doing it.
100
        from dozer import Dozer
101
        app = Dozer(app)
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
102
315.1.3 by Paul Hummer
Moar integrations for the config codes!
103
    if not config.get_option('user_prefix'):
215.1.2 by Martin Albisetti
Add --prefix option for hosts
104
        prefix = '/'
105
    else:
315.1.3 by Paul Hummer
Moar integrations for the config codes!
106
        prefix = config.get_option('user_prefix')
277 by Michael Hudson
* make example Apache stanza more correct with how PasteDeploy works
107
        if not prefix.startswith('/'):
108
            prefix = '/' + prefix
215.1.2 by Martin Albisetti
Add --prefix option for hosts
109
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
110
    try:
111
        from paste.deploy.config import PrefixMiddleware
112
    except ImportError:
264 by Michael Hudson
error if you run serve-branches behind proxy when paste.deploy is not available
113
        cant_proxy_correctly_message = (
114
            'Unsupported configuration: PasteDeploy not available, but '
115
            'loggerhead appears to be behind a proxy.')
116
        def check_not_proxied(app):
117
            def wrapped(environ, start_response):
118
                if 'HTTP_X_FORWARDED_SERVER' in environ:
119
                    exc = HTTPInternalServerError()
120
                    exc.explanation = cant_proxy_correctly_message
121
                    raise exc
122
                return app(environ, start_response)
123
            return wrapped
124
        app = check_not_proxied(app)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
125
    else:
215.1.2 by Martin Albisetti
Add --prefix option for hosts
126
        app = PrefixMiddleware(app, prefix=prefix)
217.2.1 by Michael Hudson
whitespace, style, typos
127
266.2.13 by Michael Hudson
raise a 404 when passed an invalid revid
128
    app = HTTPExceptionHandler(app)
264 by Michael Hudson
error if you run serve-branches behind proxy when paste.deploy is not available
129
    app = ErrorHandlerApp(app)
130
315.1.3 by Paul Hummer
Moar integrations for the config codes!
131
    if not config.get_option('user_port'):
215.1.1 by Martin Albisetti
* Allow specifying a custom port
132
        port = '8080'
133
    else:
315.1.3 by Paul Hummer
Moar integrations for the config codes!
134
        port = config.get_option('user_port')
215.1.1 by Martin Albisetti
* Allow specifying a custom port
135
315.1.3 by Paul Hummer
Moar integrations for the config codes!
136
    if not config.get_option('user_host'):
215.1.1 by Martin Albisetti
* Allow specifying a custom port
137
        host = '0.0.0.0'
138
    else:
315.1.3 by Paul Hummer
Moar integrations for the config codes!
139
        host = config.get_option('user_host')
215.1.1 by Martin Albisetti
* Allow specifying a custom port
140
141
    httpserver.serve(app, host=host, port=port)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
142
143
144
if __name__ == "__main__":
145
    main(sys.argv)