~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Matt Nordhoff
  • Date: 2009-06-06 09:21:52 UTC
  • mto: This revision was merged to the branch mainline in revision 366.
  • Revision ID: mnordhoff@mattnordhoff.com-20090606092152-p7k637np0h1t2q0a
Add type attributes to all of the <link> elements

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