~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Martin Albisetti
  • Date: 2009-06-03 23:11:27 UTC
  • mfrom: (352.5.8 global-config)
  • Revision ID: martin.albisetti@canonical.com-20090603231127-kyzswuj78lvq2eb6
Allow setting configuration options in ~/.bazaar/bazaar.conf, and deprecate start-loggerhead

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
# Copyright (C) 2008, 2009 Canonical Ltd
 
4
#
 
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
 
 
21
import logging
 
22
import os
 
23
import sys
 
24
 
 
25
from bzrlib.plugin import load_plugins
 
26
from bzrlib.transport import get_transport
 
27
 
 
28
from paste import httpserver
 
29
from paste.httpexceptions import HTTPExceptionHandler, HTTPInternalServerError
 
30
from paste.translogger import TransLogger
 
31
 
 
32
from loggerhead import __version__
 
33
from loggerhead.apps.transport import (
 
34
    BranchesFromTransportRoot, UserBranchesFromTransportRoot)
 
35
from loggerhead.config import LoggerheadConfig
 
36
from loggerhead.util import Reloader
 
37
from loggerhead.apps.error import ErrorHandlerApp
 
38
 
 
39
 
 
40
def main(args):
 
41
    config = LoggerheadConfig()
 
42
 
 
43
    if config.get_option('show_version'):
 
44
        print "loggerhead %s" % __version__
 
45
        sys.exit(0)
 
46
 
 
47
    if config.arg_count > 1:
 
48
        config.print_help()
 
49
        sys.exit(1)
 
50
    elif config.arg_count == 1:
 
51
        path = config.get_arg(0)
 
52
    else:
 
53
        path = '.'
 
54
 
 
55
    load_plugins()
 
56
 
 
57
    transport = get_transport(path)
 
58
 
 
59
    if config.get_option('trunk_dir') and not config.get_option('user_dirs'):
 
60
        print "--trunk-dir is only valid with --user-dirs"
 
61
        sys.exit(1)
 
62
 
 
63
    if config.get_option('reload'):
 
64
        if Reloader.is_installed():
 
65
            Reloader.install()
 
66
        else:
 
67
            return Reloader.restart_with_reloader()
 
68
 
 
69
    if config.get_option('user_dirs'):
 
70
        if not config.get_option('trunk_dir'):
 
71
            print "You didn't specify a directory for the trunk directories."
 
72
            sys.exit(1)
 
73
        app = UserBranchesFromTransportRoot(transport, config)
 
74
    else:
 
75
        app = BranchesFromTransportRoot(transport, config)
 
76
 
 
77
    # setup_logging()
 
78
    logging.basicConfig()
 
79
    logging.getLogger('').setLevel(logging.DEBUG)
 
80
    logger = getattr(app, 'log', logging.getLogger('loggerhead'))
 
81
    if config.get_option('log_folder'):
 
82
        logfile_path = os.path.join(
 
83
            config.get_option('log_folder'), 'serve-branches.log')
 
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)
 
92
 
 
93
    # setup_logging() #end
 
94
 
 
95
    app = TransLogger(app, logger=logger)
 
96
    if config.get_option('profile'):
 
97
        from loggerhead.middleware.profile import LSProfMiddleware
 
98
        app = LSProfMiddleware(app)
 
99
    if config.get_option('memory_profile'):
 
100
        from dozer import Dozer
 
101
        app = Dozer(app)
 
102
 
 
103
    if not config.get_option('user_prefix'):
 
104
        prefix = '/'
 
105
    else:
 
106
        prefix = config.get_option('user_prefix')
 
107
        if not prefix.startswith('/'):
 
108
            prefix = '/' + prefix
 
109
 
 
110
    try:
 
111
        from paste.deploy.config import PrefixMiddleware
 
112
    except ImportError:
 
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)
 
125
    else:
 
126
        app = PrefixMiddleware(app, prefix=prefix)
 
127
 
 
128
    app = HTTPExceptionHandler(app)
 
129
    app = ErrorHandlerApp(app)
 
130
 
 
131
    if not config.get_option('user_port'):
 
132
        port = '8080'
 
133
    else:
 
134
        port = config.get_option('user_port')
 
135
 
 
136
    if not config.get_option('user_host'):
 
137
        host = '0.0.0.0'
 
138
    else:
 
139
        host = config.get_option('user_host')
 
140
 
 
141
    httpserver.serve(app, host=host, port=port)
 
142
 
 
143
 
 
144
if __name__ == "__main__":
 
145
    main(sys.argv)