22
from optparse import OptionParser
22
24
from bzrlib.plugin import load_plugins
23
from bzrlib.transport import get_transport
25
26
from paste import httpserver
26
27
from paste.httpexceptions import HTTPExceptionHandler, HTTPInternalServerError
27
28
from paste.translogger import TransLogger
29
30
from loggerhead import __version__
30
from loggerhead.apps.transport import (
31
BranchesFromTransportRoot, UserBranchesFromTransportRoot)
32
from loggerhead.config import LoggerheadConfig
31
from loggerhead.apps.filesystem import (
32
BranchesFromFileSystemRoot, UserBranchesFromFileSystemRoot)
33
33
from loggerhead.util import Reloader
34
34
from loggerhead.apps.error import ErrorHandlerApp
37
def command_line_parser():
38
parser = OptionParser("%prog [options] <path>")
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")
38
config = LoggerheadConfig()
69
parser = command_line_parser()
70
(options, args) = parser.parse_args(sys.argv[1:])
40
if config.get_option('show_version'):
72
if options.show_version:
41
73
print "loggerhead %s" % __version__
44
if config.arg_count > 1:
47
elif config.arg_count == 1:
48
path = config.get_arg(0)
54
transport = get_transport(path)
56
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
88
if options.trunk_dir and not options.user_dirs:
57
89
print "--trunk-dir is only valid with --user-dirs"
60
if config.get_option('reload'):
61
93
if Reloader.is_installed():
64
96
return Reloader.restart_with_reloader()
66
if config.get_option('user_dirs'):
67
if not config.get_option('trunk_dir'):
99
if not options.trunk_dir:
68
100
print "You didn't specify a directory for the trunk directories."
70
app = UserBranchesFromTransportRoot(transport, config)
102
app = UserBranchesFromFileSystemRoot(path, options.trunk_dir)
72
app = BranchesFromTransportRoot(transport, config)
104
app = BranchesFromFileSystemRoot(path)
75
107
logging.basicConfig()
76
108
logging.getLogger('').setLevel(logging.DEBUG)
77
109
logger = getattr(app, 'log', logging.getLogger('loggerhead'))
78
if config.get_option('log_folder'):
79
logfile_path = os.path.join(
80
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')
82
113
logfile_path = 'serve-branches.log'
83
114
logfile = logging.FileHandler(logfile_path, 'a')