~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Martin Albisetti
  • Date: 2009-06-08 23:02:49 UTC
  • mfrom: (352.6.13 serve-config)
  • Revision ID: martin.albisetti@canonical.com-20090608230249-8a05ifphj4zluly2
Allow hiding branches with serve-branches, now checks in ~/.bazaar/locations.conf

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('--memory-profile', action='store_true',
54
 
                      dest='memory_profile',
55
 
                      help='Profile the memory usage using heapy.')
56
 
    parser.add_option("--prefix", dest="user_prefix",
57
 
                      help="Specify host prefix.")
58
 
    parser.add_option("--profile", action="store_true", dest="profile",
59
 
                      help="Generate callgrind profile data to "
60
 
                        "%d-stats.callgrind on each request.")
61
 
    parser.add_option("--reload", action="store_true", dest="reload",
62
 
                      help="Restarts the application when changing python"
63
 
                           " files. Only used for development purposes.")
64
 
    parser.add_option('--log-folder', dest="log_folder",
65
 
                      type=str, help="The directory to place log files in.")
66
 
    parser.add_option("--version", action="store_true", dest="show_version",
67
 
                      help="Print the software version and exit")
68
 
    return parser
69
 
 
70
 
 
71
40
def main(args):
72
 
    parser = command_line_parser()
73
 
    (options, args) = parser.parse_args(sys.argv[1:])
 
41
    config = LoggerheadConfig()
74
42
 
75
 
    if options.show_version:
 
43
    if config.get_option('show_version'):
76
44
        print "loggerhead %s" % __version__
77
45
        sys.exit(0)
78
46
 
79
 
    if len(args) > 1:
80
 
        parser.print_help()
 
47
    if config.arg_count > 1:
 
48
        config.print_help()
81
49
        sys.exit(1)
82
 
    elif len(args) == 1:
83
 
        [path] = args
 
50
    elif config.arg_count == 1:
 
51
        path = config.get_arg(0)
84
52
    else:
85
53
        path = '.'
86
54
 
87
 
    if not os.path.isdir(path):
88
 
        print "%s is not a directory" % path
89
 
        sys.exit(1)
90
 
 
91
 
    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'):
92
63
        print "--trunk-dir is only valid with --user-dirs"
93
64
        sys.exit(1)
94
65
 
95
 
    if options.reload:
 
66
    if config.get_option('reload'):
96
67
        if Reloader.is_installed():
97
68
            Reloader.install()
98
69
        else:
99
70
            return Reloader.restart_with_reloader()
100
71
 
101
 
    if options.user_dirs:
102
 
        if not options.trunk_dir:
 
72
    if config.get_option('user_dirs'):
 
73
        if not config.get_option('trunk_dir'):
103
74
            print "You didn't specify a directory for the trunk directories."
104
75
            sys.exit(1)
105
 
        app = UserBranchesFromFileSystemRoot(path, options.trunk_dir)
 
76
        app = UserBranchesFromTransportRoot(transport, config)
106
77
    else:
107
 
        app = BranchesFromFileSystemRoot(path)
 
78
        app = BranchesFromTransportRoot(transport, config)
108
79
 
109
80
    # setup_logging()
110
81
    logging.basicConfig()
111
82
    logging.getLogger('').setLevel(logging.DEBUG)
112
83
    logger = getattr(app, 'log', logging.getLogger('loggerhead'))
113
 
    if options.log_folder:
114
 
        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')
115
87
    else:
116
88
        logfile_path = 'serve-branches.log'
117
89
    logfile = logging.FileHandler(logfile_path, 'a')
121
93
    logfile.setLevel(logging.DEBUG)
122
94
    logger.addHandler(logfile)
123
95
 
124
 
    memprofile = logging.getLogger('loggerhead-memprofile')
125
 
    memprofile.setLevel(logging.DEBUG)
126
 
    memprofile.addHandler(logging.FileHandler('loggerhead-memprofile'))
127
 
 
128
96
    # setup_logging() #end
129
97
 
130
 
    app = TransLogger(app, logger=logger)
131
 
    if options.profile:
 
98
    if config.get_option('profile'):
132
99
        from loggerhead.middleware.profile import LSProfMiddleware
133
100
        app = LSProfMiddleware(app)
134
 
    if options.memory_profile:
135
 
        from loggerhead.middleware.profile import MemoryProfileMiddleware
136
 
        app = MemoryProfileMiddleware(app)
 
101
    if config.get_option('memory_profile'):
 
102
        from dozer import Dozer
 
103
        app = Dozer(app)
137
104
 
138
 
    if not options.user_prefix:
 
105
    if not config.get_option('user_prefix'):
139
106
        prefix = '/'
140
107
    else:
141
 
        prefix = options.user_prefix
 
108
        prefix = config.get_option('user_prefix')
142
109
        if not prefix.startswith('/'):
143
110
            prefix = '/' + prefix
144
111
 
162
129
 
163
130
    app = HTTPExceptionHandler(app)
164
131
    app = ErrorHandlerApp(app)
 
132
    app = TransLogger(app, logger=logger)
165
133
 
166
 
    if not options.user_port:
 
134
    if not config.get_option('user_port'):
167
135
        port = '8080'
168
136
    else:
169
 
        port = options.user_port
 
137
        port = config.get_option('user_port')
170
138
 
171
 
    if not options.user_host:
 
139
    if not config.get_option('user_host'):
172
140
        host = '0.0.0.0'
173
141
    else:
174
 
        host = options.user_host
175
 
 
176
 
    load_plugins()
 
142
        host = config.get_option('user_host')
177
143
 
178
144
    httpserver.serve(app, host=host, port=port)
179
145