mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
149 lines
4.3 KiB
Python
149 lines
4.3 KiB
Python
# -*- coding: utf-8 -
|
|
#
|
|
# This file is part of gunicorn released under the MIT license.
|
|
# See the NOTICE for more information.
|
|
|
|
import errno
|
|
import logging
|
|
import os
|
|
import sys
|
|
import traceback
|
|
|
|
from gunicorn import util
|
|
from gunicorn.arbiter import Arbiter
|
|
from gunicorn.config import Config
|
|
from gunicorn import debug
|
|
|
|
class Application(object):
|
|
"""\
|
|
An application interface for configuring and loading
|
|
the various necessities for any given web framework.
|
|
"""
|
|
LOG_LEVELS = {
|
|
"critical": logging.CRITICAL,
|
|
"error": logging.ERROR,
|
|
"warning": logging.WARNING,
|
|
"info": logging.INFO,
|
|
"debug": logging.DEBUG
|
|
}
|
|
|
|
def __init__(self, usage=None):
|
|
self.log = logging.getLogger(__name__)
|
|
self.usage = usage
|
|
self.cfg = None
|
|
self.callable = None
|
|
self.logger = None
|
|
self.load_config()
|
|
|
|
def load_config(self):
|
|
# init configuration
|
|
self.cfg = Config(self.usage)
|
|
|
|
# parse console args
|
|
parser = self.cfg.parser()
|
|
opts, args = parser.parse_args()
|
|
|
|
# optional settings from apps
|
|
cfg = self.init(parser, opts, args)
|
|
|
|
# Load up the any app specific configuration
|
|
if cfg:
|
|
for k, v in list(cfg.items()):
|
|
self.cfg.set(k.lower(), v)
|
|
|
|
# Load up the config file if its found.
|
|
if opts.config and os.path.exists(opts.config):
|
|
cfg = {
|
|
"__builtins__": __builtins__,
|
|
"__name__": "__config__",
|
|
"__file__": opts.config,
|
|
"__doc__": None,
|
|
"__package__": None
|
|
}
|
|
try:
|
|
execfile(opts.config, cfg, cfg)
|
|
except Exception, e:
|
|
print "Failed to read config file: %s" % opts.config
|
|
traceback.print_exc()
|
|
sys.exit(1)
|
|
|
|
for k, v in list(cfg.items()):
|
|
# Ignore unknown names
|
|
if k not in self.cfg.settings:
|
|
continue
|
|
try:
|
|
self.cfg.set(k.lower(), v)
|
|
except:
|
|
sys.stderr.write("Invalid value for %s: %s\n\n" % (k, v))
|
|
raise
|
|
|
|
# Lastly, update the configuration with any command line
|
|
# settings.
|
|
for k, v in list(opts.__dict__.items()):
|
|
if v is None:
|
|
continue
|
|
self.cfg.set(k.lower(), v)
|
|
|
|
def init(self, parser, opts, args):
|
|
raise NotImplementedError
|
|
|
|
def load(self):
|
|
raise NotImplementedError
|
|
|
|
def reload(self):
|
|
self.load_config()
|
|
if self.cfg.spew:
|
|
debug.spew()
|
|
loglevel = self.LOG_LEVELS.get(self.cfg.loglevel.lower(), logging.INFO)
|
|
self.logger.setLevel(loglevel)
|
|
|
|
def wsgi(self):
|
|
if self.callable is None:
|
|
self.callable = self.load()
|
|
return self.callable
|
|
|
|
def run(self):
|
|
if self.cfg.spew:
|
|
debug.spew()
|
|
if self.cfg.daemon:
|
|
util.daemonize()
|
|
else:
|
|
try:
|
|
os.setpgrp()
|
|
except OSError, e:
|
|
if e[0] == errno.EPERM:
|
|
sys.stderr.write("Error: You should use "
|
|
"daemon mode here.\n")
|
|
raise
|
|
|
|
self.configure_logging()
|
|
try:
|
|
Arbiter(self).run()
|
|
except RuntimeError, e:
|
|
sys.stderr.write("\nError: %s\n\n" % e)
|
|
sys.stderr.flush()
|
|
sys.exit(1)
|
|
|
|
def configure_logging(self):
|
|
"""\
|
|
Set the log level and choose the destination for log output.
|
|
"""
|
|
self.logger = logging.getLogger('gunicorn')
|
|
|
|
handlers = []
|
|
if self.cfg.logfile != "-":
|
|
handlers.append(logging.FileHandler(self.cfg.logfile))
|
|
else:
|
|
handlers.append(logging.StreamHandler())
|
|
|
|
loglevel = self.LOG_LEVELS.get(self.cfg.loglevel.lower(), logging.INFO)
|
|
self.logger.setLevel(loglevel)
|
|
|
|
format = r"%(asctime)s [%(process)d] [%(levelname)s] %(message)s"
|
|
datefmt = r"%Y-%m-%d %H:%M:%S"
|
|
for h in handlers:
|
|
h.setFormatter(logging.Formatter(format, datefmt))
|
|
self.logger.addHandler(h)
|
|
|
|
|