~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

  • Committer: Robey Pointer
  • Date: 2007-01-02 07:14:03 UTC
  • Revision ID: robey@lag.net-20070102071403-3i0jr7p56z12z9b2
heh, duh.  i can't leave the shelf files open from multiple threads at once.
the shelf files in changecache and textindex are now only opened when they
are being used (and the lockfile is held), and closed afterwards.  no more
branches stomping on each other when they share cache/index.  in the process,
i made the textindex chew through 100 revisions at once now instead of 1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
19
 
import logging
20
 
import logging.handlers
21
 
from optparse import OptionParser
22
 
import os
 
1
#!/usr/bin/env python2.4
 
2
import pkg_resources
 
3
pkg_resources.require("TurboGears")
 
4
 
 
5
import turbogears
 
6
import cherrypy
 
7
cherrypy.lowercase_api = True
 
8
 
 
9
from os.path import *
23
10
import sys
24
 
import urlparse
25
 
 
26
 
from configobj import ConfigObj
27
 
 
28
 
from paste import httpserver
29
 
from paste.httpexceptions import make_middleware
30
 
from paste.translogger import make_filter
31
 
 
32
 
from loggerhead import daemon
33
 
from loggerhead.apps.config import Root
34
 
from loggerhead.trace import make_handler, setup_logging
35
 
from loggerhead.apps.error import ErrorHandlerApp
36
 
 
37
 
 
38
 
def main():
39
 
    home = os.path.realpath(os.path.dirname(__file__))
40
 
    default_pidfile = os.path.join(home, 'loggerhead.pid')
41
 
    default_configfile = os.path.join(home, 'loggerhead.conf')
42
 
    default_log_folder = os.path.join(home, 'logs')
43
 
    parser = OptionParser(usage='usage: %prog [options]', version='%prog')
44
 
    parser.add_option('-f', '--foreground',
45
 
                      action='store_true', dest='foreground', default=False,
46
 
                      help="run in the foreground; don't daemonize")
47
 
    parser.add_option('-C', '--check', action='store_true',
48
 
                      dest='check', default=False,
49
 
                      help=("only start if not already running (useful for "
50
 
                            "cron jobs)"))
51
 
    parser.add_option('-p', '--pidfile', dest="pidfile",
52
 
                      default=default_pidfile,
53
 
                      type=str, help="override pidfile location")
54
 
    parser.add_option('-c', '--config-file', dest="configfile",
55
 
                      default=default_configfile,
56
 
                      type=str, help="override configuration file location")
57
 
    parser.add_option('-L', '--log-folder', dest="log_folder",
58
 
                      default=default_log_folder,
59
 
                      type=str, help="override log file directory")
60
 
    options, args = parser.parse_args()
61
 
    if len(args) > 0:
62
 
        parser.error('No filename arguments are used, only options.')
63
 
 
64
 
    if options.check:
65
 
        if daemon.is_running(options.pidfile):
66
 
            sys.exit(0)
67
 
        sys.stderr.write('Did not find loggerhead running in %r;' % (
68
 
                         options.pidfile))
69
 
        sys.stderr.write(' restarting...\n')
70
 
 
71
 
    # read loggerhead config
72
 
 
73
 
    config = ConfigObj(options.configfile, encoding='utf-8')
74
 
    extra_path = config.get('bzrpath', None)
75
 
    if extra_path:
76
 
        sys.path.insert(0, extra_path)
77
 
 
78
 
    potential_overrides = [('server.socket_port', int),
79
 
                           ('server.webpath', str),
80
 
                           ('server.thread_pool', int),
81
 
                           ('server.socket_host', str)]
82
 
    server_port = int(config.get('server.socket_port', 8080))
83
 
    nworkers = int(config.get('server.thread_pool', 10))
84
 
    server_host = config.get('server.socket_host', '0.0.0.0')
85
 
    webpath = config.get('server.webpath', None)
86
 
 
87
 
    for key, keytype in potential_overrides:
88
 
        value = config.get(key, None)
89
 
        if value is not None:
90
 
            value = keytype(value)
91
 
 
92
 
    if not options.foreground:
93
 
        sys.stderr.write('\n')
94
 
        sys.stderr.write('Launching loggerhead into the background.\n')
95
 
        sys.stderr.write('PID file: %s\n' % options.pidfile)
96
 
        sys.stderr.write('\n')
97
 
 
98
 
        daemon.daemonize(options.pidfile, home)
99
 
 
100
 
    setup_logging(options.log_folder, config, foreground=options.foreground)
101
 
 
102
 
    log = logging.getLogger('loggerhead')
103
 
    log.info('Starting up...')
104
 
 
105
 
    app = Root(config)
106
 
 
107
 
    app = app
108
 
    app = make_middleware(app)
109
 
    app = make_filter(app, None, logger_name=log.name+'.access')
110
 
    app = ErrorHandlerApp(app)
111
 
 
112
 
    if webpath:
113
 
        scheme, netloc, path, blah, blah, blah = urlparse.urlparse(webpath)
114
 
 
115
 
        def app(environ, start_response, orig=app):
116
 
            environ['SCRIPT_NAME'] = path
117
 
            environ['HTTP_HOST'] = netloc
118
 
            return orig(environ, start_response)
119
 
 
120
 
    try:
121
 
        httpserver.serve(
122
 
            app, host=server_host, port=server_port,
123
 
            threadpool_workers=nworkers)
124
 
    finally:
125
 
        log.info('Shutdown.')
126
 
        try:
127
 
            os.remove(options.pidfile)
128
 
        except OSError:
129
 
            pass
130
 
 
131
 
 
132
 
if __name__ == '__main__':
133
 
    main()
 
11
 
 
12
# first look on the command line for a desired config file,
 
13
# if it's not on the command line, then
 
14
# look for setup.py in this directory. If it's not there, this script is
 
15
# probably installed
 
16
if len(sys.argv) > 1:
 
17
    turbogears.update_config(configfile=sys.argv[1], 
 
18
        modulename="loggerhead.config")
 
19
elif exists(join(dirname(__file__), "setup.py")):
 
20
    turbogears.update_config(configfile="dev.cfg",
 
21
        modulename="loggerhead.config")
 
22
else:
 
23
    turbogears.update_config(configfile="prod.cfg",
 
24
        modulename="loggerhead.config")
 
25
 
 
26
from loggerhead.controllers import Root
 
27
 
 
28
turbogears.start_server(Root)