Source code for noblklog.stream

# Copyright 2021 Florian Wagner <florian@wagner-flo.net>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import fcntl
import logging
import os
import stat
import sys

from logging import Handler
from .util import AsyncEmitMixin

[docs] class AsyncStreamHandler(AsyncEmitMixin,Handler): ''' Asynchronous logging handler that writes to a stream. Requires an output stream that actually supports non-blocking writes. If no *stream* is specified explicitly, standard error is used. On common Unix platforms only true FIFOs and named as well as unnamed pipes are supported. This specifically includes the standard output and error streams as well as shell pipes between processs but explicitly excludes files. The handler tries as best as possible to check for unsupported output streams but cannot detect all possible problematic configurations. The log records are written to the stream followed by *terminator*. :param max_queued: Sets a size limit for the internal queue that is used in case of message congestion. This will guard against unbounded memory usage but on the other hand will risk dropped log messages in case the queue is full. Default is ``None`` for unlimited queue size. :type max_queued: int ''' def __init__(self, stream=None, terminator='\n', max_queued=None): self._terminator = terminator.encode() fd = (sys.stderr if stream is None else stream).fileno() st_mode = os.fstat(fd).st_mode if not stat.S_ISCHR(st_mode) and not stat.S_ISFIFO(st_mode): raise Exception( 'AsyncStreamHandler uses non-blocking writes and thus ' + 'is only supported with character devices, pipes and ' + 'fifos.' ) # set non-blocking fl = fcntl.fcntl(fd, fcntl.F_GETFL) fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK) Handler.__init__(self) AsyncEmitMixin.__init__( self, fd, os.fdopen(fd, 'wb', 0).write, max_queued) def prepareMessage(self, record): return self.format(record).encode() + self._terminator