~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
359.2.1 by Matt Nordhoff
Add an --allow-writes option to serve-branches and "bzr serve"
57
    if config.get_option('allow_writes'):
58
        transport = get_transport(path)
59
    else:
60
        transport = get_transport('readonly+' + path)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
61
315.1.3 by Paul Hummer
Moar integrations for the config codes!
62
    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.
63
        print "--trunk-dir is only valid with --user-dirs"
64
        sys.exit(1)
217.2.1 by Michael Hudson
whitespace, style, typos
65
315.1.3 by Paul Hummer
Moar integrations for the config codes!
66
    if config.get_option('reload'):
219.1.2 by Guillermo Gonzalez
* update NEWS and serve-branches man page
67
        if Reloader.is_installed():
68
            Reloader.install()
219.1.1 by Guillermo Gonzalez
* added --reload option
69
        else:
219.1.2 by Guillermo Gonzalez
* update NEWS and serve-branches man page
70
            return Reloader.restart_with_reloader()
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
71
315.1.3 by Paul Hummer
Moar integrations for the config codes!
72
    if config.get_option('user_dirs'):
327 by Matt Nordhoff
Fix incorrect calls to config.get_option() (bug #361238)
73
        if not config.get_option('trunk_dir'):
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
74
            print "You didn't specify a directory for the trunk directories."
75
            sys.exit(1)
336.2.3 by Matt Nordhoff
Review:
76
        app = UserBranchesFromTransportRoot(transport, config)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
77
    else:
336.2.3 by Matt Nordhoff
Review:
78
        app = BranchesFromTransportRoot(transport, config)
217.2.1 by Michael Hudson
whitespace, style, typos
79
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
80
    # setup_logging()
81
    logging.basicConfig()
82
    logging.getLogger('').setLevel(logging.DEBUG)
83
    logger = getattr(app, 'log', logging.getLogger('loggerhead'))
315.1.3 by Paul Hummer
Moar integrations for the config codes!
84
    if config.get_option('log_folder'):
85
        logfile_path = os.path.join(
327 by Matt Nordhoff
Fix incorrect calls to config.get_option() (bug #361238)
86
            config.get_option('log_folder'), 'serve-branches.log')
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
87
    else:
88
        logfile_path = 'serve-branches.log'
89
    logfile = logging.FileHandler(logfile_path, 'a')
90
    formatter = logging.Formatter('%(asctime)s %(levelname)-8s %(name)s:'
91
                                  ' %(message)s')
92
    logfile.setFormatter(formatter)
93
    logfile.setLevel(logging.DEBUG)
94
    logger.addHandler(logfile)
314.1.7 by Paul Hummer
Fixed logging for memory profiling
95
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
96
    # setup_logging() #end
314.1.9 by Paul Hummer
Whitespace fix
97
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
98
    app = TransLogger(app, logger=logger)
315.1.3 by Paul Hummer
Moar integrations for the config codes!
99
    if config.get_option('profile'):
232.1.7 by Robert Collins
Allow lsprofile data on requests to be gathered.
100
        from loggerhead.middleware.profile import LSProfMiddleware
101
        app = LSProfMiddleware(app)
315.1.3 by Paul Hummer
Moar integrations for the config codes!
102
    if config.get_option('memory_profile'):
318.1.1 by Paul Hummer
Memory profiling. Dozer is doing it.
103
        from dozer import Dozer
104
        app = Dozer(app)
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
105
315.1.3 by Paul Hummer
Moar integrations for the config codes!
106
    if not config.get_option('user_prefix'):
215.1.2 by Martin Albisetti
Add --prefix option for hosts
107
        prefix = '/'
108
    else:
315.1.3 by Paul Hummer
Moar integrations for the config codes!
109
        prefix = config.get_option('user_prefix')
277 by Michael Hudson
* make example Apache stanza more correct with how PasteDeploy works
110
        if not prefix.startswith('/'):
111
            prefix = '/' + prefix
215.1.2 by Martin Albisetti
Add --prefix option for hosts
112
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
113
    try:
114
        from paste.deploy.config import PrefixMiddleware
115
    except ImportError:
264 by Michael Hudson
error if you run serve-branches behind proxy when paste.deploy is not available
116
        cant_proxy_correctly_message = (
117
            'Unsupported configuration: PasteDeploy not available, but '
118
            'loggerhead appears to be behind a proxy.')
119
        def check_not_proxied(app):
120
            def wrapped(environ, start_response):
121
                if 'HTTP_X_FORWARDED_SERVER' in environ:
122
                    exc = HTTPInternalServerError()
123
                    exc.explanation = cant_proxy_correctly_message
124
                    raise exc
125
                return app(environ, start_response)
126
            return wrapped
127
        app = check_not_proxied(app)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
128
    else:
215.1.2 by Martin Albisetti
Add --prefix option for hosts
129
        app = PrefixMiddleware(app, prefix=prefix)
217.2.1 by Michael Hudson
whitespace, style, typos
130
266.2.13 by Michael Hudson
raise a 404 when passed an invalid revid
131
    app = HTTPExceptionHandler(app)
264 by Michael Hudson
error if you run serve-branches behind proxy when paste.deploy is not available
132
    app = ErrorHandlerApp(app)
133
315.1.3 by Paul Hummer
Moar integrations for the config codes!
134
    if not config.get_option('user_port'):
215.1.1 by Martin Albisetti
* Allow specifying a custom port
135
        port = '8080'
136
    else:
315.1.3 by Paul Hummer
Moar integrations for the config codes!
137
        port = config.get_option('user_port')
215.1.1 by Martin Albisetti
* Allow specifying a custom port
138
315.1.3 by Paul Hummer
Moar integrations for the config codes!
139
    if not config.get_option('user_host'):
215.1.1 by Martin Albisetti
* Allow specifying a custom port
140
        host = '0.0.0.0'
141
    else:
315.1.3 by Paul Hummer
Moar integrations for the config codes!
142
        host = config.get_option('user_host')
215.1.1 by Martin Albisetti
* Allow specifying a custom port
143
144
    httpserver.serve(app, host=host, port=port)
189.1.2 by Tim Penhey
Extend serve-branches to serve user dirs.
145
146
147
if __name__ == "__main__":
148
    main(sys.argv)