1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
#============================================================================
# This library is free software; you can redistribute it and/or
# modify it under the terms of version 2.1 of the GNU Lesser General Public
# License as published by the Free Software Foundation.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#============================================================================
# Copyright (C) 2004, 2005 Mike Wray <mike.wray@hp.com>
# Copyright (C) 2005, 2006 XenSource Ltd.
#============================================================================
import tempfile
import types
import logging
import logging.handlers
import fcntl
from xen.xend.server import params
__all__ = [ 'log', 'init', 'getLogFilename' ]
if 'TRACE' not in logging.__dict__:
logging.TRACE = logging.DEBUG - 1
logging.addLevelName(logging.TRACE,'TRACE')
def trace(self, *args, **kwargs):
self.log(logging.TRACE, *args, **kwargs)
logging.Logger.trace = trace
log = logging.getLogger("xend")
MAX_BYTES = 1 << 20 # 1MB
BACKUP_COUNT = 5
STDERR_FORMAT = "[%(name)s] %(levelname)s (%(module)s:%(lineno)d) %(message)s"
LOGFILE_FORMAT = "[%(asctime)s %(name)s %(process)d] %(levelname)s (%(module)s:%(lineno)d) %(message)s"
DATE_FORMAT = "%Y-%m-%d %H:%M:%S"
logfilename = None
class XendRotatingFileHandler(logging.handlers.RotatingFileHandler):
def __init__(self, fname, mode, maxBytes, backupCount):
logging.handlers.RotatingFileHandler.__init__(self, fname, mode, maxBytes, backupCount)
self.setCloseOnExec()
def doRollover(self):
logging.handlers.RotatingFileHandler.doRollover(self)
self.setCloseOnExec()
# NB yes accessing 'self.stream' violates OO encapsulation somewhat,
# but python logging API gives no other way to access the file handle
# and the entire python logging stack is already full of OO encapsulation
# violations. The other alternative is copy-and-paste duplicating the
# entire FileHandler, StreamHandler & RotatingFileHandler classes which
# is even worse
def setCloseOnExec(self):
flags = fcntl.fcntl(self.stream.fileno(), fcntl.F_GETFD)
flags |= fcntl.FD_CLOEXEC
fcntl.fcntl(self.stream.fileno(), fcntl.F_SETFD, flags)
def init(filename, level):
"""Initialise logging. Logs to the given filename, and logs to stderr if
XEND_DEBUG is set.
"""
global logfilename
def openFileHandler(fname):
return XendRotatingFileHandler(fname, mode = 'a',
maxBytes = MAX_BYTES,
backupCount = BACKUP_COUNT)
# Rather unintuitively, getLevelName will get the number corresponding to
# a level name, as well as getting the name corresponding to a level
# number. setLevel seems to take the number only though, so convert if we
# are given a string.
if isinstance(level, types.StringType):
level = logging.getLevelName(level)
log.setLevel(level)
try:
fileHandler = openFileHandler(filename)
logfilename = filename
except IOError:
logfilename = tempfile.mkstemp("-xend.log")[1]
fileHandler = openFileHandler(logfilename)
fileHandler.setFormatter(logging.Formatter(LOGFILE_FORMAT, DATE_FORMAT))
log.addHandler(fileHandler)
if params.XEND_DEBUG:
stderrHandler = logging.StreamHandler()
stderrHandler.setFormatter(logging.Formatter(STDERR_FORMAT,
DATE_FORMAT))
log.addHandler(stderrHandler)
def getLogFilename():
return logfilename
|