~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Martin Albisetti
  • Date: 2008-12-05 20:12:10 UTC
  • mfrom: (247.1.2 memfixes)
  • Revision ID: argentina@gmail.com-20081205201210-s7i0pknhjynijkvi
Change API used to get branch nicks so they don't access the network with checkouts. (Martin Albisetti, James Westby and Robert Collins' brain)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import os
20
20
import sys
21
21
 
22
 
from bzrlib.plugin import load_plugins
 
22
from optparse import OptionParser
23
23
 
24
24
from paste import httpserver
25
 
from paste.httpexceptions import HTTPExceptionHandler, HTTPInternalServerError
 
25
from paste.httpexceptions import HTTPExceptionHandler
26
26
from paste.translogger import TransLogger
27
27
 
28
28
from loggerhead import __version__
29
29
from loggerhead.apps.filesystem import (
30
30
    BranchesFromFileSystemRoot, UserBranchesFromFileSystemRoot)
31
 
from loggerhead.config import LoggerheadConfig
32
31
from loggerhead.util import Reloader
33
32
from loggerhead.apps.error import ErrorHandlerApp
34
33
 
35
34
 
 
35
def command_line_parser():
 
36
    parser = OptionParser("%prog [options] <path>")
 
37
    parser.set_defaults(
 
38
        user_dirs=False,
 
39
        show_version=False,
 
40
        log_folder=None,
 
41
        )
 
42
    parser.add_option("--user-dirs", action="store_true", dest="user_dirs",
 
43
                      help="Serve user directories as ~user.")
 
44
    parser.add_option("--trunk-dir", metavar="DIR",
 
45
                      help="The directory that contains the trunk branches.")
 
46
    parser.add_option("--port", dest="user_port",
 
47
                      help=("Port Loggerhead should listen on "
 
48
                            "(defaults to 8080)."))
 
49
    parser.add_option("--host", dest="user_host",
 
50
                      help="Host Loggerhead should listen on.")
 
51
    parser.add_option("--prefix", dest="user_prefix",
 
52
                      help="Specify host prefix.")
 
53
    parser.add_option("--profile", action="store_true", dest="profile",
 
54
                      help="Generate callgrind profile data to "
 
55
                        "%d-stats.callgrind on each request.")
 
56
    parser.add_option("--reload", action="store_true", dest="reload",
 
57
                      help="Restarts the application when changing python"
 
58
                           " files. Only used for development purposes.")
 
59
    parser.add_option('--log-folder', dest="log_folder",
 
60
                      type=str, help="The directory to place log files in.")
 
61
    parser.add_option("--version", action="store_true", dest="show_version",
 
62
                      help="Print the software version and exit")
 
63
    return parser
 
64
 
 
65
 
36
66
def main(args):
37
 
    config = LoggerheadConfig()
 
67
    parser = command_line_parser()
 
68
    (options, args) = parser.parse_args(sys.argv[1:])
38
69
 
39
 
    if config.get_option('show_version'):
 
70
    if options.show_version:
40
71
        print "loggerhead %s" % __version__
41
72
        sys.exit(0)
42
73
 
43
 
    if config.arg_count > 1:
44
 
        config.print_help()
 
74
    if len(args) > 1:
 
75
        parser.print_help()
45
76
        sys.exit(1)
46
 
    elif config.arg_count == 1:
47
 
        path = config.get_arg(0)
 
77
    elif len(args) == 1:
 
78
        [path] = args
48
79
    else:
49
80
        path = '.'
50
81
 
52
83
        print "%s is not a directory" % path
53
84
        sys.exit(1)
54
85
 
55
 
    if config.get_option('trunk_dir') and not config.get_option('user_dirs'):
 
86
    if options.trunk_dir and not options.user_dirs:
56
87
        print "--trunk-dir is only valid with --user-dirs"
57
88
        sys.exit(1)
58
89
 
59
 
    if config.get_option('reload'):
 
90
    if options.reload:
60
91
        if Reloader.is_installed():
61
92
            Reloader.install()
62
93
        else:
63
94
            return Reloader.restart_with_reloader()
64
95
 
65
 
    if config.get_option('user_dirs'):
66
 
        if not config.get_option('trunk_dir'):
 
96
    if options.user_dirs:
 
97
        if not options.trunk_dir:
67
98
            print "You didn't specify a directory for the trunk directories."
68
99
            sys.exit(1)
69
 
        app = UserBranchesFromFileSystemRoot(path, config)
 
100
        app = UserBranchesFromFileSystemRoot(path, options.trunk_dir)
70
101
    else:
71
 
        app = BranchesFromFileSystemRoot(path, config)
 
102
        app = BranchesFromFileSystemRoot(path)
72
103
 
73
104
    # setup_logging()
74
105
    logging.basicConfig()
75
106
    logging.getLogger('').setLevel(logging.DEBUG)
76
107
    logger = getattr(app, 'log', logging.getLogger('loggerhead'))
77
 
    if config.get_option('log_folder'):
78
 
        logfile_path = os.path.join(
79
 
            config.get_option('log_folder'), 'serve-branches.log')
 
108
    if options.log_folder:
 
109
        logfile_path = os.path.join(options.log_folder, 'serve-branches.log')
80
110
    else:
81
111
        logfile_path = 'serve-branches.log'
82
112
    logfile = logging.FileHandler(logfile_path, 'a')
85
115
    logfile.setFormatter(formatter)
86
116
    logfile.setLevel(logging.DEBUG)
87
117
    logger.addHandler(logfile)
88
 
 
89
118
    # setup_logging() #end
90
 
 
 
119
    app = ErrorHandlerApp(app)
 
120
    app = HTTPExceptionHandler(app)
91
121
    app = TransLogger(app, logger=logger)
92
 
    if config.get_option('profile'):
 
122
    if options.profile:
93
123
        from loggerhead.middleware.profile import LSProfMiddleware
94
124
        app = LSProfMiddleware(app)
95
 
    if config.get_option('memory_profile'):
96
 
        from dozer import Dozer
97
 
        app = Dozer(app)
98
125
 
99
 
    if not config.get_option('user_prefix'):
 
126
    if not options.user_prefix:
100
127
        prefix = '/'
101
128
    else:
102
 
        prefix = config.get_option('user_prefix')
103
 
        if not prefix.startswith('/'):
104
 
            prefix = '/' + prefix
 
129
        prefix = options.user_prefix
105
130
 
106
131
    try:
107
132
        from paste.deploy.config import PrefixMiddleware
108
133
    except ImportError:
109
 
        cant_proxy_correctly_message = (
110
 
            'Unsupported configuration: PasteDeploy not available, but '
111
 
            'loggerhead appears to be behind a proxy.')
112
 
        def check_not_proxied(app):
113
 
            def wrapped(environ, start_response):
114
 
                if 'HTTP_X_FORWARDED_SERVER' in environ:
115
 
                    exc = HTTPInternalServerError()
116
 
                    exc.explanation = cant_proxy_correctly_message
117
 
                    raise exc
118
 
                return app(environ, start_response)
119
 
            return wrapped
120
 
        app = check_not_proxied(app)
 
134
        pass
121
135
    else:
122
136
        app = PrefixMiddleware(app, prefix=prefix)
123
137
 
124
 
    app = HTTPExceptionHandler(app)
125
 
    app = ErrorHandlerApp(app)
126
 
 
127
 
    if not config.get_option('user_port'):
 
138
    if not options.user_port:
128
139
        port = '8080'
129
140
    else:
130
 
        port = config.get_option('user_port')
 
141
        port = options.user_port
131
142
 
132
 
    if not config.get_option('user_host'):
 
143
    if not options.user_host:
133
144
        host = '0.0.0.0'
134
145
    else:
135
 
        host = config.get_option('user_host')
136
 
 
137
 
    load_plugins()
 
146
        host = options.user_host
138
147
 
139
148
    httpserver.serve(app, host=host, port=port)
140
149