~loggerhead-team/loggerhead/trunk-rich

128.6.72 by Michael Hudson
use 2.4 by default
1
#!/usr/bin/env python2.4
89 by Robey Pointer
fix up dev.cfg so that nobody will ever have to edit it, by letting the
2
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
3
import logging
89 by Robey Pointer
fix up dev.cfg so that nobody will ever have to edit it, by letting the
4
import os
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
5
import sys
6
from optparse import OptionParser
89 by Robey Pointer
fix up dev.cfg so that nobody will ever have to edit it, by letting the
7
159.2.28 by Michael Hudson
woohoo it works
8
from loggerhead.apps.config import Root
9
from paste import httpserver
10
from paste.httpexceptions import make_middleware
11
from paste.translogger import make_filter
1 by Robey Pointer
initial checkin
12
148.3.4 by Michael Hudson
decruft
13
from loggerhead import daemon, release
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
14
15
16
def make_handler(config, filename):
17
    roll = config.get('log.roll', 'never')
18
    if roll == 'daily':
19
        h = logging.handlers.TimedRotatingFileHandler(filename, 'midnight', 0, 100)
20
    elif roll == 'weekly':
21
        h = logging.handlers.TimedRotatingFileHandler(filename, 'W0', 0, 100)
22
    else:
128.2.4 by Robey Pointer
ok i should've known those API calls wouldn't be consistent.
23
        h = logging.FileHandler(filename)
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
24
    return h
25
159.2.27 by Michael Hudson
begin a compatibility app
26
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
27
def setup_logging(home, config, foreground):
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
28
    # i hate that stupid logging config format, so just set up logging here.
29
30
    log_folder = os.path.join(home, 'logs')
31
    if not os.path.exists(log_folder):
32
        os.mkdir(log_folder)
159.2.27 by Michael Hudson
begin a compatibility app
33
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
34
    f = logging.Formatter('%(levelname)-.3s [%(asctime)s.%(msecs)03d] %(name)s: %(message)s',
35
                          '%Y%m%d-%H:%M:%S')
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
36
    debug_log = make_handler(config, os.path.join(log_folder, 'debug.log'))
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
37
    debug_log.setLevel(logging.DEBUG)
38
    debug_log.setFormatter(f)
39
    if foreground:
40
        stdout_log = logging.StreamHandler(sys.stdout)
41
        stdout_log.setLevel(logging.DEBUG)
42
        stdout_log.setFormatter(f)
43
    f = logging.Formatter('[%(asctime)s.%(msecs)03d] %(message)s',
44
                          '%Y%m%d-%H:%M:%S')
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
45
    access_log = make_handler(config, os.path.join(log_folder, 'access.log'))
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
46
    access_log.setLevel(logging.INFO)
47
    access_log.setFormatter(f)
159.2.27 by Michael Hudson
begin a compatibility app
48
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
49
    logging.getLogger('').addHandler(debug_log)
50
    logging.getLogger('turbogears.access').addHandler(access_log)
51
    logging.getLogger('turbogears.controllers').setLevel(logging.INFO)
159.2.27 by Michael Hudson
begin a compatibility app
52
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
53
    if foreground:
54
        logging.getLogger('').addHandler(stdout_log)
159.2.27 by Michael Hudson
begin a compatibility app
55
93 by Robey Pointer
slight cleanup, and add '-f' option for running in the foreground.
56
57
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
58
def main():
59
    parser = OptionParser(usage='usage: %prog [options]', version='%prog ' + release.version)
60
    parser.add_option('-f', '--foreground', action='store_true', dest='foreground', default=False,
61
                      help="run in the foreground; don't daemonize")
62
    parser.add_option('-C', '--check', action='store_true', dest='check', default=False,
63
                      help="only start if not already running (useful for cron jobs)")
64
    options, args = parser.parse_args()
65
    if len(args) > 0:
66
        parser.error('No filename arguments are used, only options.')
159.2.27 by Michael Hudson
begin a compatibility app
67
68
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
69
    home = os.path.realpath(os.path.dirname(__file__))
70
    pidfile = os.path.join(home, 'loggerhead.pid')
159.2.27 by Michael Hudson
begin a compatibility app
71
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
72
    if options.check:
73
        if daemon.is_running(pidfile):
74
            sys.exit(0)
128.2.5 by Robey Pointer
it's called loggerhead :)
75
        sys.stderr.write('Did not find loggerhead running in %r; restarting...\n' % (pidfile,))
159.2.27 by Michael Hudson
begin a compatibility app
76
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
77
    # read loggerhead config
159.2.27 by Michael Hudson
begin a compatibility app
78
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
79
    from configobj import ConfigObj
80
    config = ConfigObj(os.path.join(home, 'loggerhead.conf'), encoding='utf-8')
81
    extra_path = config.get('bzrpath', None)
82
    if extra_path:
83
        sys.path.insert(0, extra_path)
159.2.27 by Michael Hudson
begin a compatibility app
84
159.2.28 by Michael Hudson
woohoo it works
85
    #turbogears.update_config(configfile="dev.cfg", modulename="loggerhead.config")
159.2.27 by Michael Hudson
begin a compatibility app
86
159.2.28 by Michael Hudson
woohoo it works
87
    potential_overrides = [ ('server.socket_port', int),
88
                            ('server.webpath', str),
89
                            ('server.thread_pool', int),
90
                            ('server.socket_host' ,str) ]
159.2.36 by Michael Hudson
more compatibility
91
    server_port = int(config.get('server.socket_port', 8080))
92
    nworkers = int(config.get('server.thread_pool', 10))
93
    server_host = config.get('server.socket_host', '0.0.0.0')
94
    webpath = config.get('server.webpath', None)
95
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
96
    for key, keytype in potential_overrides:
97
        value = config.get(key, None)
98
        if value is not None:
99
            value = keytype(value)
159.2.28 by Michael Hudson
woohoo it works
100
            #turbogears.config.update({ key: value })
101
159.2.29 by Michael Hudson
re-enable daemonization, remove require("TurboGears")
102
    if not options.foreground:
103
        sys.stderr.write('\n')
104
        sys.stderr.write('Launching loggerhead into the background.\n')
105
        sys.stderr.write('PID file: %s\n' % (pidfile,))
106
        sys.stderr.write('\n')
159.2.28 by Michael Hudson
woohoo it works
107
159.2.29 by Michael Hudson
re-enable daemonization, remove require("TurboGears")
108
        daemon.daemonize(pidfile, home)
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
109
110
    setup_logging(home, config, foreground=options.foreground)
159.2.27 by Michael Hudson
begin a compatibility app
111
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
112
    log = logging.getLogger('loggerhead')
113
    log.info('Starting up...')
159.2.27 by Michael Hudson
begin a compatibility app
114
159.2.28 by Michael Hudson
woohoo it works
115
    app = Root(config)
116
117
    app = app
118
    app = make_middleware(app)
119
    app = make_filter(app, None)
120
159.2.36 by Michael Hudson
more compatibility
121
    if webpath:
122
        if not webpath.endswith('/'):
123
            webpath += '/'
124
        def app(environ, start_response, app=app):
125
            environ['SCRIPT_NAME'] = webpath
126
            return app(environ, start_response)
127
128
    httpserver.serve(app, host=server_host, port=server_port, threadpool_workers=nworkers)
128.2.3 by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for
129
130
131
if __name__ == '__main__':
132
    main()