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