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) ] |
|
128.2.3
by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for |
91 |
for key, keytype in potential_overrides: |
92 |
value = config.get(key, None) |
|
93 |
if value is not None: |
|
94 |
value = keytype(value) |
|
159.2.28
by Michael Hudson
woohoo it works |
95 |
#turbogears.config.update({ key: value })
|
96 |
||
159.2.29
by Michael Hudson
re-enable daemonization, remove require("TurboGears") |
97 |
if not options.foreground: |
98 |
sys.stderr.write('\n') |
|
99 |
sys.stderr.write('Launching loggerhead into the background.\n') |
|
100 |
sys.stderr.write('PID file: %s\n' % (pidfile,)) |
|
101 |
sys.stderr.write('\n') |
|
159.2.28
by Michael Hudson
woohoo it works |
102 |
|
159.2.29
by Michael Hudson
re-enable daemonization, remove require("TurboGears") |
103 |
daemon.daemonize(pidfile, home) |
128.2.3
by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for |
104 |
|
105 |
setup_logging(home, config, foreground=options.foreground) |
|
159.2.27
by Michael Hudson
begin a compatibility app |
106 |
|
128.2.3
by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for |
107 |
log = logging.getLogger('loggerhead') |
108 |
log.info('Starting up...') |
|
159.2.27
by Michael Hudson
begin a compatibility app |
109 |
|
159.2.28
by Michael Hudson
woohoo it works |
110 |
app = Root(config) |
111 |
||
112 |
app = app |
|
113 |
app = make_middleware(app) |
|
114 |
app = make_filter(app, None) |
|
115 |
||
116 |
httpserver.serve(app, host='127.0.0.1', port='9876') |
|
128.2.3
by Robey Pointer
add a '-C' option for ensuring loggerhead is running (from a cron job, for |
117 |
|
118 |
||
119 |
if __name__ == '__main__': |
|
120 |
main() |