~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to serve-branches

  • Committer: Guillermo Gonzalez
  • Date: 2008-09-10 00:13:18 UTC
  • mfrom: (220 trunk)
  • mto: (217.1.9 logging)
  • mto: This revision was merged to the branch mainline in revision 226.
  • Revision ID: guillo.gonzo@gmail.com-20080910001318-78w16x9zl9p7f1k3
 * merge with trunk 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# This program is free software; you can redistribute it and/or modify
 
3
# it under the terms of the GNU General Public License as published by
 
4
# the Free Software Foundation; either version 2 of the License, or
 
5
# (at your option) any later version.
 
6
#
 
7
# This program is distributed in the hope that it will be useful,
 
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
# GNU General Public License for more details.
 
11
#
 
12
# You should have received a copy of the GNU General Public License
 
13
# along with this program; if not, write to the Free Software
 
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
 
 
16
"""Search for branches underneath a directory and serve them all."""
 
17
 
 
18
import logging
 
19
import os
 
20
import sys
 
21
 
 
22
from optparse import OptionParser
 
23
 
 
24
from paste import httpserver
 
25
from paste.httpexceptions import HTTPExceptionHandler
 
26
from paste.translogger import TransLogger
 
27
 
 
28
from loggerhead import __version__
 
29
from loggerhead.apps.filesystem import (
 
30
    BranchesFromFileSystemRoot, UserBranchesFromFileSystemRoot)
 
31
from loggerhead.apps.error import ErrorHandlerApp
 
32
 
 
33
def command_line_parser():
 
34
    parser = OptionParser("%prog [options] <path>")
 
35
    parser.set_defaults(
 
36
        user_dirs=False,
 
37
        show_version=False,
 
38
        log_folder=None,
 
39
        )
 
40
    parser.add_option("--user-dirs", action="store_true", dest="user_dirs",
 
41
                      help="Serve user directories as ~user.")
 
42
    parser.add_option("--trunk-dir", metavar="DIR",
 
43
                      help="The directory that contains the trunk branches.")
 
44
    parser.add_option("--port", dest="user_port",
 
45
                      help="Port Loggerhead should listen on (defaults to 8080).")
 
46
    parser.add_option("--host", dest="user_host",
 
47
                      help="Host Loggerhead should listen on.")
 
48
    parser.add_option("--prefix", dest="user_prefix",
 
49
                      help="Specify host prefix.")
 
50
    parser.add_option("--version", action="store_true", dest="show_version",
 
51
                      help="Print the software version and exit")
 
52
    parser.add_option('--log-folder', dest="log_folder", 
 
53
                      type=str, help="The directory to place log files")
 
54
    return parser
 
55
 
 
56
 
 
57
def main(args):
 
58
    parser = command_line_parser()
 
59
    (options, args) = parser.parse_args(sys.argv[1:])
 
60
 
 
61
    if options.show_version:
 
62
        print "loggerhead %s" % __version__
 
63
        sys.exit(0)
 
64
 
 
65
    if len(args) > 1:
 
66
        parser.print_help()
 
67
        sys.exit(1)
 
68
    elif len(args) == 1:
 
69
        [path] = args
 
70
    else:
 
71
        path = '.'
 
72
 
 
73
    if not os.path.isdir(path):
 
74
        print "%s is not a directory" % path
 
75
        sys.exit(1)
 
76
 
 
77
    if options.trunk_dir and not options.user_dirs:
 
78
        print "--trunk-dir is only valid with --user-dirs"
 
79
        sys.exit(1)
 
80
 
 
81
    if options.user_dirs:
 
82
        if not options.trunk_dir:
 
83
            print "You didn't specify a directory for the trunk directories."
 
84
            sys.exit(1)
 
85
        app = UserBranchesFromFileSystemRoot(path, options.trunk_dir)
 
86
    else:
 
87
        app = BranchesFromFileSystemRoot(path)
 
88
    
 
89
    # setup_logging()
 
90
    logging.basicConfig()
 
91
    logging.getLogger('').setLevel(logging.DEBUG)
 
92
    logger = getattr(app, 'log', logging.getLogger('loggerhead'))
 
93
    if options.log_folder:
 
94
        logfile_path = os.path.join(options.log_folder, 'serve-branches.log')
 
95
    else:
 
96
        logfile_path = 'serve-branches.log'
 
97
    logfile = logging.FileHandler(logfile_path, 'a')
 
98
    formatter = logging.Formatter('%(asctime)s %(levelname)-8s %(name)s:'
 
99
                                  ' %(message)s')
 
100
    logfile.setFormatter(formatter)
 
101
    logfile.setLevel(logging.DEBUG)
 
102
    logger.addHandler(logfile)
 
103
    # setup_logging() #end
 
104
    app = ErrorHandlerApp(app)
 
105
    app = HTTPExceptionHandler(app)
 
106
    app = TransLogger(app, logger=logger)
 
107
 
 
108
 
 
109
    if not options.user_prefix:
 
110
        prefix = '/'
 
111
    else:
 
112
        prefix = options.user_prefix
 
113
 
 
114
    try:
 
115
        from paste.deploy.config import PrefixMiddleware
 
116
    except ImportError:
 
117
        pass
 
118
    else:
 
119
        app = PrefixMiddleware(app, prefix=prefix)
 
120
    
 
121
    if not options.user_port:
 
122
        port = '8080'
 
123
    else:
 
124
        port = options.user_port
 
125
 
 
126
    if not options.user_host:
 
127
        host = '0.0.0.0'
 
128
    else:
 
129
        host = options.user_host
 
130
 
 
131
    httpserver.serve(app, host=host, port=port)
 
132
 
 
133
 
 
134
if __name__ == "__main__":
 
135
    main(sys.argv)