~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Michael Hudson
  • Date: 2009-03-16 23:01:40 UTC
  • Revision ID: michael.hudson@canonical.com-20090316230140-ydm0xm0jghg6v5dq
it seems that double url-encoding the revid we put in the +revlog url is
necessary to avoid assorted bits of cleverness in random toolchains.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
 
#
3
 
# Copyright (C) 2008, 2009 Canonical Ltd
4
 
#
5
2
# This program is free software; you can redistribute it and/or modify
6
3
# it under the terms of the GNU General Public License as published by
7
4
# the Free Software Foundation; either version 2 of the License, or
22
19
import os
23
20
import sys
24
21
 
 
22
from optparse import OptionParser
 
23
 
25
24
from bzrlib.plugin import load_plugins
26
 
from bzrlib.transport import get_transport
27
25
 
28
26
from paste import httpserver
29
27
from paste.httpexceptions import HTTPExceptionHandler, HTTPInternalServerError
30
28
from paste.translogger import TransLogger
31
29
 
32
30
from loggerhead import __version__
33
 
from loggerhead.apps.transport import (
34
 
    BranchesFromTransportRoot, UserBranchesFromTransportRoot)
35
 
from loggerhead.config import LoggerheadConfig
 
31
from loggerhead.apps.filesystem import (
 
32
    BranchesFromFileSystemRoot, UserBranchesFromFileSystemRoot)
36
33
from loggerhead.util import Reloader
37
34
from loggerhead.apps.error import ErrorHandlerApp
38
35
 
39
36
 
 
37
def command_line_parser():
 
38
    parser = OptionParser("%prog [options] <path>")
 
39
    parser.set_defaults(
 
40
        user_dirs=False,
 
41
        show_version=False,
 
42
        log_folder=None,
 
43
        )
 
44
    parser.add_option("--user-dirs", action="store_true", dest="user_dirs",
 
45
                      help="Serve user directories as ~user.")
 
46
    parser.add_option("--trunk-dir", metavar="DIR",
 
47
                      help="The directory that contains the trunk branches.")
 
48
    parser.add_option("--port", dest="user_port",
 
49
                      help=("Port Loggerhead should listen on "
 
50
                            "(defaults to 8080)."))
 
51
    parser.add_option("--host", dest="user_host",
 
52
                      help="Host Loggerhead should listen on.")
 
53
    parser.add_option("--prefix", dest="user_prefix",
 
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.")
 
58
    parser.add_option("--reload", action="store_true", dest="reload",
 
59
                      help="Restarts the application when changing python"
 
60
                           " files. Only used for development purposes.")
 
61
    parser.add_option('--log-folder', dest="log_folder",
 
62
                      type=str, help="The directory to place log files in.")
 
63
    parser.add_option("--version", action="store_true", dest="show_version",
 
64
                      help="Print the software version and exit")
 
65
    return parser
 
66
 
 
67
 
40
68
def main(args):
41
 
    config = LoggerheadConfig()
 
69
    parser = command_line_parser()
 
70
    (options, args) = parser.parse_args(sys.argv[1:])
42
71
 
43
 
    if config.get_option('show_version'):
 
72
    if options.show_version:
44
73
        print "loggerhead %s" % __version__
45
74
        sys.exit(0)
46
75
 
47
 
    if config.arg_count > 1:
48
 
        config.print_help()
 
76
    if len(args) > 1:
 
77
        parser.print_help()
49
78
        sys.exit(1)
50
 
    elif config.arg_count == 1:
51
 
        path = config.get_arg(0)
 
79
    elif len(args) == 1:
 
80
        [path] = args
52
81
    else:
53
82
        path = '.'
54
83
 
55
 
    load_plugins()
56
 
 
57
 
    if config.get_option('allow_writes'):
58
 
        transport = get_transport(path)
59
 
    else:
60
 
        transport = get_transport('readonly+' + path)
61
 
 
62
 
    if config.get_option('trunk_dir') and not config.get_option('user_dirs'):
 
84
    if not os.path.isdir(path):
 
85
        print "%s is not a directory" % path
 
86
        sys.exit(1)
 
87
 
 
88
    if options.trunk_dir and not options.user_dirs:
63
89
        print "--trunk-dir is only valid with --user-dirs"
64
90
        sys.exit(1)
65
91
 
66
 
    if config.get_option('reload'):
 
92
    if options.reload:
67
93
        if Reloader.is_installed():
68
94
            Reloader.install()
69
95
        else:
70
96
            return Reloader.restart_with_reloader()
71
97
 
72
 
    if config.get_option('user_dirs'):
73
 
        if not config.get_option('trunk_dir'):
 
98
    if options.user_dirs:
 
99
        if not options.trunk_dir:
74
100
            print "You didn't specify a directory for the trunk directories."
75
101
            sys.exit(1)
76
 
        app = UserBranchesFromTransportRoot(transport, config)
 
102
        app = UserBranchesFromFileSystemRoot(path, options.trunk_dir)
77
103
    else:
78
 
        app = BranchesFromTransportRoot(transport, config)
 
104
        app = BranchesFromFileSystemRoot(path)
79
105
 
80
106
    # setup_logging()
81
107
    logging.basicConfig()
82
108
    logging.getLogger('').setLevel(logging.DEBUG)
83
109
    logger = getattr(app, 'log', logging.getLogger('loggerhead'))
84
 
    if config.get_option('log_folder'):
85
 
        logfile_path = os.path.join(
86
 
            config.get_option('log_folder'), 'serve-branches.log')
 
110
    if options.log_folder:
 
111
        logfile_path = os.path.join(options.log_folder, 'serve-branches.log')
87
112
    else:
88
113
        logfile_path = 'serve-branches.log'
89
114
    logfile = logging.FileHandler(logfile_path, 'a')
92
117
    logfile.setFormatter(formatter)
93
118
    logfile.setLevel(logging.DEBUG)
94
119
    logger.addHandler(logfile)
95
 
 
96
120
    # setup_logging() #end
97
 
 
98
 
    if config.get_option('profile'):
 
121
    app = TransLogger(app, logger=logger)
 
122
    if options.profile:
99
123
        from loggerhead.middleware.profile import LSProfMiddleware
100
124
        app = LSProfMiddleware(app)
101
 
    if config.get_option('memory_profile'):
102
 
        from dozer import Dozer
103
 
        app = Dozer(app)
104
125
 
105
 
    if not config.get_option('user_prefix'):
 
126
    if not options.user_prefix:
106
127
        prefix = '/'
107
128
    else:
108
 
        prefix = config.get_option('user_prefix')
 
129
        prefix = options.user_prefix
109
130
        if not prefix.startswith('/'):
110
131
            prefix = '/' + prefix
111
132
 
129
150
 
130
151
    app = HTTPExceptionHandler(app)
131
152
    app = ErrorHandlerApp(app)
132
 
    app = TransLogger(app, logger=logger)
133
153
 
134
 
    if not config.get_option('user_port'):
 
154
    if not options.user_port:
135
155
        port = '8080'
136
156
    else:
137
 
        port = config.get_option('user_port')
 
157
        port = options.user_port
138
158
 
139
 
    if not config.get_option('user_host'):
 
159
    if not options.user_host:
140
160
        host = '0.0.0.0'
141
161
    else:
142
 
        host = config.get_option('user_host')
 
162
        host = options.user_host
 
163
 
 
164
    load_plugins()
143
165
 
144
166
    httpserver.serve(app, host=host, port=port)
145
167