~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

  • Committer: Martin Albisetti
  • Date: 2008-06-22 18:04:15 UTC
  • Revision ID: argentina@gmail.com-20080622180415-9ognqtaiptt58z7p
 * Remove homepage
 * Remove release tarballs
 * Remove push-website script
 * Edit MANIFEST.in to reflect current content

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
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
 
"""A script for starting the loggerhead process."""
17
 
 
18
2
 
19
3
import logging
20
4
import logging.handlers
21
 
from optparse import OptionParser
22
5
import os
23
6
import sys
24
 
import urlparse
 
7
from optparse import OptionParser
25
8
 
26
9
from configobj import ConfigObj
27
10
 
44
27
    return h
45
28
 
46
29
 
47
 
def setup_logging(logdir, config, foreground):
 
30
def setup_logging(home, config, foreground):
48
31
    # i hate that stupid logging config format, so just set up logging here.
49
32
 
 
33
    log_folder = os.path.join(home, 'logs')
50
34
    if not os.path.exists(log_folder):
51
35
        os.mkdir(log_folder)
52
36
 
65
49
    access_log.setLevel(logging.INFO)
66
50
    access_log.setFormatter(f)
67
51
 
68
 
    logging.getLogger('').setLevel(logging.DEBUG)
69
52
    logging.getLogger('').addHandler(debug_log)
70
 
    logging.getLogger('wsgi').addHandler(access_log)
 
53
    logging.getLogger('turbogears.access').addHandler(access_log)
 
54
    logging.getLogger('turbogears.controllers').setLevel(logging.INFO)
71
55
 
72
56
    if foreground:
73
57
        logging.getLogger('').addHandler(stdout_log)
75
59
 
76
60
 
77
61
def main():
78
 
    home = os.path.realpath(os.path.dirname(__file__))
79
 
    default_pidfile = os.path.join(home, 'loggerhead.pid')
80
 
    default_configfile = os.path.join(home, 'loggerhead.conf')
81
 
    default_log_folder = os.path.join(home, 'logs')
82
62
    parser = OptionParser(usage='usage: %prog [options]', version='%prog ' + release.version)
83
63
    parser.add_option('-f', '--foreground', action='store_true', dest='foreground', default=False,
84
64
                      help="run in the foreground; don't daemonize")
85
65
    parser.add_option('-C', '--check', action='store_true', dest='check', default=False,
86
66
                      help="only start if not already running (useful for cron jobs)")
87
 
    parser.add_option('-p', '--pidfile', dest="pidfile", default=default_pidfile,
88
 
                      help="override pidfile location")
89
 
    parser.add_option('-c', '--config-file', dest="configfile", default=default_configfile,
90
 
                      help="override configuration file location")
91
 
    parser.add_option('-L', '--log-folder', dest="log-folder", default=default_log_folder,
92
 
                      help="override log file directory")
93
67
    options, args = parser.parse_args()
94
68
    if len(args) > 0:
95
69
        parser.error('No filename arguments are used, only options.')
96
70
 
 
71
 
 
72
    home = os.path.realpath(os.path.dirname(__file__))
 
73
    pidfile = os.path.join(home, 'loggerhead.pid')
 
74
 
97
75
    if options.check:
98
 
        if daemon.is_running(options.pidfile):
 
76
        if daemon.is_running(pidfile):
99
77
            sys.exit(0)
100
 
        sys.stderr.write('Did not find loggerhead running in %r; restarting...\n' % (options.pidfile,))
 
78
        sys.stderr.write('Did not find loggerhead running in %r; restarting...\n' % (pidfile,))
101
79
 
102
80
    # read loggerhead config
103
81
 
104
 
    config = ConfigObj(options.configfile, encoding='utf-8')
 
82
    config = ConfigObj(os.path.join(home, 'loggerhead.conf'), encoding='utf-8')
105
83
    extra_path = config.get('bzrpath', None)
106
84
    if extra_path:
107
85
        sys.path.insert(0, extra_path)
126
104
    if not options.foreground:
127
105
        sys.stderr.write('\n')
128
106
        sys.stderr.write('Launching loggerhead into the background.\n')
129
 
        sys.stderr.write('PID file: %s\n' % (options.pidfile,))
 
107
        sys.stderr.write('PID file: %s\n' % (pidfile,))
130
108
        sys.stderr.write('\n')
131
109
 
132
 
        daemon.daemonize(options.pidfile, home)
 
110
        daemon.daemonize(pidfile, home)
133
111
 
134
 
    setup_logging(options.log_folder, config, foreground=options.foreground)
 
112
    setup_logging(home, config, foreground=options.foreground)
135
113
 
136
114
    log = logging.getLogger('loggerhead')
137
115
    log.info('Starting up...')
143
121
    app = make_filter(app, None)
144
122
 
145
123
    if webpath:
146
 
        scheme, netloc, path, blah, blah, blah = urlparse.urlparse(webpath)
147
 
        def app(environ, start_response, orig=app):
148
 
            environ['SCRIPT_NAME'] = path
149
 
            environ['HTTP_HOST'] = netloc
150
 
            return orig(environ, start_response)
 
124
        if not webpath.endswith('/'):
 
125
            webpath += '/'
 
126
        def app(environ, start_response, app=app):
 
127
            environ['SCRIPT_NAME'] = webpath
 
128
            return app(environ, start_response)
151
129
 
152
130
    try:
153
131
        httpserver.serve(
156
134
    finally:
157
135
        log.info('Shutdown.')
158
136
        try:
159
 
            os.remove(options.pidfile)
 
137
            os.remove(pidfile)
160
138
        except OSError:
161
139
            pass
162
140