Source code for gavo.protocols.gavolog

"""
Helper code for logging to files.

All logs that could be used both interactively and from the web server
but have group ownership gavo and mode (at least) 664.  Only then can
both parties write logs.

The RotatingFileHandler in this module tries to ensure this.
"""

#c Copyright 2008-2023, the GAVO project <gavo@ari.uni-heidelberg.de>
#c
#c This program is free software, covered by the GNU GPL.  See the
#c COPYING file in the source distribution.


import grp
import os
import warnings
import logging
from logging import handlers

from gavo import base


try:
	GAVO_GROUP_ID = grp.getgrnam(base.getConfig("group"))[2]
except KeyError:
	warnings.warn("Cannot figure out id of group '%s'.  Logging will break.")
	GAVO_GROUP_ID = -1


[docs]class RotatingFileHandler(handlers.RotatingFileHandler): """logging.handler.RotatingFile with forced group support. """ def __init__(self, *args, **kwargs): handlers.RotatingFileHandler.__init__(self, *args, **kwargs) self._setOwnership() def _setOwnership(self): # This will fail if we don't own the file. This doesn't hurt as long # as whoever created the file already fixed the permission try: os.chmod(self.stream.name, 0o664) os.chown(self.stream.name, -1, GAVO_GROUP_ID) except os.error: # don't worry, see above pass
[docs] def doRollover(self): handlers.RotatingFileHandler.doRollover(self) self._setOwnership()
[docs]def getLoggingHandler(destName, purpose, maxBytes=500000, backupCount=3, mode=0o664): """returns a RotatingFileHandler for logging writing to destName. If destName is not writable, then a plain StreamLogger is returned. """ try: return RotatingFileHandler(destName, maxBytes=maxBytes, backupCount=backupCount, mode=mode, encoding="utf-8") except os.error: warnings.warn(f"Cannot write to {destName}, using stderr for {purpose}." " Perhaps add yourself to the gavo group?") return logging.StreamHandler()