~loggerhead-team/loggerhead/trunk-rich

161 by Michael Hudson
don't insist on python 2.4
1
#!/usr/bin/env python
183.2.1 by John Arbash Meinel
Add Copyright information to most files.
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
"""A script for starting the loggerhead process."""
17
89 by Robey Pointer
fix up dev.cfg so that nobody will ever have to edit it, by letting the
18
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
19
import logging
159.2.46 by Michael Hudson
add explicit import of logging.handlers
20
import logging.handlers
166.1.2 by Michael Hudson
more loggerhead.conf compatible vhosting
21
from optparse import OptionParser
89 by Robey Pointer
fix up dev.cfg so that nobody will ever have to edit it, by letting the
22
import os
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
23
import sys
166.1.2 by Michael Hudson
more loggerhead.conf compatible vhosting
24
import urlparse
89 by Robey Pointer
fix up dev.cfg so that nobody will ever have to edit it, by letting the
25
159.2.50 by Michael Hudson
reorder imports in start-loggerhead.py
26
from configobj import ConfigObj
27
159.2.28 by Michael Hudson
woohoo it works
28
from paste import httpserver
29
from paste.httpexceptions import make_middleware
30
from paste.translogger import make_filter
1 by Robey Pointer
initial checkin
31
204 by Martin Albisetti
Clean up unused/inexistant import
32
from loggerhead import daemon
159.2.50 by Michael Hudson
reorder imports in start-loggerhead.py
33
from loggerhead.apps.config import Root
217.1.1 by Guillermo Gonzalez
* refactor of logging-related functions (setup_logging and make_handler) into (new) trace module
34
from loggerhead.trace import make_handler, setup_logging
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
35
from loggerhead.apps.error import ErrorHandlerApp
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
36
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
37
def main():
197.1.4 by Jelmer Vernooij
Add --pidfile argument to start-loggerhead.
38
    home = os.path.realpath(os.path.dirname(__file__))
39
    default_pidfile = os.path.join(home, 'loggerhead.pid')
197.1.5 by Jelmer Vernooij
Add --configfile argument.
40
    default_configfile = os.path.join(home, 'loggerhead.conf')
197.1.6 by Jelmer Vernooij
add --log-folder option.
41
    default_log_folder = os.path.join(home, 'logs')
205 by Martin Albisetti
Further cleaning
42
    parser = OptionParser(usage='usage: %prog [options]', version='%prog')
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
43
    parser.add_option('-f', '--foreground', action='store_true', dest='foreground', default=False,
44
                      help="run in the foreground; don't daemonize")
45
    parser.add_option('-C', '--check', action='store_true', dest='check', default=False,
46
                      help="only start if not already running (useful for cron jobs)")
197.1.4 by Jelmer Vernooij
Add --pidfile argument to start-loggerhead.
47
    parser.add_option('-p', '--pidfile', dest="pidfile", default=default_pidfile,
197.2.1 by Jelmer Vernooij
Fix syntax.
48
                      type=str, help="override pidfile location")
197.1.6 by Jelmer Vernooij
add --log-folder option.
49
    parser.add_option('-c', '--config-file', dest="configfile", default=default_configfile,
197.2.1 by Jelmer Vernooij
Fix syntax.
50
					  type=str, help="override configuration file location")
51
    parser.add_option('-L', '--log-folder', dest="log_folder", default=default_log_folder,
52
                      type=str, help="override log file directory")
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
53
    options, args = parser.parse_args()
54
    if len(args) > 0:
55
        parser.error('No filename arguments are used, only options.')
159.2.27 by Michael Hudson
begin a compatibility app
56
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
57
    if options.check:
197.1.4 by Jelmer Vernooij
Add --pidfile argument to start-loggerhead.
58
        if daemon.is_running(options.pidfile):
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
59
            sys.exit(0)
197.1.4 by Jelmer Vernooij
Add --pidfile argument to start-loggerhead.
60
        sys.stderr.write('Did not find loggerhead running in %r; restarting...\n' % (options.pidfile,))
159.2.27 by Michael Hudson
begin a compatibility app
61
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
62
    # read loggerhead config
159.2.27 by Michael Hudson
begin a compatibility app
63
197.1.5 by Jelmer Vernooij
Add --configfile argument.
64
    config = ConfigObj(options.configfile, encoding='utf-8')
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
65
    extra_path = config.get('bzrpath', None)
66
    if extra_path:
67
        sys.path.insert(0, extra_path)
159.2.27 by Michael Hudson
begin a compatibility app
68
159.2.28 by Michael Hudson
woohoo it works
69
    potential_overrides = [ ('server.socket_port', int),
70
                            ('server.webpath', str),
71
                            ('server.thread_pool', int),
72
                            ('server.socket_host' ,str) ]
159.2.36 by Michael Hudson
more compatibility
73
    server_port = int(config.get('server.socket_port', 8080))
74
    nworkers = int(config.get('server.thread_pool', 10))
75
    server_host = config.get('server.socket_host', '0.0.0.0')
76
    webpath = config.get('server.webpath', None)
77
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
78
    for key, keytype in potential_overrides:
79
        value = config.get(key, None)
80
        if value is not None:
81
            value = keytype(value)
159.2.28 by Michael Hudson
woohoo it works
82
159.2.29 by Michael Hudson
re-enable daemonization, remove require("TurboGears")
83
    if not options.foreground:
84
        sys.stderr.write('\n')
85
        sys.stderr.write('Launching loggerhead into the background.\n')
197.1.4 by Jelmer Vernooij
Add --pidfile argument to start-loggerhead.
86
        sys.stderr.write('PID file: %s\n' % (options.pidfile,))
159.2.29 by Michael Hudson
re-enable daemonization, remove require("TurboGears")
87
        sys.stderr.write('\n')
159.2.28 by Michael Hudson
woohoo it works
88
197.1.4 by Jelmer Vernooij
Add --pidfile argument to start-loggerhead.
89
        daemon.daemonize(options.pidfile, home)
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
90
197.1.6 by Jelmer Vernooij
add --log-folder option.
91
    setup_logging(options.log_folder, config, foreground=options.foreground)
159.2.27 by Michael Hudson
begin a compatibility app
92
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
93
    log = logging.getLogger('loggerhead')
94
    log.info('Starting up...')
159.2.27 by Michael Hudson
begin a compatibility app
95
159.2.28 by Michael Hudson
woohoo it works
96
    app = Root(config)
97
98
    app = app
99
    app = make_middleware(app)
217.1.4 by Guillermo Gonzalez
* new apps module: "error" and ErrorHandlerApp middleware
100
    app = make_filter(app, None, logger_name=log.name+'.access')
101
    app = ErrorHandlerApp(app)
159.2.28 by Michael Hudson
woohoo it works
102
159.2.36 by Michael Hudson
more compatibility
103
    if webpath:
166.1.2 by Michael Hudson
more loggerhead.conf compatible vhosting
104
        scheme, netloc, path, blah, blah, blah = urlparse.urlparse(webpath)
105
        def app(environ, start_response, orig=app):
106
            environ['SCRIPT_NAME'] = path
107
            environ['HTTP_HOST'] = netloc
108
            return orig(environ, start_response)
159.2.36 by Michael Hudson
more compatibility
109
159.2.45 by Michael Hudson
testing is grate
110
    try:
111
        httpserver.serve(
112
            app, host=server_host, port=server_port,
113
            threadpool_workers=nworkers)
114
    finally:
115
        log.info('Shutdown.')
116
        try:
197.1.4 by Jelmer Vernooij
Add --pidfile argument to start-loggerhead.
117
            os.remove(options.pidfile)
159.2.45 by Michael Hudson
testing is grate
118
        except OSError:
119
            pass
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
120
121
122
if __name__ == '__main__':
123
    main()