~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

  • Committer: Michael Hudson
  • Date: 2008-06-25 06:18:13 UTC
  • mfrom: (174.1.8 streaming)
  • Revision ID: michael.hudson@canonical.com-20080625061813-3cr5iax8sdz0e67s
merge my streaming branch which:
 * most importantly, streams the pages as they render to the client, which 
   reduces memory usage on large pages and feels better for the user
 * makes the stuff in controller/ have a more wsgi-ish interface
 * restores the stripping of excess whitespace from the output

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
66
50
    access_log.setLevel(logging.INFO)
67
51
    access_log.setFormatter(f)
68
52
 
69
 
    logging.getLogger('').setLevel(logging.DEBUG)
70
53
    logging.getLogger('').addHandler(debug_log)
71
 
    logging.getLogger('wsgi').addHandler(access_log)
 
54
    logging.getLogger('turbogears.access').addHandler(access_log)
 
55
    logging.getLogger('turbogears.controllers').setLevel(logging.INFO)
72
56
 
73
57
    if foreground:
74
58
        logging.getLogger('').addHandler(stdout_log)
76
60
 
77
61
 
78
62
def main():
79
 
    home = os.path.realpath(os.path.dirname(__file__))
80
 
    default_pidfile = os.path.join(home, 'loggerhead.pid')
81
 
    default_configfile = os.path.join(home, 'loggerhead.conf')
82
63
    parser = OptionParser(usage='usage: %prog [options]', version='%prog ' + release.version)
83
64
    parser.add_option('-f', '--foreground', action='store_true', dest='foreground', default=False,
84
65
                      help="run in the foreground; don't daemonize")
85
66
    parser.add_option('-C', '--check', action='store_true', dest='check', default=False,
86
67
                      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', '--configfile', dest="configfile", default=default_configfile,
90
 
                      help="override configuration file location")
91
68
    options, args = parser.parse_args()
92
69
    if len(args) > 0:
93
70
        parser.error('No filename arguments are used, only options.')
94
71
 
 
72
 
 
73
    home = os.path.realpath(os.path.dirname(__file__))
 
74
    pidfile = os.path.join(home, 'loggerhead.pid')
 
75
 
95
76
    if options.check:
96
 
        if daemon.is_running(options.pidfile):
 
77
        if daemon.is_running(pidfile):
97
78
            sys.exit(0)
98
 
        sys.stderr.write('Did not find loggerhead running in %r; restarting...\n' % (options.pidfile,))
 
79
        sys.stderr.write('Did not find loggerhead running in %r; restarting...\n' % (pidfile,))
99
80
 
100
81
    # read loggerhead config
101
82
 
102
 
    config = ConfigObj(options.configfile, encoding='utf-8')
 
83
    config = ConfigObj(os.path.join(home, 'loggerhead.conf'), encoding='utf-8')
103
84
    extra_path = config.get('bzrpath', None)
104
85
    if extra_path:
105
86
        sys.path.insert(0, extra_path)
124
105
    if not options.foreground:
125
106
        sys.stderr.write('\n')
126
107
        sys.stderr.write('Launching loggerhead into the background.\n')
127
 
        sys.stderr.write('PID file: %s\n' % (options.pidfile,))
 
108
        sys.stderr.write('PID file: %s\n' % (pidfile,))
128
109
        sys.stderr.write('\n')
129
110
 
130
 
        daemon.daemonize(options.pidfile, home)
 
111
        daemon.daemonize(pidfile, home)
131
112
 
132
113
    setup_logging(home, config, foreground=options.foreground)
133
114
 
154
135
    finally:
155
136
        log.info('Shutdown.')
156
137
        try:
157
 
            os.remove(options.pidfile)
 
138
            os.remove(pidfile)
158
139
        except OSError:
159
140
            pass
160
141