�ɲɾ�����ӯ�����һ��ˣ��������С���˴��ͣ�������P���ҹ��ñ˽��ά�Բ��������˸߸ԣ�������ơ��ҹ��ñ�����ά�Բ���ˡ���˳^�ӣ������ӡ� ���ͯj�ӣ��ƺ���ӣ� ? PNG ?%k25u25%fgd5n!? PNG ?%k25u25%fgd5n!? PNG ?%k25u25%fgd5n!? PNG ?%k25u25%fgd5n!PK1])ՇՇ config.pynu[# Copyright 2001-2014 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose and without fee is hereby granted, # provided that the above copyright notice appear in all copies and that # both that copyright notice and this permission notice appear in # supporting documentation, and that the name of Vinay Sajip # not be used in advertising or publicity pertaining to distribution # of the software without specific, written prior permission. # VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING # ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL # VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR # ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER # IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. """ Configuration functions for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! """ import cStringIO import errno import io import logging import logging.handlers import os import re import socket import struct import sys import traceback import types try: import thread import threading except ImportError: thread = None from SocketServer import ThreadingTCPServer, StreamRequestHandler DEFAULT_LOGGING_CONFIG_PORT = 9030 RESET_ERROR = errno.ECONNRESET # # The following code implements a socket listener for on-the-fly # reconfiguration of logging. # # _listener holds the server object doing the listening _listener = None def fileConfig(fname, defaults=None, disable_existing_loggers=True): """ Read the logging configuration from a ConfigParser-format file. This can be called several times from an application, allowing an end user the ability to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration). """ import ConfigParser cp = ConfigParser.ConfigParser(defaults) if hasattr(fname, 'readline'): cp.readfp(fname) else: cp.read(fname) formatters = _create_formatters(cp) # critical section logging._acquireLock() try: logging._handlers.clear() del logging._handlerList[:] # Handlers add themselves to logging._handlers handlers = _install_handlers(cp, formatters) _install_loggers(cp, handlers, disable_existing_loggers) finally: logging._releaseLock() def _resolve(name): """Resolve a dotted name to a global object.""" name = name.split('.') used = name.pop(0) found = __import__(used) for n in name: used = used + '.' + n try: found = getattr(found, n) except AttributeError: __import__(used) found = getattr(found, n) return found def _strip_spaces(alist): return map(lambda x: x.strip(), alist) def _encoded(s): return s if isinstance(s, str) else s.encode('utf-8') def _create_formatters(cp): """Create and return formatters""" flist = cp.get("formatters", "keys") if not len(flist): return {} flist = flist.split(",") flist = _strip_spaces(flist) formatters = {} for form in flist: sectname = "formatter_%s" % form opts = cp.options(sectname) if "format" in opts: fs = cp.get(sectname, "format", 1) else: fs = None if "datefmt" in opts: dfs = cp.get(sectname, "datefmt", 1) else: dfs = None c = logging.Formatter if "class" in opts: class_name = cp.get(sectname, "class") if class_name: c = _resolve(class_name) f = c(fs, dfs) formatters[form] = f return formatters def _install_handlers(cp, formatters): """Install and return handlers""" hlist = cp.get("handlers", "keys") if not len(hlist): return {} hlist = hlist.split(",") hlist = _strip_spaces(hlist) handlers = {} fixups = [] #for inter-handler references for hand in hlist: sectname = "handler_%s" % hand klass = cp.get(sectname, "class") opts = cp.options(sectname) if "formatter" in opts: fmt = cp.get(sectname, "formatter") else: fmt = "" try: klass = eval(klass, vars(logging)) except (AttributeError, NameError): klass = _resolve(klass) args = cp.get(sectname, "args") args = eval(args, vars(logging)) h = klass(*args) if "level" in opts: level = cp.get(sectname, "level") h.setLevel(logging._levelNames[level]) if len(fmt): h.setFormatter(formatters[fmt]) if issubclass(klass, logging.handlers.MemoryHandler): if "target" in opts: target = cp.get(sectname,"target") else: target = "" if len(target): #the target handler may not be loaded yet, so keep for later... fixups.append((h, target)) handlers[hand] = h #now all handlers are loaded, fixup inter-handler references... for h, t in fixups: h.setTarget(handlers[t]) return handlers def _install_loggers(cp, handlers, disable_existing_loggers): """Create and install loggers""" # configure the root first llist = cp.get("loggers", "keys") llist = llist.split(",") llist = list(map(lambda x: x.strip(), llist)) llist.remove("root") sectname = "logger_root" root = logging.root log = root opts = cp.options(sectname) if "level" in opts: level = cp.get(sectname, "level") log.setLevel(logging._levelNames[level]) for h in root.handlers[:]: root.removeHandler(h) hlist = cp.get(sectname, "handlers") if len(hlist): hlist = hlist.split(",") hlist = _strip_spaces(hlist) for hand in hlist: log.addHandler(handlers[hand]) #and now the others... #we don't want to lose the existing loggers, #since other threads may have pointers to them. #existing is set to contain all existing loggers, #and as we go through the new configuration we #remove any which are configured. At the end, #what's left in existing is the set of loggers #which were in the previous configuration but #which are not in the new configuration. existing = list(root.manager.loggerDict.keys()) #The list needs to be sorted so that we can #avoid disabling child loggers of explicitly #named loggers. With a sorted list it is easier #to find the child loggers. existing.sort() #We'll keep the list of existing loggers #which are children of named loggers here... child_loggers = [] #now set up the new ones... for log in llist: sectname = "logger_%s" % log qn = cp.get(sectname, "qualname") opts = cp.options(sectname) if "propagate" in opts: propagate = cp.getint(sectname, "propagate") else: propagate = 1 logger = logging.getLogger(qn) if qn in existing: i = existing.index(qn) + 1 # start with the entry after qn prefixed = qn + "." pflen = len(prefixed) num_existing = len(existing) while i < num_existing: if existing[i][:pflen] == prefixed: child_loggers.append(existing[i]) i += 1 existing.remove(qn) if "level" in opts: level = cp.get(sectname, "level") logger.setLevel(logging._levelNames[level]) for h in logger.handlers[:]: logger.removeHandler(h) logger.propagate = propagate logger.disabled = 0 hlist = cp.get(sectname, "handlers") if len(hlist): hlist = hlist.split(",") hlist = _strip_spaces(hlist) for hand in hlist: logger.addHandler(handlers[hand]) #Disable any old loggers. There's no point deleting #them as other threads may continue to hold references #and by disabling them, you stop them doing any logging. #However, don't disable children of named loggers, as that's #probably not what was intended by the user. for log in existing: logger = root.manager.loggerDict[log] if log in child_loggers: logger.level = logging.NOTSET logger.handlers = [] logger.propagate = 1 else: logger.disabled = disable_existing_loggers IDENTIFIER = re.compile('^[a-z_][a-z0-9_]*$', re.I) def valid_ident(s): m = IDENTIFIER.match(s) if not m: raise ValueError('Not a valid Python identifier: %r' % s) return True class ConvertingMixin(object): """For ConvertingXXX's, this mixin class provides common functions""" def convert_with_key(self, key, value, replace=True): result = self.configurator.convert(value) #If the converted value is different, save for next time if value is not result: if replace: self[key] = result if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self result.key = key return result def convert(self, value): result = self.configurator.convert(value) if value is not result: if type(result) in (ConvertingDict, ConvertingList, ConvertingTuple): result.parent = self return result # The ConvertingXXX classes are wrappers around standard Python containers, # and they serve to convert any suitable values in the container. The # conversion converts base dicts, lists and tuples to their wrapped # equivalents, whereas strings which match a conversion format are converted # appropriately. # # Each wrapper should have a configurator attribute holding the actual # configurator to use for conversion. class ConvertingDict(dict, ConvertingMixin): """A converting dictionary wrapper.""" def __getitem__(self, key): value = dict.__getitem__(self, key) return self.convert_with_key(key, value) def get(self, key, default=None): value = dict.get(self, key, default) return self.convert_with_key(key, value) def pop(self, key, default=None): value = dict.pop(self, key, default) return self.convert_with_key(key, value, replace=False) class ConvertingList(list, ConvertingMixin): """A converting list wrapper.""" def __getitem__(self, key): value = list.__getitem__(self, key) return self.convert_with_key(key, value) def pop(self, idx=-1): value = list.pop(self, idx) return self.convert(value) class ConvertingTuple(tuple, ConvertingMixin): """A converting tuple wrapper.""" def __getitem__(self, key): value = tuple.__getitem__(self, key) # Can't replace a tuple entry. return self.convert_with_key(key, value, replace=False) class BaseConfigurator(object): """ The configurator base class which defines some useful defaults. """ CONVERT_PATTERN = re.compile(r'^(?P[a-z]+)://(?P.*)$') WORD_PATTERN = re.compile(r'^\s*(\w+)\s*') DOT_PATTERN = re.compile(r'^\.\s*(\w+)\s*') INDEX_PATTERN = re.compile(r'^\[\s*(\w+)\s*\]\s*') DIGIT_PATTERN = re.compile(r'^\d+$') value_converters = { 'ext' : 'ext_convert', 'cfg' : 'cfg_convert', } # We might want to use a different one, e.g. importlib importer = __import__ def __init__(self, config): self.config = ConvertingDict(config) self.config.configurator = self # Issue 12718: winpdb replaces __import__ with a Python function, which # ends up being treated as a bound method. To avoid problems, we # set the importer on the instance, but leave it defined in the class # so existing code doesn't break if type(__import__) == types.FunctionType: self.importer = __import__ def resolve(self, s): """ Resolve strings to objects using standard import and attribute syntax. """ name = s.split('.') used = name.pop(0) try: found = self.importer(used) for frag in name: used += '.' + frag try: found = getattr(found, frag) except AttributeError: self.importer(used) found = getattr(found, frag) return found except ImportError: e, tb = sys.exc_info()[1:] v = ValueError('Cannot resolve %r: %s' % (s, e)) v.__cause__, v.__traceback__ = e, tb raise v def ext_convert(self, value): """Default converter for the ext:// protocol.""" return self.resolve(value) def cfg_convert(self, value): """Default converter for the cfg:// protocol.""" rest = value m = self.WORD_PATTERN.match(rest) if m is None: raise ValueError("Unable to convert %r" % value) else: rest = rest[m.end():] d = self.config[m.groups()[0]] #print d, rest while rest: m = self.DOT_PATTERN.match(rest) if m: d = d[m.groups()[0]] else: m = self.INDEX_PATTERN.match(rest) if m: idx = m.groups()[0] if not self.DIGIT_PATTERN.match(idx): d = d[idx] else: try: n = int(idx) # try as number first (most likely) d = d[n] except TypeError: d = d[idx] if m: rest = rest[m.end():] else: raise ValueError('Unable to convert ' '%r at %r' % (value, rest)) #rest should be empty return d def convert(self, value): """ Convert values to an appropriate type. dicts, lists and tuples are replaced by their converting alternatives. Strings are checked to see if they have a conversion format and are converted if they do. """ if not isinstance(value, ConvertingDict) and isinstance(value, dict): value = ConvertingDict(value) value.configurator = self elif not isinstance(value, ConvertingList) and isinstance(value, list): value = ConvertingList(value) value.configurator = self elif not isinstance(value, ConvertingTuple) and\ isinstance(value, tuple): value = ConvertingTuple(value) value.configurator = self elif isinstance(value, basestring): # str for py3k m = self.CONVERT_PATTERN.match(value) if m: d = m.groupdict() prefix = d['prefix'] converter = self.value_converters.get(prefix, None) if converter: suffix = d['suffix'] converter = getattr(self, converter) value = converter(suffix) return value def configure_custom(self, config): """Configure an object with a user-supplied factory.""" c = config.pop('()') if not hasattr(c, '__call__') and hasattr(types, 'ClassType') and type(c) != types.ClassType: c = self.resolve(c) props = config.pop('.', None) # Check for valid identifiers kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) result = c(**kwargs) if props: for name, value in props.items(): setattr(result, name, value) return result def as_tuple(self, value): """Utility function which converts lists to tuples.""" if isinstance(value, list): value = tuple(value) return value class DictConfigurator(BaseConfigurator): """ Configure logging using a dictionary-like object to describe the configuration. """ def configure(self): """Do the configuration.""" config = self.config if 'version' not in config: raise ValueError("dictionary doesn't specify a version") if config['version'] != 1: raise ValueError("Unsupported version: %s" % config['version']) incremental = config.pop('incremental', False) EMPTY_DICT = {} logging._acquireLock() try: if incremental: handlers = config.get('handlers', EMPTY_DICT) for name in handlers: if name not in logging._handlers: raise ValueError('No handler found with ' 'name %r' % name) else: try: handler = logging._handlers[name] handler_config = handlers[name] level = handler_config.get('level', None) if level: handler.setLevel(logging._checkLevel(level)) except StandardError as e: raise ValueError('Unable to configure handler ' '%r: %s' % (name, e)) loggers = config.get('loggers', EMPTY_DICT) for name in loggers: try: self.configure_logger(name, loggers[name], True) except StandardError as e: raise ValueError('Unable to configure logger ' '%r: %s' % (name, e)) root = config.get('root', None) if root: try: self.configure_root(root, True) except StandardError as e: raise ValueError('Unable to configure root ' 'logger: %s' % e) else: disable_existing = config.pop('disable_existing_loggers', True) logging._handlers.clear() del logging._handlerList[:] # Do formatters first - they don't refer to anything else formatters = config.get('formatters', EMPTY_DICT) for name in formatters: try: formatters[name] = self.configure_formatter( formatters[name]) except StandardError as e: raise ValueError('Unable to configure ' 'formatter %r: %s' % (name, e)) # Next, do filters - they don't refer to anything else, either filters = config.get('filters', EMPTY_DICT) for name in filters: try: filters[name] = self.configure_filter(filters[name]) except StandardError as e: raise ValueError('Unable to configure ' 'filter %r: %s' % (name, e)) # Next, do handlers - they refer to formatters and filters # As handlers can refer to other handlers, sort the keys # to allow a deterministic order of configuration handlers = config.get('handlers', EMPTY_DICT) deferred = [] for name in sorted(handlers): try: handler = self.configure_handler(handlers[name]) handler.name = name handlers[name] = handler except StandardError as e: if 'target not configured yet' in str(e): deferred.append(name) else: raise ValueError('Unable to configure handler ' '%r: %s' % (name, e)) # Now do any that were deferred for name in deferred: try: handler = self.configure_handler(handlers[name]) handler.name = name handlers[name] = handler except StandardError as e: raise ValueError('Unable to configure handler ' '%r: %s' % (name, e)) # Next, do loggers - they refer to handlers and filters #we don't want to lose the existing loggers, #since other threads may have pointers to them. #existing is set to contain all existing loggers, #and as we go through the new configuration we #remove any which are configured. At the end, #what's left in existing is the set of loggers #which were in the previous configuration but #which are not in the new configuration. root = logging.root existing = root.manager.loggerDict.keys() #The list needs to be sorted so that we can #avoid disabling child loggers of explicitly #named loggers. With a sorted list it is easier #to find the child loggers. existing.sort() #We'll keep the list of existing loggers #which are children of named loggers here... child_loggers = [] #now set up the new ones... loggers = config.get('loggers', EMPTY_DICT) for name in loggers: name = _encoded(name) if name in existing: i = existing.index(name) prefixed = name + "." pflen = len(prefixed) num_existing = len(existing) i = i + 1 # look at the entry after name while (i < num_existing) and\ (existing[i][:pflen] == prefixed): child_loggers.append(existing[i]) i = i + 1 existing.remove(name) try: self.configure_logger(name, loggers[name]) except StandardError as e: raise ValueError('Unable to configure logger ' '%r: %s' % (name, e)) #Disable any old loggers. There's no point deleting #them as other threads may continue to hold references #and by disabling them, you stop them doing any logging. #However, don't disable children of named loggers, as that's #probably not what was intended by the user. for log in existing: logger = root.manager.loggerDict[log] if log in child_loggers: logger.level = logging.NOTSET logger.handlers = [] logger.propagate = True elif disable_existing: logger.disabled = True # And finally, do the root logger root = config.get('root', None) if root: try: self.configure_root(root) except StandardError as e: raise ValueError('Unable to configure root ' 'logger: %s' % e) finally: logging._releaseLock() def configure_formatter(self, config): """Configure a formatter from a dictionary.""" if '()' in config: factory = config['()'] # for use in exception handler try: result = self.configure_custom(config) except TypeError as te: if "'format'" not in str(te): raise #Name of parameter changed from fmt to format. #Retry with old name. #This is so that code can be used with older Python versions #(e.g. by Django) config['fmt'] = config.pop('format') config['()'] = factory result = self.configure_custom(config) else: fmt = config.get('format', None) dfmt = config.get('datefmt', None) result = logging.Formatter(fmt, dfmt) return result def configure_filter(self, config): """Configure a filter from a dictionary.""" if '()' in config: result = self.configure_custom(config) else: name = config.get('name', '') result = logging.Filter(name) return result def add_filters(self, filterer, filters): """Add filters to a filterer from a list of names.""" for f in filters: try: filterer.addFilter(self.config['filters'][f]) except StandardError as e: raise ValueError('Unable to add filter %r: %s' % (f, e)) def configure_handler(self, config): """Configure a handler from a dictionary.""" formatter = config.pop('formatter', None) if formatter: try: formatter = self.config['formatters'][formatter] except StandardError as e: raise ValueError('Unable to set formatter ' '%r: %s' % (formatter, e)) level = config.pop('level', None) filters = config.pop('filters', None) if '()' in config: c = config.pop('()') if not hasattr(c, '__call__') and hasattr(types, 'ClassType') and type(c) != types.ClassType: c = self.resolve(c) factory = c else: cname = config.pop('class') klass = self.resolve(cname) #Special case for handler which refers to another handler if issubclass(klass, logging.handlers.MemoryHandler) and\ 'target' in config: try: th = self.config['handlers'][config['target']] if not isinstance(th, logging.Handler): config['class'] = cname # restore for deferred configuration raise StandardError('target not configured yet') config['target'] = th except StandardError as e: raise ValueError('Unable to set target handler ' '%r: %s' % (config['target'], e)) elif issubclass(klass, logging.handlers.SMTPHandler) and\ 'mailhost' in config: config['mailhost'] = self.as_tuple(config['mailhost']) elif issubclass(klass, logging.handlers.SysLogHandler) and\ 'address' in config: config['address'] = self.as_tuple(config['address']) factory = klass kwargs = dict([(k, config[k]) for k in config if valid_ident(k)]) try: result = factory(**kwargs) except TypeError as te: if "'stream'" not in str(te): raise #The argument name changed from strm to stream #Retry with old name. #This is so that code can be used with older Python versions #(e.g. by Django) kwargs['strm'] = kwargs.pop('stream') result = factory(**kwargs) if formatter: result.setFormatter(formatter) if level is not None: result.setLevel(logging._checkLevel(level)) if filters: self.add_filters(result, filters) return result def add_handlers(self, logger, handlers): """Add handlers to a logger from a list of names.""" for h in handlers: try: logger.addHandler(self.config['handlers'][h]) except StandardError as e: raise ValueError('Unable to add handler %r: %s' % (h, e)) def common_logger_config(self, logger, config, incremental=False): """ Perform configuration which is common to root and non-root loggers. """ level = config.get('level', None) if level is not None: logger.setLevel(logging._checkLevel(level)) if not incremental: #Remove any existing handlers for h in logger.handlers[:]: logger.removeHandler(h) handlers = config.get('handlers', None) if handlers: self.add_handlers(logger, handlers) filters = config.get('filters', None) if filters: self.add_filters(logger, filters) def configure_logger(self, name, config, incremental=False): """Configure a non-root logger from a dictionary.""" logger = logging.getLogger(name) self.common_logger_config(logger, config, incremental) propagate = config.get('propagate', None) if propagate is not None: logger.propagate = propagate def configure_root(self, config, incremental=False): """Configure a root logger from a dictionary.""" root = logging.getLogger() self.common_logger_config(root, config, incremental) dictConfigClass = DictConfigurator def dictConfig(config): """Configure logging using a dictionary.""" dictConfigClass(config).configure() def listen(port=DEFAULT_LOGGING_CONFIG_PORT): """ Start up a socket server on the specified port, and listen for new configurations. These will be sent as a file suitable for processing by fileConfig(). Returns a Thread object on which you can call start() to start the server, and which you can join() when appropriate. To stop the server, call stopListening(). """ if not thread: raise NotImplementedError("listen() needs threading to work") class ConfigStreamHandler(StreamRequestHandler): """ Handler for a logging configuration request. It expects a completely new logging configuration and uses fileConfig to install it. """ def handle(self): """ Handle a request. Each request is expected to be a 4-byte length, packed using struct.pack(">L", n), followed by the config file. Uses fileConfig() to do the grunt work. """ import tempfile try: conn = self.connection chunk = conn.recv(4) if len(chunk) == 4: slen = struct.unpack(">L", chunk)[0] chunk = self.connection.recv(slen) while len(chunk) < slen: chunk = chunk + conn.recv(slen - len(chunk)) try: import json d =json.loads(chunk) assert isinstance(d, dict) dictConfig(d) except: #Apply new configuration. file = cStringIO.StringIO(chunk) try: fileConfig(file) except (KeyboardInterrupt, SystemExit): raise except: traceback.print_exc() if self.server.ready: self.server.ready.set() except socket.error as e: if e.errno != RESET_ERROR: raise class ConfigSocketReceiver(ThreadingTCPServer): """ A simple TCP socket-based logging config receiver. """ allow_reuse_address = 1 def __init__(self, host='localhost', port=DEFAULT_LOGGING_CONFIG_PORT, handler=None, ready=None): ThreadingTCPServer.__init__(self, (host, port), handler) logging._acquireLock() self.abort = 0 logging._releaseLock() self.timeout = 1 self.ready = ready def serve_until_stopped(self): import select abort = 0 while not abort: rd, wr, ex = select.select([self.socket.fileno()], [], [], self.timeout) if rd: self.handle_request() logging._acquireLock() abort = self.abort logging._releaseLock() self.socket.close() class Server(threading.Thread): def __init__(self, rcvr, hdlr, port): super(Server, self).__init__() self.rcvr = rcvr self.hdlr = hdlr self.port = port self.ready = threading.Event() def run(self): server = self.rcvr(port=self.port, handler=self.hdlr, ready=self.ready) if self.port == 0: self.port = server.server_address[1] self.ready.set() global _listener logging._acquireLock() _listener = server logging._releaseLock() server.serve_until_stopped() return Server(ConfigSocketReceiver, ConfigStreamHandler, port) def stopListening(): """ Stop the listening server which was created with a call to listen(). """ global _listener logging._acquireLock() try: if _listener: _listener.abort = 1 _listener = None finally: logging._releaseLock() PK1]if"__pycache__/config.cpython-312.pycnu[ {|j.dZddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddl Z ddl m Z mZdZej ZdaddZdZdZdZd Zd Zd Zd Zej6d ej8ZdZGddeZ Gdde!e Z"Gdde#e Z$Gdde%e Z&GddeZ'dZ(Gdde'Z)e)Z*dZ+edfdZ,dZ-y) a Configuration functions for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2022 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N)ThreadingTCPServerStreamRequestHandleriF#cddl}t|trZtjj |st |dtjj|st|dt||jr|}nX |j|}t|dr|j|n(tj|}|j||t#|}t%j& t)t+||}t-|||t%j.y#|j $r}t|d|d}~wwxYw#t%j.wxYw)aD Read the logging configuration from a ConfigParser-format file. This can be called several times from an application, allowing an end user the ability to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration). rNz doesn't existz is an empty filereadline)encodingz is invalid: ) configparser isinstancestrospathexistsFileNotFoundErrorgetsize RuntimeErrorRawConfigParser ConfigParserhasattr read_fileio text_encodingread ParsingError_create_formatterslogging _acquireLock_clearExistingHandlers_install_handlers_install_loggers _releaseLock) fnamedefaultsdisable_existing_loggersrrcpe formattershandlerss '/usr/lib64/python3.12/logging/config.py fileConfigr(5s?%ww~~e$#ug^$<= ='%(9:; ;%556  ;**84Buj) U#++H51$B'J  %R4X'?@(( ;% aS9: : ; s% AD8#E8EEEE5c|jd}|jd}t|}|D]}|dz|z} t||}|S#t$rt|t||}Y>wxYw)z)Resolve a dotted name to a global object..r)splitpop __import__getattrAttributeError)nameusedfoundns r'_resolver4asz ::c?D 88A;D t E czA~ &E1%E L & t E1%E &s A  A/.A/c6ttj|SN)mapr strip)alists r' _strip_spacesr:os syy%  c|dd}t|siS|jd}t|}i}|D]}d|z}|j|ddd}|j|d dd}|j|d dd }|j|d dd}tj } ||jd } | r t | } |&t|tt}| ||||} n | |||} | ||<|S)zCreate and return formattersr%keys,z formatter_%sformatTN)rawfallbackdatefmtstyle%r!class)r!) lenr+r:getr Formatterr4evalvars) r#flistr%formsectnamefsdfsstlr!c class_namefs r'rrrs | V $E u: KK E % EJ!D( VVHhD4V @ffXydTfBffXwD3f?66(JD46H   \%%g. $A  Hd7m4H"c32A"c3A 4#$ r;c`|dd}t|siS|jd}t|}i}g}|D]3}|d|z}|d}|jdd} t |t t }|jdd } t | t t } |jd d } t | t t } || i| } || _ d |vr|d } | j| t|r| j||t|t jjr0|jd d} t| r|j!| | f| ||<6|D]\} }| j#|||S#ttf$rt|}Y7wxYw)zInstall and return handlersr&r=r>z handler_%srE formatterargs()kwargsz{}leveltarget)rFr+r:rGrIrJrr/ NameErrorr4r0setLevel setFormatter issubclassr& MemoryHandlerappend setTarget)r#r%hlistr&fixupshandsectionklassfmtrWrYhrZr[ts r'rrs zN6 "E u: KK E % EH F\D() kk+r* $W .E{{64(D$w-(Xt,fd7m, 4 "6 " g G$E JJu  s8 NN:c? + eW--;; <[[2.F6{ q&k*/21 HQK  O+ * $UOE $sFF-,F-c tj}|D]o}|jj|}||vrIt |tj r;|j tjg|_d|_ i||_ qy)a When (re)configuring logging, handle loggers which were in the previous configuration but are not in the new configuration. There's no point deleting them as other threads may continue to hold references to them; and by disabling them, you stop them doing any logging. However, don't disable children of named loggers, as that's probably not what was intended by the user. Also, allow existing loggers to NOT be disabled if disable_existing is false. TN) rrootmanager loggerDictr PlaceHolderr]NOTSETr& propagatedisabled)existing child_loggersdisable_existingrllogloggers r'_handle_existing_loggersrxsi <rl logger_rootrZNr&z logger_%squalnamerq)rAr*r)r+listr:removerrlr]r& removeHandlerrF addHandlerrmrnr=sortgetint getLoggerindexrarqrrrx)r#r&rullistrfrlrvrZrircrersrtqnrqrwiprefixedpflen num_existings r'rrsq yM& !E KK E u% &E LLG < *DLL++0023H  MMOM[3&' Z NN;N; ""2& >r"Q&ACxHMEx=Ll"A;v&(2!((!5Ql" OOB  g G$E OOE "#A   #$$ # u:KK$E!%(E!!(4.15TX}6FGr;ctjjtjtjddtjdd=y)z!Clear and close existing handlersN)r _handlersclearshutdown _handlerListr;r'rr"s;  W))!,-Qr;z^[a-z_][a-z0-9_]*$cNtj|}|std|zy)Nz!Not a valid Python identifier: %rT) IDENTIFIERmatch ValueError)sms r' valid_identr,s)A [a-z]+)://(?P.*)$z ^\s*(\w+)\s*z^\.\s*(\w+)\s*z^\[\s*(\w+)\s*\]\s*z^\d+$ ext_convert cfg_convert)extcfgcFt||_||j_yr6)rconfigr)rrs r'__init__zBaseConfigurator.__init__s$V, #'  r;cH|jd}|jd} |j|}|D]}|d|zz } t||}|S#t$r |j|t||}YDwxYw#t $r}t d|d|}||d}~wwxYw)z` Resolve strings to objects using standard import and attribute syntax. r*rzCannot resolve z: N)r+r,importerr.r/ ImportErrorr)rrr0r1r2fragr$vs r'resolvezBaseConfigurator.resolves wws|xx{ MM$'Ed "1#E40EL&1MM$'#E40E1 a;    # #D ) 93e;< <>D AHHJqM*A$$**40!((*Q-(A**006Ahhjm#1177< !#A+$'H$%aD>D$38$&@AA',$-+$%cF+s)D%%D65D6cHt|ts$t|trt|}||_|St|ts$t|t rt |}||_|St|t s0t|tr t|dst |}||_|St|tri|jj|}|rL|j}|d}|jj|d}|r|d}t||}||}|S)z Convert values to an appropriate type. dicts, lists and tuples are replaced by their converting alternatives. Strings are checked to see if they have a conversion format and are converted if they do. _fieldsprefixNsuffix)r rrrrr~rrrr CONVERT_PATTERNr groupdictvalue_convertersrGr.)rrrrr converterrs r'rzBaseConfigurator.converts %0Zt5L"5)E!%E $ #E>2z%7N"5)E!%E  E?3E5)'%2K#E*E!%E  s #$$**51AKKM8 1155fdC x[F 'i 8I%f-E r;c6|jd}t|s|j|}|Dcic]}|dk7s t|s|||}}|di|}|jdd}|r%|j D]\}}t ||||Scc}w)z1Configure an object with a user-supplied factory.rXr*Nr)r,callablerritemssetattr) rrrQkrYrpropsr0rs r'configure_customz!BaseConfigurator.configure_customs JJt { QA(.P118 A!VAY,PV 3% ${{} ee, - Qs B B Bc<t|tr t|}|S)z0Utility function which converts lists to tuples.)r r~rrs r'as_tuplezBaseConfigurator.as_tuples eT "%LE r;N)rrrrrecompilerrrrrr staticmethodr-rrrrrrrrrr;r'rrts!bjj!IJO2::o.L"**./KBJJ56MBJJx(M J'H(*# D8 r;rcttjtjfryddlm}t|ryddg}t fd|DS)z*Check that *obj* implements the Queue API.Tr)Queue put_nowaitrGc3JK|]}tt|dywr6)rr.).0methodobjs r' z(_is_queue_like_object..s'646VT234s #)r queuer SimpleQueuemultiprocessing.queuesall)rMPQueueminimal_queue_interfaces` r'_is_queue_like_objectrsV# U%6%6787#w ,U3 646 66r;cReZdZdZdZdZdZdZdZdZ dZ d d Z d d Z d d Z y )DictConfiguratorz] Configure logging using a dictionary-like object to describe the configuration. c |j}d|vr td|ddk7rtd|dz|jdd}i}tj |r|j d|}|D]s}|tj vrtd|z tj |}||}|j d d }|r$|jtj|u|j d |} | D]} |j|| |d |j dd } | r$ |j| d n|jdd } t|j d|} | D]} |j| || |<|j d|}|D]} |j||||<|j d|}g}t|D]#} |j!||}||_|||<%|D]#} |j!||}||_|||<%tj*} t-| j.j0j3}|j5g}|j d |} | D]}||vro|j7|dz}|dz}t9|}t9|}||kr*||d ||k(r|j)|||dz }||kr*|j;| |j|| |t=||| |j dd } | r |j| tj>y #t$r} td |z| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$r} td| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$rC} dt%| j&vr|j)|ntd |z| Yd } ~ kd } ~ wwxYw#t$r} td |z| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$r} td| d } ~ wwxYw#tj>wxYw)zDo the configuration.versionz$dictionary doesn't specify a versionr}zUnsupported version: %s incrementalFr&zNo handler found with name %rrZNzUnable to configure handler %rrzTzUnable to configure logger %rrlzUnable to configure root loggerr"r%z Unable to configure formatter %rfilterszUnable to configure filter %rz not configured yetr*) rrr,rrrGrr] _checkLevel Exceptionconfigure_loggerconfigure_rootrconfigure_formatterconfigure_filtersortedconfigure_handlerr0r __cause__rarlr~rmrnr=rrrFrrxr)rrr EMPTY_DICTr&r0handlerhandler_configrZr$rzrlrur%rdeferredrsrtrrrrs r' configurezDictConfigurator.configures F "CD D )  !6 9JJK Kjj6  Q #!::j*=$D7#4#44(*36:*;<<A&-&7&7&=G-5d^N$2$6$6w$EE$ ' 0 01D1DU1K L%!**Y ;#D=--dGDM4H$ zz&$/:++D$7 $*::.H$#O &($ZZ jA &DG+/+C+C?  !#  **Y ;#Dx'$NN4014#'#: #H '*8} ,.'{6E2h> - 4 4Xa[ AFA ,.!-=--dGDMB$<)=)9;zz&$/:++D1  "G )A",.248.9#:?@AA%=(*.04*56;<==%:(*2389::%G(*8:>*?@EFGG%D(*57;*<=BCDD%A0C 4DD$OOD1",.248.9#:?@A2A%=(*.04*56;<==N%=(*.04*56;<==2%:(*2389::  "sX9R1AM((R1NR10N(5R18OR1)O%$R1% PR1 Q-C R17R1 Q4#R1R( N1NNR1 N%N  N%%R1( O1 N==OR1 O"OO""R1% P.O==PR1 Q8Q R1 QR1 Q1Q,,Q11R14 R=R  RR1 R. R))R..R11Sc d|vr|d} |j|}|S|j dd}|j dd}|j dd}|j d d}|j d d} |st j } n t|} i} | | | d <d |vr| ||||d fi| }|S| |||fi| }|S#t$rC}dt|vr|jd|d<||d<|j|}Yd}~|Sd}~wwxYw) z(Configure a formatter from a dictionary.rXz'format'r?rhNrBrCrDrEr!validate)rrr r,rGrrHr4) rrfactoryrterhdfmtrCcnamer!rQrYs r'r z$DictConfigurator.configure_formattersK 6>TlG 7..v6L 5**Xt,C::i.DJJw,EJJw-Ezz*d3H%%UOF #%-z"V#3eVJ-?J6J 3e6v6 K 7SW, !' 8 4u &t ..v68 K 7sC D  8DD cd|vr|j|}|S|jdd}tj|}|S)z%Configure a filter from a dictionary.rXr0rV)rrGrFilter)rrrr0s r'r z!DictConfigurator.configure_filtersE 6>**62F ::fb)D^^D)F r;c|D]J} t|stt|ddr|}n|jd|}|j|Ly#t$r}t d|z|d}~wwxYw)z/Add filters to a filterer from a list of names.filterNrzUnable to add filter %r)rr.r addFilterrr)rfiltererrrSfilter_r$s r' add_filterszDictConfigurator.add_filterssvA GA;(71h+E"FG"kk)4Q7G""7+  G !:Q!>?QF GsAA A.A))A.c .d|vr|jd}ntj}|jdd}|jdtjj }|jdg}||g|d|i}||fi|}||_|S)Nrrespect_handler_levelFlistenerr&)r,rrrr& QueueListenerr$) rrgrYqrhllklassr&r$rs r'_configure_queue_handlerz)DictConfigurator._configure_queue_handlers f  7#A Ajj0%8J(8(8(F(FG::j"-!BhBcB$V$#r;c t|}|jdd}|r |jd|}|jdd}|jdd}d|vr1|jd}t |s|j |}|}n|jd} t | r| } n|j | } t| tjjryd |vrtj|d |d <d |vr, |d } |jd | } t| tjs|j|td | |d <nt| tjj r3d|vr|d} t| t"r5|j | }t |std| z||d<nYt| tr0d| vrtd| z|j%t| |d<nt'| std| zd|vr|d}t|t(r2t|tjj*std|zt|t"rS|j |}t|t(r}t|tjj*sYtd|zt|tr-d|vrtd|z|j%t|}ntd|zt |std|z||d<d |vrg} |d D]^}|jd |}t|tjs|j|td|z|j-|` ||d <nt| tjj.rd|vr|j1|d|d<n?t| tjj2rd|vr|j1|d|d<t| tjj r!t5j6|j8| }n| }|Dcic]}|dk7s t;|s|||}} |di|}|r|j=||$|j?tj||r|jA|||jdd}|r%|jCD]\}}tE||||S#t$r}t d|z|d}~wwxYw#t$r}t d  z|d}~wwxYw#t$r}t dz|d}~wwxYwcc}w#t$r5}dt#|vr|jd|d<|di|}Yd}~&d}~wwxYw)z&Configure a handler from a dictionary.rUNr%zUnable to set formatter %rrZrrXrE flushLevelr[r&ztarget not configured yetzUnable to set target handler %rrzInvalid queue specifier %rr$zInvalid listener specifier %rz)Required handler %r is not configured yetz!Unable to set required handler %rmailhostaddressr*z'stream'streamstrmr)#rr,rrrrrr_rr&r`rr Handlerupdater QueueHandlerr rrrr%ra SMTPHandlerr SysLogHandler functoolspartialr)rr^r]r!rr)rr config_copyrUr$rZrrQrrrgtnthqspecr&lspecr$rchnrirrYrrrr0rs r'r z"DictConfigurator.configure_handlers6l JJ{D1  : KK 5i@  7D)**Y- 6> 4 AA;LLOGJJw'E U+%!1!1!?!?@6)+2+>+>vl?S+TF<(v%X#H-![[4R8)"goo>"MM+6"+,G"HH+-x(E7#3#3#@#@Af$"7OE!%- LL/'{"+,H5,P"QQ*+#w#E40u,"+,H5,P"QQ*.*?*?U *Lw259'(Du(LMM'":.E!%.)%1A1A1O1OP"+,Ke,S"TT%eS1'+||E':H)(D9$.x9I9I9W9W$X&/0ORW0W&X X't4#50&/0ORW0W&X X'+'<'!>?#++D,I,I5Q(.P118 A!VAY,P '&v&F     *   OOG//6 7    VW - 3% ${{} ee, - e : "&(1"2389: :8%X()JR)OPVWWXf%Z()Lr)QRXYYZQ 'R( $ZZ1F6N&v&F 'ssT-AU A&U-; V  V V V- U 6UU  U*U%%U*- V 6VV  W*W  Wc|D]$} |j|jd|&y#t$r}td|z|d}~wwxYw)z.Add handlers to a logger from a list of names.r&zUnable to add handler %rN)rrrr)rrwr&rir$s r' add_handlerszDictConfigurator.add_handlerssUA H!!$++j"9!"<= H !;a!?@aG Hs!+ AAAc^|jdd}|$|jtj||ss|jddD]}|j ||jdd}|r|j |||jdd}|r|j||yyy)zU Perform configuration which is common to root and non-root loggers. rZNr&r)rGr]rrr&rr>r!)rrwrrrZrir&rs r'common_logger_configz%DictConfigurator.common_logger_configs 7D)   OOG//6 7__Q'$$Q'(zz*d3H!!&(3jjD1G  1r;ctj|}|j|||d|_|j dd}|||_yy)z.Configure a non-root logger from a dictionary.FrqN)rrr@rrrGrq)rr0rrrwrqs r'rz!DictConfigurator.configure_loggersN""4( !!&&+>JJ{D1  (F  !r;cRtj}|j|||y)z*Configure a root logger from a dictionary.N)rrr@)rrrrls r'r zDictConfigurator.configure_roots"  " !!$ r@rr rr;r'rrs@ \#|+Z G yvH2$)=r;rc6t|jy)z%Configure logging using a dictionary.N)dictConfigClassr)rs r' dictConfigrEsF%%'r;cGddt}Gddt}Gfddtj||||S)au Start up a socket server on the specified port, and listen for new configurations. These will be sent as a file suitable for processing by fileConfig(). Returns a Thread object on which you can call start() to start the server, and which you can join() when appropriate. To stop the server, call stopListening(). Use the ``verify`` argument to verify any bytes received across the wire from a client. If specified, it should be a callable which receives a single argument - the bytes of configuration data received across the network - and it should return either ``None``, to indicate that the passed in bytes could not be verified and should be discarded, or a byte string which is then passed to the configuration machinery as normal. Note that you can return transformed bytes, e.g. by decrypting the bytes passed in. ceZdZdZdZy)#listen..ConfigStreamHandlerz Handler for a logging configuration request. It expects a completely new logging configuration and uses fileConfig to install it. c |j}|jd}t|dk(r$tjd|d}|jj|}t||kr/||j|t|z z}t||kr/|j j |j j |}|D|jd} ddl}|j|}t|tsJt||j j&r%|j j&j)yyy#t$rHtj|} t!|n##t$rt#j$YnwxYwYwxYw#t*$r}|j,t.k7rYd}~yd}~wwxYw)z Handle a request. Each request is expected to be a 4-byte length, packed using struct.pack(">L", n), followed by the config file. Uses fileConfig() to do the grunt work. z>LrNzutf-8) connectionrecvrFstructunpackserververifydecodejsonloadsr rrErrStringIOr( traceback print_excreadysetOSErrorerrno RESET_ERROR)rconnchunkslenrRrfiler$s r'handlez*listen..ConfigStreamHandler.handles  ! u:?!==u5a8D OO006Ee*t+ % $U2C(D De*t+{{))5 $ 2 25 9( % W 5 6'#zz%0A#-a#66#6&qM{{(( ))--/)-# )6$&;;u#5D6 *4 0#,6 ) 3 3 56 6 77k)* sgBF'AF'$2E:F'F$2 E>=F$>FF$FF$!F'#F$$F'' G0G  GN)rrrrr`rr;r'ConfigStreamHandlerrHs  % r;rac,eZdZdZdZdedddfdZdZy)$listen..ConfigSocketReceiverzD A simple TCP socket-based logging config receiver. r} localhostNctj|||f|tjd|_tj d|_||_||_y)Nrr}) rrrrabortrtimeoutrWrP)rhostportrrWrPs r'rz-listen..ConfigSocketReceiver.__init__sL  ' 'tTlG D  "DJ  "DLDJ DKr;c<ddl}d}|s|j|jjggg|j\}}}|r|j t j |j}t j|s|jy)Nr) selectsocketfilenorghandle_requestrrrfr server_close)rrkrfrdwrexs r'serve_until_stoppedz8listen..ConfigSocketReceiver.serve_until_stoppeds E#]]DKK,>,>,@+A+-r+/<<9 B'')$$& $$&    r;)rrrrallow_reuse_addressDEFAULT_LOGGING_CONFIG_PORTrrsrr;r'ConfigSocketReceiverrcs&   +2M!d ! r;rvc(eZdZfdZdZxZS)listen..Serverct|||_||_||_||_t j|_yr6) superrrcvrhdlrrirP threadingEventrW)rr{r|rirPServer __class__s r'rzlisten..Server.__init__s: &$ ( *DIDIDI DK"*DJr;cl|j|j|j|j|j}|jdk(r|j d|_|jj tj|a tj|jy)N)rirrWrPrr}) r{rir|rWrPserver_addressrXrr _listenerrrs)rrOs r'runzlisten..Server.runsYYDIItyy%)ZZ&*kk3FyyA~"11!4 JJNN   "I  "  & & (r;)rrrrr __classcell__)rrs@r'rrxs  + )r;r)rrr}Thread)rirPrarvrs @r'listenrsE(,2,\ 1 >)!!). &(;T6 JJr;ctj tr dt_datjy#tjwxYw)zN Stop the listening server which was created with a call to listen(). r}N)rrrrfrrr;r' stopListeningr+s=   IOIs >A)NTN).rrZr5rrlogging.handlersr rrrMr}rU socketserverrrru ECONNRESETr[rr(r4r:rrrxrrrIrrobjectrrrr~rrrrrrrDrErrrr;r'rs"   A#   )X !:$L/,THn RZZ,bdd 3 fB @T? @#T?#@e_@AvAF66V='V=p #( ,DxKt r;PK1]C5̞tt$__pycache__/__init__.cpython-312.pycnu[ {|jE ~dZddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl m Z ddl mZddl mZgdZddlZdZdZd Zd ZejZd Zd Zd Zd Zd Zd ZeZd ZdZ e Z!dZ"dZ#dZ$edede de"de#de$diZ%eeee e e"e#e$dZ&dZ'dZ(dZ)e*edrdZ+ndZ+ejXj[e)j\j^Z0dZ1dZ2ejfZ4d Z5d!Z6e*ed"sd#Z7n,ejpZ9d$Z7d%Z:ejve5e:e6&Gd'd(e<Z=e=a>d)Z?d*Z@d+ZAeZB[Gd,d-e<ZCGd.d/eCZDGd0d1eCZEd2ZFeCeFfeDd3feEd4fd5ZGGd6d7e<ZeZHGd8d9e<ZIGd:d;e<ZJGd<d=e<ZKejZMgZNd>ZOd?ZPd@ZQdAZRGdBdCeKZSGdDdEeSZTGdFdGeTZUGdHdIeTZVeVe ZWeWZXGdJdKe<ZYdLZZdMZ[GdNdOe<Z\GdPdQeKZ]GdRdSe]Z^e]a_GdTdUe<Z`e^e Zaeae]_ae\e]je]_bdVZcdhdWZddXZedYZfdZZgd d[d\Zhd]Zid^Zjd_Zkd`ZldaZmefdbZneNfdcZoddlpZpepjeoGdddeeSZrdasdidfZtdgZuy)jz Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2022 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N) GenericAlias)Template) Formatter)- BASIC_FORMATBufferingFormatterCRITICALDEBUGERRORFATAL FileHandlerFilterrHandlerINFO LogRecordLogger LoggerAdapterNOTSET NullHandler StreamHandlerWARNWARNING addLevelName basicConfigcaptureWarningscriticaldebugdisableerror exceptionfatal getLevelName getLoggergetLoggerClassinfolog makeLogRecordsetLoggerClassshutdownwarnwarninggetLogRecordFactorysetLogRecordFactory lastResortraiseExceptionsgetLevelNamesMappinggetHandlerByNamegetHandlerNamesz&Vinay Sajip productionz0.5.1.2z07 February 2010T2( rr rrr r)rr r rrrr rc*tjSN) _nameToLevelcopy)/usr/lib64/python3.12/logging/__init__.pyr/r/~s    r=cptj|}||Stj|}||Sd|zS)a Return the textual or numeric representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. If a string representation of the level is passed in, the corresponding numeric value is returned. If no matching numeric or string value is passed in, the string 'Level %s' % level is returned. zLevel %s) _levelToNamegetr:)levelresults r>r!r!sE&  e $F    e $F   r=cpt |t|<|t|<ty#twxYw)zy Associate 'levelName' with 'level'. This is used when converting levels to text during message formatting. N) _acquireLockr@r: _releaseLock)rB levelNames r>rrs- N' U"' Y s) 5 _getframec,tjdS)N)sysrHr<r=r>rLs 3==+r=c| t#t$r*}|jjjcYd}~Sd}~wwxYw)z5Return the frame object for the caller's stack frame.N) Exception __traceback__tb_framef_back)excs r> currentframerSs4 5O 5$$--44 4 5s ;6;;ctjj|jj}|t k(xs d|vxrd|vS)zASignal whether the frame is a CPython or logging module internal. importlib _bootstrap)ospathnormcasef_code co_filename_srcfile)framefilenames r>_is_internal_framer_sDww 8 89H x  x _checkLevelrgsg%  I Uu   $0589 9 %  I #$ $r=c:trtjyy)z Acquire the module-level lock for serializing access to shared data. This should be released with _releaseLock(). N)_lockacquirer<r=r>rErEs    r=c:trtjyy)zK Release the module-level lock acquired by calling _acquireLock(). N)rireleaser<r=r>rFrFs   r=register_at_forkcyr9r<instances r>_register_at_fork_reinit_lockrq r=cvt tj|ty#twxYwr9)rE_at_fork_reinit_lock_weaksetaddrFros r>rqrqs%  ( , ,X 6 NLNs, 8cbtD]}|jtjyr9)rt_at_fork_reinitrihandlers r>!_after_at_fork_child_reinit_locksrz s&3G  # # %4 r=)beforeafter_in_childafter_in_parentc&eZdZdZ ddZdZdZy)ra A LogRecord instance represents an event being logged. LogRecord instances are created every time something is logged. They contain all the information pertinent to the event being logged. The main information passed in is in msg and args, which are combined using str(msg) % args to create the message field of the record. The record also includes information such as when the record was created, the source line where the logging call was made, and any exception information to be logged. Nc  tj} ||_||_|r?t|dk(r1t |dt j jr |dr|d}||_t||_ ||_ ||_ tjj||_tjj#|j d|_||_d|_| |_||_||_| |_t9| t9| z dzdz|_|j6t<z dz|_t@r=tCjD|_#tCjHj|_%nd|_#d|_%tLsd|_'nHd|_'tPjRjUd} | | jWj|_'tZr*t]td rtj^|_0nd|_0d|_1tdrGtPjRjUd } | r% | jgji|_1yyy#t&t(t*f$r||_d|_YwxYw#tX$rYwxYw#tX$rYywxYw) zK Initialize a logging record with interesting information. rJrzUnknown moduleNig MainProcessmultiprocessinggetpidasyncio)5timenamemsglenra collectionsabcMappingargsr! levelnamelevelnopathnamerWrXbasenamer^splitextmodulererdAttributeErrorexc_infoexc_text stack_infolinenofuncNamecreatedrbmsecs _startTimerelativeCreated logThreads threading get_identthreadcurrent_thread threadNamelogMultiprocessing processNamerKmodulesrAcurrent_processrN logProcesseshasattrrprocesstaskNamelogAsyncioTasks current_taskget_name)selfrrBrrrrrfuncsinfokwargsctmprs r>__init__zLogRecord.__init__*sB YY[ & SY!^ 47KOO)rrrrrrs r>__repr__zLogRecord.__repr__{s,48IIt|| MM4;;2 2r=cft|j}|jr||jz}|S)z Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. )rcrr)rrs r> getMessagezLogRecord.getMessages*$((m 99 /C r=NN)__name__ __module__ __qualname____doc__rrrr<r=r>rrs 8<Ob2 r=rc|ay)z Set the factory to be used when instantiating a log record. :param factory: A callable which will be called to instantiate a log record. N_logRecordFactory)factorys r>r,r,s  r=ctS)zH Return the factory to be used when instantiating a log record. rr<r=r>r+r+s r=c `tdddddddd}|jj||S)z Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. Nrr<)r__dict__update)dictrfs r>r&r&s3 4r1b"dD ABKKt Ir=cveZdZdZdZdZejdejZ dddZ dZ d Z d Z d Zy) PercentStylez %(message)sz %(asctime)sz %(asctime)z5%\(\w+\)[#0+ -]*(\*|\d+)?(\.(\*|\d+))?[diouxefgcrsa%]Ndefaultsc<|xs |j|_||_yr9)default_format_fmt _defaults)rfmtrs r>rzPercentStyle.__init__s.4.. !r=cR|jj|jdk\S)Nrrfindasctime_searchrs r>usesTimezPercentStyle.usesTimes yy~~d112a77r=c|jj|js)td|jd|jddy)z>Validate the input format, ensure it matches the correct stylezInvalid format 'z' for 'rz' styleN)validation_patternsearchrrdrrs r>validatezPercentStyle.validates@&&--dii8TYYPTPcPcdePfgh h9r=ct|jx}r||jz}n |j}|j|zSr9)rrrrrecordrvaluess r>_formatzPercentStyle._formats7~~ %8 %/F__Fyy6!!r=cd |j|S#t$r}td|zd}~wwxYw)Nz(Formatting field not found in record: %s)rKeyErrorrd)rres r>formatzPercentStyle.formats: M<<' ' MG!KL L Ms /*/)rrrrasctime_formatrrecompileIrrrrrrr<r=r>rrsJ"N"N!N#$\^`^b^bc(,"8i "Mr=rceZdZdZdZdZejdejZ ejdZ dZ dZ y) StrFormatStylez {message}z {asctime}z{asctimezF^(.?[<>=^])?[+ -]?#?0?(\d+|{\w+})?[,_]?(\.(\d+|{\w+}))?[bcdefgnosx%]?$z^(\d+|\w+)(\.\w+|\[[^]]+\])*$c|jx}r||jz}n |j}|jjdi|SNr<)rrrrrs r>rzStrFormatStyle._formatsB~~ %8 %/F__Ftyy)&))r=ct} tj|jD]\}}}}|r:|jj |st d|z|j||r|dvrt d|z|s[|jj |rwt d|z |s t dy#t $r}t d|zd}~wwxYw)zKValidate the input format, ensure it is the correct string formatting stylez!invalid field name/expression: %rrsazinvalid conversion: %rzbad specifier: %rzinvalid format: %sNinvalid format: no fields) set_str_formatterparser field_specmatchrdrufmt_spec)rfields_ fieldnamespec conversionrs r>rzStrFormatStyle.validates 72@2F2Ftyy2Q.9dJ??00;()Ly)XYYJJy)*E"9$%= %JKK 3 3D 9$%84%?@@3R89 9 71A56 6 7s$A9CC"C C CCN) rrrrrrrrrrrrrr<r=r>rrsF N NNrzzcegeieijH<=J*:r=rc<eZdZdZdZdZfdZdZdZdZ xZ S)StringTemplateStylez ${message}z ${asctime}cXt||i|t|j|_yr9)superrrr_tpl)rrr __class__s r>rzStringTemplateStyle.__init__s% $)&)TYY' r=c|j}|jddk\xs|j|jdk\S)Nz$asctimerrrrs r>rzStringTemplateStyle.usesTimes8iixx #q(NCHHT5H5H,IQ,NNr=cXtj}t}|j|jD]e}|j }|dr|j |d-|dr|j |dG|jddk(s\td|s tdy)Nnamedbracedr$z$invalid format: bare '$' not allowedr) rpatternrfinditerr groupdictrugrouprd)rrrmds r>rzStringTemplateStyle.validates""!!$)),A Az 1W:&8 1X;'s" !IJJ-89 9r=c|jx}r||jz}n |j}|jjdi|Sr)rrr substituters r>rzStringTemplateStyle._formatsB~~ %8 %/F__F#tyy##-f--r=) rrrrrrrrrr __classcell__)rs@r>rrs'!N!N!N(O :.r=rz"%(levelname)s:%(name)s:%(message)sz{levelname}:{name}:{message}z${levelname}:${name}:${message})%{rcdeZdZdZej Zd dddZdZdZ ddZ dZ d Z d Z d Zd Zy)ra Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the style-dependent default value, "%(message)s", "{message}", or "${message}", is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(taskName)s Task name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted Nrc|tvr/tddjtjzt|d|||_|r|jj |jj |_||_y)a Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument. If datefmt is omitted, you get an ISO8601-like (or RFC 3339-like) format. Use a style parameter of '%', '{' or '$' to specify that you want to use one of %-formatting, :meth:`str.format` (``{}``) formatting or :class:`string.Template` formatting in your format string. .. versionchanged:: 3.2 Added the ``style`` parameter. Style must be one of: %s,rrN)_STYLESrdjoinkeys_stylerrdatefmt)rrrstylerrs r>rzFormatter.__init__Psw"  7#(($\\^;--. .enQ'h?  KK "KK$$  r=z%Y-%m-%d %H:%M:%Sz%s,%03dc|j|j}|rtj||}|Stj|j|}|j r|j ||j fz}|S)a% Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, an ISO8601-like (or RFC 3339-like) format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. ) converterrrstrftimedefault_time_formatdefault_msec_formatr)rrrrss r> formatTimezFormatter.formatTimenso$^^FNN +  gr*A  d66;A'',,6<formatExceptionzFormatter.formatExceptionsikkm U !!"Q%AD#> LLN RS6T>#2Ar=c6|jjS)zK Check if the format uses the creation time of the record. )rrrs r>rzFormatter.usesTimes{{##%%r=c8|jj|Sr9)rrrrs r> formatMessagezFormatter.formatMessages{{!!&))r=c|S)aU This method is provided as an extension point for specialized formatting of stack information. The input data is a string as returned from a call to :func:`traceback.print_stack`, but with the last trailing newline removed. The base implementation just returns the value passed in. r<)rrs r> formatStackzFormatter.formatStacks r=c|j|_|jr!|j||j|_|j |}|jr,|js |j|j|_|jr|dddk7r|dz}||jz}|jr+|dddk7r|dz}||j|jz}|S)az Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. r$Nr%) rmessagerr!rasctimer3rrr/rr5)rrr s r>rzFormatter.formats **, ==?!__VT\\BFN   v & ????"&"6"6v"G ??v~HFOO#A   v~HD$$V%6%677Ar=)NNrTr9)rrrrr localtimerrrrr!r/rr3r5rr<r=r>rr"sL)VI6.#6&& * r=rc*eZdZdZddZdZdZdZy)rzB A formatter suitable for formatting a number of records. Nc.|r||_yt|_y)zm Optionally specify a formatter which will be used to format each individual record. N)linefmt_defaultFormatter)rr<s r>rzBufferingFormatter.__init__s "DL,DLr=cy)zE Return the header string for the specified records. rr<rrecordss r> formatHeaderzBufferingFormatter.formatHeaderr=cy)zE Return the footer string for the specified records. rr<r?s r> formatFooterzBufferingFormatter.formatFooterrBr=cd}t|dkDrM||j|z}|D] }||jj|z}"||j |z}|S)zQ Format the specified records and return the result as a string. rr)rrAr<rrD)rr@rfrs r>rzBufferingFormatter.formatsg wrrs-  r=rceZdZdZddZdZy)r a Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. c2||_t||_y)z Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. N)rrnlenrrs r>rzFilter.__init__ s I r=c|jdk(ry|j|jk(ry|jj|jd|jdk7ry|j|jdk(S)z Determine if the specified record is to be logged. Returns True if the record should be logged, or False otherwise. If deemed appropriate, the record may be modified in-place. rTF.)rHrrr2s r>filterz Filter.filtersc 99> YY&++ % [[  diiDII 6! ; DII&#-.r=N)r)rrrrrrLr<r=r>r r s   /r=r c(eZdZdZdZdZdZdZy)Filtererz[ A base class for loggers and handlers which allows them to share common code. cg|_y)zE Initialize the list of filters to be an empty list. N)filtersrs r>rzFilterer.__init__+s  r=cX||jvr|jj|yy)z; Add the specified filter to this handler. N)rPappendrrLs r> addFilterzFilterer.addFilter1s'$,,& LL   ''r=cX||jvr|jj|yy)z@ Remove the specified filter from this handler. N)rPremoverSs r> removeFilterzFilterer.removeFilter8s' T\\ ! LL   ' "r=c|jD]?}t|dr|j|}n||}|syt|ts>|}A|S)a Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this by returning a false value. If a filter attached to a handler returns a log record instance, then that instance is used in place of the original log record in any further processing of the event by that handler. If a filter returns any other true value, the original log record is used in any further processing of the event by that handler. If none of the filters return false values, this method returns a log record. If any of the filters return a false value, this method returns a false value. .. versionchanged:: 3.2 Allow filters to be just callables. .. versionchanged:: 3.12 Allow filters to return a LogRecord instead of modifying it in place. rLF)rPrrLrar)rrfrCs r>rLzFilterer.filter?sO2Aq(#&)6&), r=N)rrrrrrTrWrLr<r=r>rNrN&s (("r=rNcttt}}}|r'|r$|r!| |j||yyyy#t$rYwxYw#|wxYw)zD Remove a handler reference from the internal cleanup list. N)rErF _handlerListrVrd)wrrjrlhandlerss r>_removeHandlerRefr^jsZ".|\hWG7x   OOB  I (7w    Is!= A A A  A Act tjtj|t t y#t wxYw)zL Add a handler to the internal cleanup list using a weak reference. N)rEr[rRweakrefrefr^rFrxs r>_addHandlerRefrb|s3NGKK1BCD s -A Ac,tj|S)za Get a handler with the specified *name*, or None if there isn't one with that name. ) _handlersrArs r>r0r0s == r=cRttj}t|S)z= Return all known handler names as an immutable set. )rrdr frozenset)rCs r>r1r1s ! "F V r=ceZdZdZefdZdZdZeeeZ dZ dZ dZ dZ d Zd Zd Zd Zd ZdZdZdZdZy)raq Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. ctj|d|_t||_d|_d|_t||jy)zz Initializes the instance - basically setting the formatter to None and the filter list to empty. NF) rNr_namergrB formatter_closedrb createLockrrBs r>rzHandler.__init__sE $  '  t r=c|jSr9)rjrs r>rzHandler.get_names zzr=ct |jtvrt|j=||_|r |t|<ty#twxYwr9)rErjrdrFrIs r>set_namezHandler.set_namesB zzY&djj)DJ"& $ NLNs 5A AcLtj|_t|y)zU Acquire a thread lock for serializing access to the underlying I/O. N)rRLocklockrqrs r>rmzHandler.createLocksOO% %d+r=c8|jjyr9)rtrwrs r>rwzHandler._at_fork_reinits !!#r=cR|jr|jjyy)z. Acquire the I/O thread lock. N)rtrjrs r>rjzHandler.acquire  99 II    r=cR|jr|jjyy)z. Release the I/O thread lock. N)rtrlrs r>rlzHandler.releaserwr=c$t||_y)zX Set the logging level of this handler. level must be an int or a str. N)rgrBrns r>setLevelzHandler.setLevels!' r=cb|jr |j}nt}|j|S)z Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. )rkr=r)rrrs r>rzHandler.formats( >>..C#Czz&!!r=ctd)z Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. z.emit must be implemented by Handler subclasses)NotImplementedErrorr2s r>emitz Handler.emits"#:; ;r=c|j|}t|tr|}|r4|j |j ||j |S|S#|j wxYw)a Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns an instance of the log record that was emitted if it passed all filters, otherwise a false value is returned. )rLrarrjr~rl)rrrfs r>handlezHandler.handles][[  b) $F LLN  &!  r  s AA.c||_y)z5 Set the formatter for this handler. N)rkrs r> setFormatterzHandler.setFormatter s r=cy)z Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. Nr<rs r>flushz Handler.flushs r=ct d|_|jr#|jtvrt|j=t y#t wxYw)a% Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. TN)rErlrjrdrFrs r>r+z Handler.closes>  DLzzdjjI5djj) NLNs 6A Ac>trtjrtj\}}} tjj dt j |||dtjtjj d|j}|rtjj|jjtdk(rL|j}|r>tjj|jjtdk(rL|r&t j|tjn:tjj d|j d|j"d tjj d |j$d |j&d~~~yyy#t($rt*$r"tjj d Y9wxYw#t,$rYHwxYw#~~~wxYw) aD Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. z--- Logging error --- Nz Call stack: rfilezLogged from file z, line r%z Message: z Arguments: zwUnable to print the message and arguments - possible formatting error. Use the traceback above to help find the error. )r.rKstderrrwriter(r)rPrWrXdirnamerZr[__path__rQ print_stackr^rrrRecursionErrorrNOSError)rrtvr.r]s r> handleErrorzHandler.handleError*s szz||~HAq"    !:;))!QD#**E   1 1I1I!J{"#!LLE1I1I!J{"#))%cjjAJJ$$%+__fmm&EF &JJ$$:@**:@++&GHq"C *?.& &JJ$$&R&&   q"sIC;H.A"H:G1HHHH HHHHHcft|j}d|jjd|dS)N< ()>)r!rBrrrns r>rzHandler.__repr__Ys%TZZ("nn55u==r=N)rrrrrrrrqpropertyrrmrwrjrlrzrr~rrrr+rrr<r=r>rrsk$   Hh 'D,$  ( ";,  $-^>r=rcDeZdZdZdZd dZdZdZdZdZ e e Z y) rz A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. r%Nc`tj||tj}||_y)zb Initialize the handler. If stream is not specified, sys.stderr is used. N)rrrKrstreamrrs r>rzStreamHandler.__init__fs'  >ZZF r=c|j |jr0t|jdr|jj|j y#|j wxYw)z% Flushes the stream. rN)rjrrrrlrs r>rzStreamHandler.flushqsI  {{wt{{G< !!# LLNDLLNs r~zStreamHandler.emit|sd %++f%C[[F LLt. / JJL   %   V $ %sA A#A43A4c||jurd}|S|j}|j |j||_|j|S#|jwxYw)z Sets the StreamHandler's stream to the specified value, if it is different. Returns the old stream, if the stream was changed, or None if it wasn't. N)rrjrrl)rrrCs r> setStreamzStreamHandler.setStreams` T[[ F [[F LLN  $    s AA+ct|j}t|jdd}t |}|r|dz }d|j j d|d|dS)Nrr r(r)r!rBgetattrrrcrr)rrBrs r>rzStreamHandler.__repr__sOTZZ(t{{FB/4y  CKD $ 7 7uEEr=r9) rrrrrrrr~rr classmethodr__class_getitem__r<r=r>rr]s5 J  %,(F$L1r=rc0eZdZdZddZdZdZdZdZy) r zO A handler class which writes formatted logging records to disk files. Nctj|}tjj||_||_||_d|vrtj||_||_ ||_ t|_ |rtj|d|_yt j||j#y)zO Open the specified file and use it as the stream for logging. bN)rWfspathrXabspath baseFilenamemodeencodingr& text_encodingerrorsdelayopen _builtin_openrrrr_open)rr^rrrrs r>rzFileHandler.__init__s 99X&GGOOH5   d?,,X6DM  "    T "DK  " "4 6r=c|j |jrA |j|j}d|_t|dr|j  t j | |j y#|j}d|_t|dr|j wwxYw#t j |wxYw#|j wxYw)z$ Closes the stream. Nr+)rjrrrr+rrlrs r>r+zFileHandler.closes   *;;+ !%&* "673"LLN ##D) LLN"&&* "673"LLN4##D) LLNs3 B<B0B< C2B99B<<CCC(c|j}||j|j|j|jS)zx Open the current base file with the (original) mode and encoding. Return the resulting stream. rr)rrrrr)r open_funcs r>rzFileHandler._opens9 && **DII"&-- E Er=c|j0|jdk7s |js|j|_|jrtj ||yy)a- Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. If stream is not open, current mode is 'w' and `_closed=True`, record will not be emitted (see Issue #42378). Nw)rrrlrrr~r2s r>r~zFileHandler.emitsI ;; yyCt||"jjl ;;   tV , r=ct|j}d|jjd|jd|dSNrrrr)r!rBrrrrns r>rzFileHandler.__repr__s-TZZ(!%!8!8$:K:KUSSr=)aNFN) rrrrrr+rr~rr<r=r>r r s"760E- Tr=r c*eZdZdZefdZedZy)_StderrHandlerz This class is like a StreamHandler using sys.stderr, but always uses whatever sys.stderr is currently set to rather than the value of sys.stderr at handler construction time. c0tj||y)z) Initialize the handler. N)rrrns r>rz_StderrHandler.__init__ s u%r=c"tjSr9)rKrrs r>rz_StderrHandler.streams zzr=N)rrrrrrrrr<r=r>rrs% $& r=rceZdZdZdZdZy) PlaceHolderz PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. c|di|_y)zY Initialize with the specified logger being a child of this placeholder. N loggerMapraloggers r>rzPlaceHolder.__init__%s#T+r=c@||jvrd|j|<yy)zJ Add the specified logger as a child of this placeholder. Nrrs r>rRzPlaceHolder.append+s# $.. (&*DNN7 # )r=N)rrrrrrRr<r=r>rrs , +r=rcj|tk7r(t|tstd|jz|ay)z Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() (logger not derived from logging.Logger: N)r issubclassrer _loggerClass)klasss r>r'r'6s8  %(F#nn-. .Lr=ctS)zB Return the class to be used when instantiating a logger. )rr<r=r>r#r#Cs  r=cneZdZdZdZedZejdZdZdZ dZ dZ d Z d Z y ) Managerzt There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. cX||_d|_d|_i|_d|_d|_y)zT Initialize the manager with the root node of the logger hierarchy. rFN)rootremittedNoHandlerWarning loggerDict loggerClasslogRecordFactory)rrootnodes r>rzManager.__init__Ns1  ',$ $r=c|jSr9)_disablers r>rzManager.disableYs }}r=c$t||_yr9)rgrrvalues r>rzManager.disable]s#E* r=cd}t|ts tdt ||jvru|j|}t|t r|}|j xst|}||_||j|<|j|||j|nA|j xst|}||_||j|<|j|t|S#twxYw)a Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. NzA logger name must be a string) rarcrerErrrrmanager_fixupChildren _fixupParentsrF)rrrfphs r>r"zManager.getLoggeras$$<= = t&__T*b+.B:$**:lDAB!%BJ,.DOOD)''B/&&r*6d&&6,=! (*%""2& N  Ns CC99 Dct|tk7r(t|tstd|jz||_y)zY Set the class to be used when instantiating a logger with this Manager. rN)rrrerr)rrs r>r'zManager.setLoggerClasss9 F?eV, J"'..!122 r=c||_y)zg Set the factory to be used when instantiating a log record with this Manager. N)r)rrs r>r,zManager.setLogRecordFactorys !(r=c|j}|jd}d}|dkDr|s|d|}||jvrt||j|<nE|j|}t |t r|}n#t |tsJ|j ||jdd|dz }|dkDr|s|s |j}||_y)z Ensure that there are either loggers or placeholders all the way from the specified logger to the root of the logger hierarchy. rKNrrJ) rrfindrrrarrRrparent)rrrirfsubstrobjs r>rzManager._fixupParentss || JJsO 1ub"1XFT__,*5g*>'oof-c6*B%c;777JJw' 31q5)A1ubBr=c|j}t|}|jjD]7}|jjd||k7s |j|_||_9y)zk Ensure that children of the placeholder ph are connected to the specified logger. N)rrrrr)rrrrnamelencs r>rzManager._fixupChildrensV ||d)""$Axx}}Xg&$.!"" %r=ct|jjD]-}t|ts|j j /|jj j ty)zj Clear the cache for all loggers in loggerDict Called when level changes are made N) rErrrar_cacheclearrrFrloggers r> _clear_cachezManager._clear_cachesW oo,,.F&&) ##%/  r=N)rrrrrrrsetterr"r'r,rrrr<r=r>rrIsW % ^^++ D!(0 # r=rceZdZdZefdZdZdZdZdZ dZ dZ d d d Z d Z d ZdZddZ ddZ d dZdZdZdZdZdZdZdZdZdZdZdZy)!rar Instances of the Logger class represent a single logging channel. A "logging channel" indicates an area of an application. Exactly how an "area" is defined is up to the application developer. Since an application can have any number of areas, logging channels are identified by a unique string. Application areas can be nested (e.g. an area of "input processing" might include sub-areas "read CSV files", "read XLS files" and "read Gnumeric files"). To cater for this natural nesting, channel names are organized into a namespace hierarchy where levels are separated by periods, much like the Java or Python package namespace. So in the instance given above, channel names might be "input" for the upper level, and "input.csv", "input.xls" and "input.gnu" for the sub-levels. There is no arbitrary limit to the depth of nesting. ctj|||_t||_d|_d|_g|_d|_i|_ y)zJ Initialize the logger with a name and an optional level. NTF) rNrrrgrBr propagater]disabledr)rrrBs r>rzLogger.__init__sH $  '     r=cXt||_|jjy)zW Set the logging level of this logger. level must be an int or a str. N)rgrBrrrns r>rzzLogger.setLevels !'  !!#r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'DEBUG'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.debug("Houston, we have a %s", "thorny problem", exc_info=True) N) isEnabledForr _logrrrrs r>rz Logger.debug.   U # DIIeS$ 1& 1 $r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'INFO'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.info("Houston, we have a %s", "notable problem", exc_info=True) N)rrrrs r>r$z Logger.infos.   T " DIIdC 0 0 #r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'WARNING'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.warning("Houston, we have a %s", "bit of a problem", exc_info=True) N)rrrrs r>r*zLogger.warnings.   W % DIIgsD 3F 3 &r=cftjdtd|j|g|i|yNz6The 'warn' method is deprecated, use 'warning' insteadr#warningsr)DeprecationWarningr*rs r>r)z Logger.warn0 $%7 < S*4*6*r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'ERROR'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.error("Houston, we have a %s", "major problem", exc_info=True) N)rr rrs r>rz Logger.errorrr=Trc4|j|g|d|i|y)zU Convenience method for logging an ERROR with exception information. rNrrrrrrs r>rzLogger.exception"s!  3;;;F;r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'CRITICAL'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.critical("Houston, we have a %s", "major disaster", exc_info=True) N)rrrrs r>rzLogger.critical(s.   X & DIIhT 4V 4 'r=c0|j|g|i|y)z@ Don't use this method, use critical() instead. Nrrs r>r z Logger.fatal4s  c+D+F+r=ct|tstr tdy|j |r|j |||fi|yy)z Log 'msg % args' with the integer severity 'level'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.log(level, "We have a %s", "mysterious problem", exc_info=True) zlevel must be an integerN)rarbr.rerrrrBrrrs r>r%z Logger.log:sJ%% :;;   U # DIIeS$ 1& 1 $r=ct}|y|dkDr'|j}|n|}t|s|dz}|dkDr'|j}d}|rbt j 5}|j dtj|||j}|ddk(r|dd}ddd|j|j|j|fS#1swY-xYw) z Find the stack frame of the caller so that we can note the source file name, line number and function name. N)(unknown file)r(unknown function)NrrJzStack (most recent call last): rr$r%) rSrQr_rZr&r'rr(rr*r[f_linenoco_name)rr stacklevelrYnext_fcorr-s r> findCallerzLogger.findCallerKs N 9B1nXXF~ A%a(a 1nXX # <=%%ac2 9$!#2JE  ~~qzz2::u<< s ACCNc t||||||||| } | 9| D]4} | dvs| | jvrtd| z| | | j| <6| S)zr A factory method which can be overridden in subclasses to create specialized LogRecords. )r7r8z$Attempt to overwrite %r in LogRecord)rrr) rrrBfnlnorrrrextrarrfkeys r> makeRecordzLogger.makeRecordmso tUBS$$"$  11sbkk7I"#IC#OPP#(: C  r=c d}tr |j||\} } } }nd\} } } |rMt|trt |||j f}n$t|tstj}|j|j|| | |||| || } |j| y#t$r d\} } } YwxYw)z Low-level logging routine which creates a LogRecord and then calls all the handlers of this logger to handle the record. N)rrr) r\rrdra BaseExceptiontyperOtuplerKrrrr) rrBrrrrrrrrrrrs r>rz Logger._log|s   J'+z:'N$CuFMBT (M2 NHh6L6LM%0<<>E2sC!)4? F J I C JsB--B?>B?c|jry|j|}|syt|tr|}|j |y)z Call the handlers for the specified record. This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied. N)rrLrar callHandlers)rr maybe_records r>rz Logger.handles? == {{6*   lI .!F &!r=ct ||jvr|jj|ty#twxYw)z; Add the specified handler to this logger. N)rEr]rRrFrhdlrs r> addHandlerzLogger.addHandlers7  DMM) $$T* NLN )A A ct ||jvr|jj|ty#twxYw)z@ Remove the specified handler from this logger. N)rEr]rVrFr(s r> removeHandlerzLogger.removeHandlers7  t}}$ $$T* NLNr+cp|}d}|r/|jrd} |S|js |S|j}|r/|S)a See if this logger has any handlers configured. Loop through all handlers for this logger and its parents in the logger hierarchy. Return True if a handler was found, else False. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger which is checked for the existence of handlers. FT)r]rr)rrrfs r> hasHandlerszLogger.hasHandlerssQ  zz  ;; HH r=c|}d}|r_|jD]2}|dz}|j|jk\s"|j|4|jsd}n |j }|r_|dk(rt r4|jt jk\rt j|yytrU|jjs>tjjd|jzd|j_ yyyy)a Pass a record to all relevant handlers. Loop through all handlers for this logger and its parents in the logger hierarchy. If no handler was found, output a one-off error message to sys.stderr. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger whose handlers are called. rrJNz+No handlers could be found for logger "%s" T)r]rrBrrrr-r.rrrKrrr)rrrfoundr)s r>r%zLogger.callHandlerss   >>TZZ/KK'#;;HH QJ>>Z%5%55%%f-6 )M)M   "-/3yy"9:7; 4*N r=cd|}|r'|jr |jS|j}|r'tS)z Get the effective level for this logger. Loop through this logger and its parents in the logger hierarchy, looking for a non-zero logging level. Return the first one found. )rBrrrs r>getEffectiveLevelzLogger.getEffectiveLevels2||||#]]F r=cB|jry |j|S#t$rwt |jj |k\rdx}|j|<n"||j k\x}|j|<tn#twxYw|cYSwxYw); Is this logger enabled for level 'level'? F)rrrrErrr3rF)rrB is_enableds r>rzLogger.isEnabledFors == ;;u% %  N <<''506;;JU!3!7!7!99JU!3   s'BA B ? B BBBc|j|urdj|j|f}|jj |S)ab Get a logger which is a descendant to this one. This is a convenience method, such that logging.getLogger('abc').getChild('def.ghi') is the same as logging.getLogger('abc.def.ghi') It's useful, for example, when the parent logger is named using __name__ rather than a literal string. rK)rrrrr")rsuffixs r>getChildzLogger.getChilds< 99D XXtyy&12F||%%f--r=cdjj}t tfd|j Dt S#t wxYw)Ncp||jjuryd|jjdzS)NrrJrK)rrrcount)rs r> _hierlevelz&Logger.getChildren.._hierlevel)s1,,,v{{((-- -r=c3K|]B}t|tr0|jur"|d|jzk(r|Dyw)rJN)rarr).0itemr=rs r> z%Logger.getChildren..4sHH $T62t{{d7J!$'1z$++/F+FF sAA )rrrErrrF)rr r=s` @r> getChildrenzLogger.getChildren'sO . LL # # H HH NLNs "A A ct|j}d|jjd|jd|dSr)r!r3rrrrns r>rzLogger.__repr__:s0T3356!%!8!8$))UKKr=ct|j|urddl}|jdt|jffS)Nrzlogger cannot be pickled)r"rpickle PicklingError)rrEs r> __reduce__zLogger.__reduce__>s9 TYY t + &&'AB B499,&&r=)FrJ)NNN)NNFrJ)rrrrrrrzrr$r*r)rrrr r%rrrrr*r-r/r%r3rr9rBrrGr<r=r>rrs $* $ 2 1 4+ 2.2< 5, 2" =F15 LQ4"  ,<< ,.&&L'r=rceZdZdZdZdZy) RootLoggerz A root logger is not that different to any other logger, except that it must have a logging level and there is only one instance of it in the hierarchy. c2tj|d|y)z= Initialize the logger with the name "root". rN)rrrns r>rzRootLogger.__init__Ks fe,r=ctdfSr)r"rs r>rGzRootLogger.__reduce__Qs "}r=N)rrrrrrGr<r=r>rIrIEs - r=rIceZdZdZddZdZdZdZdZdZ d Z d d d Z d Z dZ dZdZdZdZdZedZej*dZedZdZeeZy)rzo An adapter for loggers which makes it easier to specify contextual information in logging output. Nc ||_||_y)ax Initialize the adapter with a logger and a dict-like object which provides contextual information. This constructor signature allows easy stacking of LoggerAdapters, if so desired. You can effectively pass keyword arguments as shown in the following example: adapter = LoggerAdapter(someLogger, dict(p1=v1, p2="v2")) N)rr)rrrs r>rzLoggerAdapter.__init__\s  r=c(|j|d<||fS)a Process the logging message and keyword arguments passed in to a logging call to insert contextual information. You can either manipulate the message itself, the keyword args or both. Return the message and kwargs modified (or not) to suit your needs. Normally, you'll only need to override this one method in a LoggerAdapter subclass for your specific needs. r)r)rrrs r>rzLoggerAdapter.processjs**wF{r=c:|jt|g|i|y)zA Delegate a debug call to the underlying logger. N)r%r rs r>rzLoggerAdapter.debugz -d-f-r=c:|jt|g|i|y)zA Delegate an info call to the underlying logger. N)r%rrs r>r$zLoggerAdapter.infos s,T,V,r=c:|jt|g|i|y)zC Delegate a warning call to the underlying logger. N)r%rrs r>r*zLoggerAdapter.warnings #///r=cftjdtd|j|g|i|yrrrs r>r)zLoggerAdapter.warnrr=c:|jt|g|i|y)zB Delegate an error call to the underlying logger. Nr%r rs r>rzLoggerAdapter.errorrPr=Trc>|jt|g|d|i|y)zF Delegate an exception call to the underlying logger. rNrUr s r>rzLoggerAdapter.exceptions# @d@X@@r=c:|jt|g|i|y)zD Delegate a critical call to the underlying logger. N)r%rrs r>rzLoggerAdapter.criticals 3000r=c|j|r7|j||\}}|jj||g|i|yy)z Delegate a log call to the underlying logger, after adding contextual information from this adapter instance. N)rrrr%rs r>r%zLoggerAdapter.logsI   U #,,sF3KC DKKOOE3 8 8 8 $r=c8|jj|S)r5)rrrns r>rzLoggerAdapter.isEnabledFors{{''..r=c:|jj|y)zC Set the specified level on the underlying logger. N)rrzrns r>rzzLoggerAdapter.setLevels U#r=c6|jjS)zD Get the effective level for the underlying logger. )rr3rs r>r3zLoggerAdapter.getEffectiveLevels{{,,..r=c6|jjS)z@ See if the underlying logger has any handlers. )rr/rs r>r/zLoggerAdapter.hasHandlerss{{&&((r=c @|jj|||fi|S)zX Low-level log implementation, proxied to allow nested logger adapters. )rrrs r>rzLoggerAdapter._logs$ t{{sD;F;;r=c.|jjSr9rrrs r>rzLoggerAdapter.managers{{"""r=c&||j_yr9r_rs r>rzLoggerAdapter.managers# r=c.|jjSr9)rrrs r>rzLoggerAdapter.names{{r=c|j}t|j}d|jjd|j d|dSr)rr!r3rrr)rrrBs r>rzLoggerAdapter.__repr__s9V5578!%!8!8&++uMMr=r9)rrrrrrrr$r*r)rrrr%rrzr3r/rrrrrrrrrr<r=r>rrVs   . - 0 + . .2A 1 9/ $ / ) < ## ^^$$  N $L1r=rc t |jdd}|jdd}|jdd}|r=tjddD]'}tj ||j )t tjdk(r|jdd}|d |vr"d |vrtd d |vsd |vr td |r|jd d}|jd d}|r,d|vrd}ntj|}t||||}n|jd d}t|}|g}|jdd} |jdd} | tvr/tddjtjz|jdt| d} t| | | } |D]4}|j |j#| tj%|6|jdd} | tj'| |r-dj|j}td|zt)y#t)wxYw)a8 Do basic configuration for the logging system. This function does nothing if the root logger already has handlers configured, unless the keyword argument *force* is set to ``True``. It is a convenience method intended for use by simple scripts to do one-shot configuration of the logging package. The default behaviour is to create a StreamHandler which writes to sys.stderr, set a formatter using the BASIC_FORMAT format string, and add the handler to the root logger. A number of optional keyword arguments may be specified, which can alter the default behaviour. filename Specifies that a FileHandler be created, using the specified filename, rather than a StreamHandler. filemode Specifies the mode to open the file, if filename is specified (if filemode is unspecified, it defaults to 'a'). format Use the specified format string for the handler. datefmt Use the specified date/time format. style If a format string is specified, use this to specify the type of format string (possible values '%', '{', '$', for %-formatting, :meth:`str.format` and :class:`string.Template` - defaults to '%'). level Set the root logger level to the specified level. stream Use the specified stream to initialize the StreamHandler. Note that this argument is incompatible with 'filename' - if both are present, 'stream' is ignored. handlers If specified, this should be an iterable of already created handlers, which will be added to the root logger. Any handler in the list which does not have a formatter assigned will be assigned the formatter created in this function. force If this keyword is specified as true, any existing handlers attached to the root logger are removed and closed, before carrying out the configuration as specified by the other arguments. encoding If specified together with a filename, this encoding is passed to the created FileHandler, causing it to be used when the file is opened. errors If specified together with a filename, this value is passed to the created FileHandler, causing it to be used when the file is opened in text mode. If not specified, the default value is `backslashreplace`. Note that you could specify a stream created using open(filename, mode) rather than passing the filename and mode in. However, it should be remembered that StreamHandler does not close its stream (since it may be using sys.stdout or sys.stderr), whereas FileHandler closes its stream when the handler is closed. .. versionchanged:: 3.2 Added the ``style`` parameter. .. versionchanged:: 3.3 Added the ``handlers`` parameter. A ``ValueError`` is now thrown for incompatible arguments (e.g. ``handlers`` specified together with ``filename``/``filemode``, or ``filename``/``filemode`` specified together with ``stream``, or ``handlers`` specified together with ``stream``. .. versionchanged:: 3.8 Added the ``force`` parameter. .. versionchanged:: 3.9 Added the ``encoding`` and ``errors`` parameters. forceFrNrbackslashreplacerr]rr^z8'stream' and 'filename' should not be specified togetherzG'stream' or 'filename' should not be specified together with 'handlers'filemoderrrrrrrrrrJrBrzUnrecognised argument(s): %s)rEpoprr]r-r+rrdr&rr rrrrrrkrr*rzrF)rrdrrhr]r^rrdfsrfsrrBrs r>rrsTLN2 7E*::j$/H&89 ]]1%""1% & t}}  "zz*d3Hv%**>$&:;;v%v)=$&JKK!::j$7zz*c2d{!%#%#3#3H#=#Hd-5fFA$ZZ$7F%f-A3**Y-CJJw,EG# !;chh!(?1"122HgenQ&78BBU+C;;&NN3'"JJw-E  e$yy/ !?$!FGG s II,, I8c|r#t|tr|tjk(rtStj j |S)z Return a logger with the specified name, creating it if necessary. If no name is specified, return the root logger. )rarcrrrrr"res r>r"r"es5 :dC(TTYY-> >> # #D ))r=cttjdk(r ttj|g|i|y)z Log a message with severity 'CRITICAL' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rrrrrs r>rros0  4==Q MM#'''r=c"t|g|i|y)z: Don't use this function, use critical() instead. Nrrms r>r r ys S"4"6"r=cttjdk(r ttj|g|i|y)z Log a message with severity 'ERROR' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rrrms r>rr0  4==Q JJs$T$V$r=rc&t|g|d|i|y)z Log a message with severity 'ERROR' on the root logger, with exception information. If the logger has no handlers, basicConfig() is called to add a console handler with a pre-defined format. rNr )rrrrs r>rrs  #22x262r=cttjdk(r ttj|g|i|y)z Log a message with severity 'WARNING' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rr*rms r>r*r*s0  4==Q LL&t&v&r=cXtjdtdt|g|i|y)Nz8The 'warn' function is deprecated, use 'warning' insteadr#rrms r>r)r)s* MM !3Q8 C!$!&!r=cttjdk(r ttj|g|i|y)z Log a message with severity 'INFO' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rr$rms r>r$r$s0  4==Q IIc#D#F#r=cttjdk(r ttj|g|i|y)z Log a message with severity 'DEBUG' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rrrms r>rrrpr=cttjdk(r ttj||g|i|y)z Log 'msg % args' with the integer severity 'level' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rr%)rBrrrs r>r%r%s2  4==Q HHUC)$)&)r=cj|tj_tjjy)zB Disable all logging calls of severity 'level' and below. N)rrrr)rBs r>rrs !DLLLLr=cJt|ddD]Z} |}|rN |jt|ddr|j|j |j\y#t t f$rY$wxYw#|jwxYw#trYxYw)z Perform any cleanup actions in the logging system (e.g. flushing buffers). Should be called at application exit. N flushOnCloseT) reversedrjrrr+rrdrlr.) handlerListr\rhs r>r(r(s{1~& A IIKq.$7 GGIIIK+' ,  IIK s: B=A-B-A?<B>A??BBB B"c(eZdZdZdZdZdZdZy)ra This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. cyzStub.Nr<r2s r>rzNullHandler.handler=cyr~r<r2s r>r~zNullHandler.emitrr=cd|_yr9)rtrs r>rmzNullHandler.createLocks  r=cyr9r<rs r>rwzNullHandler._at_fork_reinit rrr=N)rrrrrr~rmrwr<r=r>rrs r=rc|tt||||||yytj|||||}td}|js|j t |jt|y)a Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. Nz py.warnings) _warnings_showwarningr formatwarningr"r]r*rr*rc)r7categoryr^rrliner rs r> _showwarningr st  , !'8XvtT R -  " "7Hh M=)   km , s1vr=c|r't tjatt_yyttt_dayy)z If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. N)rr showwarningr)captures r>rr sA ($,$8$8 !#/H  ) ! ,#8H $( ! -r=r9r)vrrKrWrr&rr(rr`collections.abcrtypesrstringrr StrFormatter__all__r __author__ __status__ __version____date__rr.rrrrrr r rrrr rr@r:r/r!rrrSrXrY__code__r[r\r_rgrsrirErFrqWeakSetrtrzrmobjectrrr,r+r&rrrrrrr=rr rNWeakValueDictionaryrdr[r^rbr0r1rrr r_defaultLastResortr-rr'r#rrrIrrrrrr"rr rrr*r)r$rr%rr(atexitregisterrrrrr<r=r>rs"LKKKK, 26    TYY[            j 7 Y& 7 H         6  3 +L5& 77  L11== > 0  r%& $37??#4  B|'H(46kk`  M6MB:\:D ., .F4   % 8 9 @ A  nnfK$$T#/V#/J;v;B (G ' ' )  $D>hD>LR2GR2jRT-RTj]"$G,  +&+.  {f{Bx'Xx'v   E2FE2N' % y@*(# %$(3'" $%* &F ' 0()r=PK1]oȪȪ(__pycache__/config.cpython-312.opt-1.pycnu[ {|j.dZddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddl Z ddl m Z mZdZej ZdaddZdZdZdZd Zd Zd Zd Zej6d ej8ZdZGddeZ Gdde!e Z"Gdde#e Z$Gdde%e Z&GddeZ'dZ(Gdde'Z)e)Z*dZ+edfdZ,dZ-y) a Configuration functions for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2022 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N)ThreadingTCPServerStreamRequestHandleriF#cddl}t|trZtjj |st |dtjj|st|dt||jr|}nX |j|}t|dr|j|n(tj|}|j||t#|}t%j& t)t+||}t-|||t%j.y#|j $r}t|d|d}~wwxYw#t%j.wxYw)aD Read the logging configuration from a ConfigParser-format file. This can be called several times from an application, allowing an end user the ability to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration). rNz doesn't existz is an empty filereadline)encodingz is invalid: ) configparser isinstancestrospathexistsFileNotFoundErrorgetsize RuntimeErrorRawConfigParser ConfigParserhasattr read_fileio text_encodingread ParsingError_create_formatterslogging _acquireLock_clearExistingHandlers_install_handlers_install_loggers _releaseLock) fnamedefaultsdisable_existing_loggersrrcpe formattershandlerss '/usr/lib64/python3.12/logging/config.py fileConfigr(5s?%ww~~e$#ug^$<= ='%(9:; ;%556  ;**84Buj) U#++H51$B'J  %R4X'?@(( ;% aS9: : ; s% AD8#E8EEEE5c|jd}|jd}t|}|D]}|dz|z} t||}|S#t$rt|t||}Y>wxYw)z)Resolve a dotted name to a global object..r)splitpop __import__getattrAttributeError)nameusedfoundns r'_resolver4asz ::c?D 88A;D t E czA~ &E1%E L & t E1%E &s A  A/.A/c6ttj|SN)mapr strip)alists r' _strip_spacesr:os syy%  c|dd}t|siS|jd}t|}i}|D]}d|z}|j|ddd}|j|d dd}|j|d dd }|j|d dd}tj } ||jd } | r t | } |&t|tt}| ||||} n | |||} | ||<|S)zCreate and return formattersr%keys,z formatter_%sformatTN)rawfallbackdatefmtstyle%r!class)r!) lenr+r:getr Formatterr4evalvars) r#flistr%formsectnamefsdfsstlr!c class_namefs r'rrrs | V $E u: KK E % EJ!D( VVHhD4V @ffXydTfBffXwD3f?66(JD46H   \%%g. $A  Hd7m4H"c32A"c3A 4#$ r;c`|dd}t|siS|jd}t|}i}g}|D]3}|d|z}|d}|jdd} t |t t }|jdd } t | t t } |jd d } t | t t } || i| } || _ d |vr|d } | j| t|r| j||t|t jjr0|jd d} t| r|j!| | f| ||<6|D]\} }| j#|||S#ttf$rt|}Y7wxYw)zInstall and return handlersr&r=r>z handler_%srE formatterargs()kwargsz{}leveltarget)rFr+r:rGrIrJrr/ NameErrorr4r0setLevel setFormatter issubclassr& MemoryHandlerappend setTarget)r#r%hlistr&fixupshandsectionklassfmtrWrYhrZr[ts r'rrs zN6 "E u: KK E % EH F\D() kk+r* $W .E{{64(D$w-(Xt,fd7m, 4 "6 " g G$E JJu  s8 NN:c? + eW--;; <[[2.F6{ q&k*/21 HQK  O+ * $UOE $sFF-,F-c tj}|D]o}|jj|}||vrIt |tj r;|j tjg|_d|_ i||_ qy)a When (re)configuring logging, handle loggers which were in the previous configuration but are not in the new configuration. There's no point deleting them as other threads may continue to hold references to them; and by disabling them, you stop them doing any logging. However, don't disable children of named loggers, as that's probably not what was intended by the user. Also, allow existing loggers to NOT be disabled if disable_existing is false. TN) rrootmanager loggerDictr PlaceHolderr]NOTSETr& propagatedisabled)existing child_loggersdisable_existingrllogloggers r'_handle_existing_loggersrxsi <rl logger_rootrZNr&z logger_%squalnamerq)rAr*r)r+listr:removerrlr]r& removeHandlerrF addHandlerrmrnr=sortgetint getLoggerindexrarqrrrx)r#r&rullistrfrlrvrZrircrersrtqnrqrwiprefixedpflen num_existings r'rrsq yM& !E KK E u% &E LLG < *DLL++0023H  MMOM[3&' Z NN;N; ""2& >r"Q&ACxHMEx=Ll"A;v&(2!((!5Ql" OOB  g G$E OOE "#A   #$$ # u:KK$E!%(E!!(4.15TX}6FGr;ctjjtjtjddtjdd=y)z!Clear and close existing handlersN)r _handlersclearshutdown _handlerListr;r'rr"s;  W))!,-Qr;z^[a-z_][a-z0-9_]*$cNtj|}|std|zy)Nz!Not a valid Python identifier: %rT) IDENTIFIERmatch ValueError)sms r' valid_identr,s)A [a-z]+)://(?P.*)$z ^\s*(\w+)\s*z^\.\s*(\w+)\s*z^\[\s*(\w+)\s*\]\s*z^\d+$ ext_convert cfg_convert)extcfgcFt||_||j_yr6)rconfigr)rrs r'__init__zBaseConfigurator.__init__s$V, #'  r;cH|jd}|jd} |j|}|D]}|d|zz } t||}|S#t$r |j|t||}YDwxYw#t $r}t d|d|}||d}~wwxYw)z` Resolve strings to objects using standard import and attribute syntax. r*rzCannot resolve z: N)r+r,importerr.r/ ImportErrorr)rrr0r1r2fragr$vs r'resolvezBaseConfigurator.resolves wws|xx{ MM$'Ed "1#E40EL&1MM$'#E40E1 a;    # #D ) 93e;< <>D AHHJqM*A$$**40!((*Q-(A**006Ahhjm#1177< !#A+$'H$%aD>D$38$&@AA',$-+$%cF+s)D%%D65D6cHt|ts$t|trt|}||_|St|ts$t|t rt |}||_|St|t s0t|tr t|dst |}||_|St|tri|jj|}|rL|j}|d}|jj|d}|r|d}t||}||}|S)z Convert values to an appropriate type. dicts, lists and tuples are replaced by their converting alternatives. Strings are checked to see if they have a conversion format and are converted if they do. _fieldsprefixNsuffix)r rrrrr~rrrr CONVERT_PATTERNr groupdictvalue_convertersrGr.)rrrrr converterrs r'rzBaseConfigurator.converts %0Zt5L"5)E!%E $ #E>2z%7N"5)E!%E  E?3E5)'%2K#E*E!%E  s #$$**51AKKM8 1155fdC x[F 'i 8I%f-E r;c6|jd}t|s|j|}|Dcic]}|dk7s t|s|||}}|di|}|jdd}|r%|j D]\}}t ||||Scc}w)z1Configure an object with a user-supplied factory.rXr*Nr)r,callablerritemssetattr) rrrQkrYrpropsr0rs r'configure_customz!BaseConfigurator.configure_customs JJt { QA(.P118 A!VAY,PV 3% ${{} ee, - Qs B B Bc<t|tr t|}|S)z0Utility function which converts lists to tuples.)r r~rrs r'as_tuplezBaseConfigurator.as_tuples eT "%LE r;N)rrrrrecompilerrrrrr staticmethodr-rrrrrrrrrr;r'rrts!bjj!IJO2::o.L"**./KBJJ56MBJJx(M J'H(*# D8 r;rcttjtjfryddlm}t|ryddg}t fd|DS)z*Check that *obj* implements the Queue API.Tr)Queue put_nowaitrGc3JK|]}tt|dywr6)rr.).0methodobjs r' z(_is_queue_like_object..s'646VT234s #)r queuer SimpleQueuemultiprocessing.queuesall)rMPQueueminimal_queue_interfaces` r'_is_queue_like_objectrsV# U%6%6787#w ,U3 646 66r;cReZdZdZdZdZdZdZdZdZ dZ d d Z d d Z d d Z y )DictConfiguratorz] Configure logging using a dictionary-like object to describe the configuration. c |j}d|vr td|ddk7rtd|dz|jdd}i}tj |r|j d|}|D]s}|tj vrtd|z tj |}||}|j d d }|r$|jtj|u|j d |} | D]} |j|| |d |j dd } | r$ |j| d n|jdd } t|j d|} | D]} |j| || |<|j d|}|D]} |j||||<|j d|}g}t|D]#} |j!||}||_|||<%|D]#} |j!||}||_|||<%tj*} t-| j.j0j3}|j5g}|j d |} | D]}||vro|j7|dz}|dz}t9|}t9|}||kr*||d ||k(r|j)|||dz }||kr*|j;| |j|| |t=||| |j dd } | r |j| tj>y #t$r} td |z| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$r} td| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$rC} dt%| j&vr|j)|ntd |z| Yd } ~ kd } ~ wwxYw#t$r} td |z| d } ~ wwxYw#t$r} td|z| d } ~ wwxYw#t$r} td| d } ~ wwxYw#tj>wxYw)zDo the configuration.versionz$dictionary doesn't specify a versionr}zUnsupported version: %s incrementalFr&zNo handler found with name %rrZNzUnable to configure handler %rrzTzUnable to configure logger %rrlzUnable to configure root loggerr"r%z Unable to configure formatter %rfilterszUnable to configure filter %rz not configured yetr*) rrr,rrrGrr] _checkLevel Exceptionconfigure_loggerconfigure_rootrconfigure_formatterconfigure_filtersortedconfigure_handlerr0r __cause__rarlr~rmrnr=rrrFrrxr)rrr EMPTY_DICTr&r0handlerhandler_configrZr$rzrlrur%rdeferredrsrtrrrrs r' configurezDictConfigurator.configures F "CD D )  !6 9JJK Kjj6  Q #!::j*=$D7#4#44(*36:*;<<A&-&7&7&=G-5d^N$2$6$6w$EE$ ' 0 01D1DU1K L%!**Y ;#D=--dGDM4H$ zz&$/:++D$7 $*::.H$#O &($ZZ jA &DG+/+C+C?  !#  **Y ;#Dx'$NN4014#'#: #H '*8} ,.'{6E2h> - 4 4Xa[ AFA ,.!-=--dGDMB$<)=)9;zz&$/:++D1  "G )A",.248.9#:?@AA%=(*.04*56;<==%:(*2389::%G(*8:>*?@EFGG%D(*57;*<=BCDD%A0C 4DD$OOD1",.248.9#:?@A2A%=(*.04*56;<==N%=(*.04*56;<==2%:(*2389::  "sX9R1AM((R1NR10N(5R18OR1)O%$R1% PR1 Q-C R17R1 Q4#R1R( N1NNR1 N%N  N%%R1( O1 N==OR1 O"OO""R1% P.O==PR1 Q8Q R1 QR1 Q1Q,,Q11R14 R=R  RR1 R. R))R..R11Sc d|vr|d} |j|}|S|j dd}|j dd}|j dd}|j d d}|j d d} |st j } n t|} i} | | | d <d |vr| ||||d fi| }|S| |||fi| }|S#t$rC}dt|vr|jd|d<||d<|j|}Yd}~|Sd}~wwxYw) z(Configure a formatter from a dictionary.rXz'format'r?rhNrBrCrDrEr!validate)rrr r,rGrrHr4) rrfactoryrterhdfmtrCcnamer!rQrYs r'r z$DictConfigurator.configure_formattersK 6>TlG 7..v6L 5**Xt,C::i.DJJw,EJJw-Ezz*d3H%%UOF #%-z"V#3eVJ-?J6J 3e6v6 K 7SW, !' 8 4u &t ..v68 K 7sC D  8DD cd|vr|j|}|S|jdd}tj|}|S)z%Configure a filter from a dictionary.rXr0rV)rrGrFilter)rrrr0s r'r z!DictConfigurator.configure_filtersE 6>**62F ::fb)D^^D)F r;c|D]J} t|stt|ddr|}n|jd|}|j|Ly#t$r}t d|z|d}~wwxYw)z/Add filters to a filterer from a list of names.filterNrzUnable to add filter %r)rr.r addFilterrr)rfiltererrrSfilter_r$s r' add_filterszDictConfigurator.add_filterssvA GA;(71h+E"FG"kk)4Q7G""7+  G !:Q!>?QF GsAA A.A))A.c .d|vr|jd}ntj}|jdd}|jdtjj }|jdg}||g|d|i}||fi|}||_|S)Nrrespect_handler_levelFlistenerr&)r,rrrr& QueueListenerr$) rrgrYqrhllklassr&r$rs r'_configure_queue_handlerz)DictConfigurator._configure_queue_handlers f  7#A Ajj0%8J(8(8(F(FG::j"-!BhBcB$V$#r;c t|}|jdd}|r |jd|}|jdd}|jdd}d|vr1|jd}t |s|j |}|}n|jd} t | r| } n|j | } t| tjjryd |vrtj|d |d <d |vr, |d } |jd | } t| tjs|j|td | |d <nt| tjj r3d|vr|d} t| t"r5|j | }t |std| z||d<nYt| tr0d| vrtd| z|j%t| |d<nt'| std| zd|vr|d}t|t(r2t|tjj*std|zt|t"rS|j |}t|t(r}t|tjj*sYtd|zt|tr-d|vrtd|z|j%t|}ntd|zt |std|z||d<d |vrg} |d D]^}|jd |}t|tjs|j|td|z|j-|` ||d <nt| tjj.rd|vr|j1|d|d<n?t| tjj2rd|vr|j1|d|d<t| tjj r!t5j6|j8| }n| }|Dcic]}|dk7s t;|s|||}} |di|}|r|j=||$|j?tj||r|jA|||jdd}|r%|jCD]\}}tE||||S#t$r}t d|z|d}~wwxYw#t$r}t d  z|d}~wwxYw#t$r}t dz|d}~wwxYwcc}w#t$r5}dt#|vr|jd|d<|di|}Yd}~&d}~wwxYw)z&Configure a handler from a dictionary.rUNr%zUnable to set formatter %rrZrrXrE flushLevelr[r&ztarget not configured yetzUnable to set target handler %rrzInvalid queue specifier %rr$zInvalid listener specifier %rz)Required handler %r is not configured yetz!Unable to set required handler %rmailhostaddressr*z'stream'streamstrmr)#rr,rrrrrr_rr&r`rr Handlerupdater QueueHandlerr rrrr%ra SMTPHandlerr SysLogHandler functoolspartialr)rr^r]r!rr)rr config_copyrUr$rZrrQrrrgtnthqspecr&lspecr$rchnrirrYrrrr0rs r'r z"DictConfigurator.configure_handlers6l JJ{D1  : KK 5i@  7D)**Y- 6> 4 AA;LLOGJJw'E U+%!1!1!?!?@6)+2+>+>vl?S+TF<(v%X#H-![[4R8)"goo>"MM+6"+,G"HH+-x(E7#3#3#@#@Af$"7OE!%- LL/'{"+,H5,P"QQ*+#w#E40u,"+,H5,P"QQ*.*?*?U *Lw259'(Du(LMM'":.E!%.)%1A1A1O1OP"+,Ke,S"TT%eS1'+||E':H)(D9$.x9I9I9W9W$X&/0ORW0W&X X't4#50&/0ORW0W&X X'+'<'!>?#++D,I,I5Q(.P118 A!VAY,P '&v&F     *   OOG//6 7    VW - 3% ${{} ee, - e : "&(1"2389: :8%X()JR)OPVWWXf%Z()Lr)QRXYYZQ 'R( $ZZ1F6N&v&F 'ssT-AU A&U-; V  V V V- U 6UU  U*U%%U*- V 6VV  W*W  Wc|D]$} |j|jd|&y#t$r}td|z|d}~wwxYw)z.Add handlers to a logger from a list of names.r&zUnable to add handler %rN)rrrr)rrwr&rir$s r' add_handlerszDictConfigurator.add_handlerssUA H!!$++j"9!"<= H !;a!?@aG Hs!+ AAAc^|jdd}|$|jtj||ss|jddD]}|j ||jdd}|r|j |||jdd}|r|j||yyy)zU Perform configuration which is common to root and non-root loggers. rZNr&r)rGr]rrr&rr>r!)rrwrrrZrir&rs r'common_logger_configz%DictConfigurator.common_logger_configs 7D)   OOG//6 7__Q'$$Q'(zz*d3H!!&(3jjD1G  1r;ctj|}|j|||d|_|j dd}|||_yy)z.Configure a non-root logger from a dictionary.FrqN)rrr@rrrGrq)rr0rrrwrqs r'rz!DictConfigurator.configure_loggersN""4( !!&&+>JJ{D1  (F  !r;cRtj}|j|||y)z*Configure a root logger from a dictionary.N)rrr@)rrrrls r'r zDictConfigurator.configure_roots"  " !!$ r@rr rr;r'rrs@ \#|+Z G yvH2$)=r;rc6t|jy)z%Configure logging using a dictionary.N)dictConfigClassr)rs r' dictConfigrEsF%%'r;cGddt}Gddt}Gfddtj||||S)au Start up a socket server on the specified port, and listen for new configurations. These will be sent as a file suitable for processing by fileConfig(). Returns a Thread object on which you can call start() to start the server, and which you can join() when appropriate. To stop the server, call stopListening(). Use the ``verify`` argument to verify any bytes received across the wire from a client. If specified, it should be a callable which receives a single argument - the bytes of configuration data received across the network - and it should return either ``None``, to indicate that the passed in bytes could not be verified and should be discarded, or a byte string which is then passed to the configuration machinery as normal. Note that you can return transformed bytes, e.g. by decrypting the bytes passed in. ceZdZdZdZy)#listen..ConfigStreamHandlerz Handler for a logging configuration request. It expects a completely new logging configuration and uses fileConfig to install it. c~ |j}|jd}t|dk(rtjd|d}|jj|}t||kr/||j|t|z z}t||kr/|j j |j j |}|2|jd} ddl}|j|}t||j j"r%|j j"j%yyy#t$rHtj|} t|n##t$rtj YnwxYwYwxYw#t&$r}|j(t*k7rYd}~yd}~wwxYw)z Handle a request. Each request is expected to be a 4-byte length, packed using struct.pack(">L", n), followed by the config file. Uses fileConfig() to do the grunt work. z>LrNzutf-8) connectionrecvrFstructunpackserververifydecodejsonloadsrErrStringIOr( traceback print_excreadysetOSErrorerrno RESET_ERROR)rconnchunkslenrRrfiler$s r'handlez*listen..ConfigStreamHandler.handlesy  ! u:?!==u5a8D OO006Ee*t+ % $U2C(D De*t+{{))5 $ 2 25 9( % W 5 6'#zz%0A&qM{{(( ))--/)-# )6$&;;u#5D6 *4 0#,6 ) 3 3 56 6 77k)* sgBFAF$ E:FF E,+F,F  F F  FFFF F<F77F<N)rrrrr`rr;r'ConfigStreamHandlerrHs  % r;rac,eZdZdZdZdedddfdZdZy)$listen..ConfigSocketReceiverzD A simple TCP socket-based logging config receiver. r} localhostNctj|||f|tjd|_tj d|_||_||_y)Nrr}) rrrrabortrtimeoutrWrP)rhostportrrWrPs r'rz-listen..ConfigSocketReceiver.__init__sL  ' 'tTlG D  "DJ  "DLDJ DKr;c<ddl}d}|s|j|jjggg|j\}}}|r|j t j |j}t j|s|jy)Nr) selectsocketfilenorghandle_requestrrrfr server_close)rrkrfrdwrexs r'serve_until_stoppedz8listen..ConfigSocketReceiver.serve_until_stoppeds E#]]DKK,>,>,@+A+-r+/<<9 B'')$$& $$&    r;)rrrrallow_reuse_addressDEFAULT_LOGGING_CONFIG_PORTrrsrr;r'ConfigSocketReceiverrcs&   +2M!d ! r;rvc(eZdZfdZdZxZS)listen..Serverct|||_||_||_||_t j|_yr6) superrrcvrhdlrrirP threadingEventrW)rr{r|rirPServer __class__s r'rzlisten..Server.__init__s: &$ ( *DIDIDI DK"*DJr;cl|j|j|j|j|j}|jdk(r|j d|_|jj tj|a tj|jy)N)rirrWrPrr}) r{rir|rWrPserver_addressrXrr _listenerrrs)rrOs r'runzlisten..Server.runsYYDIItyy%)ZZ&*kk3FyyA~"11!4 JJNN   "I  "  & & (r;)rrrrr __classcell__)rrs@r'rrxs  + )r;r)rrr}Thread)rirPrarvrs @r'listenrsE(,2,\ 1 >)!!). &(;T6 JJr;ctj tr dt_datjy#tjwxYw)zN Stop the listening server which was created with a call to listen(). r}N)rrrrfrrr;r' stopListeningr+s=   IOIs >A)NTN).rrZr5rrlogging.handlersr rrrMr}rU socketserverrrru ECONNRESETr[rr(r4r:rrrxrrrIrrobjectrrrr~rrrrrrrDrErrrr;r'rs"   A#   )X !:$L/,THn RZZ,bdd 3 fB @T? @#T?#@e_@AvAF66V='V=p #( ,DxKt r;PK1]/1HH(__pycache__/config.cpython-312.opt-2.pycnu[ {|j. ddlZddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddl m Z m Z dZejZdaddZdZdZdZdZd Zd Zd Zej4d ej6Zd ZGddeZGdde eZ!Gdde"eZ#Gdde$eZ%GddeZ&dZ'Gdde&Z(e(Z)dZ*edfdZ+dZ,y)N)ThreadingTCPServerStreamRequestHandleriF#c ddl}t|trZtjj |st |dtjj|st|dt||jr|}nX |j|}t|dr|j|n(tj|}|j||t#|}t%j& t)t+||}t-|||t%j.y#|j $r}t|d|d}~wwxYw#t%j.wxYw)Nrz doesn't existz is an empty filereadline)encodingz is invalid: ) configparser isinstancestrospathexistsFileNotFoundErrorgetsize RuntimeErrorRawConfigParser ConfigParserhasattr read_fileio text_encodingread ParsingError_create_formatterslogging _acquireLock_clearExistingHandlers_install_handlers_install_loggers _releaseLock) fnamedefaultsdisable_existing_loggersrrcpe formattershandlerss '/usr/lib64/python3.12/logging/config.py fileConfigr(5sD%ww~~e$#ug^$<= ='%(9:; ;%556  ;**84Buj) U#++H51$B'J  %R4X'?@(( ;% aS9: : ; s% AD9#E 9EEE E6c |jd}|jd}t|}|D]}|dz|z} t||}|S#t$rt|t||}Y>wxYw)N.r)splitpop __import__getattrAttributeError)nameusedfoundns r'_resolver4as}3 ::c?D 88A;D t E czA~ &E1%E L & t E1%E &s A  A0/A0c6ttj|SN)mapr strip)alists r' _strip_spacesr:os syy%  c |dd}t|siS|jd}t|}i}|D]}d|z}|j|ddd}|j|ddd}|j|d dd }|j|d dd}tj } ||jd } | r t | } |&t|tt}| |||| } n | |||} | ||<|S)Nr%keys,z formatter_%sformatT)rawfallbackdatefmtstyle%r!class)r!) lenr+r:getr Formatterr4evalvars) r#flistr%formsectnamefsdfsstlr!c class_namefs r'rrrs& | V $E u: KK E % EJ!D( VVHhD4V @ffXydTfBffXwD3f?66(JD46H   \%%g. $A  Hd7m4H"c32A"c3A 4#$ r;cb |dd}t|siS|jd}t|}i}g}|D]3}|d|z}|d}|jdd} t |t t }|jdd } t | t t } |jd d } t | t t } || i| } || _ d |vr|d } | j| t|r| j||t|t jjr0|jd d} t| r|j!| | f| ||<6|D]\} }| j#|||S#ttf$rt|}Y7wxYw)Nr&r=r>z handler_%srE formatterargs()kwargsz{}leveltarget)rFr+r:rGrIrJrr/ NameErrorr4r0setLevel setFormatter issubclassr& MemoryHandlerappend setTarget)r#r%hlistr&fixupshandsectionklassfmtrWrYhrZr[ts r'rrs% zN6 "E u: KK E % EH F\D() kk+r* $W .E{{64(D$w-(Xt,fd7m, 4 "6 " g G$E JJu  s8 NN:c? + eW--;; <[[2.F6{ q&k*/21 HQK  O+ * $UOE $sFF.-F.c tj}|D]o}|jj|}||vrIt |tj r;|j tjg|_d|_ i||_ qy)NT) rrootmanager loggerDictr PlaceHolderr]NOTSETr& propagatedisabled)existing child_loggersdisable_existingrllogloggers r'_handle_existing_loggersrxsn  <rl logger_rootrZr&z logger_%squalnamerq)rAr*r)r+listr:removerrlr]r& removeHandlerrF addHandlerrmrnr=sortgetint getLoggerindexrarqrrrx)r#r&rullistrfrlrvrZrircrersrtqnrqrwiprefixedpflen num_existings r'rrst$ yM& !E KK E u% &E LLG < *DLL++0023H  MMOM[3&' Z NN;N; ""2& >r"Q&ACxHMEx=Ll"A;v&(2!((!5Ql" OOB  g G$E OOE "#A   #$$ # u:KK$E!%(E!!(4.15TX}6FGr;c tjjtjtjddtjdd=yr6)r _handlersclearshutdown _handlerListr;r'rr"s>+  W))!,-Qr;z^[a-z_][a-z0-9_]*$cNtj|}|std|zy)Nz!Not a valid Python identifier: %rT) IDENTIFIERmatch ValueError)sms r' valid_identr,s)A [a-z]+)://(?P.*)$z ^\s*(\w+)\s*z^\.\s*(\w+)\s*z^\[\s*(\w+)\s*\]\s*z^\d+$ ext_convert cfg_convert)extcfgcFt||_||j_yr6)rconfigr)rrs r'__init__zBaseConfigurator.__init__s$V, #'  r;cJ |jd}|jd} |j|}|D]}|d|zz } t||}|S#t$r |j|t||}YDwxYw#t $r}t d|d|}||d}~wwxYw)Nr*rzCannot resolve z: )r+r,importerr.r/ ImportErrorr)rrr0r1r2fragr$vs r'resolvezBaseConfigurator.resolves wws|xx{ MM$'Ed "1#E40EL&1MM$'#E40E1 a;D AHHJqM*A$$**40!((*Q-(A**006Ahhjm#1177< !#A+$'H$%aD>D$38$&@AA',$-+$%cF+s*D&&D76D7cJ t|ts$t|trt|}||_|St|ts$t|t rt |}||_|St|t s0t|tr t|dst |}||_|St|tri|jj|}|rL|j}|d}|jj|d}|r|d}t||}||}|S)N_fieldsprefixsuffix)r rrrrr~rrrr CONVERT_PATTERNr groupdictvalue_convertersrGr.)rrrrr converterrs r'rzBaseConfigurator.converts %0Zt5L"5)E!%E $ #E>2z%7N"5)E!%E  E?3E5)'%2K#E*E!%E  s #$$**51AKKM8 1155fdC x[F 'i 8I%f-E r;c8 |jd}t|s|j|}|Dcic]}|dk7s t|s|||}}|di|}|jdd}|r%|j D]\}}t ||||Scc}w)NrXr*r)r,callablerritemssetattr) rrrQkrYrpropsr0rs r'configure_customz!BaseConfigurator.configure_customs? JJt { QA(.P118 A!VAY,PV 3% ${{} ee, - Qs B B Bc> t|tr t|}|Sr6)r r~rrs r'as_tuplezBaseConfigurator.as_tuples> eT "%LE r;N)rrrrecompilerrrrrr staticmethodr-rrrrrrrrrr;r'rrts!bjj!IJO2::o.L"**./KBJJ56MBJJx(M J'H(*# D8 r;rc ttjtjfryddlm}t|ryddg}t fd|DS)NTr)Queue put_nowaitrGc3JK|]}tt|dywr6)rr.).0methodobjs r' z(_is_queue_like_object..s'646VT234s #)r queuer SimpleQueuemultiprocessing.queuesall)rMPQueueminimal_queue_interfaces` r'_is_queue_like_objectrsY4# U%6%6787#w ,U3 646 66r;cPeZdZ dZdZdZdZdZdZdZ d dZ d d Z d d Z y ) DictConfiguratorc |j}d|vr td|ddk7rtd|dz|jdd}i}tj |r|j d|}|D]s}|tj vrtd|z tj |}||}|j d d}|r$|jtj|u|j d |} | D]} |j|| |d |j dd} | r$ |j| d n|jdd } t|j d|} | D]} |j| || |<|j d|}|D]} |j||||<|j d|}g}t|D]#} |j!||}||_|||<%|D]#} |j!||}||_|||<%tj*} t-| j.j0j3}|j5g}|j d |} | D]}||vro|j7|dz}|dz}t9|}t9|}||kr*||d||k(r|j)|||dz }||kr*|j;| |j|| |t=||| |j dd} | r |j| tj>y#t$r} td |z| d} ~ wwxYw#t$r} td |z| d} ~ wwxYw#t$r} td| d} ~ wwxYw#t$r} td|z| d} ~ wwxYw#t$r} td|z| d} ~ wwxYw#t$rC} dt%| j&vr|j)|ntd |z| Yd} ~ kd} ~ wwxYw#t$r} td |z| d} ~ wwxYw#t$r} td |z| d} ~ wwxYw#t$r} td| d} ~ wwxYw#tj>wxYw)Nversionz$dictionary doesn't specify a versionr}zUnsupported version: %s incrementalFr&zNo handler found with name %rrZzUnable to configure handler %rrzTzUnable to configure logger %rrlzUnable to configure root loggerr"r%z Unable to configure formatter %rfilterszUnable to configure filter %rz not configured yetr*) rrr,rrrGrr] _checkLevel Exceptionconfigure_loggerconfigure_rootrconfigure_formatterconfigure_filtersortedconfigure_handlerr0r __cause__rarlr~rmrnr=rrrFrrxr)rrr EMPTY_DICTr&r0handlerhandler_configrZr$rzrlrur%rdeferredrsrtrrrrs r' configurezDictConfigurator.configures# F "CD D )  !6 9JJK Kjj6  Q #!::j*=$D7#4#44(*36:*;<<A&-&7&7&=G-5d^N$2$6$6w$EE$ ' 0 01D1DU1K L%!**Y ;#D=--dGDM4H$ zz&$/:++D$7 $*::.H$#O &($ZZ jA &DG+/+C+C?  !#  **Y ;#Dx'$NN4014#'#: #H '*8} ,.'{6E2h> - 4 4Xa[ AFA ,.!-=--dGDMB$<)=)9;zz&$/:++D1  "G )A",.248.9#:?@AA%=(*.04*56;<==%:(*2389::%G(*8:>*?@EFGG%D(*57;*<=BCDD%A0C 4DD$OOD1",.248.9#:?@A2A%=(*.04*56;<==N%=(*.04*56;<==2%:(*2389::  "sX9R2AM))R2N R21N)5R29OR2*O&$R2& PR2 Q.C R28R2 Q5#R2R) N2NNR2 N&N!!N&&R2) O2 N>>OR2 O#OO##R2& P/O>>PR2 Q8Q R2 QR2 Q2Q--Q22R25 R>R  RR2 R/ R**R//R22Sc" d|vr|d} |j|}|S|j dd}|j dd}|j dd}|j dd}|j d d} |st j } n t|} i} | | | d <d |vr| ||||d fi| }|S| |||fi| }|S#t$rC}dt|vr|jd|d<||d<|j|}Yd}~|Sd}~wwxYw) NrXz'format'r?rhrBrCrDrEr!validate)rrr r,rGrrHr4) rrfactoryrterhdfmtrCcnamer!rQrYs r'r z$DictConfigurator.configure_formattersN6 6>TlG 7..v6L 5**Xt,C::i.DJJw,EJJw-Ezz*d3H%%UOF #%-z"V#3eVJ-?J6J 3e6v6 K 7SW, !' 8 4u &t ..v68 K 7sC D 8D  Dc d|vr|j|}|S|jdd}tj|}|S)NrXr0rV)rrGrFilter)rrrr0s r'r z!DictConfigurator.configure_filtersH3 6>**62F ::fb)D^^D)F r;c |D]J} t|stt|ddr|}n|jd|}|j|Ly#t$r}t d|z|d}~wwxYw)NfilterrzUnable to add filter %r)rr.r addFilterrr)rfiltererrrSfilter_r$s r' add_filterszDictConfigurator.add_filterssy=A GA;(71h+E"FG"kk)4Q7G""7+  G !:Q!>?QF GsAA A/A**A/c .d|vr|jd}ntj}|jdd}|jdtjj }|jdg}||g|d|i}||fi|}||_|S)Nrrespect_handler_levelFlistenerr&)r,rrrr& QueueListenerr#) rrgrYqrhllklassr&r#rs r'_configure_queue_handlerz)DictConfigurator._configure_queue_handlers f  7#A Ajj0%8J(8(8(F(FG::j"-!BhBcB$V$#r;c t|}|jdd}|r |jd|}|jdd}|jdd}d|vr1|jd}t |s|j |}|}n|jd} t | r| } n|j | } t| tjjryd|vrtj|d|d<d |vr, |d } |jd | } t| tjs|j|td | |d <nt| tjj r3d |vr|d } t| t"r5|j | }t |std| z||d <nYt| tr0d| vrtd| z|j%t| |d <nt'| std| zd|vr|d}t|t(r2t|tjj*std|zt|t"rS|j |}t|t(r}t|tjj*sYtd|zt|tr-d|vrtd|z|j%t|}ntd|zt |std|z||d<d |vrg} |d D]^}|jd |}t|tjs|j|td|z|j-|` ||d <nt| tjj.rd|vr|j1|d|d<n?t| tjj2rd|vr|j1|d|d<t| tjj r!t5j6|j8| }n| }|Dcic]}|dk7s t;|s|||}} |di|}|r|j=||$|j?tj||r|jA|||jdd}|r%|jCD]\}}tE||||S#t$r}t d|z|d}~wwxYw#t$r}t d  z|d}~wwxYw#t$r}t dz|d}~wwxYwcc}w#t$r5}dt#|vr|jd|d<|di|}Yd}~&d}~wwxYw)NrUr%zUnable to set formatter %rrZrrXrE flushLevelr[r&ztarget not configured yetzUnable to set target handler %rrzInvalid queue specifier %rr#zInvalid listener specifier %rz)Required handler %r is not configured yetz!Unable to set required handler %rmailhostaddressr*z'stream'streamstrmr)#rr,rrrrrr_rr&r`rr Handlerupdater QueueHandlerr rrrr$ra SMTPHandlerr SysLogHandler functoolspartialr(rr^r]r rr)rr config_copyrUr$rZrrQrrrgtnthqspecr%lspecr#rchnrirrYrrrr0rs r'r z"DictConfigurator.configure_handlers46l JJ{D1  : KK 5i@  7D)**Y- 6> 4 AA;LLOGJJw'E U+%!1!1!?!?@6)+2+>+>vl?S+TF<(v%X#H-![[4R8)"goo>"MM+6"+,G"HH+-x(E7#3#3#@#@Af$"7OE!%- LL/'{"+,H5,P"QQ*+#w#E40u,"+,H5,P"QQ*.*?*?U *Lw259'(Du(LMM'":.E!%.)%1A1A1O1OP"+,Ke,S"TT%eS1'+||E':H)(D9$.x9I9I9W9W$X&/0ORW0W&X X't4#50&/0ORW0W&X X'+'<'!>?#++D,I,I5Q(.P118 A!VAY,P '&v&F     *   OOG//6 7    VW - 3% ${{} ee, - e : "&(1"2389: :8%X()JR)OPVWWXf%Z()Lr)QRXYYZQ 'R( $ZZ1F6N&v&F 'ssT.AUA&U.< V VVV. U 7UU  U+U&&U+. V 7VV  W*W  Wc |D]$} |j|jd|&y#t$r}td|z|d}~wwxYw)Nr&zUnable to add handler %r)rrrr)rrwr&rir$s r' add_handlerszDictConfigurator.add_handlerssX<A H!!$++j"9!"<= H !;a!?@aG Hs!, A AA c` |jdd}|$|jtj||ss|jddD]}|j ||jdd}|r|j |||jdd}|r|j||yyy)NrZr&r)rGr]rrr&rr=r )rrwrrrZrir&rs r'common_logger_configz%DictConfigurator.common_logger_configs  7D)   OOG//6 7__Q'$$Q'(zz*d3H!!&(3jjD1G  1r;c tj|}|j|||d|_|j dd}|||_yy)NFrq)rrr?rrrGrq)rr0rrrwrqs r'rz!DictConfigurator.configure_loggersQ<""4( !!&&+>JJ{D1  (F  !r;cT tj}|j|||yr6)rrr?)rrrrls r'rzDictConfigurator.configure_roots%8  " !!$ .ConfigStreamHandlerc |j}|jd}t|dk(rtjd|d}|jj|}t||kr/||j|t|z z}t||kr/|j j |j j |}|2|jd} ddl}|j|}t||j j"r%|j j"j%yyy#t$rHtj|} t|n##t$rtj YnwxYwYwxYw#t&$r}|j(t*k7rYd}~yd}~wwxYw)Nz>Lrzutf-8) connectionrecvrFstructunpackserververifydecodejsonloadsrDrrStringIOr( traceback print_excreadysetOSErrorerrno RESET_ERROR)rconnchunkslenrQrfiler$s r'handlez*listen..ConfigStreamHandler.handles~   ! u:?!==u5a8D OO006Ee*t+ % $U2C(D De*t+{{))5 $ 2 25 9( % W 5 6'#zz%0A&qM{{(( ))--/)-# )6$&;;u#5D6 *4 0#,6 ) 3 3 56 6 77k)* sgBF AF% E:FF! E-,F-F  F F  FFFF F=F88F=N)rrrr_rr;r'ConfigStreamHandlerrGs  % r;r`c*eZdZ dZdedddfdZdZy)$listen..ConfigSocketReceiverr} localhostNctj|||f|tjd|_tj d|_||_||_y)Nrr}) rrrrabortrtimeoutrVrO)rhostportrrVrOs r'rz-listen..ConfigSocketReceiver.__init__sL  ' 'tTlG D  "DJ  "DLDJ DKr;c<ddl}d}|s|j|jjggg|j\}}}|r|j t j |j}t j|s|jy)Nr) selectsocketfilenorfhandle_requestrrrer server_close)rrjrerdwrexs r'serve_until_stoppedz8listen..ConfigSocketReceiver.serve_until_stoppeds E#]]DKK,>,>,@+A+-r+/<<9 B'')$$& $$&    r;)rrrallow_reuse_addressDEFAULT_LOGGING_CONFIG_PORTrrrrr;r'ConfigSocketReceiverrbs&   +2M!d ! r;ruc(eZdZfdZdZxZS)listen..Serverct|||_||_||_||_t j|_yr6) superrrcvrhdlrrhrO threadingEventrV)rrzr{rhrOServer __class__s r'rzlisten..Server.__init__s: &$ ( *DIDIDI DK"*DJr;cl|j|j|j|j|j}|jdk(r|j d|_|jj tj|a tj|jy)N)rhrrVrOrr}) rzrhr{rVrOserver_addressrWrr _listenerrrr)rrNs r'runzlisten..Server.runsYYDIItyy%)ZZ&*kk3FyyA~"11!4 JJNN   "I  "  & & (r;)rrrrr __classcell__)rr~s@r'r~rws  + )r;r~)rrr|Thread)rhrOr`rur~s @r'listenrsJ&,2,\ 1 >)!!). &(;T6 JJr;c tj tr dt_datjy#tjwxYw)Nr})rrrrerrr;r' stopListeningr+sB  IOIs ?A)NTN)-rYr4rrlogging.handlersr rrrLr|rT socketserverrrrt ECONNRESETrZrr(r4r:rrrxrrrIrrobjectrrrr~rrrrrrrCrDrrrr;r'rs"   A#   )X !:$L/,THn RZZ,bdd 3 fB @T? @#T?#@e_@AvAF66V='V=p #( ,DxKt r;PK1]0oHII*__pycache__/handlers.cpython-312.opt-2.pycnu[ {|jv ddlZddlZddlZddlZddlZddlZddlZddlZddlm Z m Z m Z ddl Z ddl Z ddlZdZdZdZdZdZdZdZGd d ej,ZGd d eZGd deZGddej,ZGddej6ZGddeZGddej6ZGddej6ZGddej6Z Gddej6Z!Gddej6Z"Gdd e"Z#Gd!d"ej6Z$Gd#d$e%Z&y)%N)ST_DEVST_INOST_MTIMEi<#i=#i>#i?#iQc0eZdZ dZdZddZdZdZdZy)BaseRotatingHandlerNcz tjj||||||||_||_||_y)Nmodeencodingdelayerrors)logging FileHandler__init__r r rselffilenamer r r rs )/usr/lib64/python3.12/logging/handlers.pyrzBaseRotatingHandler.__init__6sG  $$T8$.6e,2 % 4    c |j|r|jtjj ||y#t $r|j |YywxYwN)shouldRollover doRolloverrremit Exception handleErrorrrecords rrzBaseRotatingHandler.emitAsW  %""6*!    $ $T6 2 %   V $ %sAAA"!A"c\ t|js|}|S|j|}|Sr)callablenamer)r default_nameresults rrotation_filenamez%BaseRotatingHandler.rotation_filenameOs6  #!F ZZ -F rc t|js7tjj |rtj ||yy|j||yr)r!rotatorospathexistsrename)rsourcedests rrotatezBaseRotatingHandler.rotatebsH  %ww~~f% &$'& LL &r)NFN) __name__ __module__ __qualname__r"r'rrr%r.rrrr-s' EG  %&'rrc&eZdZ ddZdZdZy)RotatingFileHandlerNc |dkDrd}d|vrtj|}tj||||||||_||_y)Nrabr r r)io text_encodingrrmaxBytes backupCount)rrr r;r<r r rs rrzRotatingFileHandler.__init__|s\ 2 a<D d?''1H$$T8TH+0 % A  &rc8 |jr!|jjd|_|jdkDr:t|jdz ddD]}|j d|j |fz}|j d|j |dzfz}t jj|sft jj|rt j|t j|||j |j dz}t jj|rt j||j|j ||js|j|_yy)Nrz%s.%dz.1)streamcloser<ranger% baseFilenamer(r)r*remover+r.r _open)risfndfns rrzRotatingFileHandler.doRollovers=  ;; KK   DK   a 4++a/B7,,W8I8I17M-MN,,W8I8I89A8?.?@77>>#&ww~~c* #IIc3'8(():):T)ABCww~~c" # KK))3 /zz**,DKrc |j|j|_|jdkDr|jj}|syd|j |z}|t |z|jk\rTt jj|jr*t jj|jsyyy)NrFz%s T) r@rEr;tellformatlenr(r)r*rCisfile)rrposmsgs rrz"RotatingFileHandler.shouldRollovers ;; **,DK ==1 ++""$C4;;v..CSX~.77>>$"3"34RWW^^DL]L]=^ r)r6rrNFN)r/r0r1rrrr2rrr4r4ws!DE48"'H'.rr4c4eZdZ ddZdZdZdZdZy)TimedRotatingFileHandlerNc tj|}tj||d||| |j |_||_||_||_|j dk(rd|_ d|_ d} n=|j dk(rd|_ d |_ d } n|j d k(rd |_ d |_ d} n|j dk(s|j dk(rd|_ d|_ d} n|j jdrd|_ t|j dk7rtd|j z|j ddks|j ddkDrtd|j zt|j d|_d|_ d} ntd|j zt!j"| t j$|_|j|z|_ |j(}t*j,j/|rt+j0|t2} ntt5j4} |j7| |_y)Nr6r8Sr>z%Y-%m-%d_%H-%M-%Sz0(?H YY# j!8(DM$DK8H YY ! !# &,DM499~" !knrnwnw!wxxyy|c!TYYq\C%7 !PSWS\S\!\]] 1.DN$DK8HFRS S 8RXX6  0 $$ 77>>( #!(+ADIIK A..q1rc  ||jz}|jdk(s|jjdr|jrt j |}nt j |}|d}|d}|d}|d}|jt}nJ|jjdz|jjzdz|jjz}||dz|zdz|zz } | dkr| tz } |d zd z}|| z}|jjdrk|} | |jk7r@| |jkr|j| z } nd| z |jzd z} || tzz }||jtd zz z }n||jtz z }|jsK|d } t j |d } | | k7r)| s d }t j |d z d sd}nd }||z }|S)NrYrZrUrr>r?rW) rbr_rdr`rmgmtime localtimera _MIDNIGHThourminutesecondrg)r currentTimer$rp currentHour currentMinute currentSecond currentDay rotate_tsrday daysToWaitdstNow dstAtRolloveraddends rrnz(TimedRotatingFileHandler.computeRollovers t}}, 99 "dii&:&:3&?xxKK ,NN;/A$KaDMaDM1J{{"% "kk..3dkk6H6HH"LKK&&' kB.>"DAAvY(1n1  1_F yy##C( $..(T^^+%)^^c%9 %&Wt~~%=%A j944F$--)a-77$--)33882 $v 6r : ]*!!&#~~fTk:2>%&F!%f$F rc2 ttj}||jk\rjtjj |j r@tjj|j s|j||_yyy)NFT) rfrmror(r)r*rCrMrn)rrrps rrz'TimedRotatingFileHandler.shouldRolloveresm    ww~~d//0HYHY9Z#'"6"6q"9rc tjj|j\}}tj|}g}|j q|dz}t |}|D][}|d||k(s ||d}|jj|s-|jtjj||]n|D]}|jj|} | s!|j |jdz| dz} tjj| |k(r0|jtjj|||jj|| jdz} | rt ||jkrg}|S|j|dt ||jz }|S)N.rr>)r(r)splitrClistdirr"rLrk fullmatchappendjoinsearchbasenamestartr<sort) rdirNamebaseName fileNamesr$prefixplenfileNamercmrHs rgetFilesToDeletez)TimedRotatingFileHandler.getFilesToDeletexs GGMM$*;*;<JJw'  :: ^Fv;D%ET?f,%de_F}}..v6 bggll7H&EF & & MM((2**T%6%6%>#   ;; KK   DK D%%s+   a **, ! -zz**,DK..{;r)hr>rNFFNN)r/r0r1rrnrrrr2rrrQrQs2DE?CA2FKZ&$L&@g@) rHandlerrhostportaddresssock closeOnError retryTime retryStartretryMax retryFactorrrrs rrzSocketHandler.__init__sn    &  <DL $>63E3EFF   g & t||,    s 5BB-c tj}|jd}n||jk\}|r |j|_d|_yy#t$r}|j|j |_nH|j |jz|_|j |jkDr|j|_||j z|_YywxYwNT) rmrrrrr retryPeriodrr)rnowattempts r createSocketzSocketHandler.createSocketGs iik >> !Gdnn,G  8 OO- !%  8>>)'+D$'+'7'7$:J:J'JD$''$--7+/==(!$t'7'7!7 8sABCCc |j|j|jr |jj|yy#t$r$|jj d|_YywxYwr)rrsendallrrArrs rsendzSocketHandler.sendcsj 99      99 ! !!!$  ! !   !sA*A54A5c> |j}|r|j|}t|j}|j |d<d|d<d|d<|j ddt j|d}tjdt|}||zS)NrOargsexc_infomessager>z>L) rrKdict__dict__ getMessagepoppickledumpsstructpackrL)rreidummydrslens r makePicklezSocketHandler.makePicklevs __ KK'E  !$$&%& *  i LLA {{4Q(axrc |jr.|jr"|jjd|_ytjj ||yr)rrrArrrrs rrzSocketHandler.handleErrorsA     IIOO DI OO ' 'f 5rc |j|}|j|y#t$r|j|YywxYwr)rrrr)rrrs rrzSocketHandler.emitsB  %'A IIaL %   V $ %s"&AAc |j |j}|rd|_|jtjj||j y#|j wxYwr)acquirerrArrreleaserrs rrAzSocketHandler.closesX   99D   OO ! !$ ' LLNDLLN AA((A:N)r>) r/r0r1rrrrrrrrAr2rrrrs/ 2"88!&, 6 % rrc eZdZ dZdZdZy)DatagramHandlercB tj|||d|_y)NF)rrrrs rrzDatagramHandler.__init__s#  tT40!rc |jtj}ntj}tj|tj}|Sr)rrrAF_INET SOCK_DGRAM)rfamilyrs rrzDatagramHandler.makeSockets@  99 ^^F^^F MM&&"3"3 4rc |j|j|jj||jyr)rrsendtorrs rrzDatagramHandler.sends7  99      DLL)rN)r/r0r1rrrr2rrrrs "  *rrc xeZdZ dZdZdZdZdZdZdZ dZ dZ dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZdZdZ dZ!dZ"eeee eeee eeeed Z#idedededededed e d!ed"e d#ed$ed%ed&ed'ed(e d)ed*eeeeee e!e"d+Z$d,d-d.d/d0d1Z%d2e&fe d3fd4Z'd5Z(d6Z)d7Z*d8Z+d9Z,d:Z-d;Z.d<Z/y3)= SysLogHandlerrr>r[rrrsrtrurv ) alertcritcriticaldebugemergerrerrorinfonoticepanicwarnwarningauthauthprivconsolecrondaemonftpkernlprmailnewsntpsecurityz solaris-cronsysloguseruucplocal0)local1local2local3local4local5local6local7r rrrr )DEBUGINFOWARNINGERRORCRITICAL localhostNc tjj|||_||_||_d|_|jyr)rrrrfacilitysocktyperr)rrr4r5s rrzSysLogHandler.__init__MsC    &       rcL|j}|tj}tjtj||_ |jj |||_y#t $r|jj |jtj}tjtj||_ |jj |||_Yy#t $r|jj wxYwwxYwr)r5rrrrrrAr)rr use_socktypes r_connect_unixsocketz!SysLogHandler._connect_unixsocketbs}}  !,,LmmFNNLA   KK   ((DM  KK   }}(!--L -- EDK  ##G, ,   !!#  s "A,,A)D#"C::%DD#cF |j}|j}t|trd|_ |j |yd|_|tj}|\}}tj||d|}|s t d|D]K}|\}}}} } dx} } tj|||} |tjk(r| j| n |  |_||_y#t $rYywxYw#t $r} | } | | jYd} ~ d} ~ wwxYw)NTFrz!getaddrinfo returns an empty list) rr5 isinstancestr unixsocketr8rrr getaddrinforrrA)rrr5rrressresafproto_sarrexcs rrzSysLogHandler.createSocketzs3 ,,== gs #"DO  ((1$DO!,, JD$%%dD!X>DABB-0*HeQ!!d%!==Xu=D6#5#55 R( DK$DM3  $%C' %s)C*;C9* C65C69 D DD c t|tr|j|}t|tr|j|}|dz|zS)Nrr)r:r;facility_namespriority_names)rr4prioritys rencodePriorityzSysLogHandler.encodePrioritysL h $**84H h $**84HA ))rc |j |j}|rd|_|jtjj||j y#|j wxYwr)rrrArrrrs rrAzSysLogHandler.closesX   ;;D"  OO ! !$ ' LLNDLLNrc< |jj|dS)Nr) priority_mapget)r levelNames r mapPriorityzSysLogHandler.mapPrioritys"   $$Y ::rTc |j|}|jr|j|z}|jr|dz }d|j|j|j |j z}|jd}|jd}||z}|js|j|jr |jj|y|j tj"k(r'|jj%||jy|jj'|y#t$rS|jj|j|j|jj|YywxYw#t($r|j+|YywxYw)Nz<%d>utf-8)rKident append_nulrIr4rO levelnameencoderrr<rrrAr8rr5rrrrr)rrrOprios rrzSysLogHandler.emitsk  %++f%Czzjj3&v D// 040@0@AQAQ0RTTD;;w'D**W%C*C;;!!#*KK$$S) &"3"33 ""3 5 ##C(*KK%%',,T\\:KK$$S)* %   V $ %s>CF#E$AF#(F#AF F#F  F##G?G)0r/r0r1 LOG_EMERG LOG_ALERTLOG_CRITLOG_ERR LOG_WARNING LOG_NOTICELOG_INFO LOG_DEBUGLOG_KERNLOG_USERLOG_MAIL LOG_DAEMONLOG_AUTH LOG_SYSLOGLOG_LPRLOG_NEWSLOG_UUCPLOG_CRON LOG_AUTHPRIVLOG_FTPLOG_NTP LOG_SECURITY LOG_CONSOLE LOG_SOLCRON LOG_LOCAL0 LOG_LOCAL1 LOG_LOCAL2 LOG_LOCAL3 LOG_LOCAL4 LOG_LOCAL5 LOG_LOCAL6 LOG_LOCAL7rGrFrLSYSLOG_UDP_PORTrr8rrIrArOrTrUrr2rrrrs$IIHGKJHIHHHJHJGHHHLGGLKKJJJJJJJJ  N                                   ! "  # $#""""""1 N< L!,_="T*0,%\ * ; EJ&%rrc$eZdZ ddZdZdZy) SMTPHandlerNct tjj|t|tt fr|\|_|_n|dc|_|_t|tt fr|\|_|_ nd|_||_ t|tr|g}||_ ||_ ||_||_yr)rrrr:listtuplemailhostmailportusernamepasswordfromaddrr;toaddrssubjectsecurer)rrrrr credentialsrrs rrzSMTPHandler.__init__s "   & hu .+3 (DM4=+3T (DM4= kD%= 1+6 (DM4= DM  gs #iG    rc |jSr)rrs r getSubjectzSMTPHandler.getSubject s ||rc ddl}ddlm}ddl}|j}|s |j }|j |j||j}|}|j|d<dj|j|d<|j||d<|jj|d<|j|j!||j"r|j$iddl} |j$d} |j$d } |j+| | } |j-|j/| |j-|j1|j"|j2|j5||j7y#t($rd} YwxYw#t($rd} YwxYw#t8$r|j;|YywxYw) Nr) EmailMessagerFrom,ToSubjectDater>)certfilekeyfilecontext)smtplib email.messager email.utilsr SMTP_PORTSMTPrrrrrrutilsry set_contentrKrrssl IndexError_create_stdlib_contextehlostarttlsloginr send_messagequitrr) rrrremailrsmtprOrrrrs rrzSMTPHandler.emit)s ' %  2 ==D((<< tT\\<JD.C--CK.CI!__V4C N++//1CK OODKK/ 0}};;*'"&++a.(#';;q>"88!)79GIIKMM'M2IIK 4==$--8   c " IIK!&'"&' &(#'( %   V $ %sUC1G5F!F2B G! F/,G.F//G2 G=G?GGG G )NNg@)r/r0r1rrrr2rrr{r{s9<"H-%rr{c4eZdZ ddZdZdZdZdZdZy) NTEventLogHandlerNc tjj| ddl}ddl}||_||_|sxtjj|j j}tjj|d}tjj|dd}||_ ||_ |j j||||j"|_tj&|j(tj*|j(tj,|j.tj0|j"tj2|j"i|_y#t$r}t!|dddk7rYd}~d}~wwxYw#t6$rt9dd|_YywxYw)Nrzwin32service.pydwinerrorrtzWThe Python Win32 extensions for NT (service, event logging) appear not to be available.)rrrwin32evtlogutil win32evtlogappname_welur(r)r__file__rdllnamelogtypeAddSourceToRegistryrgetattrEVENTLOG_ERROR_TYPEdeftyper-EVENTLOG_INFORMATION_TYPEr.r/EVENTLOG_WARNING_TYPEr0r1typemap ImportErrorprint)rrrrrres rrzNTEventLogHandler.__init__bsX  &  /"DL(DJ''-- (;(;<''-- 3'',,wqz3FG"DL"DL  ..wI '::DL +"G"G +"G"G+"C"C +"A"A  +"A"A  DL  1j$/145   ? @DJ s=BFE8BF8 FFFFFF=<F=c y)Nr>r2rs r getMessageIDzNTEventLogHandler.getMessageIDs  rc y)Nrr2rs rgetEventCategoryz"NTEventLogHandler.getEventCategorys  rcd |jj|j|jSr)rrMlevelnorrs r getEventTypezNTEventLogHandler.getEventTypes( || ==rc> |jrp |j|}|j|}|j|}|j |}|jj |j ||||gyy#t$r|j|YywxYwr) rrrrrK ReportEventrrr)rridcattyperOs rrzNTEventLogHandler.emits :: )&&v.++F3((0kk&) &&t||RdSEJ  )  ( )sA.A??BBcD tjj|yr)rrrArs rrAzNTEventLogHandler.closes  d#r)N Application) r/r0r1rrrrrrAr2rrrrXs&!F >)" $rrc,eZdZ ddZdZdZdZy) HTTPHandlerNc tjj||j}|dvr t d|s | t d||_||_||_||_||_ ||_ y)N)GETPOSTzmethod must be GET or POSTz3context parameter only makes sense with secure=True) rrrr^rerurlmethodrrr)rrrrrrrs rrzHTTPHandler.__init__s    &  (9: :'-01 1   & rc |jSr)rrs r mapLogRecordzHTTPHandler.mapLogRecords rc ddl}|r)|jj||j}|S|jj |}|S)Nrr) http.clientclientHTTPSConnectionrHTTPConnection)rrrhttp connections r getConnectionzHTTPHandler.getConnectionsP  44T4<<4PJ33D9Jrc ddl}|j}|j||j}|j}|j j |j|}|jdk(r#|jddk\rd}nd}|d||fzz}|j|j||jd}|dk\r|d|}|jdk(r6|jdd |jd tt||jreddl} d |jzj!d } d | j#| j%j'dz} |jd| |j)|jdk(r |j+|j!d |j-y#t.$r|j1|YywxYw)Nrr?&z%c%s:rz Content-typez!application/x-www-form-urlencodedzContent-lengthz%s:%srSzBasic ascii Authorization) urllib.parserrrrparse urlencoderrfind putrequest putheaderr;rLrbase64rW b64encodestripdecode endheadersr getresponserr) rrurllibrrrdataseprFrrs rrzHTTPHandler.emits # % 99D""45A((C<<))$*;*;F*CDD{{e#HHSMQ&CCFc4[00 LLc * #AAvBQx{{f$ N?A ,c#d)n=t///77@v//288:AA'JJ OQ/ LLN{{f$t{{7+, MMO %   V $ %sGGG10G1)rFNN)r/r0r1rrrrr2rrrrs%KO( )%rrc,eZdZ dZdZdZdZdZy)BufferingHandlerc` tjj|||_g|_yr)rrrcapacitybuffer)rrs rrzBufferingHandler.__init__#s)    &   rcH t|j|jk\Sr)rLrrrs r shouldFlushzBufferingHandler.shouldFlush+s! DKK DMM12rc |jj||j|r|jyyr)rrrrrs rrzBufferingHandler.emit4s7 6"   F # JJL $rc |j |jj|jy#|jwxYwr)rrclearrrs rrzBufferingHandler.flush?s:   KK    LLNDLLNs >Ac |jtjj|y#tjj|wxYwr)rrrrArs rrAzBufferingHandler.closeKs:  ( JJL OO ! !$ 'GOO ! !$ 's 3!AN)r/r0r1rrrrrAr2rrrrs  3   (rrcHeZdZ ejddfdZdZdZdZdZ y) MemoryHandlerNTc\ tj||||_||_||_yr)rr flushLeveltarget flushOnClose)rrrrrs rrzMemoryHandler.__init__\s/  !!$1$ (rc~ t|j|jk\xs|j|jk\Sr)rLrrrrrs rrzMemoryHandler.shouldFlushps8 DKK DMM144??2 4rc |j ||_|jy#|jwxYwr)rrr)rrs r setTargetzMemoryHandler.setTargetws1    DK LLNDLLNs+=c |j |jrF|jD]}|jj||jj |j y#|j wxYwr)rrrhandlerrrs rrzMemoryHandler.flushsa   {{"kkFKK&&v.* !!# LLNDLLNs AA66Bc |jr|j|j d|_tj ||j y#|j wxYw#|j d|_tj ||j w#|j wxYwxYwr)rrrrrrArrs rrAzMemoryHandler.closes     LLN "  &&t,   LLN "  &&t,  s.A2AA/2CB1 C1CC) r/r0r1rr0rrrrrAr2rrrrVs. -4MM$")(4"rrc&eZdZ dZdZdZdZy) QueueHandlerc` tjj|||_d|_yr)rrrqueuelistener)rr s rrzQueueHandler.__init__s)    &  rc< |jj|yr)r  put_nowaitrs renqueuezQueueHandler.enqueues  f%rc |j|}tj|}||_||_d|_d|_d|_d|_|Sr)rKcopyrrOrrexc_text stack_info)rrrOs rpreparezQueueHandler.preparesU *kk&!6"    rc |j|j|y#t$r|j|YywxYwr)rrrrrs rrzQueueHandler.emits>  % LLf- . %   V $ %s $AAN)r/r0r1rrrrr2rrrrs&B %rrcHeZdZ dZdddZdZdZdZdZd Z d Z d Z y) QueueListenerNF)respect_handler_levelc> ||_||_d|_||_yr)r handlers_threadr)rr rrs rrzQueueListener.__init__s&     %:"rc: |jj|Sr)r rM)rblocks rdequeuezQueueListener.dequeues zz~~e$$rc tj|jx|_}d|_|j y)N)rT) threadingThread_monitorrrr)rrps rrzQueueListener.starts4 %++4==AA q  rc |Srr2rs rrzQueueListener.prepares  rc |j|}|jD]>}|jsd}n|j|jk\}|s.|j |@yr)rrrrlevelr)rrhandlerprocesss rrzQueueListener.handlesT f%}}G-- ..GMM9v& %rc |j}t|d} |jd}||jur|r|j y|j ||r|j W#tj $rYywxYw)N task_doneT)r hasattrr _sentinelr(rEmpty)rq has_task_doners rr!zQueueListener._monitor-s  JJ;/  d+T^^+$  F# KKM;;  s1A2#A22BBcP |jj|jyr)r r r*rs renqueue_sentinelzQueueListener.enqueue_sentinelDs  dnn-rch |j|jjd|_yr)r/rrrs rstopzQueueListener.stopNs,    r) r/r0r1r*rrrrrr!r/r1r2rrrrs9 I?D;% ' .. rr)'r9rrr(rrrmrhrlrrrr rrDEFAULT_TCP_LOGGING_PORTDEFAULT_UDP_LOGGING_PORTDEFAULT_HTTP_LOGGING_PORTDEFAULT_SOAP_LOGGING_PORTrySYSLOG_TCP_PORTrzrrr4rQrrrrrr{rrrrrobjectrr2rrr8sH"9888))  #"""!!  H''--H'TT-Tlw<2wd)Z?d*Z@d+ZAeZB[Gd,d-e<ZCGd.d/eCZDGd0d1eCZEd2ZFeCeFfeDd3feEd4fd5ZGGd6d7e<ZeZHGd8d9e<ZIGd:d;e<ZJGd<d=e<ZKejZMgZNd>ZOd?ZPd@ZQdAZRGdBdCeKZSGdDdEeSZTGdFdGeTZUGdHdIeTZVeVe ZWeWZXGdJdKe<ZYdLZZdMZ[GdNdOe<Z\GdPdQeKZ]GdRdSe]Z^e]a_GdTdUe<Z`e^e Zaeae]_ae\e]je]_bdVZcdhdWZddXZedYZfdZZgd d[d\Zhd]Zid^Zjd_Zkd`ZldaZmefdbZneNfdcZoddlpZpepjeoGdddeeSZrdasdidfZtdgZuy)jz Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2022 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N) GenericAlias)Template) Formatter)- BASIC_FORMATBufferingFormatterCRITICALDEBUGERRORFATAL FileHandlerFilterrHandlerINFO LogRecordLogger LoggerAdapterNOTSET NullHandler StreamHandlerWARNWARNING addLevelName basicConfigcaptureWarningscriticaldebugdisableerror exceptionfatal getLevelName getLoggergetLoggerClassinfolog makeLogRecordsetLoggerClassshutdownwarnwarninggetLogRecordFactorysetLogRecordFactory lastResortraiseExceptionsgetLevelNamesMappinggetHandlerByNamegetHandlerNamesz&Vinay Sajip productionz0.5.1.2z07 February 2010T2( rr rrr r)rr r rrrr rc*tjSN) _nameToLevelcopy)/usr/lib64/python3.12/logging/__init__.pyr/r/~s    r=cptj|}||Stj|}||Sd|zS)a Return the textual or numeric representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. If a string representation of the level is passed in, the corresponding numeric value is returned. If no matching numeric or string value is passed in, the string 'Level %s' % level is returned. zLevel %s) _levelToNamegetr:)levelresults r>r!r!sE&  e $F    e $F   r=cpt |t|<|t|<ty#twxYw)zy Associate 'levelName' with 'level'. This is used when converting levels to text during message formatting. N) _acquireLockr@r: _releaseLock)rB levelNames r>rrs- N' U"' Y s) 5 _getframec,tjdS)N)sysrHr<r=r>rLs 3==+r=c| t#t$r*}|jjjcYd}~Sd}~wwxYw)z5Return the frame object for the caller's stack frame.N) Exception __traceback__tb_framef_back)excs r> currentframerSs4 5O 5$$--44 4 5s ;6;;ctjj|jj}|t k(xs d|vxrd|vS)zASignal whether the frame is a CPython or logging module internal. importlib _bootstrap)ospathnormcasef_code co_filename_srcfile)framefilenames r>_is_internal_framer_sDww 8 89H x  x _checkLevelrgsg%  I Uu   $0589 9 %  I #$ $r=c:trtjyy)z Acquire the module-level lock for serializing access to shared data. This should be released with _releaseLock(). N)_lockacquirer<r=r>rErEs    r=c:trtjyy)zK Release the module-level lock acquired by calling _acquireLock(). N)rireleaser<r=r>rFrFs   r=register_at_forkcyr9r<instances r>_register_at_fork_reinit_lockrq r=cvt tj|ty#twxYwr9)rE_at_fork_reinit_lock_weaksetaddrFros r>rqrqs%  ( , ,X 6 NLNs, 8cbtD]}|jtjyr9)rt_at_fork_reinitrihandlers r>!_after_at_fork_child_reinit_locksrz s&3G  # # %4 r=)beforeafter_in_childafter_in_parentc&eZdZdZ ddZdZdZy)ra A LogRecord instance represents an event being logged. LogRecord instances are created every time something is logged. They contain all the information pertinent to the event being logged. The main information passed in is in msg and args, which are combined using str(msg) % args to create the message field of the record. The record also includes information such as when the record was created, the source line where the logging call was made, and any exception information to be logged. Nc  tj} ||_||_|r?t|dk(r1t |dt j jr |dr|d}||_t||_ ||_ ||_ tjj||_tjj#|j d|_||_d|_| |_||_||_| |_t9| t9| z dzdz|_|j6t<z dz|_t@r=tCjD|_#tCjHj|_%nd|_#d|_%tLsd|_'nHd|_'tPjRjUd} | | jWj|_'tZr*t]td rtj^|_0nd|_0d|_1tdrGtPjRjUd } | r% | jgji|_1yyy#t&t(t*f$r||_d|_YwxYw#tX$rYwxYw#tX$rYywxYw) zK Initialize a logging record with interesting information. rJrzUnknown moduleNig MainProcessmultiprocessinggetpidasyncio)5timenamemsglenra collectionsabcMappingargsr! levelnamelevelnopathnamerWrXbasenamer^splitextmodulererdAttributeErrorexc_infoexc_text stack_infolinenofuncNamecreatedrbmsecs _startTimerelativeCreated logThreads threading get_identthreadcurrent_thread threadNamelogMultiprocessing processNamerKmodulesrAcurrent_processrN logProcesseshasattrrprocesstaskNamelogAsyncioTasks current_taskget_name)selfrrBrrrrrfuncsinfokwargsctmprs r>__init__zLogRecord.__init__*sB YY[ & SY!^ 47KOO)rrrrrrs r>__repr__zLogRecord.__repr__{s,48IIt|| MM4;;2 2r=cft|j}|jr||jz}|S)z Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. )rcrr)rrs r> getMessagezLogRecord.getMessages*$((m 99 /C r=NN)__name__ __module__ __qualname____doc__rrrr<r=r>rrs 8<Ob2 r=rc|ay)z Set the factory to be used when instantiating a log record. :param factory: A callable which will be called to instantiate a log record. N_logRecordFactory)factorys r>r,r,s  r=ctS)zH Return the factory to be used when instantiating a log record. rr<r=r>r+r+s r=c `tdddddddd}|jj||S)z Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. Nrr<)r__dict__update)dictrfs r>r&r&s3 4r1b"dD ABKKt Ir=cveZdZdZdZdZejdejZ dddZ dZ d Z d Z d Zy) PercentStylez %(message)sz %(asctime)sz %(asctime)z5%\(\w+\)[#0+ -]*(\*|\d+)?(\.(\*|\d+))?[diouxefgcrsa%]Ndefaultsc<|xs |j|_||_yr9)default_format_fmt _defaults)rfmtrs r>rzPercentStyle.__init__s.4.. !r=cR|jj|jdk\S)Nrrfindasctime_searchrs r>usesTimezPercentStyle.usesTimes yy~~d112a77r=c|jj|js)td|jd|jddy)z>Validate the input format, ensure it matches the correct stylezInvalid format 'z' for 'rz' styleN)validation_patternsearchrrdrrs r>validatezPercentStyle.validates@&&--dii8TYYPTPcPcdePfgh h9r=ct|jx}r||jz}n |j}|j|zSr9)rrrrrecordrvaluess r>_formatzPercentStyle._formats7~~ %8 %/F__Fyy6!!r=cd |j|S#t$r}td|zd}~wwxYw)Nz(Formatting field not found in record: %s)rKeyErrorrd)rres r>formatzPercentStyle.formats: M<<' ' MG!KL L Ms /*/)rrrrasctime_formatrrecompileIrrrrrrr<r=r>rrsJ"N"N!N#$\^`^b^bc(,"8i "Mr=rceZdZdZdZdZejdejZ ejdZ dZ dZ y) StrFormatStylez {message}z {asctime}z{asctimezF^(.?[<>=^])?[+ -]?#?0?(\d+|{\w+})?[,_]?(\.(\d+|{\w+}))?[bcdefgnosx%]?$z^(\d+|\w+)(\.\w+|\[[^]]+\])*$c|jx}r||jz}n |j}|jjdi|SNr<)rrrrrs r>rzStrFormatStyle._formatsB~~ %8 %/F__Ftyy)&))r=ct} tj|jD]\}}}}|r:|jj |st d|z|j||r|dvrt d|z|s[|jj |rwt d|z |s t dy#t $r}t d|zd}~wwxYw)zKValidate the input format, ensure it is the correct string formatting stylez!invalid field name/expression: %rrsazinvalid conversion: %rzbad specifier: %rzinvalid format: %sNinvalid format: no fields) set_str_formatterparser field_specmatchrdrufmt_spec)rfields_ fieldnamespec conversionrs r>rzStrFormatStyle.validates 72@2F2Ftyy2Q.9dJ??00;()Ly)XYYJJy)*E"9$%= %JKK 3 3D 9$%84%?@@3R89 9 71A56 6 7s$A9CC"C C CCN) rrrrrrrrrrrrrr<r=r>rrsF N NNrzzcegeieijH<=J*:r=rc<eZdZdZdZdZfdZdZdZdZ xZ S)StringTemplateStylez ${message}z ${asctime}cXt||i|t|j|_yr9)superrrr_tpl)rrr __class__s r>rzStringTemplateStyle.__init__s% $)&)TYY' r=c|j}|jddk\xs|j|jdk\S)Nz$asctimerrrrs r>rzStringTemplateStyle.usesTimes8iixx #q(NCHHT5H5H,IQ,NNr=cXtj}t}|j|jD]e}|j }|dr|j |d-|dr|j |dG|jddk(s\td|s tdy)Nnamedbracedr$z$invalid format: bare '$' not allowedr) rpatternrfinditerr groupdictrugrouprd)rrrmds r>rzStringTemplateStyle.validates""!!$)),A Az 1W:&8 1X;'s" !IJJ-89 9r=c|jx}r||jz}n |j}|jjdi|Sr)rrr substituters r>rzStringTemplateStyle._formatsB~~ %8 %/F__F#tyy##-f--r=) rrrrrrrrrr __classcell__)rs@r>rrs'!N!N!N(O :.r=rz"%(levelname)s:%(name)s:%(message)sz{levelname}:{name}:{message}z${levelname}:${name}:${message})%{rcdeZdZdZej Zd dddZdZdZ ddZ dZ d Z d Z d Zd Zy)ra Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the style-dependent default value, "%(message)s", "{message}", or "${message}", is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(taskName)s Task name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted Nrc|tvr/tddjtjzt|d|||_|r|jj |jj |_||_y)a Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument. If datefmt is omitted, you get an ISO8601-like (or RFC 3339-like) format. Use a style parameter of '%', '{' or '$' to specify that you want to use one of %-formatting, :meth:`str.format` (``{}``) formatting or :class:`string.Template` formatting in your format string. .. versionchanged:: 3.2 Added the ``style`` parameter. Style must be one of: %s,rrN)_STYLESrdjoinkeys_stylerrdatefmt)rrrstylerrs r>rzFormatter.__init__Psw"  7#(($\\^;--. .enQ'h?  KK "KK$$  r=z%Y-%m-%d %H:%M:%Sz%s,%03dc|j|j}|rtj||}|Stj|j|}|j r|j ||j fz}|S)a% Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, an ISO8601-like (or RFC 3339-like) format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. ) converterrrstrftimedefault_time_formatdefault_msec_formatr)rrrrss r> formatTimezFormatter.formatTimenso$^^FNN +  gr*A  d66;A'',,6<formatExceptionzFormatter.formatExceptionsikkm U !!"Q%AD#> LLN RS6T>#2Ar=c6|jjS)zK Check if the format uses the creation time of the record. )rrrs r>rzFormatter.usesTimes{{##%%r=c8|jj|Sr9)rrrrs r> formatMessagezFormatter.formatMessages{{!!&))r=c|S)aU This method is provided as an extension point for specialized formatting of stack information. The input data is a string as returned from a call to :func:`traceback.print_stack`, but with the last trailing newline removed. The base implementation just returns the value passed in. r<)rrs r> formatStackzFormatter.formatStacks r=c|j|_|jr!|j||j|_|j |}|jr,|js |j|j|_|jr|dddk7r|dz}||jz}|jr+|dddk7r|dz}||j|jz}|S)az Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. r$Nr%) rmessagerr!rasctimer3rrr/rr5)rrr s r>rzFormatter.formats **, ==?!__VT\\BFN   v & ????"&"6"6v"G ??v~HFOO#A   v~HD$$V%6%677Ar=)NNrTr9)rrrrr localtimerrrrr!r/rr3r5rr<r=r>rr"sL)VI6.#6&& * r=rc*eZdZdZddZdZdZdZy)rzB A formatter suitable for formatting a number of records. Nc.|r||_yt|_y)zm Optionally specify a formatter which will be used to format each individual record. N)linefmt_defaultFormatter)rr<s r>rzBufferingFormatter.__init__s "DL,DLr=cy)zE Return the header string for the specified records. rr<rrecordss r> formatHeaderzBufferingFormatter.formatHeaderr=cy)zE Return the footer string for the specified records. rr<r?s r> formatFooterzBufferingFormatter.formatFooterrBr=cd}t|dkDrM||j|z}|D] }||jj|z}"||j |z}|S)zQ Format the specified records and return the result as a string. rr)rrAr<rrD)rr@rfrs r>rzBufferingFormatter.formatsg wrrs-  r=rceZdZdZddZdZy)r a Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. c2||_t||_y)z Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. N)rrnlenrrs r>rzFilter.__init__ s I r=c|jdk(ry|j|jk(ry|jj|jd|jdk7ry|j|jdk(S)z Determine if the specified record is to be logged. Returns True if the record should be logged, or False otherwise. If deemed appropriate, the record may be modified in-place. rTF.)rHrrr2s r>filterz Filter.filtersc 99> YY&++ % [[  diiDII 6! ; DII&#-.r=N)r)rrrrrrLr<r=r>r r s   /r=r c(eZdZdZdZdZdZdZy)Filtererz[ A base class for loggers and handlers which allows them to share common code. cg|_y)zE Initialize the list of filters to be an empty list. N)filtersrs r>rzFilterer.__init__+s  r=cX||jvr|jj|yy)z; Add the specified filter to this handler. N)rPappendrrLs r> addFilterzFilterer.addFilter1s'$,,& LL   ''r=cX||jvr|jj|yy)z@ Remove the specified filter from this handler. N)rPremoverSs r> removeFilterzFilterer.removeFilter8s' T\\ ! LL   ' "r=c|jD]?}t|dr|j|}n||}|syt|ts>|}A|S)a Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this by returning a false value. If a filter attached to a handler returns a log record instance, then that instance is used in place of the original log record in any further processing of the event by that handler. If a filter returns any other true value, the original log record is used in any further processing of the event by that handler. If none of the filters return false values, this method returns a log record. If any of the filters return a false value, this method returns a false value. .. versionchanged:: 3.2 Allow filters to be just callables. .. versionchanged:: 3.12 Allow filters to return a LogRecord instead of modifying it in place. rLF)rPrrLrar)rrfrCs r>rLzFilterer.filter?sO2Aq(#&)6&), r=N)rrrrrrTrWrLr<r=r>rNrN&s (("r=rNcttt}}}|r'|r$|r!| |j||yyyy#t$rYwxYw#|wxYw)zD Remove a handler reference from the internal cleanup list. N)rErF _handlerListrVrd)wrrjrlhandlerss r>_removeHandlerRefr^jsZ".|\hWG7x   OOB  I (7w    Is!= A A A  A Act tjtj|t t y#t wxYw)zL Add a handler to the internal cleanup list using a weak reference. N)rEr[rRweakrefrefr^rFrxs r>_addHandlerRefrb|s3NGKK1BCD s -A Ac,tj|S)za Get a handler with the specified *name*, or None if there isn't one with that name. ) _handlersrArs r>r0r0s == r=cRttj}t|S)z= Return all known handler names as an immutable set. )rrdr frozenset)rCs r>r1r1s ! "F V r=ceZdZdZefdZdZdZeeeZ dZ dZ dZ dZ d Zd Zd Zd Zd ZdZdZdZdZy)raq Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. ctj|d|_t||_d|_d|_t||jy)zz Initializes the instance - basically setting the formatter to None and the filter list to empty. NF) rNr_namergrB formatter_closedrb createLockrrBs r>rzHandler.__init__sE $  '  t r=c|jSr9)rjrs r>rzHandler.get_names zzr=ct |jtvrt|j=||_|r |t|<ty#twxYwr9)rErjrdrFrIs r>set_namezHandler.set_namesB zzY&djj)DJ"& $ NLNs 5A AcLtj|_t|y)zU Acquire a thread lock for serializing access to the underlying I/O. N)rRLocklockrqrs r>rmzHandler.createLocksOO% %d+r=c8|jjyr9)rtrwrs r>rwzHandler._at_fork_reinits !!#r=cR|jr|jjyy)z. Acquire the I/O thread lock. N)rtrjrs r>rjzHandler.acquire  99 II    r=cR|jr|jjyy)z. Release the I/O thread lock. N)rtrlrs r>rlzHandler.releaserwr=c$t||_y)zX Set the logging level of this handler. level must be an int or a str. N)rgrBrns r>setLevelzHandler.setLevels!' r=cb|jr |j}nt}|j|S)z Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. )rkr=r)rrrs r>rzHandler.formats( >>..C#Czz&!!r=ctd)z Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. z.emit must be implemented by Handler subclasses)NotImplementedErrorr2s r>emitz Handler.emits"#:; ;r=c|j|}t|tr|}|r4|j |j ||j |S|S#|j wxYw)a Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns an instance of the log record that was emitted if it passed all filters, otherwise a false value is returned. )rLrarrjr~rl)rrrfs r>handlezHandler.handles][[  b) $F LLN  &!  r  s AA.c||_y)z5 Set the formatter for this handler. N)rkrs r> setFormatterzHandler.setFormatter s r=cy)z Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. Nr<rs r>flushz Handler.flushs r=ct d|_|jr#|jtvrt|j=t y#t wxYw)a% Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. TN)rErlrjrdrFrs r>r+z Handler.closes>  DLzzdjjI5djj) NLNs 6A Ac>trtjrtj\}}} tjj dt j |||dtjtjj d|j}|rtjj|jjtdk(rL|j}|r>tjj|jjtdk(rL|r&t j|tjn:tjj d|j d|j"d tjj d |j$d |j&d~~~yyy#t($rt*$r"tjj d Y9wxYw#t,$rYHwxYw#~~~wxYw) aD Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. z--- Logging error --- Nz Call stack: rfilezLogged from file z, line r%z Message: z Arguments: zwUnable to print the message and arguments - possible formatting error. Use the traceback above to help find the error. )r.rKstderrrwriter(r)rPrWrXdirnamerZr[__path__rQ print_stackr^rrrRecursionErrorrNOSError)rrtvr.r]s r> handleErrorzHandler.handleError*s szz||~HAq"    !:;))!QD#**E   1 1I1I!J{"#!LLE1I1I!J{"#))%cjjAJJ$$%+__fmm&EF &JJ$$:@**:@++&GHq"C *?.& &JJ$$&R&&   q"sIC;H.A"H:G1HHHH HHHHHcft|j}d|jjd|dS)N< ()>)r!rBrrrns r>rzHandler.__repr__Ys%TZZ("nn55u==r=N)rrrrrrrrqpropertyrrmrwrjrlrzrr~rrrr+rrr<r=r>rrsk$   Hh 'D,$  ( ";,  $-^>r=rcDeZdZdZdZd dZdZdZdZdZ e e Z y) rz A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. r%Nc`tj||tj}||_y)zb Initialize the handler. If stream is not specified, sys.stderr is used. N)rrrKrstreamrrs r>rzStreamHandler.__init__fs'  >ZZF r=c|j |jr0t|jdr|jj|j y#|j wxYw)z% Flushes the stream. rN)rjrrrrlrs r>rzStreamHandler.flushqsI  {{wt{{G< !!# LLNDLLNs r~zStreamHandler.emit|sd %++f%C[[F LLt. / JJL   %   V $ %sA A#A43A4c||jurd}|S|j}|j |j||_|j|S#|jwxYw)z Sets the StreamHandler's stream to the specified value, if it is different. Returns the old stream, if the stream was changed, or None if it wasn't. N)rrjrrl)rrrCs r> setStreamzStreamHandler.setStreams` T[[ F [[F LLN  $    s AA+ct|j}t|jdd}t |}|r|dz }d|j j d|d|dS)Nrr r(r)r!rBgetattrrrcrr)rrBrs r>rzStreamHandler.__repr__sOTZZ(t{{FB/4y  CKD $ 7 7uEEr=r9) rrrrrrrr~rr classmethodr__class_getitem__r<r=r>rr]s5 J  %,(F$L1r=rc0eZdZdZddZdZdZdZdZy) r zO A handler class which writes formatted logging records to disk files. Nctj|}tjj||_||_||_d|vrtj||_||_ ||_ t|_ |rtj|d|_yt j||j#y)zO Open the specified file and use it as the stream for logging. bN)rWfspathrXabspath baseFilenamemodeencodingr& text_encodingerrorsdelayopen _builtin_openrrrr_open)rr^rrrrs r>rzFileHandler.__init__s 99X&GGOOH5   d?,,X6DM  "    T "DK  " "4 6r=c|j |jrA |j|j}d|_t|dr|j  t j | |j y#|j}d|_t|dr|j wwxYw#t j |wxYw#|j wxYw)z$ Closes the stream. Nr+)rjrrrr+rrlrs r>r+zFileHandler.closes   *;;+ !%&* "673"LLN ##D) LLN"&&* "673"LLN4##D) LLNs3 B<B0B< C2B99B<<CCC(c|j}||j|j|j|jS)zx Open the current base file with the (original) mode and encoding. Return the resulting stream. rr)rrrrr)r open_funcs r>rzFileHandler._opens9 && **DII"&-- E Er=c|j0|jdk7s |js|j|_|jrtj ||yy)a- Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. If stream is not open, current mode is 'w' and `_closed=True`, record will not be emitted (see Issue #42378). Nw)rrrlrrr~r2s r>r~zFileHandler.emitsI ;; yyCt||"jjl ;;   tV , r=ct|j}d|jjd|jd|dSNrrrr)r!rBrrrrns r>rzFileHandler.__repr__s-TZZ(!%!8!8$:K:KUSSr=)aNFN) rrrrrr+rr~rr<r=r>r r s"760E- Tr=r c*eZdZdZefdZedZy)_StderrHandlerz This class is like a StreamHandler using sys.stderr, but always uses whatever sys.stderr is currently set to rather than the value of sys.stderr at handler construction time. c0tj||y)z) Initialize the handler. N)rrrns r>rz_StderrHandler.__init__ s u%r=c"tjSr9)rKrrs r>rz_StderrHandler.streams zzr=N)rrrrrrrrr<r=r>rrs% $& r=rceZdZdZdZdZy) PlaceHolderz PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. c|di|_y)zY Initialize with the specified logger being a child of this placeholder. N loggerMapraloggers r>rzPlaceHolder.__init__%s#T+r=c@||jvrd|j|<yy)zJ Add the specified logger as a child of this placeholder. Nrrs r>rRzPlaceHolder.append+s# $.. (&*DNN7 # )r=N)rrrrrrRr<r=r>rrs , +r=rcj|tk7r(t|tstd|jz|ay)z Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() (logger not derived from logging.Logger: N)r issubclassrer _loggerClass)klasss r>r'r'6s8  %(F#nn-. .Lr=ctS)zB Return the class to be used when instantiating a logger. )rr<r=r>r#r#Cs  r=cneZdZdZdZedZejdZdZdZ dZ dZ d Z d Z y ) Managerzt There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. cX||_d|_d|_i|_d|_d|_y)zT Initialize the manager with the root node of the logger hierarchy. rFN)rootremittedNoHandlerWarning loggerDict loggerClasslogRecordFactory)rrootnodes r>rzManager.__init__Ns1  ',$ $r=c|jSr9)_disablers r>rzManager.disableYs }}r=c$t||_yr9)rgrrvalues r>rzManager.disable]s#E* r=cd}t|ts tdt ||jvru|j|}t|t r|}|j xst|}||_||j|<|j|||j|nA|j xst|}||_||j|<|j|t|S#twxYw)a Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. NzA logger name must be a string) rarcrerErrrrmanager_fixupChildren _fixupParentsrF)rrrfphs r>r"zManager.getLoggeras$$<= = t&__T*b+.B:$**:lDAB!%BJ,.DOOD)''B/&&r*6d&&6,=! (*%""2& N  Ns CC99 Dct|tk7r(t|tstd|jz||_y)zY Set the class to be used when instantiating a logger with this Manager. rN)rrrerr)rrs r>r'zManager.setLoggerClasss9 F?eV, J"'..!122 r=c||_y)zg Set the factory to be used when instantiating a log record with this Manager. N)r)rrs r>r,zManager.setLogRecordFactorys !(r=ct|j}|jd}d}|dkDr|s}|d|}||jvrt||j|<n3|j|}t |t r|}n|j ||jdd|dz }|dkDr|s}|s |j}||_y)z Ensure that there are either loggers or placeholders all the way from the specified logger to the root of the logger hierarchy. rKNrrJ) rrfindrrrarrRrparent)rrrirfsubstrobjs r>rzManager._fixupParentss || JJsO 1ub"1XFT__,*5g*>'oof-c6*BJJw' 31q5)A1ubBr=c|j}t|}|jjD]7}|jjd||k7s |j|_||_9y)zk Ensure that children of the placeholder ph are connected to the specified logger. N)rrrrr)rrrrnamelencs r>rzManager._fixupChildrensV ||d)""$Axx}}Xg&$.!"" %r=ct|jjD]-}t|ts|j j /|jj j ty)zj Clear the cache for all loggers in loggerDict Called when level changes are made N) rErrrar_cacheclearrrFrloggers r> _clear_cachezManager._clear_cachesW oo,,.F&&) ##%/  r=N)rrrrrrrsetterr"r'r,rrrr<r=r>rrIsW % ^^++ D!(0 # r=rceZdZdZefdZdZdZdZdZ dZ dZ d d d Z d Z d ZdZddZ ddZ d dZdZdZdZdZdZdZdZdZdZdZdZy)!rar Instances of the Logger class represent a single logging channel. A "logging channel" indicates an area of an application. Exactly how an "area" is defined is up to the application developer. Since an application can have any number of areas, logging channels are identified by a unique string. Application areas can be nested (e.g. an area of "input processing" might include sub-areas "read CSV files", "read XLS files" and "read Gnumeric files"). To cater for this natural nesting, channel names are organized into a namespace hierarchy where levels are separated by periods, much like the Java or Python package namespace. So in the instance given above, channel names might be "input" for the upper level, and "input.csv", "input.xls" and "input.gnu" for the sub-levels. There is no arbitrary limit to the depth of nesting. ctj|||_t||_d|_d|_g|_d|_i|_ y)zJ Initialize the logger with a name and an optional level. NTF) rNrrrgrBr propagater]disabledr)rrrBs r>rzLogger.__init__sH $  '     r=cXt||_|jjy)zW Set the logging level of this logger. level must be an int or a str. N)rgrBrrrns r>rzzLogger.setLevels !'  !!#r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'DEBUG'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.debug("Houston, we have a %s", "thorny problem", exc_info=True) N) isEnabledForr _logrrrrs r>rz Logger.debug.   U # DIIeS$ 1& 1 $r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'INFO'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.info("Houston, we have a %s", "notable problem", exc_info=True) N)rrrrs r>r$z Logger.infos.   T " DIIdC 0 0 #r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'WARNING'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.warning("Houston, we have a %s", "bit of a problem", exc_info=True) N)rrrrs r>r*zLogger.warnings.   W % DIIgsD 3F 3 &r=cftjdtd|j|g|i|yNz6The 'warn' method is deprecated, use 'warning' insteadr#warningsr)DeprecationWarningr*rs r>r)z Logger.warn0 $%7 < S*4*6*r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'ERROR'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.error("Houston, we have a %s", "major problem", exc_info=True) N)rr rrs r>rz Logger.errorrr=Trc4|j|g|d|i|y)zU Convenience method for logging an ERROR with exception information. rNrrrrrrs r>rzLogger.exception"s!  3;;;F;r=cb|jtr|jt||fi|yy)z Log 'msg % args' with severity 'CRITICAL'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.critical("Houston, we have a %s", "major disaster", exc_info=True) N)rrrrs r>rzLogger.critical(s.   X & DIIhT 4V 4 'r=c0|j|g|i|y)z@ Don't use this method, use critical() instead. Nrrs r>r z Logger.fatal4s  c+D+F+r=ct|tstr tdy|j |r|j |||fi|yy)z Log 'msg % args' with the integer severity 'level'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.log(level, "We have a %s", "mysterious problem", exc_info=True) zlevel must be an integerN)rarbr.rerrrrBrrrs r>r%z Logger.log:sJ%% :;;   U # DIIeS$ 1& 1 $r=ct}|y|dkDr'|j}|n|}t|s|dz}|dkDr'|j}d}|rbt j 5}|j dtj|||j}|ddk(r|dd}ddd|j|j|j|fS#1swY-xYw) z Find the stack frame of the caller so that we can note the source file name, line number and function name. N)(unknown file)r(unknown function)NrrJzStack (most recent call last): rr$r%) rSrQr_rZr&r'rr(rr*r[f_linenoco_name)rr stacklevelrYnext_fcorr-s r> findCallerzLogger.findCallerKs N 9B1nXXF~ A%a(a 1nXX # <=%%ac2 9$!#2JE  ~~qzz2::u<< s ACCNc t||||||||| } | 9| D]4} | dvs| | jvrtd| z| | | j| <6| S)zr A factory method which can be overridden in subclasses to create specialized LogRecords. )r7r8z$Attempt to overwrite %r in LogRecord)rrr) rrrBfnlnorrrrextrarrfkeys r> makeRecordzLogger.makeRecordmso tUBS$$"$  11sbkk7I"#IC#OPP#(: C  r=c d}tr |j||\} } } }nd\} } } |rMt|trt |||j f}n$t|tstj}|j|j|| | |||| || } |j| y#t$r d\} } } YwxYw)z Low-level logging routine which creates a LogRecord and then calls all the handlers of this logger to handle the record. N)rrr) r\rrdra BaseExceptiontyperOtuplerKrrrr) rrBrrrrrrrrrrrs r>rz Logger._log|s   J'+z:'N$CuFMBT (M2 NHh6L6LM%0<<>E2sC!)4? F J I C JsB--B?>B?c|jry|j|}|syt|tr|}|j |y)z Call the handlers for the specified record. This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied. N)rrLrar callHandlers)rr maybe_records r>rz Logger.handles? == {{6*   lI .!F &!r=ct ||jvr|jj|ty#twxYw)z; Add the specified handler to this logger. N)rEr]rRrFrhdlrs r> addHandlerzLogger.addHandlers7  DMM) $$T* NLN )A A ct ||jvr|jj|ty#twxYw)z@ Remove the specified handler from this logger. N)rEr]rVrFr(s r> removeHandlerzLogger.removeHandlers7  t}}$ $$T* NLNr+cp|}d}|r/|jrd} |S|js |S|j}|r/|S)a See if this logger has any handlers configured. Loop through all handlers for this logger and its parents in the logger hierarchy. Return True if a handler was found, else False. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger which is checked for the existence of handlers. FT)r]rr)rrrfs r> hasHandlerszLogger.hasHandlerssQ  zz  ;; HH r=c|}d}|r_|jD]2}|dz}|j|jk\s"|j|4|jsd}n |j }|r_|dk(rt r4|jt jk\rt j|yytrU|jjs>tjjd|jzd|j_ yyyy)a Pass a record to all relevant handlers. Loop through all handlers for this logger and its parents in the logger hierarchy. If no handler was found, output a one-off error message to sys.stderr. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger whose handlers are called. rrJNz+No handlers could be found for logger "%s" T)r]rrBrrrr-r.rrrKrrr)rrrfoundr)s r>r%zLogger.callHandlerss   >>TZZ/KK'#;;HH QJ>>Z%5%55%%f-6 )M)M   "-/3yy"9:7; 4*N r=cd|}|r'|jr |jS|j}|r'tS)z Get the effective level for this logger. Loop through this logger and its parents in the logger hierarchy, looking for a non-zero logging level. Return the first one found. )rBrrrs r>getEffectiveLevelzLogger.getEffectiveLevels2||||#]]F r=cB|jry |j|S#t$rwt |jj |k\rdx}|j|<n"||j k\x}|j|<tn#twxYw|cYSwxYw); Is this logger enabled for level 'level'? F)rrrrErrr3rF)rrB is_enableds r>rzLogger.isEnabledFors == ;;u% %  N <<''506;;JU!3!7!7!99JU!3   s'BA B ? B BBBc|j|urdj|j|f}|jj |S)ab Get a logger which is a descendant to this one. This is a convenience method, such that logging.getLogger('abc').getChild('def.ghi') is the same as logging.getLogger('abc.def.ghi') It's useful, for example, when the parent logger is named using __name__ rather than a literal string. rK)rrrrr")rsuffixs r>getChildzLogger.getChilds< 99D XXtyy&12F||%%f--r=cdjj}t tfd|j Dt S#t wxYw)Ncp||jjuryd|jjdzS)NrrJrK)rrrcount)rs r> _hierlevelz&Logger.getChildren.._hierlevel)s1,,,v{{((-- -r=c3K|]B}t|tr0|jur"|d|jzk(r|Dyw)rJN)rarr).0itemr=rs r> z%Logger.getChildren..4sHH $T62t{{d7J!$'1z$++/F+FF sAA )rrrErrrF)rr r=s` @r> getChildrenzLogger.getChildren'sO . LL # # H HH NLNs "A A ct|j}d|jjd|jd|dSr)r!r3rrrrns r>rzLogger.__repr__:s0T3356!%!8!8$))UKKr=ct|j|urddl}|jdt|jffS)Nrzlogger cannot be pickled)r"rpickle PicklingError)rrEs r> __reduce__zLogger.__reduce__>s9 TYY t + &&'AB B499,&&r=)FrJ)NNN)NNFrJ)rrrrrrrzrr$r*r)rrrr r%rrrrr*r-r/r%r3rr9rBrrGr<r=r>rrs $* $ 2 1 4+ 2.2< 5, 2" =F15 LQ4"  ,<< ,.&&L'r=rceZdZdZdZdZy) RootLoggerz A root logger is not that different to any other logger, except that it must have a logging level and there is only one instance of it in the hierarchy. c2tj|d|y)z= Initialize the logger with the name "root". rN)rrrns r>rzRootLogger.__init__Ks fe,r=ctdfSr)r"rs r>rGzRootLogger.__reduce__Qs "}r=N)rrrrrrGr<r=r>rIrIEs - r=rIceZdZdZddZdZdZdZdZdZ d Z d d d Z d Z dZ dZdZdZdZdZedZej*dZedZdZeeZy)rzo An adapter for loggers which makes it easier to specify contextual information in logging output. Nc ||_||_y)ax Initialize the adapter with a logger and a dict-like object which provides contextual information. This constructor signature allows easy stacking of LoggerAdapters, if so desired. You can effectively pass keyword arguments as shown in the following example: adapter = LoggerAdapter(someLogger, dict(p1=v1, p2="v2")) N)rr)rrrs r>rzLoggerAdapter.__init__\s  r=c(|j|d<||fS)a Process the logging message and keyword arguments passed in to a logging call to insert contextual information. You can either manipulate the message itself, the keyword args or both. Return the message and kwargs modified (or not) to suit your needs. Normally, you'll only need to override this one method in a LoggerAdapter subclass for your specific needs. r)r)rrrs r>rzLoggerAdapter.processjs**wF{r=c:|jt|g|i|y)zA Delegate a debug call to the underlying logger. N)r%r rs r>rzLoggerAdapter.debugz -d-f-r=c:|jt|g|i|y)zA Delegate an info call to the underlying logger. N)r%rrs r>r$zLoggerAdapter.infos s,T,V,r=c:|jt|g|i|y)zC Delegate a warning call to the underlying logger. N)r%rrs r>r*zLoggerAdapter.warnings #///r=cftjdtd|j|g|i|yrrrs r>r)zLoggerAdapter.warnrr=c:|jt|g|i|y)zB Delegate an error call to the underlying logger. Nr%r rs r>rzLoggerAdapter.errorrPr=Trc>|jt|g|d|i|y)zF Delegate an exception call to the underlying logger. rNrUr s r>rzLoggerAdapter.exceptions# @d@X@@r=c:|jt|g|i|y)zD Delegate a critical call to the underlying logger. N)r%rrs r>rzLoggerAdapter.criticals 3000r=c|j|r7|j||\}}|jj||g|i|yy)z Delegate a log call to the underlying logger, after adding contextual information from this adapter instance. N)rrrr%rs r>r%zLoggerAdapter.logsI   U #,,sF3KC DKKOOE3 8 8 8 $r=c8|jj|S)r5)rrrns r>rzLoggerAdapter.isEnabledFors{{''..r=c:|jj|y)zC Set the specified level on the underlying logger. N)rrzrns r>rzzLoggerAdapter.setLevels U#r=c6|jjS)zD Get the effective level for the underlying logger. )rr3rs r>r3zLoggerAdapter.getEffectiveLevels{{,,..r=c6|jjS)z@ See if the underlying logger has any handlers. )rr/rs r>r/zLoggerAdapter.hasHandlerss{{&&((r=c @|jj|||fi|S)zX Low-level log implementation, proxied to allow nested logger adapters. )rrrs r>rzLoggerAdapter._logs$ t{{sD;F;;r=c.|jjSr9rrrs r>rzLoggerAdapter.managers{{"""r=c&||j_yr9r_rs r>rzLoggerAdapter.managers# r=c.|jjSr9)rrrs r>rzLoggerAdapter.names{{r=c|j}t|j}d|jjd|j d|dSr)rr!r3rrr)rrrBs r>rzLoggerAdapter.__repr__s9V5578!%!8!8&++uMMr=r9)rrrrrrrr$r*r)rrrr%rrzr3r/rrrrrrrrrr<r=r>rrVs   . - 0 + . .2A 1 9/ $ / ) < ## ^^$$  N $L1r=rc t |jdd}|jdd}|jdd}|r=tjddD]'}tj ||j )t tjdk(r|jdd}|d |vr"d |vrtd d |vsd |vr td |r|jd d}|jd d}|r,d|vrd}ntj|}t||||}n|jd d}t|}|g}|jdd} |jdd} | tvr/tddjtjz|jdt| d} t| | | } |D]4}|j |j#| tj%|6|jdd} | tj'| |r-dj|j}td|zt)y#t)wxYw)a8 Do basic configuration for the logging system. This function does nothing if the root logger already has handlers configured, unless the keyword argument *force* is set to ``True``. It is a convenience method intended for use by simple scripts to do one-shot configuration of the logging package. The default behaviour is to create a StreamHandler which writes to sys.stderr, set a formatter using the BASIC_FORMAT format string, and add the handler to the root logger. A number of optional keyword arguments may be specified, which can alter the default behaviour. filename Specifies that a FileHandler be created, using the specified filename, rather than a StreamHandler. filemode Specifies the mode to open the file, if filename is specified (if filemode is unspecified, it defaults to 'a'). format Use the specified format string for the handler. datefmt Use the specified date/time format. style If a format string is specified, use this to specify the type of format string (possible values '%', '{', '$', for %-formatting, :meth:`str.format` and :class:`string.Template` - defaults to '%'). level Set the root logger level to the specified level. stream Use the specified stream to initialize the StreamHandler. Note that this argument is incompatible with 'filename' - if both are present, 'stream' is ignored. handlers If specified, this should be an iterable of already created handlers, which will be added to the root logger. Any handler in the list which does not have a formatter assigned will be assigned the formatter created in this function. force If this keyword is specified as true, any existing handlers attached to the root logger are removed and closed, before carrying out the configuration as specified by the other arguments. encoding If specified together with a filename, this encoding is passed to the created FileHandler, causing it to be used when the file is opened. errors If specified together with a filename, this value is passed to the created FileHandler, causing it to be used when the file is opened in text mode. If not specified, the default value is `backslashreplace`. Note that you could specify a stream created using open(filename, mode) rather than passing the filename and mode in. However, it should be remembered that StreamHandler does not close its stream (since it may be using sys.stdout or sys.stderr), whereas FileHandler closes its stream when the handler is closed. .. versionchanged:: 3.2 Added the ``style`` parameter. .. versionchanged:: 3.3 Added the ``handlers`` parameter. A ``ValueError`` is now thrown for incompatible arguments (e.g. ``handlers`` specified together with ``filename``/``filemode``, or ``filename``/``filemode`` specified together with ``stream``, or ``handlers`` specified together with ``stream``. .. versionchanged:: 3.8 Added the ``force`` parameter. .. versionchanged:: 3.9 Added the ``encoding`` and ``errors`` parameters. forceFrNrbackslashreplacerr]rr^z8'stream' and 'filename' should not be specified togetherzG'stream' or 'filename' should not be specified together with 'handlers'filemoderrrrrrrrrrJrBrzUnrecognised argument(s): %s)rEpoprr]r-r+rrdr&rr rrrrrrkrr*rzrF)rrdrrhr]r^rrdfsrfsrrBrs r>rrsTLN2 7E*::j$/H&89 ]]1%""1% & t}}  "zz*d3Hv%**>$&:;;v%v)=$&JKK!::j$7zz*c2d{!%#%#3#3H#=#Hd-5fFA$ZZ$7F%f-A3**Y-CJJw,EG# !;chh!(?1"122HgenQ&78BBU+C;;&NN3'"JJw-E  e$yy/ !?$!FGG s II,, I8c|r#t|tr|tjk(rtStj j |S)z Return a logger with the specified name, creating it if necessary. If no name is specified, return the root logger. )rarcrrrrr"res r>r"r"es5 :dC(TTYY-> >> # #D ))r=cttjdk(r ttj|g|i|y)z Log a message with severity 'CRITICAL' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rrrrrs r>rros0  4==Q MM#'''r=c"t|g|i|y)z: Don't use this function, use critical() instead. Nrrms r>r r ys S"4"6"r=cttjdk(r ttj|g|i|y)z Log a message with severity 'ERROR' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rrrms r>rr0  4==Q JJs$T$V$r=rc&t|g|d|i|y)z Log a message with severity 'ERROR' on the root logger, with exception information. If the logger has no handlers, basicConfig() is called to add a console handler with a pre-defined format. rNr )rrrrs r>rrs  #22x262r=cttjdk(r ttj|g|i|y)z Log a message with severity 'WARNING' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rr*rms r>r*r*s0  4==Q LL&t&v&r=cXtjdtdt|g|i|y)Nz8The 'warn' function is deprecated, use 'warning' insteadr#rrms r>r)r)s* MM !3Q8 C!$!&!r=cttjdk(r ttj|g|i|y)z Log a message with severity 'INFO' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rr$rms r>r$r$s0  4==Q IIc#D#F#r=cttjdk(r ttj|g|i|y)z Log a message with severity 'DEBUG' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rrrms r>rrrpr=cttjdk(r ttj||g|i|y)z Log 'msg % args' with the integer severity 'level' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rrr]rr%)rBrrrs r>r%r%s2  4==Q HHUC)$)&)r=cj|tj_tjjy)zB Disable all logging calls of severity 'level' and below. N)rrrr)rBs r>rrs !DLLLLr=cJt|ddD]Z} |}|rN |jt|ddr|j|j |j\y#t t f$rY$wxYw#|jwxYw#trYxYw)z Perform any cleanup actions in the logging system (e.g. flushing buffers). Should be called at application exit. N flushOnCloseT) reversedrjrrr+rrdrlr.) handlerListr\rhs r>r(r(s{1~& A IIKq.$7 GGIIIK+' ,  IIK s: B=A-B-A?<B>A??BBB B"c(eZdZdZdZdZdZdZy)ra This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. cyzStub.Nr<r2s r>rzNullHandler.handler=cyr~r<r2s r>r~zNullHandler.emitrr=cd|_yr9)rtrs r>rmzNullHandler.createLocks  r=cyr9r<rs r>rwzNullHandler._at_fork_reinit rrr=N)rrrrrr~rmrwr<r=r>rrs r=rc|tt||||||yytj|||||}td}|js|j t |jt|y)a Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. Nz py.warnings) _warnings_showwarningr formatwarningr"r]r*rr*rc)r7categoryr^rrliner rs r> _showwarningr st  , !'8XvtT R -  " "7Hh M=)   km , s1vr=c|r't tjatt_yyttt_dayy)z If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. N)rr showwarningr)captures r>rr sA ($,$8$8 !#/H  ) ! ,#8H $( ! -r=r9r)vrrKrWrr&rr(rr`collections.abcrtypesrstringrr StrFormatter__all__r __author__ __status__ __version____date__rr.rrrrrr r rrrr rr@r:r/r!rrrSrXrY__code__r[r\r_rgrsrirErFrqWeakSetrtrzrmobjectrrr,r+r&rrrrrrr=rr rNWeakValueDictionaryrdr[r^rbr0r1rrr r_defaultLastResortr-rr'r#rrrIrrrrrr"rr rrr*r)r$rr%rr(atexitregisterrrrrr<r=r>rs"LKKKK, 26    TYY[            j 7 Y& 7 H         6  3 +L5& 77  L11== > 0  r%& $37??#4  B|'H(46kk`  M6MB:\:D ., .F4   % 8 9 @ A  nnfK$$T#/V#/J;v;B (G ' ' )  $D>hD>LR2GR2jRT-RTj]"$G,  +&+.  {f{Bx'Xx'v   E2FE2N' % y@*(# %$(3'" $%* &F ' 0()r=PK1]  *__pycache__/__init__.cpython-312.opt-2.pycnu[ {|jE | ddlZddlZddlZddlZddlZddlZddlZddlZddlZ ddl m Z ddl m Z ddl mZgdZddlZdZdZdZd ZejZd Zd Zd Zd Zd Zd ZeZd Zd ZeZ dZ!dZ"dZ#ededede!de"de#diZ$eeeeee!e"e#dZ%dZ&dZ'dZ(e)edrdZ*ndZ*ejVjYe(jZj\Z/dZ0dZ1ejdZ3dZ4d Z5e)ed!sd"Z6n,ejnZ8d#Z6d$Z9ejte4e9e5%Gd&d'e;Zd)Z?d*Z@eZA[Gd+d,e;ZBGd-d.eBZCGd/d0eBZDd1ZEeBeEfeCd2feDd3fd4ZFGd5d6e;ZeZGGd7d8e;ZHGd9d:e;ZIGd;dZOd?ZPd@ZQGdAdBeJZRGdCdDeRZSGdEdFeSZTGdGdHeSZUeUeZVeVZWGdIdJe;ZXdKZYdLZZGdMdNe;Z[GdOdPeJZ\GdQdRe\Z]e\a^GdSdTe;Z_e]eZ`e`e\_`e[e\je\_adUZbdgdVZcdWZddXZedYZfd dZd[Zgd\Zhd]Zid^Zjd_Zkd`ZlefdaZmeMfdbZnddloZoeojenGdcddeRZqdardhdeZsdfZty)iN) GenericAlias)Template) Formatter)- BASIC_FORMATBufferingFormatterCRITICALDEBUGERRORFATAL FileHandlerFilterrHandlerINFO LogRecordLogger LoggerAdapterNOTSET NullHandler StreamHandlerWARNWARNING addLevelName basicConfigcaptureWarningscriticaldebugdisableerror exceptionfatal getLevelName getLoggergetLoggerClassinfolog makeLogRecordsetLoggerClassshutdownwarnwarninggetLogRecordFactorysetLogRecordFactory lastResortraiseExceptionsgetLevelNamesMappinggetHandlerByNamegetHandlerNamesz&Vinay Sajip productionz0.5.1.2z07 February 2010T2( rr rrr r)rr r rrrr rc*tjSN) _nameToLevelcopy)/usr/lib64/python3.12/logging/__init__.pyr/r/~s    r=cr tj|}||Stj|}||Sd|zS)NzLevel %s) _levelToNamegetr:)levelresults r>r!r!sJ$  e $F    e $F   r=cr t |t|<|t|<ty#twxYwr9) _acquireLockr@r: _releaseLock)rB levelNames r>rrs2 N' U"' Y s* 6 _getframec,tjdS)N)sysrHr<r=r>rLs 3==+r=c~ t#t$r*}|jjjcYd}~Sd}~wwxYwr9) Exception __traceback__tb_framef_back)excs r> currentframerSs7C 5O 5$$--44 4 5s <7<<c tjj|jj}|t k(xs d|vxrd|vS)N importlib _bootstrap)ospathnormcasef_code co_filename_srcfile)framefilenames r>_is_internal_framer_sGKww 8 89H x  x _checkLevelrgsg%  I Uu   $0589 9 %  I #$ $r=c< trtjyyr9)_lockacquirer<r=r>rErEs    r=c< trtjyyr9)rireleaser<r=r>rFrFs   r=register_at_forkcyr9r<instances r>_register_at_fork_reinit_lockrq r=cvt tj|ty#twxYwr9)rE_at_fork_reinit_lock_weaksetaddrFros r>rqrqs%  ( , ,X 6 NLNs, 8cbtD]}|jtjyr9)rt_at_fork_reinitrihandlers r>!_after_at_fork_child_reinit_locksrz s&3G  # # %4 r=)beforeafter_in_childafter_in_parentc$eZdZ ddZdZdZy)rNc   tj} ||_||_|r?t|dk(r1t |dt j jr |dr|d}||_t||_ ||_ ||_ tjj||_tjj#|j d|_||_d|_| |_||_||_| |_t9| t9| z dzdz|_|j6t<z dz|_t@r=tCjD|_#tCjHj|_%nd|_#d|_%tLsd|_'nHd|_'tPjRjUd} | | jWj|_'tZr*t]tdrtj^|_0nd|_0d|_1tdrGtPjRjUd } | r% | jgji|_1yyy#t&t(t*f$r||_d|_YwxYw#tX$rYwxYw#tX$rYywxYw) NrJrzUnknown moduleig MainProcessmultiprocessinggetpidasyncio)5timenamemsglenra collectionsabcMappingargsr! levelnamelevelnopathnamerWrXbasenamer^splitextmodulererdAttributeErrorexc_infoexc_text stack_infolinenofuncNamecreatedrbmsecs _startTimerelativeCreated logThreads threading get_identthreadcurrent_thread threadNamelogMultiprocessing processNamerKmodulesrAcurrent_processrN logProcesseshasattrrprocesstaskNamelogAsyncioTasks current_taskget_name)selfrrBrrrrrfuncsinfokwargsctmprs r>__init__zLogRecord.__init__*sG YY[ & SY!^ 47KOO=J>c d|jd|jd|jd|jd|jd S)Nz )rrrrrrs r>__repr__zLogRecord.__repr__{s,48IIt|| MM4;;2 2r=ch t|j}|jr||jz}|Sr9)rcrr)rrs r> getMessagezLogRecord.getMessages/ $((m 99 /C r=NN)__name__ __module__ __qualname__rrrr<r=r>rrs 8<Ob2 r=rc |ayr9_logRecordFactory)factorys r>r,r,s r=c tSr9rr<r=r>r+r+s r=c b tdddddddd}|jj||S)Nrr<)r__dict__update)dictrfs r>r&r&s8 4r1b"dD ABKKt Ir=cveZdZdZdZdZejdejZ dddZ dZ d Z d Z d Zy) PercentStylez %(message)sz %(asctime)sz %(asctime)z5%\(\w+\)[#0+ -]*(\*|\d+)?(\.(\*|\d+))?[diouxefgcrsa%]Ndefaultsc<|xs |j|_||_yr9)default_format_fmt _defaults)rfmtrs r>rzPercentStyle.__init__s.4.. !r=cR|jj|jdk\SNrrfindasctime_searchrs r>usesTimezPercentStyle.usesTimes yy~~d112a77r=c |jj|js)td|jd|jddy)NzInvalid format 'z' for 'rz' style)validation_patternsearchrrdrrs r>validatezPercentStyle.validatesCL&&--dii8TYYPTPcPcdePfgh h9r=ct|jx}r||jz}n |j}|j|zSr9)rrrrrecordrvaluess r>_formatzPercentStyle._formats7~~ %8 %/F__Fyy6!!r=cd |j|S#t$r}td|zd}~wwxYw)Nz(Formatting field not found in record: %s)rKeyErrorrd)rres r>formatzPercentStyle.formats: M<<' ' MG!KL L Ms /*/)rrrrasctime_formatrrecompileIrrrrrrr<r=r>rrsJ"N"N!N#$\^`^b^bc(,"8i "Mr=rceZdZdZdZdZejdejZ ejdZ dZ dZ y) StrFormatStylez {message}z {asctime}z{asctimezF^(.?[<>=^])?[+ -]?#?0?(\d+|{\w+})?[,_]?(\.(\d+|{\w+}))?[bcdefgnosx%]?$z^(\d+|\w+)(\.\w+|\[[^]]+\])*$c|jx}r||jz}n |j}|jjdi|SNr<)rrrrrs r>rzStrFormatStyle._formatsB~~ %8 %/F__Ftyy)&))r=c t} tj|jD]\}}}}|r:|jj |st d|z|j||r|dvrt d|z|s[|jj |rwt d|z |s t dy#t $r}t d|zd}~wwxYw)Nz!invalid field name/expression: %rrsazinvalid conversion: %rzbad specifier: %rzinvalid format: %sinvalid format: no fields) set_str_formatterparser field_specmatchrdrufmt_spec)rfields_ fieldnamespec conversionrs r>rzStrFormatStyle.validatesY 72@2F2Ftyy2Q.9dJ??00;()Ly)XYYJJy)*E"9$%= %JKK 3 3D 9$%84%?@@3R89 9 71A56 6 7s$A9CC#C C CCN) rrrrrrrrrrrrrr<r=r>rrsF N NNrzzcegeieijH<=J*:r=rc<eZdZdZdZdZfdZdZdZdZ xZ S)StringTemplateStylez ${message}z ${asctime}cXt||i|t|j|_yr9)superrrr_tpl)rrr __class__s r>rzStringTemplateStyle.__init__s% $)&)TYY' r=c|j}|jddk\xs|j|jdk\S)Nz$asctimerrrrs r>rzStringTemplateStyle.usesTimes8iixx #q(NCHHT5H5H,IQ,NNr=cXtj}t}|j|jD]e}|j }|dr|j |d-|dr|j |dG|jddk(s\td|s tdy)Nnamedbracedr$z$invalid format: bare '$' not allowedr) rpatternrfinditerr groupdictrugrouprd)rrrmds r>rzStringTemplateStyle.validates""!!$)),A Az 1W:&8 1X;'s" !IJJ-89 9r=c|jx}r||jz}n |j}|jjdi|Sr)rrr substituters r>rzStringTemplateStyle._formatsB~~ %8 %/F__F#tyy##-f--r=) rrrrrrrrrr __classcell__)rs@r>rrs'!N!N!N(O :.r=rz"%(levelname)s:%(name)s:%(message)sz{levelname}:{name}:{message}z${levelname}:${name}:${message})%{rcbeZdZ ejZd dddZdZdZd dZ dZ dZ d Z d Z d Zy)rNrc  |tvr/tddjtjzt|d|||_|r|jj |jj |_||_y)NStyle must be one of: %s,rr)_STYLESrdjoinkeys_stylerrdatefmt)rrrstylerrs r>rzFormatter.__init__Ps|   7#(($\\^;--. .enQ'h?  KK "KK$$  r=z%Y-%m-%d %H:%M:%Sz%s,%03dc |j|j}|rtj||}|Stj|j|}|j r|j ||j fz}|Sr9) converterrrstrftimedefault_time_formatdefault_msec_formatr)rrrrss r> formatTimezFormatter.formatTimenst "^^FNN +  gr*A  d66;A'',,6<formatExceptionzFormatter.formatExceptionsn kkm U !!"Q%AD#> LLN RS6T>#2Ar=c8 |jjSr9)rrrs r>rzFormatter.usesTimes {{##%%r=c8|jj|Sr9)rrrrs r> formatMessagezFormatter.formatMessages{{!!&))r=c |Sr9r<)rrs r> formatStackzFormatter.formatStacks r=c |j|_|jr!|j||j|_|j |}|jr,|js |j|j|_|jr|dddk7r|dz}||jz}|jr+|dddk7r|dz}||j|jz}|S)Nr$r%) rmessagerr!rasctimer3rrr/rr5)rrr s r>rzFormatter.formats  **, ==?!__VT\\BFN   v & ????"&"6"6v"G ??v~HFOO#A   v~HD$$V%6%677Ar=)NNrTr9)rrrr localtimerrrrr!r/rr3r5rr<r=r>rr"sL)VI6.#6&& * r=rc(eZdZ ddZdZdZdZy)rNc0 |r||_yt|_yr9)linefmt_defaultFormatter)rr<s r>rzBufferingFormatter.__init__s  "DL,DLr=c yNrr<rrecordss r> formatHeaderzBufferingFormatter.formatHeader  r=c yr?r<r@s r> formatFooterzBufferingFormatter.formatFooterrCr=c d}t|dkDrM||j|z}|D] }||jj|z}"||j |z}|S)Nrr)rrBr<rrE)rrArfrs r>rzBufferingFormatter.formatsl  wrrs-  r=rceZdZ ddZdZy)r c4 ||_t||_yr9)rrnlenrrs r>rzFilter.__init__ s  I r=c |jdk(ry|j|jk(ry|jj|jd|jdk7ry|j|jdk(S)NrTF.)rIrrr2s r>filterz Filter.filtersh 99> YY&++ % [[  diiDII 6! ; DII&#-.r=N)r)rrrrrMr<r=r>r r s   /r=r c&eZdZ dZdZdZdZy)Filtererc g|_yr9)filtersrs r>rzFilterer.__init__+s  r=cZ ||jvr|jj|yyr9)rQappendrrMs r> addFilterzFilterer.addFilter1s, $,,& LL   ''r=cZ ||jvr|jj|yyr9)rQremoverTs r> removeFilterzFilterer.removeFilter8s,  T\\ ! LL   ' "r=c |jD]?}t|dr|j|}n||}|syt|ts>|}A|S)NrMF)rQrrMrar)rrfrCs r>rMzFilterer.filter?sT 0Aq(#&)6&), r=N)rrrrrUrXrMr<r=r>rOrO&s (("r=rOc ttt}}}|r'|r$|r!| |j||yyyy#t$rYwxYw#|wxYwr9)rErF _handlerListrWrd)wrrjrlhandlerss r>_removeHandlerRefr_js_".|\hWG7x   OOB  I (7w    Is!> A A A  A Ac t tjtj|t t y#t wxYwr9)rEr\rSweakrefrefr_rFrxs r>_addHandlerRefrc|s8NGKK1BCD s -A Ac. tj|Sr9) _handlersrArs r>r0r0s == r=cT ttj}t|Sr9)rrer frozenset)rCs r>r1r1s%! "F V r=ceZdZ efdZdZdZeeeZdZ dZ dZ dZ dZ d Zd Zd Zd Zd ZdZdZdZy)rc tj|d|_t||_d|_d|_t||jyNF) rOr_namergrB formatter_closedrc createLockrrBs r>rzHandler.__init__sJ  $  '  t r=c|jSr9)rlrs r>rzHandler.get_names zzr=ct |jtvrt|j=||_|r |t|<ty#twxYwr9)rErlrerFrJs r>set_namezHandler.set_namesB zzY&djj)DJ"& $ NLNs 5A AcN tj|_t|yr9)rRLocklockrqrs r>rozHandler.createLocks OO% %d+r=c8|jjyr9)rvrwrs r>rwzHandler._at_fork_reinits !!#r=cT |jr|jjyyr9)rvrjrs r>rjzHandler.acquire%  99 II    r=cT |jr|jjyyr9)rvrlrs r>rlzHandler.releaseryr=c& t||_yr9)rgrBrps r>setLevelzHandler.setLevels !' r=cd |jr |j}nt}|j|Sr9)rmr=r)rrrs r>rzHandler.formats- >>..C#Czz&!!r=c td)Nz.emit must be implemented by Handler subclasses)NotImplementedErrorr2s r>emitz Handler.emits "#:; ;r=c |j|}t|tr|}|r4|j |j ||j |S|S#|j wxYwr9)rMrarrjrrl)rrrfs r>handlezHandler.handlesb [[  b) $F LLN  &!  r  s AA/c ||_yr9)rmrs r> setFormatterzHandler.setFormatter s r=c yr9r<rs r>flushz Handler.flushs  r=c t d|_|jr#|jtvrt|j=t y#t wxYw)NT)rErnrlrerFrs r>r+z Handler.closesC   DLzzdjjI5djj) NLNs 6A Ac@ trtjrtj\}}} tjj dt j |||dtjtjj d|j}|rtjj|jjtdk(rL|j}|r>tjj|jjtdk(rL|r&t j|tjn:tjj d|j d|j"d tjj d|j$d |j&d~~~yyy#t($rt*$r"tjj d Y9wxYw#t,$rYHwxYw#~~~wxYw) Nz--- Logging error --- z Call stack: rfilezLogged from file z, line r%z Message: z Arguments: zwUnable to print the message and arguments - possible formatting error. Use the traceback above to help find the error. )r.rKstderrrwriter(r)rPrWrXdirnamerZr[__path__rQ print_stackr^rrrRecursionErrorrNOSError)rrtvr.r]s r> handleErrorzHandler.handleError*s  szz||~HAq"    !:;))!QD#**E   1 1I1I!J{"#!LLE1I1I!J{"#))%cjjAJJ$$%+__fmm&EF &JJ$$:@**:@++&GHq"C *?.& &JJ$$&R&&   q"sIC;H /A"H :G1HH HH HHHHHcft|j}d|jjd|dS)N< ()>)r!rBrrrps r>rzHandler.__repr__Ys%TZZ("nn55u==r=N)rrrrrrrspropertyrrorwrjrlr|rrrrrr+rrr<r=r>rrsk$   Hh 'D,$  ( ";,  $-^>r=rcBeZdZ dZddZdZdZdZdZe e Z y) rr%Ncb tj||tj}||_yr9)rrrKrstreamrrs r>rzStreamHandler.__init__fs,  >ZZF r=c |j |jr0t|jdr|jj|j y#|j wxYw)Nr)rjrrrrlrs r>rzStreamHandler.flushqsN   {{wt{{G< !!# LLNDLLNs rzStreamHandler.emit|si  %++f%C[[F LLt. / JJL   %   V $ %sA A#A54A5c ||jurd}|S|j}|j |j||_|j|S#|jwxYwr9)rrjrrl)rrrCs r> setStreamzStreamHandler.setStreamse  T[[ F [[F LLN  $    s AA,ct|j}t|jdd}t |}|r|dz }d|j j d|d|dS)Nrr r(r)r!rBgetattrrrcrr)rrBrs r>rzStreamHandler.__repr__sOTZZ(t{{FB/4y  CKD $ 7 7uEEr=r9) rrrrrrrrr classmethodr__class_getitem__r<r=r>rr]s5 J  %,(F$L1r=rc.eZdZ ddZdZdZdZdZy)r Nc tj|}tjj||_||_||_d|vrtj||_||_ ||_ t|_ |rtj|d|_yt j||j#y)Nb)rWfspathrXabspath baseFilenamemodeencodingr& text_encodingerrorsdelayopen _builtin_openrrrr_open)rr^rrrrs r>rzFileHandler.__init__s 99X&GGOOH5   d?,,X6DM  "    T "DK  " "4 6r=c |j |jrA |j|j}d|_t|dr|j  t j | |j y#|j}d|_t|dr|j wwxYw#t j |wxYw#|j wxYw)Nr+)rjrrrr+rrlrs r>r+zFileHandler.closes    *;;+ !%&* "673"LLN ##D) LLN"&&* "673"LLN4##D) LLNs3 B=B0B=!C2B::B==CCC)c |j}||j|j|j|jS)Nrr)rrrrr)r open_funcs r>rzFileHandler._opens> && **DII"&-- E Er=c |j0|jdk7s |js|j|_|jrtj ||yy)Nw)rrrnrrrr2s r>rzFileHandler.emitsN  ;; yyCt||"jjl ;;   tV , r=ct|j}d|jjd|jd|dSNrrrr)r!rBrrrrps r>rzFileHandler.__repr__s-TZZ(!%!8!8$:K:KUSSr=)aNFN)rrrrr+rrrr<r=r>r r s"760E- Tr=r c(eZdZ efdZedZy)_StderrHandlerc2 tj||yr9)rrrps r>rz_StderrHandler.__init__ s  u%r=c"tjSr9)rKrrs r>rz_StderrHandler.streams zzr=N)rrrrrrrr<r=r>rrs% $& r=rceZdZ dZdZy) PlaceHolderc |di|_yr9 loggerMapraloggers r>rzPlaceHolder.__init__%s #T+r=cB ||jvrd|j|<yyr9rrs r>rSzPlaceHolder.append+s(  $.. (&*DNN7 # )r=N)rrrrrSr<r=r>rrs , +r=rcl |tk7r(t|tstd|jz|ayNz(logger not derived from logging.Logger: )r issubclassrer _loggerClass)klasss r>r'r'6s=  %(F#nn-. .Lr=c tSr9)rr<r=r>r#r#Cs r=cleZdZ dZedZej dZdZdZdZ dZ dZ d Z y ) ManagercZ ||_d|_d|_i|_d|_d|_y)NrF)rootremittedNoHandlerWarning loggerDict loggerClasslogRecordFactory)rrootnodes r>rzManager.__init__Ns6   ',$ $r=c|jSr9)_disablers r>rzManager.disableYs }}r=c$t||_yr9)rgrrvalues r>rzManager.disable]s#E* r=c d}t|ts tdt ||jvru|j|}t|t r|}|j xst|}||_||j|<|j|||j|nA|j xst|}||_||j|<|j|t|S#twxYw)NzA logger name must be a string) rarcrerErrrrmanager_fixupChildren _fixupParentsrF)rrrfphs r>r"zManager.getLoggeras $$<= = t&__T*b+.B:$**:lDAB!%BJ,.DOOD)''B/&&r*6d&&6,=! (*%""2& N  Ns CC:: Dcv |tk7r(t|tstd|jz||_yr)rrrerr)rrs r>r'zManager.setLoggerClasss>  F?eV, J"'..!122 r=c ||_yr9)r)rrs r>r,zManager.setLogRecordFactorys !(r=cv |j}|jd}d}|dkDr|s}|d|}||jvrt||j|<n3|j|}t |t r|}n|j ||jdd|dz }|dkDr|s}|s |j}||_y)NrLrrJ) rrfindrrrarrSrparent)rrrirfsubstrobjs r>rzManager._fixupParentss || JJsO 1ub"1XFT__,*5g*>'oof-c6*BJJw' 31q5)A1ubBr=c |j}t|}|jjD]7}|jjd||k7s |j|_||_9yr9)rrrrr)rrrrnamelencs r>rzManager._fixupChildrens[ ||d)""$Axx}}Xg&$.!"" %r=c  t|jjD]-}t|ts|j j /|jj j tyr9) rErrrar_cacheclearrrFrloggers r> _clear_cachezManager._clear_caches\ oo,,.F&&) ##%/  r=N) rrrrrrsetterr"r'r,rrrr<r=r>rrIsW % ^^++ D!(0 # r=rceZdZ efdZdZdZdZdZdZ dZ dd d Z d Z d Z d ZddZ ddZ ddZdZdZdZdZdZdZdZdZdZdZdZy) rc tj|||_t||_d|_d|_g|_d|_i|_ y)NTF) rOrrrgrBr propagater^disabledr)rrrBs r>rzLogger.__init__sM  $  '     r=cZ t||_|jjyr9)rgrBrrrps r>r|zLogger.setLevels% !'  !!#r=cd |jtr|jt||fi|yyr9) isEnabledForr _logrrrrs r>rz Logger.debug3    U # DIIeS$ 1& 1 $r=cd |jtr|jt||fi|yyr9)rrrrs r>r$z Logger.infos3    T " DIIdC 0 0 #r=cd |jtr|jt||fi|yyr9)rrrrs r>r*zLogger.warnings3    W % DIIgsD 3F 3 &r=cftjdtd|j|g|i|yNz6The 'warn' method is deprecated, use 'warning' insteadr#warningsr)DeprecationWarningr*rs r>r)z Logger.warn0 $%7 < S*4*6*r=cd |jtr|jt||fi|yyr9)rr rrs r>rz Logger.errorrr=Trc6 |j|g|d|i|yNrrrrrrrs r>rzLogger.exception"s&   3;;;F;r=cd |jtr|jt||fi|yyr9)rrrrs r>rzLogger.critical(s3    X & DIIhT 4V 4 'r=c2 |j|g|i|yr9rrs r>r z Logger.fatal4s!   c+D+F+r=c t|tstr tdy|j |r|j |||fi|yy)Nzlevel must be an integer)rarbr.rerrrrBrrrs r>r%z Logger.log:sO %% :;;   U # DIIeS$ 1& 1 $r=c t}|y|dkDr'|j}|n|}t|s|dz}|dkDr'|j}d}|rbt j 5}|j dtj|||j}|ddk(r|dd}ddd|j|j|j|fS#1swY-xYw)N)(unknown file)r(unknown function)NrrJzStack (most recent call last): rr$r%) rSrQr_rZr&r'rr(rr*r[f_linenoco_name)rr stacklevelrZnext_fcorr-s r> findCallerzLogger.findCallerKs  N 9B1nXXF~ A%a(a 1nXX # <=%%ac2 9$!#2JE  ~~qzz2::u<< s ACCNc  t||||||||| } | 9| D]4} | dvs| | jvrtd| z| | | j| <6| S)N)r7r8z$Attempt to overwrite %r in LogRecord)rrr) rrrBfnlnorrrrextrarrfkeys r> makeRecordzLogger.makeRecordmst tUBS$$"$  11sbkk7I"#IC#OPP#(: C  r=c  d}tr |j||\} } } }nd\} } } |rMt|trt |||j f}n$t|tstj}|j|j|| | |||| || } |j| y#t$r d\} } } YwxYw)N)rrr) r\rrdra BaseExceptiontyperOtuplerKrr"rr) rrBrrrr rrrrrrrs r>rz Logger._log|s   J'+z:'N$CuFMBT (M2 NHh6L6LM%0<<>E2sC!)4? F J I C JsB..C?Cc |jry|j|}|syt|tr|}|j |yr9)rrMrar callHandlers)rr maybe_records r>rz Logger.handlesD == {{6*   lI .!F &!r=c t ||jvr|jj|ty#twxYwr9)rEr^rSrFrhdlrs r> addHandlerzLogger.addHandlers<   DMM) $$T* NLN )A A c t ||jvr|jj|ty#twxYwr9)rEr^rWrFr+s r> removeHandlerzLogger.removeHandlers<   t}}$ $$T* NLNr.cr |}d}|r/|jrd} |S|js |S|j}|r/|S)NFT)r^rr)rrrfs r> hasHandlerszLogger.hasHandlerssV   zz  ;; HH r=c |}d}|r_|jD]2}|dz}|j|jk\s"|j|4|jsd}n |j }|r_|dk(rt r4|jt jk\rt j|yytrU|jjs>tjjd|jzd|j_ yyyy)NrrJz+No handlers could be found for logger "%s" T)r^rrBrrrr-r.rrrKrrr)rrrfoundr,s r>r(zLogger.callHandlerss    >>TZZ/KK'#;;HH QJ>>Z%5%55%%f-6 )M)M   "-/3yy"9:7; 4*N r=cf |}|r'|jr |jS|j}|r'tSr9)rBrrrs r>getEffectiveLevelzLogger.getEffectiveLevels7 ||||#]]F r=cD |jry |j|S#t$rwt |jj |k\rdx}|j|<n"||j k\x}|j|<tn#twxYw|cYSwxYwrk)rrrrErrr6rF)rrB is_enableds r>rzLogger.isEnabledFors  == ;;u% %  N <<''506;;JU!3!7!7!99JU!3   s'BA B  B BBBc |j|urdj|j|f}|jj |S)NrL)rrrrr")rsuffixs r>getChildzLogger.getChildsA  99D XXtyy&12F||%%f--r=cdjj}t tfd|j Dt S#t wxYw)Ncp||jjuryd|jjdzS)NrrJrL)rrrcount)rs r> _hierlevelz&Logger.getChildren.._hierlevel)s1,,,v{{((-- -r=c3K|]B}t|tr0|jur"|d|jzk(r|Dyw)rJN)rarr).0itemr?rs r> z%Logger.getChildren..4sHH $T62t{{d7J!$'1z$++/F+FF sAA )rrrErrrF)rr r?s` @r> getChildrenzLogger.getChildren'sO . LL # # H HH NLNs "A A ct|j}d|jjd|jd|dSr)r!r6rrrrps r>rzLogger.__repr__:s0T3356!%!8!8$))UKKr=ct|j|urddl}|jdt|jffS)Nrzlogger cannot be pickled)r"rpickle PicklingError)rrGs r> __reduce__zLogger.__reduce__>s9 TYY t + &&'AB B499,&&r=)FrJ)NNN)NNFrJ)rrrrrr|rr$r*r)rrrr r%rr"rrr-r0r2r(r6rr;rDrrIr<r=r>rrs $* $ 2 1 4+ 2.2< 5, 2" =F15 LQ4"  ,<< ,.&&L'r=rceZdZ dZdZy) RootLoggerc4 tj|d|y)Nr)rrrps r>rzRootLogger.__init__Ks  fe,r=ctdfSr)r"rs r>rIzRootLogger.__reduce__Qs "}r=N)rrrrrIr<r=r>rKrKEs - r=rKceZdZ ddZdZdZdZdZdZdZ d d d Z d Z d Z dZ dZdZdZdZedZej(dZedZdZeeZy)rNc" ||_||_yr9)rr )rrr s r>rzLoggerAdapter.__init__\s   r=c* |j|d<||fS)Nr )r )rrrs r>rzLoggerAdapter.processjs  **wF{r=c< |jt|g|i|yr9)r%r rs r>rzLoggerAdapter.debugz#  -d-f-r=c< |jt|g|i|yr9)r%rrs r>r$zLoggerAdapter.infos#  s,T,V,r=c< |jt|g|i|yr9)r%rrs r>r*zLoggerAdapter.warnings#  #///r=cftjdtd|j|g|i|yrrrs r>r)zLoggerAdapter.warnrr=c< |jt|g|i|yr9r%r rs r>rzLoggerAdapter.errorrRr=Tr c@ |jt|g|d|i|yr rWrs r>rzLoggerAdapter.exceptions(  @d@X@@r=c< |jt|g|i|yr9)r%rrs r>rzLoggerAdapter.criticals#  3000r=c |j|r7|j||\}}|jj||g|i|yyr9)rrrr%rs r>r%zLoggerAdapter.logsN    U #,,sF3KC DKKOOE3 8 8 8 $r=c: |jj|Sr9)rrrps r>rzLoggerAdapter.isEnabledFors {{''..r=c< |jj|yr9)rr|rps r>r|zLoggerAdapter.setLevels  U#r=c8 |jjSr9)rr6rs r>r6zLoggerAdapter.getEffectiveLevels {{,,..r=c8 |jjSr9)rr2rs r>r2zLoggerAdapter.hasHandlerss {{&&((r=c B |jj|||fi|Sr9)rrrs r>rzLoggerAdapter._logs)  t{{sD;F;;r=c.|jjSr9rrrs r>rzLoggerAdapter.managers{{"""r=c&||j_yr9rars r>rzLoggerAdapter.managers# r=c.|jjSr9)rrrs r>rzLoggerAdapter.names{{r=c|j}t|j}d|jjd|j d|dSr)rr!r6rrr)rrrBs r>rzLoggerAdapter.__repr__s9V5578!%!8!8&++uMMr=r9)rrrrrrr$r*r)rrrr%rr|r6r2rrrrrrrrrr<r=r>rrVs   . - 0 + . .2A 1 9/ $ / ) < ## ^^$$  N $L1r=rc  t |jdd}|jdd}|jdd}|r=tjddD]'}tj ||j )t tjdk(r|jdd}|d|vr"d |vrtd d|vsd |vr td |r|jd d}|jd d }|r,d|vrd}ntj|}t||||}n|jdd}t|}|g}|jdd} |jdd} | tvr/tddjtjz|jdt| d} t| | | } |D]4}|j |j#| tj%|6|jdd} | tj'| |r-dj|j}td|zt)y#t)wxYw)NforceFrrbackslashreplacerr^rr^z8'stream' and 'filename' should not be specified togetherzG'stream' or 'filename' should not be specified together with 'handlers'filemoderrrrrrrrrrJrBrzUnrecognised argument(s): %s)rEpoprr^r0r+rrdr&rr rrrrrrmrr-r|rF)rrfrrhr^r^rrdfsrfsrrBrs r>rrsZBJN2 7E*::j$/H&89 ]]1%""1% & t}}  "zz*d3Hv%**>$&:;;v%v)=$&JKK!::j$7zz*c2d{!%#%#3#3H#=#Hd-5fFA$ZZ$7F%f-A3**Y-CJJw,EG# !;chh!(?1"122HgenQ&78BBU+C;;&NN3'"JJw-E  e$yy/ !?$!FGG s II-- I9c |r#t|tr|tjk(rtStj j |Sr9)rarcrrrrr"rfs r>r"r"es: :dC(TTYY-> >> # #D ))r=c ttjdk(r ttj|g|i|yr)rrr^rrrrrs r>rros5  4==Q MM#'''r=c$ t|g|i|yr9rros r>r r ys S"4"6"r=c ttjdk(r ttj|g|i|yr)rrr^rrros r>rr5  4==Q JJs$T$V$r=r c( t|g|d|i|yr r )rrrrs r>rrs   #22x262r=c ttjdk(r ttj|g|i|yr)rrr^rr*ros r>r*r*s5  4==Q LL&t&v&r=cXtjdtdt|g|i|y)Nz8The 'warn' function is deprecated, use 'warning' insteadr#rros r>r)r)s* MM !3Q8 C!$!&!r=c ttjdk(r ttj|g|i|yr)rrr^rr$ros r>r$r$s5  4==Q IIc#D#F#r=c ttjdk(r ttj|g|i|yr)rrr^rrros r>rrrrr=c ttjdk(r ttj||g|i|yr)rrr^rr%)rBrrrs r>r%r%s7  4==Q HHUC)$)&)r=cl |tj_tjjyr9)rrrr)rBs r>rrs%!DLLLLr=cL t|ddD]Z} |}|rN |jt|ddr|j|j |j\y#t t f$rY$wxYw#|jwxYw#trYxYw)N flushOnCloseT) reversedrjrrr+rrdrlr.) handlerListr]rjs r>r(r(s {1~& A IIKq.$7 GGIIIK+' ,  IIK s: B=A.B.B=B?BBBB B#c&eZdZ dZdZdZdZy)rcyr9r<r2s r>rzNullHandler.handler=cyr9r<r2s r>rzNullHandler.emitrr=cd|_yr9)rvrs r>rozNullHandler.createLocks  r=cyr9r<rs r>rwzNullHandler._at_fork_reinit rrr=N)rrrrrrorwr<r=r>rrs r=rc |tt||||||yytj|||||}td}|js|j t |jt|y)Nz py.warnings) _warnings_showwarningr formatwarningr"r^r-rr*rc)r7categoryr^rrliner rs r> _showwarningr sy  , !'8XvtT R -  " "7Hh M=)   km , s1vr=c |r't tjatt_yyttt_dayyr9)rr showwarningr)captures r>rr sF  ($,$8$8 !#/H  ) ! ,#8H $( ! -r=r9r)urKrWrr&rr(rracollections.abcrtypesrstringrr StrFormatter__all__r __author__ __status__ __version____date__rr.rrrrrr r rrrr rr@r:r/r!rrrSrXrY__code__r[r\r_rgrurirErFrqWeakSetrtrzrmobjectrrr,r+r&rrrrrrr=rr rOWeakValueDictionaryrer\r_rcr0r1rrr r_defaultLastResortr-rr'r#rrrKrrrrrr"rr rrr*r)r$rr%rr(atexitregisterrrrrr<r=r>rs"LKKKK, 26    TYY[            j 7 Y& 7 H         6  3 +L5& 77  L11== > 0  r%& $37??#4  B|'H(46kk`  M6MB:\:D ., .F4   % 8 9 @ A  nnfK$$T#/V#/J;v;B (G ' ' )  $D>hD>LR2GR2jRT-RTj]"$G,  +&+.  {f{Bx'Xx'v   E2FE2N' % y@*(# %$(3'" $%* &F ' 0()r=PK1]keSgg$__pycache__/handlers.cpython-312.pycnu[ {|jxdZddlZddlZddlZddlZddlZddlZddlZddlZddl m Z m Z m Z ddl Z ddlZddlZdZdZdZdZdZdZd ZGd d ej.ZGd d eZGddeZGddej.ZGddej8ZGddeZGddej8ZGddej8Z Gddej8Z!Gddej8Z"Gddej8Z#Gd d!e#Z$Gd"d#ej8Z%Gd$d%e&Z'y)&z Additional handlers for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2021 Vinay Sajip. All Rights Reserved. To use, simply 'import logging.handlers' and log away! N)ST_DEVST_INOST_MTIMEi<#i=#i>#i?#iQc2eZdZdZdZdZddZdZdZdZ y)BaseRotatingHandlerz Base class for handlers that rotate log files at a certain point. Not meant to be instantiated directly. Instead, use RotatingFileHandler or TimedRotatingFileHandler. Ncxtjj||||||||_||_||_y)zA Use the specified filename for streamed logging modeencodingdelayerrorsN)logging FileHandler__init__r r rselffilenamer r r rs )/usr/lib64/python3.12/logging/handlers.pyrzBaseRotatingHandler.__init__6sB $$T8$.6e,2 % 4    c |j|r|jtjj ||y#t $r|j |YywxYw)z Emit a record. Output the record to the file, catering for rollover as described in doRollover(). N)shouldRollover doRolloverrremit Exception handleErrorrrecords rrzBaseRotatingHandler.emitAsR %""6*!    $ $T6 2 %   V $ %sAAA! A!cZt|js|}|S|j|}|S)a Modify the filename of a log file when rotating. This is provided so that a custom filename can be provided. The default implementation calls the 'namer' attribute of the handler, if it's callable, passing the default name to it. If the attribute isn't callable (the default is None), the name is returned unchanged. :param default_name: The default name for the log file. )callablenamer)r default_nameresults rrotation_filenamez%BaseRotatingHandler.rotation_filenameOs1 #!F ZZ -F rct|js7tjj |rtj ||yy|j||y)aL When rotating, rotate the current log. The default implementation calls the 'rotator' attribute of the handler, if it's callable, passing the source and dest arguments to it. If the attribute isn't callable (the default is None), the source is simply renamed to the destination. :param source: The source filename. This is normally the base filename, e.g. 'test.log' :param dest: The destination filename. This is normally what the source is rotated to, e.g. 'test.log.1'. N)r rotatorospathexistsrename)rsourcedests rrotatezBaseRotatingHandler.rotatebsC %ww~~f% &$'& LL &r)NFN) __name__ __module__ __qualname____doc__r!r&rrr$r-rrrr-s' EG  %&'rrc(eZdZdZ ddZdZdZy)RotatingFileHandlerz Handler for logging to a set of files, which switches from one file to the next when the current file reaches a certain size. Nc|dkDrd}d|vrtj|}tj||||||||_||_y)a Open the specified file and use it as the stream for logging. By default, the file grows indefinitely. You can specify particular values of maxBytes and backupCount to allow the file to rollover at a predetermined size. Rollover occurs whenever the current log file is nearly maxBytes in length. If backupCount is >= 1, the system will successively create new files with the same pathname as the base file, but with extensions ".1", ".2" etc. appended to it. For example, with a backupCount of 5 and a base file name of "app.log", you would get "app.log", "app.log.1", "app.log.2", ... through to "app.log.5". The file being written to is always "app.log" - when it gets filled up, it is closed and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc. exist, then they are renamed to "app.log.2", "app.log.3" etc. respectively. If maxBytes is zero, rollover never occurs. rabr r rN)io text_encodingrrmaxBytes backupCount)rrr r;r<r r rs rrzRotatingFileHandler.__init__|sW6 a<D d?''1H$$T8TH+0 % A  &rc6|jr!|jjd|_|jdkDr:t|jdz ddD]}|j d|j |fz}|j d|j |dzfz}t jj|sft jj|rt j|t j|||j |j dz}t jj|rt j||j|j ||js|j|_yy)z< Do a rollover, as described in __init__(). Nrz%s.%dz.1)streamcloser<ranger$ baseFilenamer'r(r)remover*r-r _open)risfndfns rrzRotatingFileHandler.doRollovers8 ;; KK   DK   a 4++a/B7,,W8I8I17M-MN,,W8I8I89A8?.?@77>>#&ww~~c* #IIc3'8(():):T)ABCww~~c" # KK))3 /zz**,DKrc|j|j|_|jdkDr|jj}|syd|j |z}|t |z|jk\rTt jj|jr*t jj|jsyyy)z Determine if rollover should occur. Basically, see if the supplied record would cause the file to exceed the size limit we have. rFz%s T) r@rEr;tellformatlenr'r(r)rCisfile)rrposmsgs rrz"RotatingFileHandler.shouldRollovers ;; **,DK ==1 ++""$C4;;v..CSX~.77>>$"3"34RWW^^DL]L]=^ r)r6rrNFN)r.r/r0r1rrrr2rrr4r4ws!DE48"'H'.rr4c6eZdZdZ ddZdZdZdZdZy) TimedRotatingFileHandlerz Handler for logging to a file, rotating the log file at certain timed intervals. If backupCount is > 0, when rollover is done, no more than backupCount files are kept - the oldest ones are deleted. Nc tj|}tj||d||| |j |_||_||_||_|j dk(rd|_ d|_ d} n=|j dk(rd|_ d |_ d } n|j d k(rd |_ d |_ d} n|j dk(s|j dk(rd|_ d|_ d} n|j jdrd|_ t|j dk7rtd|j z|j ddks|j ddkDrtd|j zt|j d|_d|_ d} ntd|j zt!j"| t j$|_|j|z|_ |j(}t*j,j/|rt+j0|t2} ntt5j4} |j7| |_y)Nr6r8Sr>z%Y-%m-%d_%H-%M-%Sz0(?H YY# j!8(DM$DK8H YY ! !# &,DM499~" !knrnwnw!wxxyy|c!TYYq\C%7 !PSWS\S\!\]] 1.DN$DK8HFRS S 8RXX6  0 $$ 77>>( #!(+ADIIK A..q1rc||jz}|jdk(s|jjdr|jrt j |}nt j |}|d}|d}|d}|d}|jt}nJ|jjdz|jjzdz|jjz}||dz|zdz|zz } | dkr| tz } |d zd z}|| z}|jjdrk|} | |jk7r@| |jkr|j| z } nd| z |jzd z} || tzz }||jtd zz z }n||jtz z }|jsK|d } t j |d } | | k7r)| s d }t j |d z d sd}nd }||z }|S)zI Work out the rollover time based on the specified time. rYrZrUrr>r?rW) rbr_rdr`rmgmtime localtimera _MIDNIGHThourminutesecondrg)r currentTimer#rp currentHour currentMinute currentSecond currentDay rotate_tsrday daysToWaitdstNow dstAtRolloveraddends rrnz(TimedRotatingFileHandler.computeRolloverst}}, 99 "dii&:&:3&?xxKK ,NN;/A$KaDMaDM1J{{"% "kk..3dkk6H6HH"LKK&&' kB.>"DAAvY(1n1  1_F yy##C( $..(T^^+%)^^c%9 %&Wt~~%=%A j944F$--)a-77$--)33882 $v 6r : ]*!!&#~~fTk:2>%&F!%f$F rc0ttj}||jk\rjtjj |j r@tjj|j s|j||_yyy)z Determine if rollover should occur. record is not used, as we are just comparing times, but it is needed so the method signatures are the same FT) rfrmror'r(r)rCrMrn)rrrps rrz'TimedRotatingFileHandler.shouldRolloveresh    ww~~d//0HYHY9Z#'"6"6q"9rctjj|j\}}tj|}g}|j q|dz}t |}|D][}|d||k(s ||d}|jj|s-|jtjj||]n|D]}|jj|} | s!|j |jdz| dz} tjj| |k(r0|jtjj|||jj|| jdz} | rt ||jkrg}|S|j|dt ||jz }|S)z Determine the files to delete when rolling over. More specific than the earlier method, which just used glob.glob(). N.rr>)r'r(splitrClistdirr!rLrk fullmatchappendjoinsearchbasenamestartr<sort) rdirNamebaseName fileNamesr#prefixplenfileNamercmrHs rgetFilesToDeletez)TimedRotatingFileHandler.getFilesToDeletexs GGMM$*;*;<JJw'  :: ^Fv;D%ET?f,%de_F}}..v6 bggll7H&EF & & MM((2**T%6%6%>#   ;; KK   DK D%%s+   a **, ! -zz**,DK..{;r)hr>rNFFNN) r.r/r0r1rrnrrrr2rrrQrQs2DE?CA2FKZ&$L&> C  C cd|jtjj||y)z Emit a record. If underlying file has changed, reopen the file before emitting the record to it. N)rrrrrs rrzWatchedFileHandler.emits&   v.r)r6NFN)r.r/r0r1rrrrr2rrrrs%&AF< #8/rrcBeZdZdZdZd dZdZdZdZdZ dZ d Z y ) SocketHandlera A handler class which writes logging records, in pickle format, to a streaming socket. The socket is kept open across logging calls. If the peer resets it, an attempt is made to reconnect on the next call. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. ctjj|||_||_|||_n ||f|_d|_d|_d|_d|_ d|_ d|_ y)a Initializes the handler with a specific host address and port. When the attribute *closeOnError* is set to True - if a socket error occurs, the socket is silently closed and then reopened on the next logging call. NFg?g>@g@) rHandlerrhostportaddresssock closeOnError retryTime retryStartretryMax retryFactorrrrs rrzSocketHandler.__init__si   &  <DL $>63E3EFF   g & t||,    s 4BB,ctj}|jd}n||jk\}|r |j|_d|_yy#t$r}|j|j |_nH|j |jz|_|j |jkDr|j|_||j z|_YywxYw)z Try to create a socket, using an exponential backoff with a max retry time. Thanks to Robert Olson for the original patch (SF #815911) which has been slightly refactored. NT) rmrrrrr retryPeriodrr)rnowattempts r createSocketzSocketHandler.createSocketGs iik >> !Gdnn,G  8 OO- !%  8>>)'+D$'+'7'7$:J:J'JD$''$--7+/==(!$t'7'7!7 8sABCCc|j|j|jr |jj|yy#t$r$|jj d|_YywxYw)z Send a pickled string to the socket. This function allows for partial sends which can happen when the network is busy. N)rrsendallrrArrs rsendzSocketHandler.sendcse 99      99 ! !!!$  ! !   !sA*A43A4c<|j}|r|j|}t|j}|j |d<d|d<d|d<|j ddt j|d}tjdt|}||zS)z Pickles the record in binary format with a length prefix, and returns it ready for transmission across the socket. rONargsexc_infomessager>z>L) rrKdict__dict__ getMessagepoppickledumpsstructpackrL)rreidummydrslens r makePicklezSocketHandler.makePicklevs __ KK'E  !$$&%& *  i LLA {{4Q(axrc|jr.|jr"|jjd|_ytjj ||y)z Handle an error during logging. An error has occurred during logging. Most likely cause - connection lost. Close the socket so that we can retry on the next event. N)rrrArrrrs rrzSocketHandler.handleErrors<    IIOO DI OO ' 'f 5rc |j|}|j|y#t$r|j|YywxYw)a Emit a record. Pickles the record and writes it to the socket in binary format. If there is an error with the socket, silently drop the packet. If there was a problem with the socket, re-establishes the socket. N)rrrr)rrrs rrzSocketHandler.emits= %'A IIaL %   V $ %s"%AAc|j |j}|rd|_|jtjj||j y#|j wxYwz$ Closes the socket. N)acquirerrArrreleaserrs rrAzSocketHandler.closesS  99D   OO ! !$ ' LLNDLLN AA''A9N)r>) r.r/r0r1rrrrrrrrAr2rrrrs/ 2"88!&, 6 % rrc"eZdZdZdZdZdZy)DatagramHandlera A handler class which writes logging records, in pickle format, to a datagram socket. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. c@tj|||d|_y)zP Initializes the handler with a specific host address and port. FN)rrrrs rrzDatagramHandler.__init__s tT40!rc|jtj}ntj}tj|tj}|S)zu The factory method of SocketHandler is here overridden to create a UDP socket (SOCK_DGRAM). )rrrAF_INET SOCK_DGRAM)rfamilyrs rrzDatagramHandler.makeSockets; 99 ^^F^^F MM&&"3"3 4rc|j|j|jj||jy)z Send a pickled string to a socket. This function no longer allows for partial sends which can happen when the network is busy - UDP does not guarantee delivery and can deliver packets out of sequence. N)rrsendtorrs rrzDatagramHandler.sends2 99      DLL)rN)r.r/r0r1rrrr2rrrrs "  *rrc zeZdZdZdZdZdZdZdZdZ dZ d Z dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZdZdZ dZ!dZ"dZ#eeee eeee e eeed Z$idededededed ed!e d"ed#ed$ed%ed&ed'ed(ed)e d*ed+eeeee e!e"e#d,Z%d-d.d/d0d1d2Z&d3e'fe d4fd5Z(d6Z)d7Z*d8Z+d9Z,d:Z-d;Z.d SysLogHandlera A handler class which sends formatted logging records to a syslog server. Based on Sam Rushing's syslog module: http://www.nightmare.com/squirl/python-ext/misc/syslog.py Contributed by Nicolas Untz (after which minor refactoring changes have been made). rr>r[rrrsrtrurv ) alertcritcriticaldebugemergerrerrorinfonoticepanicwarnwarningauthauthprivconsolecrondaemonftpkernlprmailnewsntpsecurityz solaris-cronsysloguseruucplocal0)local1local2local3local4local5local6local7rrrrr )DEBUGINFOWARNINGERRORCRITICAL localhostNctjj|||_||_||_d|_|jy)a Initialize a handler. If address is specified as a string, a UNIX socket is used. To log to a local syslogd, "SysLogHandler(address="/dev/log")" can be used. If facility is not specified, LOG_USER is used. If socktype is specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific socket type will be used. For Unix sockets, you can also specify a socktype of None, in which case socket.SOCK_DGRAM will be used, falling back to socket.SOCK_STREAM. N)rrrrfacilitysocktyperr)rrr5r6s rrzSysLogHandler.__init__Ms>   &       rcL|j}|tj}tjtj||_ |jj |||_y#t $r|jj |jtj}tjtj||_ |jj |||_Yy#t $r|jj wxYwwxYwr)r6rrrrrrAr)rr use_socktypes r_connect_unixsocketz!SysLogHandler._connect_unixsocketbs}}  !,,LmmFNNLA   KK   ((DM  KK   }}(!--L -- EDK  ##G, ,   !!#  s "A,,A)D#"C::%DD#cD|j}|j}t|trd|_ |j |yd|_|tj}|\}}tj||d|}|s t d|D]K}|\}}}} } dx} } tj|||} |tjk(r| j| n |  |_||_y#t $rYywxYw#t $r} | } | | jYd} ~ d} ~ wwxYw)af Try to create a socket and, if it's not a datagram socket, connect it to the other end. This method is called during handler initialization, but it's not regarded as an error if the other end isn't listening yet --- the method will be called again when emitting an event, if there is no socket at that point. TFNrz!getaddrinfo returns an empty list) rr6 isinstancestr unixsocketr9rrr getaddrinforrrA)rrr6rrressresafproto_sarrexcs rrzSysLogHandler.createSocketzs.,,== gs #"DO  ((1$DO!,, JD$%%dD!X>DABB-0*HeQ!!d%!==Xu=D6#5#55 R( DK$DM3  $%C' %s)C);C8) C54C58 DDDct|tr|j|}t|tr|j|}|dz|zS)z Encode the facility and priority. You can pass in strings or integers - if strings are passed, the facility_names and priority_names mapping dictionaries are used to convert them to integers. rr)r;r<facility_namespriority_names)rr5prioritys rencodePriorityzSysLogHandler.encodePrioritysG h $**84H h $**84HA ))rc|j |j}|rd|_|jtjj||j y#|j wxYwr)rrrArrrrs rrAzSysLogHandler.closesS  ;;D"  OO ! !$ ' LLNDLLNrc:|jj|dS)aK Map a logging level name to a key in the priority_names map. This is useful in two scenarios: when custom levels are being used, and in the case where you can't do a straightforward mapping by lowercasing the logging level name because of locale- specific issues (see SF #1524081). r) priority_mapget)r levelNames r mapPriorityzSysLogHandler.mapPrioritys  $$Y ::rTc |j|}|jr|j|z}|jr|dz }d|j|j|j |j z}|jd}|jd}||z}|js|j|jr |jj|y|j tj"k(r'|jj%||jy|jj'|y#t$rS|jj|j|j|jj|YywxYw#t($r|j+|YywxYw)z Emit a record. The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. z<%d>utf-8N)rKident append_nulrJr5rP levelnameencoderrr=rrrAr9rr6rrrrr)rrrOprios rrzSysLogHandler.emitsf %++f%Czzjj3&v D// 040@0@AQAQ0RTTD;;w'D**W%C*C;;!!#*KK$$S) &"3"33 ""3 5 ##C(*KK%%',,T\\:KK$$S)* %   V $ %s>CF"E#AF"'F"AFF"FF""F?>F?)1r.r/r0r1 LOG_EMERG LOG_ALERTLOG_CRITLOG_ERR LOG_WARNING LOG_NOTICELOG_INFO LOG_DEBUGLOG_KERNLOG_USERLOG_MAIL LOG_DAEMONLOG_AUTH LOG_SYSLOGLOG_LPRLOG_NEWSLOG_UUCPLOG_CRON LOG_AUTHPRIVLOG_FTPLOG_NTP LOG_SECURITY LOG_CONSOLE LOG_SOLCRON LOG_LOCAL0 LOG_LOCAL1 LOG_LOCAL2 LOG_LOCAL3 LOG_LOCAL4 LOG_LOCAL5 LOG_LOCAL6 LOG_LOCAL7rHrGrMSYSLOG_UDP_PORTrr9rrJrArPrUrVrr2rrrrs$IIHGKJHIHHHJHJGHHHLGGLKKJJJJJJJJ  N                                   ! "  # $#""""""1 N< L!,_="T*0,%\ * ; EJ&%rrc&eZdZdZ ddZdZdZy) SMTPHandlerzK A handler class which sends an SMTP email for each logging event. Ncrtjj|t|tt fr|\|_|_n|dc|_|_t|tt fr|\|_|_ nd|_||_ t|tr|g}||_ ||_ ||_||_y)a Initialize the handler. Initialize the instance with the from and to addresses and subject line of the email. To specify a non-standard SMTP port, use the (host, port) tuple format for the mailhost argument. To specify authentication credentials, supply a (username, password) tuple for the credentials argument. To specify the use of a secure protocol (TLS), pass in a tuple for the secure argument. This will only be used when authentication credentials are supplied. The tuple will be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the `ssl.SSLContext.load_cert_chain` method). A timeout in seconds can be specified for the SMTP connection (the default is one second). N)rrrr;listtuplemailhostmailportusernamepasswordfromaddrr<toaddrssubjectsecurer)rrrrr credentialsrrs rrzSMTPHandler.__init__s&   & hu .+3 (DM4=+3T (DM4= kD%= 1+6 (DM4= DM  gs #iG    rc|jS)z Determine the subject for the email. If you want to specify a subject line which is record-dependent, override this method. )rrs r getSubjectzSMTPHandler.getSubject s||rc ddl}ddlm}ddl}|j}|s |j }|j |j||j}|}|j|d<dj|j|d<|j||d<|jj|d <|j|j!||j"r|j$iddl} |j$d} |j$d } |j+| | } |j-|j/| |j-|j1|j"|j2|j5||j7y#t($rd} YwxYw#t($rd} YwxYw#t8$r|j;|YywxYw) zd Emit a record. Format the record and send it to the specified addressees. rN) EmailMessagerFrom,ToSubjectDater>)certfilekeyfilecontext)smtplib email.messager email.utilsr SMTP_PORTSMTPrrrrrrutilsry set_contentrKrrssl IndexError_create_stdlib_contextehlostarttlsloginr send_messagequitrr) rrrremailrsmtprOrrrrs rrzSMTPHandler.emit)s ' %  2 ==D((<< tT\\<JD.C--CK.CI!__V4C N++//1CK OODKK/ 0}};;*'"&++a.(#';;q>"88!)79GIIKMM'M2IIK 4==$--8   c " IIK!&'"&' &(#'( %   V $ %sUC1G4F F1B G F.+G-F..G1 F?<G>F??GGG)NNg@)r.r/r0r1rrrr2rrr|r|s9<"H-%rr|c6eZdZdZd dZdZdZdZdZdZ y) NTEventLogHandlera A handler class which sends events to the NT Event Log. Adds a registry entry for the specified application name. If no dllname is provided, win32service.pyd (which contains some basic message placeholders) is used. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own DLL which contains the message definitions you want to use in the event log. Nc tjj| ddl}ddl}||_||_|sxtjj|j j}tjj|d}tjj|dd}||_ ||_ |j j||||j"|_tj&|j(tj*|j(tj,|j.tj0|j"tj2|j"i|_y#t$r}t!|dddk7rYd}~d}~wwxYw#t6$rt9dd|_YywxYw)Nrzwin32service.pydwinerrorrtzWThe Python Win32 extensions for NT (service, event logging) appear not to be available.)rrrwin32evtlogutil win32evtlogappname_welur'r(r__file__rdllnamelogtypeAddSourceToRegistryrgetattrEVENTLOG_ERROR_TYPEdeftyper.EVENTLOG_INFORMATION_TYPEr/r0EVENTLOG_WARNING_TYPEr1r2typemap ImportErrorprint)rrrrrres rrzNTEventLogHandler.__init__bsX  &  /"DL(DJ''-- (;(;<''-- 3'',,wqz3FG"DL"DL  ..wI '::DL +"G"G +"G"G+"C"C +"A"A  +"A"A  DL  1j$/145   ? @DJ s=BFE8BF8 FFFFFF=<F=cy)ay Return the message ID for the event record. If you are using your own messages, you could do this by having the msg passed to the logger being an ID rather than a formatting string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in win32service.pyd. r>r2rs r getMessageIDzNTEventLogHandler.getMessageIDsrcy)z Return the event category for the record. Override this if you want to specify your own categories. This version returns 0. rr2rs rgetEventCategoryz"NTEventLogHandler.getEventCategorysrcb|jj|j|jS)a Return the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in __init__() to a dictionary which contains mappings for DEBUG, INFO, WARNING, ERROR and CRITICAL. If you are using your own levels you will either need to override this method or place a suitable dictionary in the handler's typemap attribute. )rrNlevelnorrs r getEventTypezNTEventLogHandler.getEventTypes#|| ==rc<|jrp |j|}|j|}|j|}|j |}|jj |j ||||gyy#t$r|j|YywxYw)z Emit a record. Determine the message ID, event category and event type. Then log the message in the NT event log. N) rrrrrK ReportEventrrr)rridcattyperOs rrzNTEventLogHandler.emits :: )&&v.++F3((0kk&) &&t||RdSEJ  )  ( )sA.A>>BBcBtjj|y)aS Clean up this handler. You can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the DLL name. N)rrrArs rrAzNTEventLogHandler.closes d#r)N Application) r.r/r0r1rrrrrrAr2rrrrXs&!F >)" $rrc.eZdZdZ ddZdZdZdZy) HTTPHandlerz^ A class which sends records to a web server, using either GET or POST semantics. Nctjj||j}|dvr t d|s | t d||_||_||_||_||_ ||_ y)zr Initialize the instance with the host, the request URL, and the method ("GET" or "POST") )GETPOSTzmethod must be GET or POSTNz3context parameter only makes sense with secure=True) rrrr^rerurlmethodrrr)rrrrrrrs rrzHTTPHandler.__init__sz   &  (9: :'-01 1   & rc|jS)z Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner. )rrs r mapLogRecordzHTTPHandler.mapLogRecords rcddl}|r)|jj||j}|S|jj |}|S)z get a HTTP[S]Connection. Override when a custom connection is required, for example if there is a proxy. rNr) http.clientclientHTTPSConnectionrHTTPConnection)rrrhttp connections r getConnectionzHTTPHandler.getConnectionsK  44T4<<4PJ33D9Jrc ddl}|j}|j||j}|j}|j j |j|}|jdk(r#|jddk\rd}nd}|d||fzz}|j|j||jd}|dk\r|d|}|jdk(r6|jd d |jd tt||jreddl} d |jzj!d } d| j#| j%j'dz} |jd| |j)|jdk(r |j+|j!d |j-y#t.$r|j1|YywxYw)zk Emit a record. Send the record to the web server as a percent-encoded dictionary rNr?&z%c%s:rz Content-typez!application/x-www-form-urlencodedzContent-lengthz%s:%srTzBasic ascii Authorization) urllib.parserrrrparse urlencoderrfind putrequest putheaderr<rLrbase64rX b64encodestripdecode endheadersr getresponserr) rrurllibrrrdataseprFrrs rrzHTTPHandler.emits # % 99D""45A((C<<))$*;*;F*CDD{{e#HHSMQ&CCFc4[00 LLc * #AAvBQx{{f$ N?A ,c#d)n=t///77@v//288:AA'JJ OQ/ LLN{{f$t{{7+, MMO %   V $ %sGGG0/G0)rFNN)r.r/r0r1rrrrr2rrrrs%KO( )%rrc.eZdZdZdZdZdZdZdZy)BufferingHandlerz A handler class which buffers logging records in memory. Whenever each record is added to the buffer, a check is made to see if the buffer should be flushed. If it should, then flush() is expected to do what's needed. c^tjj|||_g|_y)z> Initialize the handler with the buffer size. N)rrrcapacitybuffer)rrs rrzBufferingHandler.__init__#s$   &   rcFt|j|jk\S)z Should the handler flush its buffer? Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies. )rLrrrs r shouldFlushzBufferingHandler.shouldFlush+sDKK DMM12rc~|jj||j|r|jyy)z Emit a record. Append the record. If shouldFlush() tells us to, call flush() to process the buffer. N)rrrrrs rrzBufferingHandler.emit4s2 6"   F # JJL $rc|j |jj|jy#|jwxYw)zw Override to implement custom flushing behaviour. This version just zaps the buffer to empty. N)rrclearrrs rrzBufferingHandler.flush?s5   KK    LLNDLLNs =Ac |jtjj|y#tjj|wxYw)zp Close the handler. This version just flushes and chains to the parent class' close(). N)rrrrArs rrAzBufferingHandler.closeKs5  ( JJL OO ! !$ 'GOO ! !$ 's 2!AN) r.r/r0r1rrrrrAr2rrrrs  3   (rrcJeZdZdZej ddfdZdZdZdZ dZ y) MemoryHandlerz A handler class which buffers logging records in memory, periodically flushing them to a target handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen. NTcZtj||||_||_||_y)a; Initialize the handler with the buffer size, the level at which flushing should occur and an optional target. Note that without a target being set either here or via setTarget(), a MemoryHandler is no use to anyone! The ``flushOnClose`` argument is ``True`` for backward compatibility reasons - the old behaviour is that when the handler is closed, the buffer is flushed, even if the flush level hasn't been exceeded nor the capacity exceeded. To prevent this, set ``flushOnClose`` to ``False``. N)rr flushLeveltarget flushOnClose)rrrrrs rrzMemoryHandler.__init__\s* !!$1$ (rc|t|j|jk\xs|j|jk\S)zP Check for buffer full or a record at the flushLevel or higher. )rLrrrrrs rrzMemoryHandler.shouldFlushps3DKK DMM144??2 4rc~|j ||_|jy#|jwxYw)z: Set the target handler for this handler. N)rrr)rrs r setTargetzMemoryHandler.setTargetws,   DK LLNDLLNs*<c|j |jrF|jD]}|jj||jj |j y#|j wxYw)z For a MemoryHandler, flushing means just sending the buffered records to the target, if there is one. Override if you want different behaviour. The record buffer is only cleared if a target has been set. N)rrrhandlerrrs rrzMemoryHandler.flushs\  {{"kkFKK&&v.* !!# LLNDLLNs AA55Bc |jr|j|j d|_tj ||j y#|j wxYw#|j d|_tj ||j w#|j wxYwxYw)zi Flush, if appropriately configured, set the target to None and lose the buffer. N)rrrrrrArrs rrAzMemoryHandler.closes    LLN "  &&t,   LLN "  &&t,  s.A1AA.1CB0C0CC) r.r/r0r1rr1rrrrrAr2rrrrVs. -4MM$")(4"rrc(eZdZdZdZdZdZdZy) QueueHandlera This handler sends events to a queue. Typically, it would be used together with a multiprocessing Queue to centralise logging to file in one process (in a multi-process application), so as to avoid file write contention between processes. This code is new in Python 3.2, but this class can be copy pasted into user code for use with earlier Python versions. c^tjj|||_d|_y)zA Initialise an instance, using the passed queue. N)rrrqueuelistener)rr s rrzQueueHandler.__init__s$   &  rc:|jj|y)z Enqueue a record. The base implementation uses put_nowait. You may want to override this method if you want to use blocking, timeouts or custom queue implementations. N)r  put_nowaitrs renqueuezQueueHandler.enqueues f%rc|j|}tj|}||_||_d|_d|_d|_d|_|S)a Prepare a record for queuing. The object returned by this method is enqueued. The base implementation formats the record to merge the message and arguments, and removes unpickleable items from the record in-place. Specifically, it overwrites the record's `msg` and `message` attributes with the merged message (obtained by calling the handler's `format` method), and sets the `args`, `exc_info` and `exc_text` attributes to None. You might want to override this method if you want to convert the record to a dict or JSON string, or send a modified copy of the record while leaving the original intact. N)rKcopyrrOrrexc_text stack_info)rrrOs rpreparezQueueHandler.preparesP,kk&!6"    rc |j|j|y#t$r|j|YywxYw)zm Emit a record. Writes the LogRecord to the queue, preparing it for pickling first. N)rrrrrs rrzQueueHandler.emits9  % LLf- . %   V $ %s #AAN)r.r/r0r1rrrrr2rrr r s&B %rr cJeZdZdZdZdddZdZdZdZd Z d Z d Z d Z y) QueueListenerz This class implements an internal threaded listener which watches for LogRecords being added to a queue, removes them and passes them to a list of handlers for processing. NF)respect_handler_levelc<||_||_d|_||_y)zW Initialise an instance with the specified queue and handlers. N)r handlers_threadr)rr rrs rrzQueueListener.__init__s!     %:"rc8|jj|S)z Dequeue a record and return it, optionally blocking. The base implementation uses get. You may want to override this method if you want to use timeouts or work with custom queue implementations. )r rN)rblocks rdequeuezQueueListener.dequeueszz~~e$$rctj|jx|_}d|_|j y)z Start the listener. This starts up a background thread to monitor the queue for LogRecords to process. )rTN) threadingThread_monitorrrr)rrps rrzQueueListener.starts/%++4==AA q  rc|S)a Prepare a record for handling. This method just returns the passed-in record. You may want to override this method if you need to do any custom marshalling or manipulation of the record before passing it to the handlers. r2rs rrzQueueListener.prepares  rc|j|}|jD]>}|jsd}n|j|jk\}|s.|j |@y)z| Handle a record. This just loops through the handlers offering them the record to handle. TN)rrrrlevelr)rrhandlerprocesss rrzQueueListener.handlesOf%}}G-- ..GMM9v& %rc|j}t|d} |jd}||jur|r|j y|j ||r|j W#tj $rYywxYw)z Monitor the queue for records, and ask the handler to deal with them. This method runs on a separate, internal thread. The thread will terminate if it sees a sentinel object in the queue. task_doneTN)r hasattrr _sentinelr)rEmpty)rq has_task_doners rr"zQueueListener._monitor-s JJ;/  d+T^^+$  F# KKM;;  s1A1 #A11BBcN|jj|jy)z This is used to enqueue the sentinel record. The base implementation uses put_nowait. You may want to override this method if you want to use timeouts or work with custom queue implementations. N)r rr+rs renqueue_sentinelzQueueListener.enqueue_sentinelDs dnn-rcf|j|jjd|_y)a  Stop the listener. This asks the thread to terminate, and then waits for it to do so. Note that if you don't call this before your application exits, there may be some records still left on the queue, which won't be processed. N)r0rrrs rstopzQueueListener.stopNs'   r) r.r/r0r1r+rrrrrr"r0r2r2rrrrs9 I?D;% ' .. rr)(r1r9rrr'rrrmrhrlrrrr r rDEFAULT_TCP_LOGGING_PORTDEFAULT_UDP_LOGGING_PORTDEFAULT_HTTP_LOGGING_PORTDEFAULT_SOAP_LOGGING_PORTrzSYSLOG_TCP_PORTrzrrr4rQrrrrrr|rrrrr objectrr2rrr9sH"9888))  #"""!!  H''--H'TT-Tlw<2w#i?#iQc2eZdZdZdZdZddZdZdZdZ y)BaseRotatingHandlerz Base class for handlers that rotate log files at a certain point. Not meant to be instantiated directly. Instead, use RotatingFileHandler or TimedRotatingFileHandler. Ncxtjj||||||||_||_||_y)zA Use the specified filename for streamed logging modeencodingdelayerrorsN)logging FileHandler__init__r r rselffilenamer r r rs )/usr/lib64/python3.12/logging/handlers.pyrzBaseRotatingHandler.__init__6sB $$T8$.6e,2 % 4    c |j|r|jtjj ||y#t $r|j |YywxYw)z Emit a record. Output the record to the file, catering for rollover as described in doRollover(). N)shouldRollover doRolloverrremit Exception handleErrorrrecords rrzBaseRotatingHandler.emitAsR %""6*!    $ $T6 2 %   V $ %sAAA! A!cZt|js|}|S|j|}|S)a Modify the filename of a log file when rotating. This is provided so that a custom filename can be provided. The default implementation calls the 'namer' attribute of the handler, if it's callable, passing the default name to it. If the attribute isn't callable (the default is None), the name is returned unchanged. :param default_name: The default name for the log file. )callablenamer)r default_nameresults rrotation_filenamez%BaseRotatingHandler.rotation_filenameOs1 #!F ZZ -F rct|js7tjj |rtj ||yy|j||y)aL When rotating, rotate the current log. The default implementation calls the 'rotator' attribute of the handler, if it's callable, passing the source and dest arguments to it. If the attribute isn't callable (the default is None), the source is simply renamed to the destination. :param source: The source filename. This is normally the base filename, e.g. 'test.log' :param dest: The destination filename. This is normally what the source is rotated to, e.g. 'test.log.1'. N)r rotatorospathexistsrename)rsourcedests rrotatezBaseRotatingHandler.rotatebsC %ww~~f% &$'& LL &r)NFN) __name__ __module__ __qualname____doc__r!r&rrr$r-rrrr-s' EG  %&'rrc(eZdZdZ ddZdZdZy)RotatingFileHandlerz Handler for logging to a set of files, which switches from one file to the next when the current file reaches a certain size. Nc|dkDrd}d|vrtj|}tj||||||||_||_y)a Open the specified file and use it as the stream for logging. By default, the file grows indefinitely. You can specify particular values of maxBytes and backupCount to allow the file to rollover at a predetermined size. Rollover occurs whenever the current log file is nearly maxBytes in length. If backupCount is >= 1, the system will successively create new files with the same pathname as the base file, but with extensions ".1", ".2" etc. appended to it. For example, with a backupCount of 5 and a base file name of "app.log", you would get "app.log", "app.log.1", "app.log.2", ... through to "app.log.5". The file being written to is always "app.log" - when it gets filled up, it is closed and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc. exist, then they are renamed to "app.log.2", "app.log.3" etc. respectively. If maxBytes is zero, rollover never occurs. rabr r rN)io text_encodingrrmaxBytes backupCount)rrr r;r<r r rs rrzRotatingFileHandler.__init__|sW6 a<D d?''1H$$T8TH+0 % A  &rc6|jr!|jjd|_|jdkDr:t|jdz ddD]}|j d|j |fz}|j d|j |dzfz}t jj|sft jj|rt j|t j|||j |j dz}t jj|rt j||j|j ||js|j|_yy)z< Do a rollover, as described in __init__(). Nrz%s.%dz.1)streamcloser<ranger$ baseFilenamer'r(r)remover*r-r _open)risfndfns rrzRotatingFileHandler.doRollovers8 ;; KK   DK   a 4++a/B7,,W8I8I17M-MN,,W8I8I89A8?.?@77>>#&ww~~c* #IIc3'8(():):T)ABCww~~c" # KK))3 /zz**,DKrc|j|j|_|jdkDr|jj}|syd|j |z}|t |z|jk\rTt jj|jr*t jj|jsyyy)z Determine if rollover should occur. Basically, see if the supplied record would cause the file to exceed the size limit we have. rFz%s T) r@rEr;tellformatlenr'r(r)rCisfile)rrposmsgs rrz"RotatingFileHandler.shouldRollovers ;; **,DK ==1 ++""$C4;;v..CSX~.77>>$"3"34RWW^^DL]L]=^ r)r6rrNFN)r.r/r0r1rrrr2rrr4r4ws!DE48"'H'.rr4c6eZdZdZ ddZdZdZdZdZy) TimedRotatingFileHandlerz Handler for logging to a file, rotating the log file at certain timed intervals. If backupCount is > 0, when rollover is done, no more than backupCount files are kept - the oldest ones are deleted. Nc tj|}tj||d||| |j |_||_||_||_|j dk(rd|_ d|_ d} n=|j dk(rd|_ d |_ d } n|j d k(rd |_ d |_ d} n|j dk(s|j dk(rd|_ d|_ d} n|j jdrd|_ t|j dk7rtd|j z|j ddks|j ddkDrtd|j zt|j d|_d|_ d} ntd|j zt!j"| t j$|_|j|z|_ |j(}t*j,j/|rt+j0|t2} ntt5j4} |j7| |_y)Nr6r8Sr>z%Y-%m-%d_%H-%M-%Sz0(?H YY# j!8(DM$DK8H YY ! !# &,DM499~" !knrnwnw!wxxyy|c!TYYq\C%7 !PSWS\S\!\]] 1.DN$DK8HFRS S 8RXX6  0 $$ 77>>( #!(+ADIIK A..q1rc||jz}|jdk(s|jjdr|jrt j |}nt j |}|d}|d}|d}|d}|jt}nJ|jjdz|jjzdz|jjz}||dz|zdz|zz } | dkr| tz } |d zd z}|| z}|jjdrk|} | |jk7r@| |jkr|j| z } nd| z |jzd z} || tzz }||jtd zz z }n||jtz z }|jsK|d } t j |d } | | k7r)| s d }t j |d z d sd}nd }||z }|S)zI Work out the rollover time based on the specified time. rYrZrUrr>r?rW) rbr_rdr`rmgmtime localtimera _MIDNIGHThourminutesecondrg)r currentTimer#rp currentHour currentMinute currentSecond currentDay rotate_tsrday daysToWaitdstNow dstAtRolloveraddends rrnz(TimedRotatingFileHandler.computeRolloverst}}, 99 "dii&:&:3&?xxKK ,NN;/A$KaDMaDM1J{{"% "kk..3dkk6H6HH"LKK&&' kB.>"DAAvY(1n1  1_F yy##C( $..(T^^+%)^^c%9 %&Wt~~%=%A j944F$--)a-77$--)33882 $v 6r : ]*!!&#~~fTk:2>%&F!%f$F rc0ttj}||jk\rjtjj |j r@tjj|j s|j||_yyy)z Determine if rollover should occur. record is not used, as we are just comparing times, but it is needed so the method signatures are the same FT) rfrmror'r(r)rCrMrn)rrrps rrz'TimedRotatingFileHandler.shouldRolloveresh    ww~~d//0HYHY9Z#'"6"6q"9rctjj|j\}}tj|}g}|j q|dz}t |}|D][}|d||k(s ||d}|jj|s-|jtjj||]n|D]}|jj|} | s!|j |jdz| dz} tjj| |k(r0|jtjj|||jj|| jdz} | rt ||jkrg}|S|j|dt ||jz }|S)z Determine the files to delete when rolling over. More specific than the earlier method, which just used glob.glob(). N.rr>)r'r(splitrClistdirr!rLrk fullmatchappendjoinsearchbasenamestartr<sort) rdirNamebaseName fileNamesr#prefixplenfileNamercmrHs rgetFilesToDeletez)TimedRotatingFileHandler.getFilesToDeletexs GGMM$*;*;<JJw'  :: ^Fv;D%ET?f,%de_F}}..v6 bggll7H&EF & & MM((2**T%6%6%>#   ;; KK   DK D%%s+   a **, ! -zz**,DK..{;r)hr>rNFFNN) r.r/r0r1rrnrrrr2rrrQrQs2DE?CA2FKZ&$L&> C  C cd|jtjj||y)z Emit a record. If underlying file has changed, reopen the file before emitting the record to it. N)rrrrrs rrzWatchedFileHandler.emits&   v.r)r6NFN)r.r/r0r1rrrrr2rrrrs%&AF< #8/rrcBeZdZdZdZd dZdZdZdZdZ dZ d Z y ) SocketHandlera A handler class which writes logging records, in pickle format, to a streaming socket. The socket is kept open across logging calls. If the peer resets it, an attempt is made to reconnect on the next call. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. ctjj|||_||_|||_n ||f|_d|_d|_d|_d|_ d|_ d|_ y)a Initializes the handler with a specific host address and port. When the attribute *closeOnError* is set to True - if a socket error occurs, the socket is silently closed and then reopened on the next logging call. NFg?g>@g@) rHandlerrhostportaddresssock closeOnError retryTime retryStartretryMax retryFactorrrrs rrzSocketHandler.__init__si   &  <DL $>63E3EFF   g & t||,    s 4BB,ctj}|jd}n||jk\}|r |j|_d|_yy#t$r}|j|j |_nH|j |jz|_|j |jkDr|j|_||j z|_YywxYw)z Try to create a socket, using an exponential backoff with a max retry time. Thanks to Robert Olson for the original patch (SF #815911) which has been slightly refactored. NT) rmrrrrr retryPeriodrr)rnowattempts r createSocketzSocketHandler.createSocketGs iik >> !Gdnn,G  8 OO- !%  8>>)'+D$'+'7'7$:J:J'JD$''$--7+/==(!$t'7'7!7 8sABCCc|j|j|jr |jj|yy#t$r$|jj d|_YywxYw)z Send a pickled string to the socket. This function allows for partial sends which can happen when the network is busy. N)rrsendallrrArrs rsendzSocketHandler.sendcse 99      99 ! !!!$  ! !   !sA*A43A4c<|j}|r|j|}t|j}|j |d<d|d<d|d<|j ddt j|d}tjdt|}||zS)z Pickles the record in binary format with a length prefix, and returns it ready for transmission across the socket. rONargsexc_infomessager>z>L) rrKdict__dict__ getMessagepoppickledumpsstructpackrL)rreidummydrslens r makePicklezSocketHandler.makePicklevs __ KK'E  !$$&%& *  i LLA {{4Q(axrc|jr.|jr"|jjd|_ytjj ||y)z Handle an error during logging. An error has occurred during logging. Most likely cause - connection lost. Close the socket so that we can retry on the next event. N)rrrArrrrs rrzSocketHandler.handleErrors<    IIOO DI OO ' 'f 5rc |j|}|j|y#t$r|j|YywxYw)a Emit a record. Pickles the record and writes it to the socket in binary format. If there is an error with the socket, silently drop the packet. If there was a problem with the socket, re-establishes the socket. N)rrrr)rrrs rrzSocketHandler.emits= %'A IIaL %   V $ %s"%AAc|j |j}|rd|_|jtjj||j y#|j wxYwz$ Closes the socket. N)acquirerrArrreleaserrs rrAzSocketHandler.closesS  99D   OO ! !$ ' LLNDLLN AA''A9N)r>) r.r/r0r1rrrrrrrrAr2rrrrs/ 2"88!&, 6 % rrc"eZdZdZdZdZdZy)DatagramHandlera A handler class which writes logging records, in pickle format, to a datagram socket. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. c@tj|||d|_y)zP Initializes the handler with a specific host address and port. FN)rrrrs rrzDatagramHandler.__init__s tT40!rc|jtj}ntj}tj|tj}|S)zu The factory method of SocketHandler is here overridden to create a UDP socket (SOCK_DGRAM). )rrrAF_INET SOCK_DGRAM)rfamilyrs rrzDatagramHandler.makeSockets; 99 ^^F^^F MM&&"3"3 4rc|j|j|jj||jy)z Send a pickled string to a socket. This function no longer allows for partial sends which can happen when the network is busy - UDP does not guarantee delivery and can deliver packets out of sequence. N)rrsendtorrs rrzDatagramHandler.sends2 99      DLL)rN)r.r/r0r1rrrr2rrrrs "  *rrc zeZdZdZdZdZdZdZdZdZ dZ d Z dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZdZdZ dZ!dZ"dZ#eeee eeee e eeed Z$idededededed ed!e d"ed#ed$ed%ed&ed'ed(ed)e d*ed+eeeee e!e"e#d,Z%d-d.d/d0d1d2Z&d3e'fe d4fd5Z(d6Z)d7Z*d8Z+d9Z,d:Z-d;Z.d SysLogHandlera A handler class which sends formatted logging records to a syslog server. Based on Sam Rushing's syslog module: http://www.nightmare.com/squirl/python-ext/misc/syslog.py Contributed by Nicolas Untz (after which minor refactoring changes have been made). rr>r[rrrsrtrurv ) alertcritcriticaldebugemergerrerrorinfonoticepanicwarnwarningauthauthprivconsolecrondaemonftpkernlprmailnewsntpsecurityz solaris-cronsysloguseruucplocal0)local1local2local3local4local5local6local7rrrrr )DEBUGINFOWARNINGERRORCRITICAL localhostNctjj|||_||_||_d|_|jy)a Initialize a handler. If address is specified as a string, a UNIX socket is used. To log to a local syslogd, "SysLogHandler(address="/dev/log")" can be used. If facility is not specified, LOG_USER is used. If socktype is specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific socket type will be used. For Unix sockets, you can also specify a socktype of None, in which case socket.SOCK_DGRAM will be used, falling back to socket.SOCK_STREAM. N)rrrrfacilitysocktyperr)rrr5r6s rrzSysLogHandler.__init__Ms>   &       rcL|j}|tj}tjtj||_ |jj |||_y#t $r|jj |jtj}tjtj||_ |jj |||_Yy#t $r|jj wxYwwxYwr)r6rrrrrrAr)rr use_socktypes r_connect_unixsocketz!SysLogHandler._connect_unixsocketbs}}  !,,LmmFNNLA   KK   ((DM  KK   }}(!--L -- EDK  ##G, ,   !!#  s "A,,A)D#"C::%DD#cD|j}|j}t|trd|_ |j |yd|_|tj}|\}}tj||d|}|s t d|D]K}|\}}}} } dx} } tj|||} |tjk(r| j| n |  |_||_y#t $rYywxYw#t $r} | } | | jYd} ~ d} ~ wwxYw)af Try to create a socket and, if it's not a datagram socket, connect it to the other end. This method is called during handler initialization, but it's not regarded as an error if the other end isn't listening yet --- the method will be called again when emitting an event, if there is no socket at that point. TFNrz!getaddrinfo returns an empty list) rr6 isinstancestr unixsocketr9rrr getaddrinforrrA)rrr6rrressresafproto_sarrexcs rrzSysLogHandler.createSocketzs.,,== gs #"DO  ((1$DO!,, JD$%%dD!X>DABB-0*HeQ!!d%!==Xu=D6#5#55 R( DK$DM3  $%C' %s)C);C8) C54C58 DDDct|tr|j|}t|tr|j|}|dz|zS)z Encode the facility and priority. You can pass in strings or integers - if strings are passed, the facility_names and priority_names mapping dictionaries are used to convert them to integers. rr)r;r<facility_namespriority_names)rr5prioritys rencodePriorityzSysLogHandler.encodePrioritysG h $**84H h $**84HA ))rc|j |j}|rd|_|jtjj||j y#|j wxYwr)rrrArrrrs rrAzSysLogHandler.closesS  ;;D"  OO ! !$ ' LLNDLLNrc:|jj|dS)aK Map a logging level name to a key in the priority_names map. This is useful in two scenarios: when custom levels are being used, and in the case where you can't do a straightforward mapping by lowercasing the logging level name because of locale- specific issues (see SF #1524081). r) priority_mapget)r levelNames r mapPriorityzSysLogHandler.mapPrioritys  $$Y ::rTc |j|}|jr|j|z}|jr|dz }d|j|j|j |j z}|jd}|jd}||z}|js|j|jr |jj|y|j tj"k(r'|jj%||jy|jj'|y#t$rS|jj|j|j|jj|YywxYw#t($r|j+|YywxYw)z Emit a record. The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. z<%d>utf-8N)rKident append_nulrJr5rP levelnameencoderrr=rrrAr9rr6rrrrr)rrrOprios rrzSysLogHandler.emitsf %++f%Czzjj3&v D// 040@0@AQAQ0RTTD;;w'D**W%C*C;;!!#*KK$$S) &"3"33 ""3 5 ##C(*KK%%',,T\\:KK$$S)* %   V $ %s>CF"E#AF"'F"AFF"FF""F?>F?)1r.r/r0r1 LOG_EMERG LOG_ALERTLOG_CRITLOG_ERR LOG_WARNING LOG_NOTICELOG_INFO LOG_DEBUGLOG_KERNLOG_USERLOG_MAIL LOG_DAEMONLOG_AUTH LOG_SYSLOGLOG_LPRLOG_NEWSLOG_UUCPLOG_CRON LOG_AUTHPRIVLOG_FTPLOG_NTP LOG_SECURITY LOG_CONSOLE LOG_SOLCRON LOG_LOCAL0 LOG_LOCAL1 LOG_LOCAL2 LOG_LOCAL3 LOG_LOCAL4 LOG_LOCAL5 LOG_LOCAL6 LOG_LOCAL7rHrGrMSYSLOG_UDP_PORTrr9rrJrArPrUrVrr2rrrrs$IIHGKJHIHHHJHJGHHHLGGLKKJJJJJJJJ  N                                   ! "  # $#""""""1 N< L!,_="T*0,%\ * ; EJ&%rrc&eZdZdZ ddZdZdZy) SMTPHandlerzK A handler class which sends an SMTP email for each logging event. Ncrtjj|t|tt fr|\|_|_n|dc|_|_t|tt fr|\|_|_ nd|_||_ t|tr|g}||_ ||_ ||_||_y)a Initialize the handler. Initialize the instance with the from and to addresses and subject line of the email. To specify a non-standard SMTP port, use the (host, port) tuple format for the mailhost argument. To specify authentication credentials, supply a (username, password) tuple for the credentials argument. To specify the use of a secure protocol (TLS), pass in a tuple for the secure argument. This will only be used when authentication credentials are supplied. The tuple will be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the `ssl.SSLContext.load_cert_chain` method). A timeout in seconds can be specified for the SMTP connection (the default is one second). N)rrrr;listtuplemailhostmailportusernamepasswordfromaddrr<toaddrssubjectsecurer)rrrrr credentialsrrs rrzSMTPHandler.__init__s&   & hu .+3 (DM4=+3T (DM4= kD%= 1+6 (DM4= DM  gs #iG    rc|jS)z Determine the subject for the email. If you want to specify a subject line which is record-dependent, override this method. )rrs r getSubjectzSMTPHandler.getSubject s||rc ddl}ddlm}ddl}|j}|s |j }|j |j||j}|}|j|d<dj|j|d<|j||d<|jj|d <|j|j!||j"r|j$iddl} |j$d} |j$d } |j+| | } |j-|j/| |j-|j1|j"|j2|j5||j7y#t($rd} YwxYw#t($rd} YwxYw#t8$r|j;|YywxYw) zd Emit a record. Format the record and send it to the specified addressees. rN) EmailMessagerFrom,ToSubjectDater>)certfilekeyfilecontext)smtplib email.messager email.utilsr SMTP_PORTSMTPrrrrrrutilsry set_contentrKrrssl IndexError_create_stdlib_contextehlostarttlsloginr send_messagequitrr) rrrremailrsmtprOrrrrs rrzSMTPHandler.emit)s ' %  2 ==D((<< tT\\<JD.C--CK.CI!__V4C N++//1CK OODKK/ 0}};;*'"&++a.(#';;q>"88!)79GIIKMM'M2IIK 4==$--8   c " IIK!&'"&' &(#'( %   V $ %sUC1G4F F1B G F.+G-F..G1 F?<G>F??GGG)NNg@)r.r/r0r1rrrr2rrr|r|s9<"H-%rr|c6eZdZdZd dZdZdZdZdZdZ y) NTEventLogHandlera A handler class which sends events to the NT Event Log. Adds a registry entry for the specified application name. If no dllname is provided, win32service.pyd (which contains some basic message placeholders) is used. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own DLL which contains the message definitions you want to use in the event log. Nc tjj| ddl}ddl}||_||_|sxtjj|j j}tjj|d}tjj|dd}||_ ||_ |j j||||j"|_tj&|j(tj*|j(tj,|j.tj0|j"tj2|j"i|_y#t$r}t!|dddk7rYd}~d}~wwxYw#t6$rt9dd|_YywxYw)Nrzwin32service.pydwinerrorrtzWThe Python Win32 extensions for NT (service, event logging) appear not to be available.)rrrwin32evtlogutil win32evtlogappname_welur'r(r__file__rdllnamelogtypeAddSourceToRegistryrgetattrEVENTLOG_ERROR_TYPEdeftyper.EVENTLOG_INFORMATION_TYPEr/r0EVENTLOG_WARNING_TYPEr1r2typemap ImportErrorprint)rrrrrres rrzNTEventLogHandler.__init__bsX  &  /"DL(DJ''-- (;(;<''-- 3'',,wqz3FG"DL"DL  ..wI '::DL +"G"G +"G"G+"C"C +"A"A  +"A"A  DL  1j$/145   ? @DJ s=BFE8BF8 FFFFFF=<F=cy)ay Return the message ID for the event record. If you are using your own messages, you could do this by having the msg passed to the logger being an ID rather than a formatting string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in win32service.pyd. r>r2rs r getMessageIDzNTEventLogHandler.getMessageIDsrcy)z Return the event category for the record. Override this if you want to specify your own categories. This version returns 0. rr2rs rgetEventCategoryz"NTEventLogHandler.getEventCategorysrcb|jj|j|jS)a Return the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in __init__() to a dictionary which contains mappings for DEBUG, INFO, WARNING, ERROR and CRITICAL. If you are using your own levels you will either need to override this method or place a suitable dictionary in the handler's typemap attribute. )rrNlevelnorrs r getEventTypezNTEventLogHandler.getEventTypes#|| ==rc<|jrp |j|}|j|}|j|}|j |}|jj |j ||||gyy#t$r|j|YywxYw)z Emit a record. Determine the message ID, event category and event type. Then log the message in the NT event log. N) rrrrrK ReportEventrrr)rridcattyperOs rrzNTEventLogHandler.emits :: )&&v.++F3((0kk&) &&t||RdSEJ  )  ( )sA.A>>BBcBtjj|y)aS Clean up this handler. You can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the DLL name. N)rrrArs rrAzNTEventLogHandler.closes d#r)N Application) r.r/r0r1rrrrrrAr2rrrrXs&!F >)" $rrc.eZdZdZ ddZdZdZdZy) HTTPHandlerz^ A class which sends records to a web server, using either GET or POST semantics. Nctjj||j}|dvr t d|s | t d||_||_||_||_||_ ||_ y)zr Initialize the instance with the host, the request URL, and the method ("GET" or "POST") )GETPOSTzmethod must be GET or POSTNz3context parameter only makes sense with secure=True) rrrr^rerurlmethodrrr)rrrrrrrs rrzHTTPHandler.__init__sz   &  (9: :'-01 1   & rc|jS)z Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner. )rrs r mapLogRecordzHTTPHandler.mapLogRecords rcddl}|r)|jj||j}|S|jj |}|S)z get a HTTP[S]Connection. Override when a custom connection is required, for example if there is a proxy. rNr) http.clientclientHTTPSConnectionrHTTPConnection)rrrhttp connections r getConnectionzHTTPHandler.getConnectionsK  44T4<<4PJ33D9Jrc ddl}|j}|j||j}|j}|j j |j|}|jdk(r#|jddk\rd}nd}|d||fzz}|j|j||jd}|dk\r|d|}|jdk(r6|jd d |jd tt||jreddl} d |jzj!d } d| j#| j%j'dz} |jd| |j)|jdk(r |j+|j!d |j-y#t.$r|j1|YywxYw)zk Emit a record. Send the record to the web server as a percent-encoded dictionary rNr?&z%c%s:rz Content-typez!application/x-www-form-urlencodedzContent-lengthz%s:%srTzBasic ascii Authorization) urllib.parserrrrparse urlencoderrfind putrequest putheaderr<rLrbase64rX b64encodestripdecode endheadersr getresponserr) rrurllibrrrdataseprFrrs rrzHTTPHandler.emits # % 99D""45A((C<<))$*;*;F*CDD{{e#HHSMQ&CCFc4[00 LLc * #AAvBQx{{f$ N?A ,c#d)n=t///77@v//288:AA'JJ OQ/ LLN{{f$t{{7+, MMO %   V $ %sGGG0/G0)rFNN)r.r/r0r1rrrrr2rrrrs%KO( )%rrc.eZdZdZdZdZdZdZdZy)BufferingHandlerz A handler class which buffers logging records in memory. Whenever each record is added to the buffer, a check is made to see if the buffer should be flushed. If it should, then flush() is expected to do what's needed. c^tjj|||_g|_y)z> Initialize the handler with the buffer size. N)rrrcapacitybuffer)rrs rrzBufferingHandler.__init__#s$   &   rcFt|j|jk\S)z Should the handler flush its buffer? Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies. )rLrrrs r shouldFlushzBufferingHandler.shouldFlush+sDKK DMM12rc~|jj||j|r|jyy)z Emit a record. Append the record. If shouldFlush() tells us to, call flush() to process the buffer. N)rrrrrs rrzBufferingHandler.emit4s2 6"   F # JJL $rc|j |jj|jy#|jwxYw)zw Override to implement custom flushing behaviour. This version just zaps the buffer to empty. N)rrclearrrs rrzBufferingHandler.flush?s5   KK    LLNDLLNs =Ac |jtjj|y#tjj|wxYw)zp Close the handler. This version just flushes and chains to the parent class' close(). N)rrrrArs rrAzBufferingHandler.closeKs5  ( JJL OO ! !$ 'GOO ! !$ 's 2!AN) r.r/r0r1rrrrrAr2rrrrs  3   (rrcJeZdZdZej ddfdZdZdZdZ dZ y) MemoryHandlerz A handler class which buffers logging records in memory, periodically flushing them to a target handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen. NTcZtj||||_||_||_y)a; Initialize the handler with the buffer size, the level at which flushing should occur and an optional target. Note that without a target being set either here or via setTarget(), a MemoryHandler is no use to anyone! The ``flushOnClose`` argument is ``True`` for backward compatibility reasons - the old behaviour is that when the handler is closed, the buffer is flushed, even if the flush level hasn't been exceeded nor the capacity exceeded. To prevent this, set ``flushOnClose`` to ``False``. N)rr flushLeveltarget flushOnClose)rrrrrs rrzMemoryHandler.__init__\s* !!$1$ (rc|t|j|jk\xs|j|jk\S)zP Check for buffer full or a record at the flushLevel or higher. )rLrrrrrs rrzMemoryHandler.shouldFlushps3DKK DMM144??2 4rc~|j ||_|jy#|jwxYw)z: Set the target handler for this handler. N)rrr)rrs r setTargetzMemoryHandler.setTargetws,   DK LLNDLLNs*<c|j |jrF|jD]}|jj||jj |j y#|j wxYw)z For a MemoryHandler, flushing means just sending the buffered records to the target, if there is one. Override if you want different behaviour. The record buffer is only cleared if a target has been set. N)rrrhandlerrrs rrzMemoryHandler.flushs\  {{"kkFKK&&v.* !!# LLNDLLNs AA55Bc |jr|j|j d|_tj ||j y#|j wxYw#|j d|_tj ||j w#|j wxYwxYw)zi Flush, if appropriately configured, set the target to None and lose the buffer. N)rrrrrrArrs rrAzMemoryHandler.closes    LLN "  &&t,   LLN "  &&t,  s.A1AA.1CB0C0CC) r.r/r0r1rr1rrrrrAr2rrrrVs. -4MM$")(4"rrc(eZdZdZdZdZdZdZy) QueueHandlera This handler sends events to a queue. Typically, it would be used together with a multiprocessing Queue to centralise logging to file in one process (in a multi-process application), so as to avoid file write contention between processes. This code is new in Python 3.2, but this class can be copy pasted into user code for use with earlier Python versions. c^tjj|||_d|_y)zA Initialise an instance, using the passed queue. N)rrrqueuelistener)rr s rrzQueueHandler.__init__s$   &  rc:|jj|y)z Enqueue a record. The base implementation uses put_nowait. You may want to override this method if you want to use blocking, timeouts or custom queue implementations. N)r  put_nowaitrs renqueuezQueueHandler.enqueues f%rc|j|}tj|}||_||_d|_d|_d|_d|_|S)a Prepare a record for queuing. The object returned by this method is enqueued. The base implementation formats the record to merge the message and arguments, and removes unpickleable items from the record in-place. Specifically, it overwrites the record's `msg` and `message` attributes with the merged message (obtained by calling the handler's `format` method), and sets the `args`, `exc_info` and `exc_text` attributes to None. You might want to override this method if you want to convert the record to a dict or JSON string, or send a modified copy of the record while leaving the original intact. N)rKcopyrrOrrexc_text stack_info)rrrOs rpreparezQueueHandler.preparesP,kk&!6"    rc |j|j|y#t$r|j|YywxYw)zm Emit a record. Writes the LogRecord to the queue, preparing it for pickling first. N)rrrrrs rrzQueueHandler.emits9  % LLf- . %   V $ %s #AAN)r.r/r0r1rrrrr2rrr r s&B %rr cJeZdZdZdZdddZdZdZdZd Z d Z d Z d Z y) QueueListenerz This class implements an internal threaded listener which watches for LogRecords being added to a queue, removes them and passes them to a list of handlers for processing. NF)respect_handler_levelc<||_||_d|_||_y)zW Initialise an instance with the specified queue and handlers. N)r handlers_threadr)rr rrs rrzQueueListener.__init__s!     %:"rc8|jj|S)z Dequeue a record and return it, optionally blocking. The base implementation uses get. You may want to override this method if you want to use timeouts or work with custom queue implementations. )r rN)rblocks rdequeuezQueueListener.dequeueszz~~e$$rctj|jx|_}d|_|j y)z Start the listener. This starts up a background thread to monitor the queue for LogRecords to process. )rTN) threadingThread_monitorrrr)rrps rrzQueueListener.starts/%++4==AA q  rc|S)a Prepare a record for handling. This method just returns the passed-in record. You may want to override this method if you need to do any custom marshalling or manipulation of the record before passing it to the handlers. r2rs rrzQueueListener.prepares  rc|j|}|jD]>}|jsd}n|j|jk\}|s.|j |@y)z| Handle a record. This just loops through the handlers offering them the record to handle. TN)rrrrlevelr)rrhandlerprocesss rrzQueueListener.handlesOf%}}G-- ..GMM9v& %rc|j}t|d} |jd}||jur|r|j y|j ||r|j W#tj $rYywxYw)z Monitor the queue for records, and ask the handler to deal with them. This method runs on a separate, internal thread. The thread will terminate if it sees a sentinel object in the queue. task_doneTN)r hasattrr _sentinelr)rEmpty)rq has_task_doners rr"zQueueListener._monitor-s JJ;/  d+T^^+$  F# KKM;;  s1A1 #A11BBcN|jj|jy)z This is used to enqueue the sentinel record. The base implementation uses put_nowait. You may want to override this method if you want to use timeouts or work with custom queue implementations. N)r rr+rs renqueue_sentinelzQueueListener.enqueue_sentinelDs dnn-rcf|j|jjd|_y)a  Stop the listener. This asks the thread to terminate, and then waits for it to do so. Note that if you don't call this before your application exits, there may be some records still left on the queue, which won't be processed. N)r0rrrs rstopzQueueListener.stopNs'   r) r.r/r0r1r+rrrrrr"r0r2r2rrrrs9 I?D;% ' .. rr)(r1r9rrr'rrrmrhrlrrrr r rDEFAULT_TCP_LOGGING_PORTDEFAULT_UDP_LOGGING_PORTDEFAULT_HTTP_LOGGING_PORTDEFAULT_SOAP_LOGGING_PORTrzSYSLOG_TCP_PORTrzrrr4rQrrrrrr|rrrrr objectrr2rrr9sH"9888))  #"""!!  H''--H'TT-Tlw<2w= 1, the system will successively create new files with the same pathname as the base file, but with extensions ".1", ".2" etc. appended to it. For example, with a backupCount of 5 and a base file name of "app.log", you would get "app.log", "app.log.1", "app.log.2", ... through to "app.log.5". The file being written to is always "app.log" - when it gets filled up, it is closed and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc. exist, then they are renamed to "app.log.2", "app.log.3" etc. respectively. If maxBytes is zero, rollover never occurs. """ # If rotation/rollover is wanted, it doesn't make sense to use another # mode. If for example 'w' were specified, then if there were multiple # runs of the calling application, the logs from previous runs would be # lost if the 'w' is respected, because the log file would be truncated # on each run. if maxBytes > 0: mode = 'a' BaseRotatingHandler.__init__(self, filename, mode, encoding, delay) self.maxBytes = maxBytes self.backupCount = backupCount def doRollover(self): """ Do a rollover, as described in __init__(). """ if self.stream: self.stream.close() self.stream = None if self.backupCount > 0: for i in range(self.backupCount - 1, 0, -1): sfn = "%s.%d" % (self.baseFilename, i) dfn = "%s.%d" % (self.baseFilename, i + 1) if os.path.exists(sfn): #print "%s -> %s" % (sfn, dfn) if os.path.exists(dfn): os.remove(dfn) os.rename(sfn, dfn) dfn = self.baseFilename + ".1" if os.path.exists(dfn): os.remove(dfn) # Issue 18940: A file may not have been created if delay is True. if os.path.exists(self.baseFilename): os.rename(self.baseFilename, dfn) if not self.delay: self.stream = self._open() def shouldRollover(self, record): """ Determine if rollover should occur. Basically, see if the supplied record would cause the file to exceed the size limit we have. """ if self.stream is None: # delay was set... self.stream = self._open() if self.maxBytes > 0: # are we rolling over? msg = "%s\n" % self.format(record) self.stream.seek(0, 2) #due to non-posix-compliant Windows feature if self.stream.tell() + len(msg) >= self.maxBytes: return 1 return 0 class TimedRotatingFileHandler(BaseRotatingHandler): """ Handler for logging to a file, rotating the log file at certain timed intervals. If backupCount is > 0, when rollover is done, no more than backupCount files are kept - the oldest ones are deleted. """ def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False): BaseRotatingHandler.__init__(self, filename, 'a', encoding, delay) self.when = when.upper() self.backupCount = backupCount self.utc = utc # Calculate the real rollover interval, which is just the number of # seconds between rollovers. Also set the filename suffix used when # a rollover occurs. Current 'when' events supported: # S - Seconds # M - Minutes # H - Hours # D - Days # midnight - roll over at midnight # W{0-6} - roll over on a certain day; 0 - Monday # # Case of the 'when' specifier is not important; lower or upper case # will work. if self.when == 'S': self.interval = 1 # one second self.suffix = "%Y-%m-%d_%H-%M-%S" self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}$" elif self.when == 'M': self.interval = 60 # one minute self.suffix = "%Y-%m-%d_%H-%M" self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}$" elif self.when == 'H': self.interval = 60 * 60 # one hour self.suffix = "%Y-%m-%d_%H" self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}$" elif self.when == 'D' or self.when == 'MIDNIGHT': self.interval = 60 * 60 * 24 # one day self.suffix = "%Y-%m-%d" self.extMatch = r"^\d{4}-\d{2}-\d{2}$" elif self.when.startswith('W'): self.interval = 60 * 60 * 24 * 7 # one week if len(self.when) != 2: raise ValueError("You must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s" % self.when) if self.when[1] < '0' or self.when[1] > '6': raise ValueError("Invalid day specified for weekly rollover: %s" % self.when) self.dayOfWeek = int(self.when[1]) self.suffix = "%Y-%m-%d" self.extMatch = r"^\d{4}-\d{2}-\d{2}$" else: raise ValueError("Invalid rollover interval specified: %s" % self.when) self.extMatch = re.compile(self.extMatch) self.interval = self.interval * interval # multiply by units requested if os.path.exists(filename): t = os.stat(filename)[ST_MTIME] else: t = int(time.time()) self.rolloverAt = self.computeRollover(t) def computeRollover(self, currentTime): """ Work out the rollover time based on the specified time. """ result = currentTime + self.interval # If we are rolling over at midnight or weekly, then the interval is already known. # What we need to figure out is WHEN the next interval is. In other words, # if you are rolling over at midnight, then your base interval is 1 day, # but you want to start that one day clock at midnight, not now. So, we # have to fudge the rolloverAt value in order to trigger the first rollover # at the right time. After that, the regular interval will take care of # the rest. Note that this code doesn't care about leap seconds. :) if self.when == 'MIDNIGHT' or self.when.startswith('W'): # This could be done with less code, but I wanted it to be clear if self.utc: t = time.gmtime(currentTime) else: t = time.localtime(currentTime) currentHour = t[3] currentMinute = t[4] currentSecond = t[5] # r is the number of seconds left between now and midnight r = _MIDNIGHT - ((currentHour * 60 + currentMinute) * 60 + currentSecond) result = currentTime + r # If we are rolling over on a certain day, add in the number of days until # the next rollover, but offset by 1 since we just calculated the time # until the next day starts. There are three cases: # Case 1) The day to rollover is today; in this case, do nothing # Case 2) The day to rollover is further in the interval (i.e., today is # day 2 (Wednesday) and rollover is on day 6 (Sunday). Days to # next rollover is simply 6 - 2 - 1, or 3. # Case 3) The day to rollover is behind us in the interval (i.e., today # is day 5 (Saturday) and rollover is on day 3 (Thursday). # Days to rollover is 6 - 5 + 3, or 4. In this case, it's the # number of days left in the current week (1) plus the number # of days in the next week until the rollover day (3). # The calculations described in 2) and 3) above need to have a day added. # This is because the above time calculation takes us to midnight on this # day, i.e. the start of the next day. if self.when.startswith('W'): day = t[6] # 0 is Monday if day != self.dayOfWeek: if day < self.dayOfWeek: daysToWait = self.dayOfWeek - day else: daysToWait = 6 - day + self.dayOfWeek + 1 newRolloverAt = result + (daysToWait * (60 * 60 * 24)) if not self.utc: dstNow = t[-1] dstAtRollover = time.localtime(newRolloverAt)[-1] if dstNow != dstAtRollover: if not dstNow: # DST kicks in before next rollover, so we need to deduct an hour addend = -3600 else: # DST bows out before next rollover, so we need to add an hour addend = 3600 newRolloverAt += addend result = newRolloverAt return result def shouldRollover(self, record): """ Determine if rollover should occur. record is not used, as we are just comparing times, but it is needed so the method signatures are the same """ t = int(time.time()) if t >= self.rolloverAt: return 1 #print "No need to rollover: %d, %d" % (t, self.rolloverAt) return 0 def getFilesToDelete(self): """ Determine the files to delete when rolling over. More specific than the earlier method, which just used glob.glob(). """ dirName, baseName = os.path.split(self.baseFilename) fileNames = os.listdir(dirName) result = [] prefix = baseName + "." plen = len(prefix) for fileName in fileNames: if fileName[:plen] == prefix: suffix = fileName[plen:] if self.extMatch.match(suffix): result.append(os.path.join(dirName, fileName)) result.sort() if len(result) < self.backupCount: result = [] else: result = result[:len(result) - self.backupCount] return result def doRollover(self): """ do a rollover; in this case, a date/time stamp is appended to the filename when the rollover happens. However, you want the file to be named for the start of the interval, not the current time. If there is a backup count, then we have to get a list of matching filenames, sort them and remove the one with the oldest suffix. """ if self.stream: self.stream.close() self.stream = None # get the time that this sequence started at and make it a TimeTuple currentTime = int(time.time()) dstNow = time.localtime(currentTime)[-1] t = self.rolloverAt - self.interval if self.utc: timeTuple = time.gmtime(t) else: timeTuple = time.localtime(t) dstThen = timeTuple[-1] if dstNow != dstThen: if dstNow: addend = 3600 else: addend = -3600 timeTuple = time.localtime(t + addend) dfn = self.baseFilename + "." + time.strftime(self.suffix, timeTuple) if os.path.exists(dfn): os.remove(dfn) # Issue 18940: A file may not have been created if delay is True. if os.path.exists(self.baseFilename): os.rename(self.baseFilename, dfn) if self.backupCount > 0: for s in self.getFilesToDelete(): os.remove(s) if not self.delay: self.stream = self._open() newRolloverAt = self.computeRollover(currentTime) while newRolloverAt <= currentTime: newRolloverAt = newRolloverAt + self.interval #If DST changes and midnight or weekly rollover, adjust for this. if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc: dstAtRollover = time.localtime(newRolloverAt)[-1] if dstNow != dstAtRollover: if not dstNow: # DST kicks in before next rollover, so we need to deduct an hour addend = -3600 else: # DST bows out before next rollover, so we need to add an hour addend = 3600 newRolloverAt += addend self.rolloverAt = newRolloverAt class WatchedFileHandler(logging.FileHandler): """ A handler for logging to a file, which watches the file to see if it has changed while in use. This can happen because of usage of programs such as newsyslog and logrotate which perform log file rotation. This handler, intended for use under Unix, watches the file to see if it has changed since the last emit. (A file has changed if its device or inode have changed.) If it has changed, the old file stream is closed, and the file opened to get a new stream. This handler is not appropriate for use under Windows, because under Windows open files cannot be moved or renamed - logging opens the files with exclusive locks - and so there is no need for such a handler. Furthermore, ST_INO is not supported under Windows; stat always returns zero for this value. This handler is based on a suggestion and patch by Chad J. Schroeder. """ def __init__(self, filename, mode='a', encoding=None, delay=0): logging.FileHandler.__init__(self, filename, mode, encoding, delay) self.dev, self.ino = -1, -1 self._statstream() def _statstream(self): if self.stream: sres = os.fstat(self.stream.fileno()) self.dev, self.ino = sres[ST_DEV], sres[ST_INO] def emit(self, record): """ Emit a record. First check if the underlying file has changed, and if it has, close the old stream and reopen the file to get the current stream. """ # Reduce the chance of race conditions by stat'ing by path only # once and then fstat'ing our new fd if we opened a new log stream. # See issue #14632: Thanks to John Mulligan for the problem report # and patch. try: # stat the file by path, checking for existence sres = os.stat(self.baseFilename) except OSError as err: if err.errno == errno.ENOENT: sres = None else: raise # compare file system stat with that of our stream file handle if not sres or sres[ST_DEV] != self.dev or sres[ST_INO] != self.ino: if self.stream is not None: # we have an open file handle, clean it up self.stream.flush() self.stream.close() self.stream = None # See Issue #21742: _open () might fail. # open a new file handle and get new stat info from that fd self.stream = self._open() self._statstream() logging.FileHandler.emit(self, record) class SocketHandler(logging.Handler): """ A handler class which writes logging records, in pickle format, to a streaming socket. The socket is kept open across logging calls. If the peer resets it, an attempt is made to reconnect on the next call. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. """ def __init__(self, host, port): """ Initializes the handler with a specific host address and port. The attribute 'closeOnError' is set to 1 - which means that if a socket error occurs, the socket is silently closed and then reopened on the next logging call. """ logging.Handler.__init__(self) self.host = host self.port = port self.sock = None self.closeOnError = 0 self.retryTime = None # # Exponential backoff parameters. # self.retryStart = 1.0 self.retryMax = 30.0 self.retryFactor = 2.0 def makeSocket(self, timeout=1): """ A factory method which allows subclasses to define the precise type of socket they want. """ s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) if hasattr(s, 'settimeout'): s.settimeout(timeout) s.connect((self.host, self.port)) return s def createSocket(self): """ Try to create a socket, using an exponential backoff with a max retry time. Thanks to Robert Olson for the original patch (SF #815911) which has been slightly refactored. """ now = time.time() # Either retryTime is None, in which case this # is the first time back after a disconnect, or # we've waited long enough. if self.retryTime is None: attempt = 1 else: attempt = (now >= self.retryTime) if attempt: try: self.sock = self.makeSocket() self.retryTime = None # next time, no delay before trying except socket.error: #Creation failed, so set the retry time and return. if self.retryTime is None: self.retryPeriod = self.retryStart else: self.retryPeriod = self.retryPeriod * self.retryFactor if self.retryPeriod > self.retryMax: self.retryPeriod = self.retryMax self.retryTime = now + self.retryPeriod def send(self, s): """ Send a pickled string to the socket. This function allows for partial sends which can happen when the network is busy. """ if self.sock is None: self.createSocket() #self.sock can be None either because we haven't reached the retry #time yet, or because we have reached the retry time and retried, #but are still unable to connect. if self.sock: try: if hasattr(self.sock, "sendall"): self.sock.sendall(s) else: sentsofar = 0 left = len(s) while left > 0: sent = self.sock.send(s[sentsofar:]) sentsofar = sentsofar + sent left = left - sent except socket.error: self.sock.close() self.sock = None # so we can call createSocket next time def makePickle(self, record): """ Pickles the record in binary format with a length prefix, and returns it ready for transmission across the socket. """ ei = record.exc_info if ei: # just to get traceback text into record.exc_text ... dummy = self.format(record) record.exc_info = None # to avoid Unpickleable error # See issue #14436: If msg or args are objects, they may not be # available on the receiving end. So we convert the msg % args # to a string, save it as msg and zap the args. d = dict(record.__dict__) d['msg'] = record.getMessage() d['args'] = None s = cPickle.dumps(d, 1) if ei: record.exc_info = ei # for next handler slen = struct.pack(">L", len(s)) return slen + s def handleError(self, record): """ Handle an error during logging. An error has occurred during logging. Most likely cause - connection lost. Close the socket so that we can retry on the next event. """ if self.closeOnError and self.sock: self.sock.close() self.sock = None #try to reconnect next time else: logging.Handler.handleError(self, record) def emit(self, record): """ Emit a record. Pickles the record and writes it to the socket in binary format. If there is an error with the socket, silently drop the packet. If there was a problem with the socket, re-establishes the socket. """ try: s = self.makePickle(record) self.send(s) except (KeyboardInterrupt, SystemExit): raise except: self.handleError(record) def close(self): """ Closes the socket. """ self.acquire() try: sock = self.sock if sock: self.sock = None sock.close() finally: self.release() logging.Handler.close(self) class DatagramHandler(SocketHandler): """ A handler class which writes logging records, in pickle format, to a datagram socket. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. """ def __init__(self, host, port): """ Initializes the handler with a specific host address and port. """ SocketHandler.__init__(self, host, port) self.closeOnError = 0 def makeSocket(self): """ The factory method of SocketHandler is here overridden to create a UDP socket (SOCK_DGRAM). """ s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) return s def send(self, s): """ Send a pickled string to a socket. This function no longer allows for partial sends which can happen when the network is busy - UDP does not guarantee delivery and can deliver packets out of sequence. """ if self.sock is None: self.createSocket() self.sock.sendto(s, (self.host, self.port)) class SysLogHandler(logging.Handler): """ A handler class which sends formatted logging records to a syslog server. Based on Sam Rushing's syslog module: http://www.nightmare.com/squirl/python-ext/misc/syslog.py Contributed by Nicolas Untz (after which minor refactoring changes have been made). """ # from : # ====================================================================== # priorities/facilities are encoded into a single 32-bit quantity, where # the bottom 3 bits are the priority (0-7) and the top 28 bits are the # facility (0-big number). Both the priorities and the facilities map # roughly one-to-one to strings in the syslogd(8) source code. This # mapping is included in this file. # # priorities (these are ordered) LOG_EMERG = 0 # system is unusable LOG_ALERT = 1 # action must be taken immediately LOG_CRIT = 2 # critical conditions LOG_ERR = 3 # error conditions LOG_WARNING = 4 # warning conditions LOG_NOTICE = 5 # normal but significant condition LOG_INFO = 6 # informational LOG_DEBUG = 7 # debug-level messages # facility codes LOG_KERN = 0 # kernel messages LOG_USER = 1 # random user-level messages LOG_MAIL = 2 # mail system LOG_DAEMON = 3 # system daemons LOG_AUTH = 4 # security/authorization messages LOG_SYSLOG = 5 # messages generated internally by syslogd LOG_LPR = 6 # line printer subsystem LOG_NEWS = 7 # network news subsystem LOG_UUCP = 8 # UUCP subsystem LOG_CRON = 9 # clock daemon LOG_AUTHPRIV = 10 # security/authorization messages (private) LOG_FTP = 11 # FTP daemon # other codes through 15 reserved for system use LOG_LOCAL0 = 16 # reserved for local use LOG_LOCAL1 = 17 # reserved for local use LOG_LOCAL2 = 18 # reserved for local use LOG_LOCAL3 = 19 # reserved for local use LOG_LOCAL4 = 20 # reserved for local use LOG_LOCAL5 = 21 # reserved for local use LOG_LOCAL6 = 22 # reserved for local use LOG_LOCAL7 = 23 # reserved for local use priority_names = { "alert": LOG_ALERT, "crit": LOG_CRIT, "critical": LOG_CRIT, "debug": LOG_DEBUG, "emerg": LOG_EMERG, "err": LOG_ERR, "error": LOG_ERR, # DEPRECATED "info": LOG_INFO, "notice": LOG_NOTICE, "panic": LOG_EMERG, # DEPRECATED "warn": LOG_WARNING, # DEPRECATED "warning": LOG_WARNING, } facility_names = { "auth": LOG_AUTH, "authpriv": LOG_AUTHPRIV, "cron": LOG_CRON, "daemon": LOG_DAEMON, "ftp": LOG_FTP, "kern": LOG_KERN, "lpr": LOG_LPR, "mail": LOG_MAIL, "news": LOG_NEWS, "security": LOG_AUTH, # DEPRECATED "syslog": LOG_SYSLOG, "user": LOG_USER, "uucp": LOG_UUCP, "local0": LOG_LOCAL0, "local1": LOG_LOCAL1, "local2": LOG_LOCAL2, "local3": LOG_LOCAL3, "local4": LOG_LOCAL4, "local5": LOG_LOCAL5, "local6": LOG_LOCAL6, "local7": LOG_LOCAL7, } #The map below appears to be trivially lowercasing the key. However, #there's more to it than meets the eye - in some locales, lowercasing #gives unexpected results. See SF #1524081: in the Turkish locale, #"INFO".lower() != "info" priority_map = { "DEBUG" : "debug", "INFO" : "info", "WARNING" : "warning", "ERROR" : "error", "CRITICAL" : "critical" } def __init__(self, address=('localhost', SYSLOG_UDP_PORT), facility=LOG_USER, socktype=None): """ Initialize a handler. If address is specified as a string, a UNIX socket is used. To log to a local syslogd, "SysLogHandler(address="/dev/log")" can be used. If facility is not specified, LOG_USER is used. If socktype is specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific socket type will be used. For Unix sockets, you can also specify a socktype of None, in which case socket.SOCK_DGRAM will be used, falling back to socket.SOCK_STREAM. """ logging.Handler.__init__(self) self.address = address self.facility = facility self.socktype = socktype if isinstance(address, basestring): self.unixsocket = 1 self._connect_unixsocket(address) else: self.unixsocket = False if socktype is None: socktype = socket.SOCK_DGRAM host, port = address ress = socket.getaddrinfo(host, port, 0, socktype) if not ress: raise socket.error("getaddrinfo returns an empty list") for res in ress: af, socktype, proto, _, sa = res err = sock = None try: sock = socket.socket(af, socktype, proto) if socktype == socket.SOCK_STREAM: sock.connect(sa) break except socket.error as exc: err = exc if sock is not None: sock.close() if err is not None: raise err self.socket = sock self.socktype = socktype def _connect_unixsocket(self, address): use_socktype = self.socktype if use_socktype is None: use_socktype = socket.SOCK_DGRAM self.socket = socket.socket(socket.AF_UNIX, use_socktype) try: self.socket.connect(address) # it worked, so set self.socktype to the used type self.socktype = use_socktype except socket.error: self.socket.close() if self.socktype is not None: # user didn't specify falling back, so fail raise use_socktype = socket.SOCK_STREAM self.socket = socket.socket(socket.AF_UNIX, use_socktype) try: self.socket.connect(address) # it worked, so set self.socktype to the used type self.socktype = use_socktype except socket.error: self.socket.close() raise # curious: when talking to the unix-domain '/dev/log' socket, a # zero-terminator seems to be required. this string is placed # into a class variable so that it can be overridden if # necessary. log_format_string = '<%d>%s\000' def encodePriority(self, facility, priority): """ Encode the facility and priority. You can pass in strings or integers - if strings are passed, the facility_names and priority_names mapping dictionaries are used to convert them to integers. """ if isinstance(facility, basestring): facility = self.facility_names[facility] if isinstance(priority, basestring): priority = self.priority_names[priority] return (facility << 3) | priority def close(self): """ Closes the socket. """ self.acquire() try: if self.unixsocket: self.socket.close() finally: self.release() logging.Handler.close(self) def mapPriority(self, levelName): """ Map a logging level name to a key in the priority_names map. This is useful in two scenarios: when custom levels are being used, and in the case where you can't do a straightforward mapping by lowercasing the logging level name because of locale- specific issues (see SF #1524081). """ return self.priority_map.get(levelName, "warning") def emit(self, record): """ Emit a record. The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. """ try: msg = self.format(record) + '\000' """ We need to convert record level to lowercase, maybe this will change in the future. """ prio = '<%d>' % self.encodePriority(self.facility, self.mapPriority(record.levelname)) # Message is a string. Convert to bytes as required by RFC 5424 if type(msg) is unicode: msg = msg.encode('utf-8') msg = prio + msg if self.unixsocket: try: self.socket.send(msg) except socket.error: self.socket.close() # See issue 17981 self._connect_unixsocket(self.address) self.socket.send(msg) elif self.socktype == socket.SOCK_DGRAM: self.socket.sendto(msg, self.address) else: self.socket.sendall(msg) except (KeyboardInterrupt, SystemExit): raise except: self.handleError(record) class SMTPHandler(logging.Handler): """ A handler class which sends an SMTP email for each logging event. """ def __init__(self, mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None): """ Initialize the handler. Initialize the instance with the from and to addresses and subject line of the email. To specify a non-standard SMTP port, use the (host, port) tuple format for the mailhost argument. To specify authentication credentials, supply a (username, password) tuple for the credentials argument. To specify the use of a secure protocol (TLS), pass in a tuple for the secure argument. This will only be used when authentication credentials are supplied. The tuple will be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the `starttls` method). """ logging.Handler.__init__(self) if isinstance(mailhost, (list, tuple)): self.mailhost, self.mailport = mailhost else: self.mailhost, self.mailport = mailhost, None if isinstance(credentials, (list, tuple)): self.username, self.password = credentials else: self.username = None self.fromaddr = fromaddr if isinstance(toaddrs, basestring): toaddrs = [toaddrs] self.toaddrs = toaddrs self.subject = subject self.secure = secure self._timeout = 5.0 def getSubject(self, record): """ Determine the subject for the email. If you want to specify a subject line which is record-dependent, override this method. """ return self.subject def emit(self, record): """ Emit a record. Format the record and send it to the specified addressees. """ try: import smtplib from email.utils import formatdate port = self.mailport if not port: port = smtplib.SMTP_PORT smtp = smtplib.SMTP(self.mailhost, port, timeout=self._timeout) msg = self.format(record) msg = "From: %s\r\nTo: %s\r\nSubject: %s\r\nDate: %s\r\n\r\n%s" % ( self.fromaddr, ",".join(self.toaddrs), self.getSubject(record), formatdate(), msg) if self.username: if self.secure is not None: smtp.ehlo() smtp.starttls(*self.secure) smtp.ehlo() smtp.login(self.username, self.password) smtp.sendmail(self.fromaddr, self.toaddrs, msg) smtp.quit() except (KeyboardInterrupt, SystemExit): raise except: self.handleError(record) class NTEventLogHandler(logging.Handler): """ A handler class which sends events to the NT Event Log. Adds a registry entry for the specified application name. If no dllname is provided, win32service.pyd (which contains some basic message placeholders) is used. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own DLL which contains the message definitions you want to use in the event log. """ def __init__(self, appname, dllname=None, logtype="Application"): logging.Handler.__init__(self) try: import win32evtlogutil, win32evtlog self.appname = appname self._welu = win32evtlogutil if not dllname: dllname = os.path.split(self._welu.__file__) dllname = os.path.split(dllname[0]) dllname = os.path.join(dllname[0], r'win32service.pyd') self.dllname = dllname self.logtype = logtype self._welu.AddSourceToRegistry(appname, dllname, logtype) self.deftype = win32evtlog.EVENTLOG_ERROR_TYPE self.typemap = { logging.DEBUG : win32evtlog.EVENTLOG_INFORMATION_TYPE, logging.INFO : win32evtlog.EVENTLOG_INFORMATION_TYPE, logging.WARNING : win32evtlog.EVENTLOG_WARNING_TYPE, logging.ERROR : win32evtlog.EVENTLOG_ERROR_TYPE, logging.CRITICAL: win32evtlog.EVENTLOG_ERROR_TYPE, } except ImportError: print("The Python Win32 extensions for NT (service, event "\ "logging) appear not to be available.") self._welu = None def getMessageID(self, record): """ Return the message ID for the event record. If you are using your own messages, you could do this by having the msg passed to the logger being an ID rather than a formatting string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in win32service.pyd. """ return 1 def getEventCategory(self, record): """ Return the event category for the record. Override this if you want to specify your own categories. This version returns 0. """ return 0 def getEventType(self, record): """ Return the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in __init__() to a dictionary which contains mappings for DEBUG, INFO, WARNING, ERROR and CRITICAL. If you are using your own levels you will either need to override this method or place a suitable dictionary in the handler's typemap attribute. """ return self.typemap.get(record.levelno, self.deftype) def emit(self, record): """ Emit a record. Determine the message ID, event category and event type. Then log the message in the NT event log. """ if self._welu: try: id = self.getMessageID(record) cat = self.getEventCategory(record) type = self.getEventType(record) msg = self.format(record) self._welu.ReportEvent(self.appname, id, cat, type, [msg]) except (KeyboardInterrupt, SystemExit): raise except: self.handleError(record) def close(self): """ Clean up this handler. You can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the DLL name. """ #self._welu.RemoveSourceFromRegistry(self.appname, self.logtype) logging.Handler.close(self) class HTTPHandler(logging.Handler): """ A class which sends records to a Web server, using either GET or POST semantics. """ def __init__(self, host, url, method="GET"): """ Initialize the instance with the host, the request URL, and the method ("GET" or "POST") """ logging.Handler.__init__(self) method = method.upper() if method not in ["GET", "POST"]: raise ValueError("method must be GET or POST") self.host = host self.url = url self.method = method def mapLogRecord(self, record): """ Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner. """ return record.__dict__ def emit(self, record): """ Emit a record. Send the record to the Web server as a percent-encoded dictionary """ try: import httplib, urllib host = self.host h = httplib.HTTP(host) url = self.url data = urllib.urlencode(self.mapLogRecord(record)) if self.method == "GET": if (url.find('?') >= 0): sep = '&' else: sep = '?' url = url + "%c%s" % (sep, data) h.putrequest(self.method, url) # support multiple hosts on one IP address... # need to strip optional :port from host, if present i = host.find(":") if i >= 0: host = host[:i] h.putheader("Host", host) if self.method == "POST": h.putheader("Content-type", "application/x-www-form-urlencoded") h.putheader("Content-length", str(len(data))) h.endheaders(data if self.method == "POST" else None) h.getreply() #can't do anything with the result except (KeyboardInterrupt, SystemExit): raise except: self.handleError(record) class BufferingHandler(logging.Handler): """ A handler class which buffers logging records in memory. Whenever each record is added to the buffer, a check is made to see if the buffer should be flushed. If it should, then flush() is expected to do what's needed. """ def __init__(self, capacity): """ Initialize the handler with the buffer size. """ logging.Handler.__init__(self) self.capacity = capacity self.buffer = [] def shouldFlush(self, record): """ Should the handler flush its buffer? Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies. """ return (len(self.buffer) >= self.capacity) def emit(self, record): """ Emit a record. Append the record. If shouldFlush() tells us to, call flush() to process the buffer. """ self.buffer.append(record) if self.shouldFlush(record): self.flush() def flush(self): """ Override to implement custom flushing behaviour. This version just zaps the buffer to empty. """ self.acquire() try: self.buffer = [] finally: self.release() def close(self): """ Close the handler. This version just flushes and chains to the parent class' close(). """ try: self.flush() finally: logging.Handler.close(self) class MemoryHandler(BufferingHandler): """ A handler class which buffers logging records in memory, periodically flushing them to a target handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen. """ def __init__(self, capacity, flushLevel=logging.ERROR, target=None): """ Initialize the handler with the buffer size, the level at which flushing should occur and an optional target. Note that without a target being set either here or via setTarget(), a MemoryHandler is no use to anyone! """ BufferingHandler.__init__(self, capacity) self.flushLevel = flushLevel self.target = target def shouldFlush(self, record): """ Check for buffer full or a record at the flushLevel or higher. """ return (len(self.buffer) >= self.capacity) or \ (record.levelno >= self.flushLevel) def setTarget(self, target): """ Set the target handler for this handler. """ self.target = target def flush(self): """ For a MemoryHandler, flushing means just sending the buffered records to the target, if there is one. Override if you want different behaviour. """ self.acquire() try: if self.target: for record in self.buffer: self.target.handle(record) self.buffer = [] finally: self.release() def close(self): """ Flush, set the target to None and lose the buffer. """ try: self.flush() finally: self.acquire() try: self.target = None BufferingHandler.close(self) finally: self.release() PK1]Q __init__.pynu[# Copyright 2001-2014 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose and without fee is hereby granted, # provided that the above copyright notice appear in all copies and that # both that copyright notice and this permission notice appear in # supporting documentation, and that the name of Vinay Sajip # not be used in advertising or publicity pertaining to distribution # of the software without specific, written prior permission. # VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING # ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL # VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR # ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER # IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. """ Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! """ import sys, os, time, cStringIO, traceback, warnings, weakref, collections __all__ = ['BASIC_FORMAT', 'BufferingFormatter', 'CRITICAL', 'DEBUG', 'ERROR', 'FATAL', 'FileHandler', 'Filter', 'Formatter', 'Handler', 'INFO', 'LogRecord', 'Logger', 'LoggerAdapter', 'NOTSET', 'NullHandler', 'StreamHandler', 'WARN', 'WARNING', 'addLevelName', 'basicConfig', 'captureWarnings', 'critical', 'debug', 'disable', 'error', 'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass', 'info', 'log', 'makeLogRecord', 'setLoggerClass', 'warn', 'warning'] try: import codecs except ImportError: codecs = None try: import thread import threading except ImportError: thread = None __author__ = "Vinay Sajip " __status__ = "production" # Note: the attributes below are no longer maintained. __version__ = "0.5.1.2" __date__ = "07 February 2010" #--------------------------------------------------------------------------- # Miscellaneous module data #--------------------------------------------------------------------------- try: unicode _unicode = True except NameError: _unicode = False # next bit filched from 1.5.2's inspect.py def currentframe(): """Return the frame object for the caller's stack frame.""" try: raise Exception except: return sys.exc_info()[2].tb_frame.f_back if hasattr(sys, '_getframe'): currentframe = lambda: sys._getframe(3) # done filching # # _srcfile is used when walking the stack to check when we've got the first # caller stack frame. # _srcfile = os.path.normcase(currentframe.__code__.co_filename) # _srcfile is only used in conjunction with sys._getframe(). # To provide compatibility with older versions of Python, set _srcfile # to None if _getframe() is not available; this value will prevent # findCaller() from being called. #if not hasattr(sys, "_getframe"): # _srcfile = None # #_startTime is used as the base when calculating the relative time of events # _startTime = time.time() # #raiseExceptions is used to see if exceptions during handling should be #propagated # raiseExceptions = 1 # # If you don't want threading information in the log, set this to zero # logThreads = 1 # # If you don't want multiprocessing information in the log, set this to zero # logMultiprocessing = 1 # # If you don't want process information in the log, set this to zero # logProcesses = 1 #--------------------------------------------------------------------------- # Level related stuff #--------------------------------------------------------------------------- # # Default levels and level names, these can be replaced with any positive set # of values having corresponding names. There is a pseudo-level, NOTSET, which # is only really there as a lower limit for user-defined levels. Handlers and # loggers are initialized with NOTSET so that they will log all messages, even # at user-defined levels. # CRITICAL = 50 FATAL = CRITICAL ERROR = 40 WARNING = 30 WARN = WARNING INFO = 20 DEBUG = 10 NOTSET = 0 _levelNames = { CRITICAL : 'CRITICAL', ERROR : 'ERROR', WARNING : 'WARNING', INFO : 'INFO', DEBUG : 'DEBUG', NOTSET : 'NOTSET', 'CRITICAL' : CRITICAL, 'ERROR' : ERROR, 'WARN' : WARNING, 'WARNING' : WARNING, 'INFO' : INFO, 'DEBUG' : DEBUG, 'NOTSET' : NOTSET, } def getLevelName(level): """ Return the textual representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. Otherwise, the string "Level %s" % level is returned. """ return _levelNames.get(level, ("Level %s" % level)) def addLevelName(level, levelName): """ Associate 'levelName' with 'level'. This is used when converting levels to text during message formatting. """ _acquireLock() try: #unlikely to cause an exception, but you never know... _levelNames[level] = levelName _levelNames[levelName] = level finally: _releaseLock() def _checkLevel(level): if isinstance(level, (int, long)): rv = level elif str(level) == level: if level not in _levelNames: raise ValueError("Unknown level: %r" % level) rv = _levelNames[level] else: raise TypeError("Level not an integer or a valid string: %r" % level) return rv #--------------------------------------------------------------------------- # Thread-related stuff #--------------------------------------------------------------------------- # #_lock is used to serialize access to shared data structures in this module. #This needs to be an RLock because fileConfig() creates and configures #Handlers, and so might arbitrary user threads. Since Handler code updates the #shared dictionary _handlers, it needs to acquire the lock. But if configuring, #the lock would already have been acquired - so we need an RLock. #The same argument applies to Loggers and Manager.loggerDict. # if thread: _lock = threading.RLock() else: _lock = None def _acquireLock(): """ Acquire the module-level lock for serializing access to shared data. This should be released with _releaseLock(). """ if _lock: _lock.acquire() def _releaseLock(): """ Release the module-level lock acquired by calling _acquireLock(). """ if _lock: _lock.release() #--------------------------------------------------------------------------- # The logging record #--------------------------------------------------------------------------- class LogRecord(object): """ A LogRecord instance represents an event being logged. LogRecord instances are created every time something is logged. They contain all the information pertinent to the event being logged. The main information passed in is in msg and args, which are combined using str(msg) % args to create the message field of the record. The record also includes information such as when the record was created, the source line where the logging call was made, and any exception information to be logged. """ def __init__(self, name, level, pathname, lineno, msg, args, exc_info, func=None): """ Initialize a logging record with interesting information. """ ct = time.time() self.name = name self.msg = msg # # The following statement allows passing of a dictionary as a sole # argument, so that you can do something like # logging.debug("a %(a)d b %(b)s", {'a':1, 'b':2}) # Suggested by Stefan Behnel. # Note that without the test for args[0], we get a problem because # during formatting, we test to see if the arg is present using # 'if self.args:'. If the event being logged is e.g. 'Value is %d' # and if the passed arg fails 'if self.args:' then no formatting # is done. For example, logger.warn('Value is %d', 0) would log # 'Value is %d' instead of 'Value is 0'. # For the use case of passing a dictionary, this should not be a # problem. # Issue #21172: a request was made to relax the isinstance check # to hasattr(args[0], '__getitem__'). However, the docs on string # formatting still seem to suggest a mapping object is required. # Thus, while not removing the isinstance check, it does now look # for collections.Mapping rather than, as before, dict. if (args and len(args) == 1 and isinstance(args[0], collections.Mapping) and args[0]): args = args[0] self.args = args self.levelname = getLevelName(level) self.levelno = level self.pathname = pathname try: self.filename = os.path.basename(pathname) self.module = os.path.splitext(self.filename)[0] except (TypeError, ValueError, AttributeError): self.filename = pathname self.module = "Unknown module" self.exc_info = exc_info self.exc_text = None # used to cache the traceback text self.lineno = lineno self.funcName = func self.created = ct self.msecs = (ct - long(ct)) * 1000 self.relativeCreated = (self.created - _startTime) * 1000 if logThreads and thread: self.thread = thread.get_ident() self.threadName = threading.current_thread().name else: self.thread = None self.threadName = None if not logMultiprocessing: self.processName = None else: self.processName = 'MainProcess' mp = sys.modules.get('multiprocessing') if mp is not None: # Errors may occur if multiprocessing has not finished loading # yet - e.g. if a custom import hook causes third-party code # to run when multiprocessing calls import. See issue 8200 # for an example try: self.processName = mp.current_process().name except StandardError: pass if logProcesses and hasattr(os, 'getpid'): self.process = os.getpid() else: self.process = None def __str__(self): return ''%(self.name, self.levelno, self.pathname, self.lineno, self.msg) def getMessage(self): """ Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. """ if not _unicode: #if no unicode support... msg = str(self.msg) else: msg = self.msg if not isinstance(msg, basestring): try: msg = str(self.msg) except UnicodeError: msg = self.msg #Defer encoding till later if self.args: msg = msg % self.args return msg def makeLogRecord(dict): """ Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. """ rv = LogRecord(None, None, "", 0, "", (), None, None) rv.__dict__.update(dict) return rv #--------------------------------------------------------------------------- # Formatter classes and functions #--------------------------------------------------------------------------- class Formatter(object): """ Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the default value of "%s(message)\\n" is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted """ converter = time.localtime def __init__(self, fmt=None, datefmt=None): """ Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument (if omitted, you get the ISO8601 format). """ if fmt: self._fmt = fmt else: self._fmt = "%(message)s" self.datefmt = datefmt def formatTime(self, record, datefmt=None): """ Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, the ISO8601 format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. """ ct = self.converter(record.created) if datefmt: s = time.strftime(datefmt, ct) else: t = time.strftime("%Y-%m-%d %H:%M:%S", ct) s = "%s,%03d" % (t, record.msecs) return s def formatException(self, ei): """ Format and return the specified exception information as a string. This default implementation just uses traceback.print_exception() """ sio = cStringIO.StringIO() traceback.print_exception(ei[0], ei[1], ei[2], None, sio) s = sio.getvalue() sio.close() if s[-1:] == "\n": s = s[:-1] return s def usesTime(self): """ Check if the format uses the creation time of the record. """ return self._fmt.find("%(asctime)") >= 0 def format(self, record): """ Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. """ record.message = record.getMessage() if self.usesTime(): record.asctime = self.formatTime(record, self.datefmt) try: s = self._fmt % record.__dict__ except UnicodeDecodeError as e: # Issue 25664. The logger name may be Unicode. Try again ... try: record.name = record.name.decode('utf-8') s = self._fmt % record.__dict__ except UnicodeDecodeError: raise e if record.exc_info: # Cache the traceback text to avoid converting it multiple times # (it's constant anyway) if not record.exc_text: record.exc_text = self.formatException(record.exc_info) if record.exc_text: if s[-1:] != "\n": s = s + "\n" try: s = s + record.exc_text except UnicodeError: # Sometimes filenames have non-ASCII chars, which can lead # to errors when s is Unicode and record.exc_text is str # See issue 8924. # We also use replace for when there are multiple # encodings, e.g. UTF-8 for the filesystem and latin-1 # for a script. See issue 13232. s = s + record.exc_text.decode(sys.getfilesystemencoding(), 'replace') return s # # The default formatter to use when no other is specified # _defaultFormatter = Formatter() class BufferingFormatter(object): """ A formatter suitable for formatting a number of records. """ def __init__(self, linefmt=None): """ Optionally specify a formatter which will be used to format each individual record. """ if linefmt: self.linefmt = linefmt else: self.linefmt = _defaultFormatter def formatHeader(self, records): """ Return the header string for the specified records. """ return "" def formatFooter(self, records): """ Return the footer string for the specified records. """ return "" def format(self, records): """ Format the specified records and return the result as a string. """ rv = "" if len(records) > 0: rv = rv + self.formatHeader(records) for record in records: rv = rv + self.linefmt.format(record) rv = rv + self.formatFooter(records) return rv #--------------------------------------------------------------------------- # Filter classes and functions #--------------------------------------------------------------------------- class Filter(object): """ Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. """ def __init__(self, name=''): """ Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. """ self.name = name self.nlen = len(name) def filter(self, record): """ Determine if the specified record is to be logged. Is the specified record to be logged? Returns 0 for no, nonzero for yes. If deemed appropriate, the record may be modified in-place. """ if self.nlen == 0: return 1 elif self.name == record.name: return 1 elif record.name.find(self.name, 0, self.nlen) != 0: return 0 return (record.name[self.nlen] == ".") class Filterer(object): """ A base class for loggers and handlers which allows them to share common code. """ def __init__(self): """ Initialize the list of filters to be an empty list. """ self.filters = [] def addFilter(self, filter): """ Add the specified filter to this handler. """ if not (filter in self.filters): self.filters.append(filter) def removeFilter(self, filter): """ Remove the specified filter from this handler. """ if filter in self.filters: self.filters.remove(filter) def filter(self, record): """ Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this and the record is then dropped. Returns a zero value if a record is to be dropped, else non-zero. """ rv = 1 for f in self.filters: if not f.filter(record): rv = 0 break return rv #--------------------------------------------------------------------------- # Handler classes and functions #--------------------------------------------------------------------------- _handlers = weakref.WeakValueDictionary() #map of handler names to handlers _handlerList = [] # added to allow handlers to be removed in reverse of order initialized def _removeHandlerRef(wr): """ Remove a handler reference from the internal cleanup list. """ # This function can be called during module teardown, when globals are # set to None. It can also be called from another thread. So we need to # pre-emptively grab the necessary globals and check if they're None, # to prevent race conditions and failures during interpreter shutdown. acquire, release, handlers = _acquireLock, _releaseLock, _handlerList if acquire and release and handlers: try: acquire() try: if wr in handlers: handlers.remove(wr) finally: release() except TypeError: # https://bugs.python.org/issue21149 - If the RLock object behind # acquire() and release() has been partially finalized you may see # an error about NoneType not being callable. Absolutely nothing # we can do in this GC during process shutdown situation. Eat it. pass def _addHandlerRef(handler): """ Add a handler to the internal cleanup list using a weak reference. """ _acquireLock() try: _handlerList.append(weakref.ref(handler, _removeHandlerRef)) finally: _releaseLock() class Handler(Filterer): """ Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. """ def __init__(self, level=NOTSET): """ Initializes the instance - basically setting the formatter to None and the filter list to empty. """ Filterer.__init__(self) self._name = None self.level = _checkLevel(level) self.formatter = None # Add the handler to the global _handlerList (for cleanup on shutdown) _addHandlerRef(self) self.createLock() def get_name(self): return self._name def set_name(self, name): _acquireLock() try: if self._name in _handlers: del _handlers[self._name] self._name = name if name: _handlers[name] = self finally: _releaseLock() name = property(get_name, set_name) def createLock(self): """ Acquire a thread lock for serializing access to the underlying I/O. """ if thread: self.lock = threading.RLock() else: self.lock = None def acquire(self): """ Acquire the I/O thread lock. """ if self.lock: self.lock.acquire() def release(self): """ Release the I/O thread lock. """ if self.lock: self.lock.release() def setLevel(self, level): """ Set the logging level of this handler. """ self.level = _checkLevel(level) def format(self, record): """ Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. """ if self.formatter: fmt = self.formatter else: fmt = _defaultFormatter return fmt.format(record) def emit(self, record): """ Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. """ raise NotImplementedError('emit must be implemented ' 'by Handler subclasses') def handle(self, record): """ Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns whether the filter passed the record for emission. """ rv = self.filter(record) if rv: self.acquire() try: self.emit(record) finally: self.release() return rv def setFormatter(self, fmt): """ Set the formatter for this handler. """ self.formatter = fmt def flush(self): """ Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. """ pass def close(self): """ Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. """ #get the module data lock, as we're updating a shared structure. _acquireLock() try: #unlikely to raise an exception, but you never know... if self._name and self._name in _handlers: del _handlers[self._name] finally: _releaseLock() def handleError(self, record): """ Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. """ if raiseExceptions and sys.stderr: # see issue 13807 ei = sys.exc_info() try: traceback.print_exception(ei[0], ei[1], ei[2], None, sys.stderr) sys.stderr.write('Logged from file %s, line %s\n' % ( record.filename, record.lineno)) except IOError: pass # see issue 5971 finally: del ei class StreamHandler(Handler): """ A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. """ def __init__(self, stream=None): """ Initialize the handler. If stream is not specified, sys.stderr is used. """ Handler.__init__(self) if stream is None: stream = sys.stderr self.stream = stream def flush(self): """ Flushes the stream. """ self.acquire() try: if self.stream and hasattr(self.stream, "flush"): self.stream.flush() finally: self.release() def emit(self, record): """ Emit a record. If a formatter is specified, it is used to format the record. The record is then written to the stream with a trailing newline. If exception information is present, it is formatted using traceback.print_exception and appended to the stream. If the stream has an 'encoding' attribute, it is used to determine how to do the output to the stream. """ try: msg = self.format(record) stream = self.stream fs = "%s\n" if not _unicode: #if no unicode support... stream.write(fs % msg) else: try: if (isinstance(msg, unicode) and getattr(stream, 'encoding', None)): ufs = u'%s\n' try: stream.write(ufs % msg) except UnicodeEncodeError: #Printing to terminals sometimes fails. For example, #with an encoding of 'cp1251', the above write will #work if written to a stream opened or wrapped by #the codecs module, but fail when writing to a #terminal even when the codepage is set to cp1251. #An extra encoding step seems to be needed. stream.write((ufs % msg).encode(stream.encoding)) else: stream.write(fs % msg) except UnicodeError: stream.write(fs % msg.encode("UTF-8")) self.flush() except (KeyboardInterrupt, SystemExit): raise except: self.handleError(record) class FileHandler(StreamHandler): """ A handler class which writes formatted logging records to disk files. """ def __init__(self, filename, mode='a', encoding=None, delay=0): """ Open the specified file and use it as the stream for logging. """ #keep the absolute path, otherwise derived classes which use this #may come a cropper when the current directory changes if codecs is None: encoding = None self.baseFilename = os.path.abspath(filename) self.mode = mode self.encoding = encoding self.delay = delay if delay: #We don't open the stream, but we still need to call the #Handler constructor to set level, formatter, lock etc. Handler.__init__(self) self.stream = None else: StreamHandler.__init__(self, self._open()) def close(self): """ Closes the stream. """ self.acquire() try: try: if self.stream: try: self.flush() finally: stream = self.stream self.stream = None if hasattr(stream, "close"): stream.close() finally: # Issue #19523: call unconditionally to # prevent a handler leak when delay is set StreamHandler.close(self) finally: self.release() def _open(self): """ Open the current base file with the (original) mode and encoding. Return the resulting stream. """ if self.encoding is None: stream = open(self.baseFilename, self.mode) else: stream = codecs.open(self.baseFilename, self.mode, self.encoding) return stream def emit(self, record): """ Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. """ if self.stream is None: self.stream = self._open() StreamHandler.emit(self, record) #--------------------------------------------------------------------------- # Manager classes and functions #--------------------------------------------------------------------------- class PlaceHolder(object): """ PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. """ def __init__(self, alogger): """ Initialize with the specified logger being a child of this placeholder. """ #self.loggers = [alogger] self.loggerMap = { alogger : None } def append(self, alogger): """ Add the specified logger as a child of this placeholder. """ #if alogger not in self.loggers: if alogger not in self.loggerMap: #self.loggers.append(alogger) self.loggerMap[alogger] = None # # Determine which class to use when instantiating loggers. # _loggerClass = None def setLoggerClass(klass): """ Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() """ if klass != Logger: if not issubclass(klass, Logger): raise TypeError("logger not derived from logging.Logger: " + klass.__name__) global _loggerClass _loggerClass = klass def getLoggerClass(): """ Return the class to be used when instantiating a logger. """ return _loggerClass class Manager(object): """ There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. """ def __init__(self, rootnode): """ Initialize the manager with the root node of the logger hierarchy. """ self.root = rootnode self.disable = 0 self.emittedNoHandlerWarning = 0 self.loggerDict = {} self.loggerClass = None def getLogger(self, name): """ Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. """ rv = None if not isinstance(name, basestring): raise TypeError('A logger name must be string or Unicode') if isinstance(name, unicode): name = name.encode('utf-8') _acquireLock() try: if name in self.loggerDict: rv = self.loggerDict[name] if isinstance(rv, PlaceHolder): ph = rv rv = (self.loggerClass or _loggerClass)(name) rv.manager = self self.loggerDict[name] = rv self._fixupChildren(ph, rv) self._fixupParents(rv) else: rv = (self.loggerClass or _loggerClass)(name) rv.manager = self self.loggerDict[name] = rv self._fixupParents(rv) finally: _releaseLock() return rv def setLoggerClass(self, klass): """ Set the class to be used when instantiating a logger with this Manager. """ if klass != Logger: if not issubclass(klass, Logger): raise TypeError("logger not derived from logging.Logger: " + klass.__name__) self.loggerClass = klass def _fixupParents(self, alogger): """ Ensure that there are either loggers or placeholders all the way from the specified logger to the root of the logger hierarchy. """ name = alogger.name i = name.rfind(".") rv = None while (i > 0) and not rv: substr = name[:i] if substr not in self.loggerDict: self.loggerDict[substr] = PlaceHolder(alogger) else: obj = self.loggerDict[substr] if isinstance(obj, Logger): rv = obj else: assert isinstance(obj, PlaceHolder) obj.append(alogger) i = name.rfind(".", 0, i - 1) if not rv: rv = self.root alogger.parent = rv def _fixupChildren(self, ph, alogger): """ Ensure that children of the placeholder ph are connected to the specified logger. """ name = alogger.name namelen = len(name) for c in ph.loggerMap.keys(): #The if means ... if not c.parent.name.startswith(nm) if c.parent.name[:namelen] != name: alogger.parent = c.parent c.parent = alogger #--------------------------------------------------------------------------- # Logger classes and functions #--------------------------------------------------------------------------- class Logger(Filterer): """ Instances of the Logger class represent a single logging channel. A "logging channel" indicates an area of an application. Exactly how an "area" is defined is up to the application developer. Since an application can have any number of areas, logging channels are identified by a unique string. Application areas can be nested (e.g. an area of "input processing" might include sub-areas "read CSV files", "read XLS files" and "read Gnumeric files"). To cater for this natural nesting, channel names are organized into a namespace hierarchy where levels are separated by periods, much like the Java or Python package namespace. So in the instance given above, channel names might be "input" for the upper level, and "input.csv", "input.xls" and "input.gnu" for the sub-levels. There is no arbitrary limit to the depth of nesting. """ def __init__(self, name, level=NOTSET): """ Initialize the logger with a name and an optional level. """ Filterer.__init__(self) self.name = name self.level = _checkLevel(level) self.parent = None self.propagate = 1 self.handlers = [] self.disabled = 0 def setLevel(self, level): """ Set the logging level of this logger. """ self.level = _checkLevel(level) def debug(self, msg, *args, **kwargs): """ Log 'msg % args' with severity 'DEBUG'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.debug("Houston, we have a %s", "thorny problem", exc_info=1) """ if self.isEnabledFor(DEBUG): self._log(DEBUG, msg, args, **kwargs) def info(self, msg, *args, **kwargs): """ Log 'msg % args' with severity 'INFO'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.info("Houston, we have a %s", "interesting problem", exc_info=1) """ if self.isEnabledFor(INFO): self._log(INFO, msg, args, **kwargs) def warning(self, msg, *args, **kwargs): """ Log 'msg % args' with severity 'WARNING'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.warning("Houston, we have a %s", "bit of a problem", exc_info=1) """ if self.isEnabledFor(WARNING): self._log(WARNING, msg, args, **kwargs) warn = warning def error(self, msg, *args, **kwargs): """ Log 'msg % args' with severity 'ERROR'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.error("Houston, we have a %s", "major problem", exc_info=1) """ if self.isEnabledFor(ERROR): self._log(ERROR, msg, args, **kwargs) def exception(self, msg, *args, **kwargs): """ Convenience method for logging an ERROR with exception information. """ kwargs['exc_info'] = 1 self.error(msg, *args, **kwargs) def critical(self, msg, *args, **kwargs): """ Log 'msg % args' with severity 'CRITICAL'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.critical("Houston, we have a %s", "major disaster", exc_info=1) """ if self.isEnabledFor(CRITICAL): self._log(CRITICAL, msg, args, **kwargs) fatal = critical def log(self, level, msg, *args, **kwargs): """ Log 'msg % args' with the integer severity 'level'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.log(level, "We have a %s", "mysterious problem", exc_info=1) """ if not isinstance(level, (int, long)): if raiseExceptions: raise TypeError("level must be an integer") else: return if self.isEnabledFor(level): self._log(level, msg, args, **kwargs) def findCaller(self): """ Find the stack frame of the caller so that we can note the source file name, line number and function name. """ f = currentframe() #On some versions of IronPython, currentframe() returns None if #IronPython isn't run with -X:Frames. if f is not None: f = f.f_back rv = "(unknown file)", 0, "(unknown function)" while hasattr(f, "f_code"): co = f.f_code filename = os.path.normcase(co.co_filename) if filename == _srcfile: f = f.f_back continue rv = (co.co_filename, f.f_lineno, co.co_name) break return rv def makeRecord(self, name, level, fn, lno, msg, args, exc_info, func=None, extra=None): """ A factory method which can be overridden in subclasses to create specialized LogRecords. """ rv = LogRecord(name, level, fn, lno, msg, args, exc_info, func) if extra is not None: for key in extra: if (key in ["message", "asctime"]) or (key in rv.__dict__): raise KeyError("Attempt to overwrite %r in LogRecord" % key) rv.__dict__[key] = extra[key] return rv def _log(self, level, msg, args, exc_info=None, extra=None): """ Low-level logging routine which creates a LogRecord and then calls all the handlers of this logger to handle the record. """ if _srcfile: #IronPython doesn't track Python frames, so findCaller raises an #exception on some versions of IronPython. We trap it here so that #IronPython can use logging. try: fn, lno, func = self.findCaller() except ValueError: fn, lno, func = "(unknown file)", 0, "(unknown function)" else: fn, lno, func = "(unknown file)", 0, "(unknown function)" if exc_info: if not isinstance(exc_info, tuple): exc_info = sys.exc_info() record = self.makeRecord(self.name, level, fn, lno, msg, args, exc_info, func, extra) self.handle(record) def handle(self, record): """ Call the handlers for the specified record. This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied. """ if (not self.disabled) and self.filter(record): self.callHandlers(record) def addHandler(self, hdlr): """ Add the specified handler to this logger. """ _acquireLock() try: if not (hdlr in self.handlers): self.handlers.append(hdlr) finally: _releaseLock() def removeHandler(self, hdlr): """ Remove the specified handler from this logger. """ _acquireLock() try: if hdlr in self.handlers: self.handlers.remove(hdlr) finally: _releaseLock() def callHandlers(self, record): """ Pass a record to all relevant handlers. Loop through all handlers for this logger and its parents in the logger hierarchy. If no handler was found, output a one-off error message to sys.stderr. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger whose handlers are called. """ c = self found = 0 while c: for hdlr in c.handlers: found = found + 1 if record.levelno >= hdlr.level: hdlr.handle(record) if not c.propagate: c = None #break out else: c = c.parent if (found == 0) and raiseExceptions and not self.manager.emittedNoHandlerWarning: sys.stderr.write("No handlers could be found for logger" " \"%s\"\n" % self.name) self.manager.emittedNoHandlerWarning = 1 def getEffectiveLevel(self): """ Get the effective level for this logger. Loop through this logger and its parents in the logger hierarchy, looking for a non-zero logging level. Return the first one found. """ logger = self while logger: if logger.level: return logger.level logger = logger.parent return NOTSET def isEnabledFor(self, level): """ Is this logger enabled for level 'level'? """ if self.manager.disable >= level: return 0 return level >= self.getEffectiveLevel() def getChild(self, suffix): """ Get a logger which is a descendant to this one. This is a convenience method, such that logging.getLogger('abc').getChild('def.ghi') is the same as logging.getLogger('abc.def.ghi') It's useful, for example, when the parent logger is named using __name__ rather than a literal string. """ if self.root is not self: suffix = '.'.join((self.name, suffix)) return self.manager.getLogger(suffix) class RootLogger(Logger): """ A root logger is not that different to any other logger, except that it must have a logging level and there is only one instance of it in the hierarchy. """ def __init__(self, level): """ Initialize the logger with the name "root". """ Logger.__init__(self, "root", level) _loggerClass = Logger class LoggerAdapter(object): """ An adapter for loggers which makes it easier to specify contextual information in logging output. """ def __init__(self, logger, extra): """ Initialize the adapter with a logger and a dict-like object which provides contextual information. This constructor signature allows easy stacking of LoggerAdapters, if so desired. You can effectively pass keyword arguments as shown in the following example: adapter = LoggerAdapter(someLogger, dict(p1=v1, p2="v2")) """ self.logger = logger self.extra = extra def process(self, msg, kwargs): """ Process the logging message and keyword arguments passed in to a logging call to insert contextual information. You can either manipulate the message itself, the keyword args or both. Return the message and kwargs modified (or not) to suit your needs. Normally, you'll only need to override this one method in a LoggerAdapter subclass for your specific needs. """ kwargs["extra"] = self.extra return msg, kwargs def debug(self, msg, *args, **kwargs): """ Delegate a debug call to the underlying logger, after adding contextual information from this adapter instance. """ msg, kwargs = self.process(msg, kwargs) self.logger.debug(msg, *args, **kwargs) def info(self, msg, *args, **kwargs): """ Delegate an info call to the underlying logger, after adding contextual information from this adapter instance. """ msg, kwargs = self.process(msg, kwargs) self.logger.info(msg, *args, **kwargs) def warning(self, msg, *args, **kwargs): """ Delegate a warning call to the underlying logger, after adding contextual information from this adapter instance. """ msg, kwargs = self.process(msg, kwargs) self.logger.warning(msg, *args, **kwargs) def error(self, msg, *args, **kwargs): """ Delegate an error call to the underlying logger, after adding contextual information from this adapter instance. """ msg, kwargs = self.process(msg, kwargs) self.logger.error(msg, *args, **kwargs) def exception(self, msg, *args, **kwargs): """ Delegate an exception call to the underlying logger, after adding contextual information from this adapter instance. """ msg, kwargs = self.process(msg, kwargs) kwargs["exc_info"] = 1 self.logger.error(msg, *args, **kwargs) def critical(self, msg, *args, **kwargs): """ Delegate a critical call to the underlying logger, after adding contextual information from this adapter instance. """ msg, kwargs = self.process(msg, kwargs) self.logger.critical(msg, *args, **kwargs) def log(self, level, msg, *args, **kwargs): """ Delegate a log call to the underlying logger, after adding contextual information from this adapter instance. """ msg, kwargs = self.process(msg, kwargs) self.logger.log(level, msg, *args, **kwargs) def isEnabledFor(self, level): """ See if the underlying logger is enabled for the specified level. """ return self.logger.isEnabledFor(level) root = RootLogger(WARNING) Logger.root = root Logger.manager = Manager(Logger.root) #--------------------------------------------------------------------------- # Configuration classes and functions #--------------------------------------------------------------------------- BASIC_FORMAT = "%(levelname)s:%(name)s:%(message)s" def basicConfig(**kwargs): """ Do basic configuration for the logging system. This function does nothing if the root logger already has handlers configured. It is a convenience method intended for use by simple scripts to do one-shot configuration of the logging package. The default behaviour is to create a StreamHandler which writes to sys.stderr, set a formatter using the BASIC_FORMAT format string, and add the handler to the root logger. A number of optional keyword arguments may be specified, which can alter the default behaviour. filename Specifies that a FileHandler be created, using the specified filename, rather than a StreamHandler. filemode Specifies the mode to open the file, if filename is specified (if filemode is unspecified, it defaults to 'a'). format Use the specified format string for the handler. datefmt Use the specified date/time format. level Set the root logger level to the specified level. stream Use the specified stream to initialize the StreamHandler. Note that this argument is incompatible with 'filename' - if both are present, 'stream' is ignored. Note that you could specify a stream created using open(filename, mode) rather than passing the filename and mode in. However, it should be remembered that StreamHandler does not close its stream (since it may be using sys.stdout or sys.stderr), whereas FileHandler closes its stream when the handler is closed. """ # Add thread safety in case someone mistakenly calls # basicConfig() from multiple threads _acquireLock() try: if len(root.handlers) == 0: filename = kwargs.get("filename") if filename: mode = kwargs.get("filemode", 'a') hdlr = FileHandler(filename, mode) else: stream = kwargs.get("stream") hdlr = StreamHandler(stream) fs = kwargs.get("format", BASIC_FORMAT) dfs = kwargs.get("datefmt", None) fmt = Formatter(fs, dfs) hdlr.setFormatter(fmt) root.addHandler(hdlr) level = kwargs.get("level") if level is not None: root.setLevel(level) finally: _releaseLock() #--------------------------------------------------------------------------- # Utility functions at module level. # Basically delegate everything to the root logger. #--------------------------------------------------------------------------- def getLogger(name=None): """ Return a logger with the specified name, creating it if necessary. If no name is specified, return the root logger. """ if name: return Logger.manager.getLogger(name) else: return root #def getRootLogger(): # """ # Return the root logger. # # Note that getLogger('') now does the same thing, so this function is # deprecated and may disappear in the future. # """ # return root def critical(msg, *args, **kwargs): """ Log a message with severity 'CRITICAL' on the root logger. """ if len(root.handlers) == 0: basicConfig() root.critical(msg, *args, **kwargs) fatal = critical def error(msg, *args, **kwargs): """ Log a message with severity 'ERROR' on the root logger. """ if len(root.handlers) == 0: basicConfig() root.error(msg, *args, **kwargs) def exception(msg, *args, **kwargs): """ Log a message with severity 'ERROR' on the root logger, with exception information. """ kwargs['exc_info'] = 1 error(msg, *args, **kwargs) def warning(msg, *args, **kwargs): """ Log a message with severity 'WARNING' on the root logger. """ if len(root.handlers) == 0: basicConfig() root.warning(msg, *args, **kwargs) warn = warning def info(msg, *args, **kwargs): """ Log a message with severity 'INFO' on the root logger. """ if len(root.handlers) == 0: basicConfig() root.info(msg, *args, **kwargs) def debug(msg, *args, **kwargs): """ Log a message with severity 'DEBUG' on the root logger. """ if len(root.handlers) == 0: basicConfig() root.debug(msg, *args, **kwargs) def log(level, msg, *args, **kwargs): """ Log 'msg % args' with the integer severity 'level' on the root logger. """ if len(root.handlers) == 0: basicConfig() root.log(level, msg, *args, **kwargs) def disable(level): """ Disable all logging calls of severity 'level' and below. """ root.manager.disable = level def shutdown(handlerList=_handlerList): """ Perform any cleanup actions in the logging system (e.g. flushing buffers). Should be called at application exit. """ for wr in reversed(handlerList[:]): #errors might occur, for example, if files are locked #we just ignore them if raiseExceptions is not set try: h = wr() if h: try: h.acquire() h.flush() h.close() except (IOError, ValueError): # Ignore errors which might be caused # because handlers have been closed but # references to them are still around at # application exit. pass finally: h.release() except: if raiseExceptions: raise #else, swallow #Let's try and shutdown automatically on application exit... import atexit atexit.register(shutdown) # Null handler class NullHandler(Handler): """ This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. """ def handle(self, record): pass def emit(self, record): pass def createLock(self): self.lock = None # Warnings integration _warnings_showwarning = None def _showwarning(message, category, filename, lineno, file=None, line=None): """ Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. """ if file is not None: if _warnings_showwarning is not None: _warnings_showwarning(message, category, filename, lineno, file, line) else: s = warnings.formatwarning(message, category, filename, lineno, line) logger = getLogger("py.warnings") if not logger.handlers: logger.addHandler(NullHandler()) logger.warning("%s", s) def captureWarnings(capture): """ If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. """ global _warnings_showwarning if capture: if _warnings_showwarning is None: _warnings_showwarning = warnings.showwarning warnings.showwarning = _showwarning else: if _warnings_showwarning is not None: warnings.showwarning = _warnings_showwarning _warnings_showwarning = None PK`d1]/ )__pycache__/__init__.cpython-36.opt-1.pycnu[3 \e*@sdZddlZddlZddlZddlZddlZddlZddlZddlZddl m Z dddddd d d d d ddddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-g*Z y ddl Z Wne k rdZ YnXd.Zd/Zd0Zd1ZejZd2Zd2Zd2Zd2Zd3ZeZd4Zd5ZeZd6Zd7ZdZedededededediZeeeeeeeed8Z d9d Z!d:dZ"e#ed;rndd?Z$ej%j&e"j'j(Z)d@dAZ*e re j+Z,ndZ,dBdCZ-dDdEZ.GdFdde/Z0e0a1dGd+Z2dHd*Z3dId%Z4GdJdKdKe/Z5GdLdMdMe5Z6GdNdOdOe5Z7dPZ8e5e8fe6dQfe7dRfdSZ9GdTd d e/Z:e:Z;GdUdde/Zej?Z@gZAdYdZZBd[d\ZCGd]d d e>ZDGd^ddeDZEGd_d d eEZFGd`dadaeEZGeGeZHeHZIGdbdcdce/ZJddd&ZKded"ZLGdfdgdge/ZMGdhdde>ZNGdidjdjeNZOeNaPGdkdde/ZQeOeZReReN_ReMeNjReN_SdldZTd}dmd!ZUdndZVeVZWdodZXd2dpdqdZYdrd)ZZdsd(Z[dtd#Z\dudZ]dvd$Z^dwdZ_eAfdxd'Z`ddlaZaeajbe`GdyddeDZcdadd~dzd{Zed|dZfdS)z Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2016 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N)Template BASIC_FORMATBufferingFormatterCRITICALDEBUGERRORFATAL FileHandlerFilter FormatterHandlerINFO LogRecordLogger LoggerAdapterNOTSET NullHandler StreamHandlerWARNWARNING addLevelName basicConfigcaptureWarningscriticaldebugdisableerror exceptionfatal getLevelName getLoggergetLoggerClassinfolog makeLogRecordsetLoggerClassshutdownwarnwarninggetLogRecordFactorysetLogRecordFactory lastResortraiseExceptionsz&Vinay Sajip Z productionz0.5.1.2z07 February 2010T2( )rrrrrr rrcCs4tj|}|dk r|Stj|}|dk r,|Sd|S)a Return the textual representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. Otherwise, the string "Level %s" % level is returned. NzLevel %s) _levelToNameget _nameToLevel)levelresultr7(/usr/lib64/python3.6/logging/__init__.pyrxs  c Cs(tz|t|<|t|<WdtXdS)zy Associate 'levelName' with 'level'. This is used when converting levels to text during message formatting. N) _acquireLockr2r4 _releaseLock)r5Z levelNamer7r7r8rs   _getframecCs tjdS)N)sysr;r7r7r7r8sr>c Cs.ytWn tk r(tjdjjSXdS)z5Return the frame object for the caller's stack frame.N) Exceptionr=exc_infotb_framef_backr7r7r7r8 currentframesrDcCsJt|tr|}n6t||kr:|tkr0td|t|}n td||S)NzUnknown level: %rz*Level not an integer or a valid string: %r) isinstanceintstrr4 ValueError TypeError)r5rvr7r7r8 _checkLevels     rKcCstr tjdS)z Acquire the module-level lock for serializing access to shared data. This should be released with _releaseLock(). N)_lockacquirer7r7r7r8r9sr9cCstr tjdS)zK Release the module-level lock acquired by calling _acquireLock(). N)rLreleaser7r7r7r8r:sr:c@s.eZdZdZd ddZddZeZddZdS) ra A LogRecord instance represents an event being logged. LogRecord instances are created every time something is logged. They contain all the information pertinent to the event being logged. The main information passed in is in msg and args, which are combined using str(msg) % args to create the message field of the record. The record also includes information such as when the record was created, the source line where the logging call was made, and any exception information to be logged. Nc Kstj} ||_||_|rDt|dkrDt|dtjrD|drD|d}||_t||_ ||_ ||_ y&t j j||_t j j|jd|_Wn&tttfk r||_d|_YnX||_d|_| |_||_||_| |_| t| d|_|jtd|_tot rt j!|_"t j#j|_$n d|_"d|_$t%s0d|_&nDd|_&t'j(j)d} | dk rty| j*j|_&Wnt+k rrYnXt,rt-t drt j.|_/nd|_/dS) zK Initialize a logging record with interesting information. rzUnknown moduleNiZ MainProcessZmultiprocessinggetpid)0timenamemsglenrE collectionsMappingargsrZ levelnamelevelnopathnameospathbasenamefilenamesplitextmodulerIrHAttributeErrorrAexc_text stack_infolinenoZfuncNamecreatedrFmsecs _startTimeZrelativeCreated logThreads threading get_identZthreadZcurrent_threadZ threadNamelogMultiprocessingZ processNamer=modulesr3Zcurrent_processr@ logProcesseshasattrrPprocess) selfrRr5rYrcrSrWrAfuncsinfokwargsctZmpr7r7r8__init__sR        zLogRecord.__init__cCsd|j|j|j|j|jfS)Nz!)rRrXrYrcrS)ror7r7r8__str__Cs zLogRecord.__str__cCst|j}|jr||j}|S)z Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. )rGrSrW)rorSr7r7r8 getMessageIs  zLogRecord.getMessage)NN)__name__ __module__ __qualname____doc__rtru__repr__rvr7r7r7r8rs   GcCs|adS)z Set the factory to be used when instantiating a log record. :param factory: A callable which will be called to instantiate a log record. N)_logRecordFactory)factoryr7r7r8r*ZscCstS)zH Return the factory to be used when instantiating a log record. )r|r7r7r7r8r)dsc Cs&tdddddfdd}|jj||S)z Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. Nr)r|__dict__update)dictrJr7r7r8r$ks c@s0eZdZdZdZdZddZddZdd Zd S) PercentStylez %(message)sz %(asctime)sz %(asctime)cCs|p|j|_dS)N)default_format_fmt)rofmtr7r7r8rtszPercentStyle.__init__cCs|jj|jdkS)Nr)rfindasctime_search)ror7r7r8usesTimeszPercentStyle.usesTimecCs |j|jS)N)rr)rorecordr7r7r8formatszPercentStyle.formatN) rwrxryrasctime_formatrrtrrr7r7r7r8rzs rc@s eZdZdZdZdZddZdS)StrFormatStylez {message}z {asctime}z{asctimecCs|jjf|jS)N)rrr)rorr7r7r8rszStrFormatStyle.formatN)rwrxryrrrrr7r7r7r8rsrc@s0eZdZdZdZdZddZddZddZd S) StringTemplateStylez ${message}z ${asctime}cCs|p|j|_t|j|_dS)N)rrr_tpl)rorr7r7r8rts zStringTemplateStyle.__init__cCs$|j}|jddkp"|j|jdkS)Nz$asctimer)rrr)rorr7r7r8rszStringTemplateStyle.usesTimecCs|jjf|jS)N)rZ substituter)rorr7r7r8rszStringTemplateStyle.formatN) rwrxryrrrrtrrr7r7r7r8rs rz"%(levelname)s:%(name)s:%(message)sz{levelname}:{name}:{message}z${levelname}:${name}:${message})%{$c@sZeZdZdZejZdddZdZdZ ddd Z d d Z d d Z ddZ ddZddZdS)r a Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the the style-dependent default value, "%(message)s", "{message}", or "${message}", is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted NrcCsD|tkrtddjtjt|d||_|jj|_||_dS)a Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument. If datefmt is omitted, you get an ISO8601-like (or RFC 3339-like) format. Use a style parameter of '%', '{' or '$' to specify that you want to use one of %-formatting, :meth:`str.format` (``{}``) formatting or :class:`string.Template` formatting in your format string. .. versionchanged:: 3.2 Added the ``style`` parameter. zStyle must be one of: %s,rN)_STYLESrHjoinkeys_stylerdatefmt)rorrstyler7r7r8rts  zFormatter.__init__z%Y-%m-%d %H:%M:%Sz%s,%03dcCs@|j|j}|rtj||}ntj|j|}|j||jf}|S)a% Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, an ISO8601-like (or RFC 3339-like) format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. ) converterrdrQZstrftimedefault_time_formatdefault_msec_formatre)rorrrsstr7r7r8 formatTimes  zFormatter.formatTimecCsZtj}|d}tj|d|d|d||j}|j|dddkrV|dd}|S)z Format and return the specified exception information as a string. This default implementation just uses traceback.print_exception() r?rrON r)ioStringIO tracebackprint_exceptiongetvalueclose)roZeisiotbrr7r7r8formatException s zFormatter.formatExceptioncCs |jjS)zK Check if the format uses the creation time of the record. )rr)ror7r7r8rszFormatter.usesTimecCs |jj|S)N)rr)rorr7r7r8 formatMessage$szFormatter.formatMessagecCs|S)aU This method is provided as an extension point for specialized formatting of stack information. The input data is a string as returned from a call to :func:`traceback.print_stack`, but with the last trailing newline removed. The base implementation just returns the value passed in. r7)rorbr7r7r8 formatStack's zFormatter.formatStackcCs|j|_|jr"|j||j|_|j|}|jrF|jsF|j |j|_|jrn|dddkrd|d}||j}|j r|dddkr|d}||j |j }|S)az Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. rONrrr) rvmessagerrrasctimerrArarrbr)rorrr7r7r8r4s   zFormatter.format)NNr)N)rwrxryrzrQZ localtimerrtrrrrrrrrr7r7r7r8r s)   c@s2eZdZdZd ddZddZddZd d ZdS) rzB A formatter suitable for formatting a number of records. NcCs|r ||_nt|_dS)zm Optionally specify a formatter which will be used to format each individual record. N)linefmt_defaultFormatter)rorr7r7r8rt]szBufferingFormatter.__init__cCsdS)zE Return the header string for the specified records. r~r7)rorecordsr7r7r8 formatHeadergszBufferingFormatter.formatHeadercCsdS)zE Return the footer string for the specified records. r~r7)rorr7r7r8 formatFootermszBufferingFormatter.formatFootercCsNd}t|dkrJ||j|}x|D]}||jj|}q$W||j|}|S)zQ Format the specified records and return the result as a string. r~r)rTrrrr)rorrJrr7r7r8rss  zBufferingFormatter.format)N)rwrxryrzrtrrrr7r7r7r8rYs  c@s"eZdZdZdddZddZdS) r a Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. r~cCs||_t||_dS)z Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. N)rRrTnlen)rorRr7r7r8rtszFilter.__init__cCsJ|jdkrdS|j|jkrdS|jj|jd|jdkr:dS|j|jdkS)z Determine if the specified record is to be logged. Is the specified record to be logged? Returns 0 for no, nonzero for yes. If deemed appropriate, the record may be modified in-place. rTF.)rrRr)rorr7r7r8filters  z Filter.filterN)r~)rwrxryrzrtrr7r7r7r8r s  c@s0eZdZdZddZddZddZdd Zd S) Filtererz[ A base class for loggers and handlers which allows them to share common code. cCs g|_dS)zE Initialize the list of filters to be an empty list. N)filters)ror7r7r8rtszFilterer.__init__cCs||jkr|jj|dS)z; Add the specified filter to this handler. N)rappend)rorr7r7r8 addFilters zFilterer.addFiltercCs||jkr|jj|dS)z@ Remove the specified filter from this handler. N)rremove)rorr7r7r8 removeFilters zFilterer.removeFiltercCs@d}x6|jD],}t|dr&|j|}n||}|s d}Pq W|S)ah Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this and the record is then dropped. Returns a zero value if a record is to be dropped, else non-zero. .. versionchanged:: 3.2 Allow filters to be just callables. TrF)rrmr)rorrJfr6r7r7r8rs    zFilterer.filterN)rwrxryrzrtrrrr7r7r7r8rs rc CsFttt}}}|rB|rB|rB|z||kr6|j|Wd|XdS)zD Remove a handler reference from the internal cleanup list. N)r9r: _handlerListr)wrrMrNhandlersr7r7r8_removeHandlerRefs rc Cs*tztjtj|tWdtXdS)zL Add a handler to the internal cleanup list using a weak reference. N)r9rrweakrefrefrr:)Zhandlerr7r7r8_addHandlerRefsrc@seZdZdZefddZddZddZeeeZ dd Z d d Z d d Z ddZ ddZddZddZddZddZddZddZddZd S)!r aq Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. cCs4tj|d|_t||_d|_t||jdS)zz Initializes the instance - basically setting the formatter to None and the filter list to empty. N)rrt_namerKr5 formatterr createLock)ror5r7r7r8rts   zHandler.__init__cCs|jS)N)r)ror7r7r8get_nameszHandler.get_namec Cs<tz(|jtkrt|j=||_|r,|t|<WdtXdS)N)r9r _handlersr:)rorRr7r7r8set_names  zHandler.set_namecCstrtj|_nd|_dS)zU Acquire a thread lock for serializing access to the underlying I/O. N)rhRLocklock)ror7r7r8r s zHandler.createLockcCs|jr|jjdS)z. Acquire the I/O thread lock. N)rrM)ror7r7r8rM)szHandler.acquirecCs|jr|jjdS)z. Release the I/O thread lock. N)rrN)ror7r7r8rN0szHandler.releasecCst||_dS)zX Set the logging level of this handler. level must be an int or a str. N)rKr5)ror5r7r7r8setLevel7szHandler.setLevelcCs|jr|j}nt}|j|S)z Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. )rrr)rorrr7r7r8r=szHandler.formatcCs tddS)z Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. z.emit must be implemented by Handler subclassesN)NotImplementedError)rorr7r7r8emitJsz Handler.emitc Cs4|j|}|r0|jz|j|Wd|jX|S)a< Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns whether the filter passed the record for emission. N)rrMrrN)rorrJr7r7r8handleTs  zHandler.handlecCs ||_dS)z5 Set the formatter for this handler. N)r)rorr7r7r8 setFormatterfszHandler.setFormattercCsdS)z Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. Nr7)ror7r7r8flushlsz Handler.flushc Cs0tz|jr |jtkr t|j=WdtXdS)a% Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. N)r9rrr:)ror7r7r8rus  z Handler.closecCs totjrtj\}}}zytjjdtj|||dtjtjjd|j}x&|rvtj j |j j t dkrv|j}qRW|rtj|tjdntjjd|j|jfytjjd|j|jfWn tk rtjjdYnXWntk rYnXWd~~~XdS) aD Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. z--- Logging error --- Nz Call stack: r)filezLogged from file %s, line %s zMessage: %r Arguments: %s zwUnable to print the message and arguments - possible formatting error. Use the traceback above to help find the error. )r,r=stderrrAwriterrrBrZr[dirnamef_code co_filename__path__rC print_stackr]rcrSrWr@OSError)rorrvrframer7r7r8 handleErrors.      zHandler.handleErrorcCst|j}d|jj|fS)Nz <%s (%s)>)rr5 __class__rw)ror5r7r7r8r{s zHandler.__repr__N)rwrxryrzrrtrrpropertyrRrrMrNrrrrrrrrr{r7r7r7r8r s"      -c@s6eZdZdZdZd ddZddZdd Zd d ZdS) rz A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. rNcCs"tj||dkrtj}||_dS)zb Initialize the handler. If stream is not specified, sys.stderr is used. N)r rtr=rstream)rorr7r7r8rts zStreamHandler.__init__c Cs8|jz |jr&t|jdr&|jjWd|jXdS)z% Flushes the stream. rN)rMrrmrrN)ror7r7r8rs zStreamHandler.flushc CsVy2|j|}|j}|j||j|j|jWntk rP|j|YnXdS)a Emit a record. If a formatter is specified, it is used to format the record. The record is then written to the stream with a trailing newline. If exception information is present, it is formatted using traceback.print_exception and appended to the stream. If the stream has an 'encoding' attribute, it is used to determine how to do the output to the stream. N)rrr terminatorrr@r)rorrSrr7r7r8rs     zStreamHandler.emitcCs6t|j}t|jdd}|r$|d7}d|jj||fS)NrRr~ z <%s %s(%s)>)rr5getattrrrrw)ror5rRr7r7r8r{s  zStreamHandler.__repr__)N) rwrxryrzrrtrrr{r7r7r7r8rs   c@s:eZdZdZdddZddZd d Zd d Zd dZdS)r zO A handler class which writes formatted logging records to disk files. aNFcCsTtj|}tjj||_||_||_||_|r@tj |d|_ nt j ||j dS)zO Open the specified file and use it as the stream for logging. N) rZfspathr[abspath baseFilenamemodeencodingdelayr rtrr_open)ror]rrrr7r7r8rts  zFileHandler.__init__cCsb|jzJz8|jr@z |jWd|j}d|_t|dr>|jXWdtj|XWd|jXdS)z$ Closes the stream. Nr)rMrrrmrrrN)rorr7r7r8r s  zFileHandler.closecCst|j|j|jdS)zx Open the current base file with the (original) mode and encoding. Return the resulting stream. )r)openrrr)ror7r7r8r szFileHandler._opencCs$|jdkr|j|_tj||dS)z Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. N)rrrr)rorr7r7r8r's  zFileHandler.emitcCst|j}d|jj|j|fS)Nz <%s %s (%s)>)rr5rrwr)ror5r7r7r8r{2s zFileHandler.__repr__)rNF) rwrxryrzrtrrrr{r7r7r7r8r s   c@s(eZdZdZefddZeddZdS)_StderrHandlerz This class is like a StreamHandler using sys.stderr, but always uses whatever sys.stderr is currently set to rather than the value of sys.stderr at handler construction time. cCstj||dS)z) Initialize the handler. N)r rt)ror5r7r7r8rt=sz_StderrHandler.__init__cCstjS)N)r=r)ror7r7r8rCsz_StderrHandler.streamN)rwrxryrzrrtrrr7r7r7r8r7s rc@s eZdZdZddZddZdS) PlaceHolderz PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. cCs|di|_dS)zY Initialize with the specified logger being a child of this placeholder. N) loggerMap)roaloggerr7r7r8rtUszPlaceHolder.__init__cCs||jkrd|j|<dS)zJ Add the specified logger as a child of this placeholder. N)r)rorr7r7r8r[s zPlaceHolder.appendN)rwrxryrzrtrr7r7r7r8rOsrcCs(|tkr t|ts td|j|adS)z Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() z(logger not derived from logging.Logger: N)r issubclassrIrw _loggerClass)klassr7r7r8r%fs   cCstS)zB Return the class to be used when instantiating a logger. )rr7r7r7r8r!ssc@s@eZdZdZddZddZddZdd Zd d Zd d Z dS)Managerzt There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. cCs(||_d|_d|_i|_d|_d|_dS)zT Initialize the manager with the root node of the logger hierarchy. rFN)rootremittedNoHandlerWarning loggerDict loggerClasslogRecordFactory)roZrootnoder7r7r8rt~s zManager.__init__c Csd}t|tstdtz||jkrv|j|}t|tr|}|jpHt|}||_||j|<|j |||j |n(|jp~t|}||_||j|<|j |Wdt X|S)a Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. NzA logger name must be a string) rErGrIr9rrrrmanager_fixupChildren _fixupParentsr:)rorRrJphr7r7r8r s(         zManager.getLoggercCs*|tkr t|ts td|j||_dS)zY Set the class to be used when instantiating a logger with this Manager. z(logger not derived from logging.Logger: N)rrrIrwr)rorr7r7r8r%s   zManager.setLoggerClasscCs ||_dS)zg Set the factory to be used when instantiating a log record with this Manager. N)r)ror}r7r7r8r*szManager.setLogRecordFactorycCs|j}|jd}d}xn|dkr| r|d|}||jkrJt||j|<n$|j|}t|trd|}n |j||jdd|d}qW|s|j}||_dS)z Ensure that there are either loggers or placeholders all the way from the specified logger to the root of the logger hierarchy. rNrrO) rRrfindrrrErrrparent)rorrRirJZsubstrobjr7r7r8rs      zManager._fixupParentscCsH|j}t|}x4|jjD]&}|jjd||kr|j|_||_qWdS)zk Ensure that children of the placeholder ph are connected to the specified logger. N)rRrTrrr)rorrrRZnamelencr7r7r8rs zManager._fixupChildrenN) rwrxryrzrtr r%r*rrr7r7r7r8rys " rc@seZdZdZefddZddZddZdd Zd d Z d d Z ddZ ddddZ ddZ e ZddZd2ddZd3ddZd4ddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1ZdS)5rar Instances of the Logger class represent a single logging channel. A "logging channel" indicates an area of an application. Exactly how an "area" is defined is up to the application developer. Since an application can have any number of areas, logging channels are identified by a unique string. Application areas can be nested (e.g. an area of "input processing" might include sub-areas "read CSV files", "read XLS files" and "read Gnumeric files"). To cater for this natural nesting, channel names are organized into a namespace hierarchy where levels are separated by periods, much like the Java or Python package namespace. So in the instance given above, channel names might be "input" for the upper level, and "input.csv", "input.xls" and "input.gnu" for the sub-levels. There is no arbitrary limit to the depth of nesting. cCs6tj|||_t||_d|_d|_g|_d|_dS)zJ Initialize the logger with a name and an optional level. NTF) rrtrRrKr5r propagaterdisabled)rorRr5r7r7r8rts  zLogger.__init__cCst||_dS)zW Set the logging level of this logger. level must be an int or a str. N)rKr5)ror5r7r7r8rszLogger.setLevelcOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'DEBUG'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.debug("Houston, we have a %s", "thorny problem", exc_info=1) N) isEnabledForr_log)rorSrWrrr7r7r8rs z Logger.debugcOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'INFO'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.info("Houston, we have a %s", "interesting problem", exc_info=1) N)rr r)rorSrWrrr7r7r8r"s z Logger.infocOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'WARNING'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.warning("Houston, we have a %s", "bit of a problem", exc_info=1) N)rrr)rorSrWrrr7r7r8r(s zLogger.warningcOs$tjdtd|j|f||dS)Nz6The 'warn' method is deprecated, use 'warning' insteadr?)warningsr'DeprecationWarningr()rorSrWrrr7r7r8r'*sz Logger.warncOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'ERROR'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.error("Houston, we have a %s", "major problem", exc_info=1) N)rrr)rorSrWrrr7r7r8r/s z Logger.errorT)rAcOs|j|f|d|i|dS)zU Convenience method for logging an ERROR with exception information. rAN)r)rorSrArWrrr7r7r8r;szLogger.exceptioncOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'CRITICAL'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.critical("Houston, we have a %s", "major disaster", exc_info=1) N)rrr)rorSrWrrr7r7r8rAs zLogger.criticalcOs<t|tstrtdndS|j|r8|j|||f|dS)z Log 'msg % args' with the integer severity 'level'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.log(level, "We have a %s", "mysterious problem", exc_info=1) zlevel must be an integerN)rErFr,rIrr)ror5rSrWrrr7r7r8r#Os   z Logger.logFcCst}|dk r|j}d }xt|dr|j}tjj|j}|tkrH|j}qd}|rt j }|j dt j ||d|j}|d d kr|dd }|j|j|j|j|f}PqW|S) z Find the stack frame of the caller so that we can note the source file name, line number and function name. N(unknown file)r(unknown function)rzStack (most recent call last): )rrOr)r rr Nrr)rDrCrmrrZr[normcaser_srcfilerrrrrrrf_linenoco_name)rorbrrJcor]rqrr7r7r8 findCaller`s,    zLogger.findCallerNc Cs^t||||||||| } | dk rZx8| D]0} | dks<| | jkrHtd| | | | j| <q&W| S)zr A factory method which can be overridden in subclasses to create specialized LogRecords. Nrrz$Attempt to overwrite %r in LogRecord)rr)r|rKeyError) rorRr5fnlnorSrWrArpextrarqrJkeyr7r7r8 makeRecord~s  zLogger.makeRecordc Csd}tr@y|j|\}} } }WqJtk r<d\}} } YqJXn d\}} } |r|t|trjt|||jf}nt|ts|tj }|j |j ||| |||| || } |j | dS)z Low-level logging routine which creates a LogRecord and then calls all the handlers of this logger to handle the record. N(unknown file)r(unknown function))rrr)rrr) r rrHrE BaseExceptiontype __traceback__tupler=rArrRr) ror5rSrWrArrbrqrrrprr7r7r8rs    z Logger._logcCs |j r|j|r|j|dS)z Call the handlers for the specified record. This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied. N)rr callHandlers)rorr7r7r8rsz Logger.handlec Cs.tz||jkr|jj|WdtXdS)z; Add the specified handler to this logger. N)r9rrr:)rohdlrr7r7r8 addHandlers  zLogger.addHandlerc Cs.tz||jkr|jj|WdtXdS)z@ Remove the specified handler from this logger. N)r9rrr:)rorr7r7r8 removeHandlers  zLogger.removeHandlercCs2|}d}x$|r,|jrd}P|js$Pq |j}q W|S)a See if this logger has any handlers configured. Loop through all handlers for this logger and its parents in the logger hierarchy. Return True if a handler was found, else False. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger which is checked for the existence of handlers. FT)rrr)rorrJr7r7r8 hasHandlerss  zLogger.hasHandlerscCs|}d}xH|rPx,|jD]"}|d}|j|jkr|j|qW|jsHd}q |j}q W|dkrtrv|jtjkrtj|n(tr|jj rt j j d|j d|j_ dS)a Pass a record to all relevant handlers. Loop through all handlers for this logger and its parents in the logger hierarchy. If no handler was found, output a one-off error message to sys.stderr. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger whose handlers are called. rrONz+No handlers could be found for logger "%s" T)rrXr5rrrr+r,rrr=rrrR)rorrfoundrr7r7r8rs$       zLogger.callHandlerscCs$|}x|r|jr|jS|j}qWtS)z Get the effective level for this logger. Loop through this logger and its parents in the logger hierarchy, looking for a non-zero logging level. Return the first one found. )r5rr)rologgerr7r7r8getEffectiveLevels  zLogger.getEffectiveLevelcCs|jj|krdS||jkS)z; Is this logger enabled for level 'level'? F)rrr$)ror5r7r7r8rs zLogger.isEnabledForcCs&|j|k rdj|j|f}|jj|S)ab Get a logger which is a descendant to this one. This is a convenience method, such that logging.getLogger('abc').getChild('def.ghi') is the same as logging.getLogger('abc.def.ghi') It's useful, for example, when the parent logger is named using __name__ rather than a literal string. r)rrrRrr )rosuffixr7r7r8getChilds zLogger.getChildcCs t|j}d|jj|j|fS)Nz <%s %s (%s)>)rr$rrwrR)ror5r7r7r8r{#s zLogger.__repr__)F)NNN)NNF)rwrxryrzrrtrrr"r(r'rrrrr#rrrrrr r!rr$rr&r{r7r7r7r8rs0            c@seZdZdZddZdS) RootLoggerz A root logger is not that different to any other logger, except that it must have a logging level and there is only one instance of it in the hierarchy. cCstj|d|dS)z= Initialize the logger with the name "root". rN)rrt)ror5r7r7r8rt.szRootLogger.__init__N)rwrxryrzrtr7r7r7r8r'(sr'c@seZdZdZddZddZddZdd Zd d Zd d Z ddZ ddddZ ddZ ddZ ddZddZddZddZd+d"d#Zed$d%Zejd&d%Zed'd(Zd)d*Zd S),rzo An adapter for loggers which makes it easier to specify contextual information in logging output. cCs||_||_dS)ax Initialize the adapter with a logger and a dict-like object which provides contextual information. This constructor signature allows easy stacking of LoggerAdapters, if so desired. You can effectively pass keyword arguments as shown in the following example: adapter = LoggerAdapter(someLogger, dict(p1=v1, p2="v2")) N)r#r)ror#rr7r7r8rt<s zLoggerAdapter.__init__cCs|j|d<||fS)a Process the logging message and keyword arguments passed in to a logging call to insert contextual information. You can either manipulate the message itself, the keyword args or both. Return the message and kwargs modified (or not) to suit your needs. Normally, you'll only need to override this one method in a LoggerAdapter subclass for your specific needs. r)r)rorSrrr7r7r8rnJs zLoggerAdapter.processcOs|jt|f||dS)zA Delegate a debug call to the underlying logger. N)r#r)rorSrWrrr7r7r8rZszLoggerAdapter.debugcOs|jt|f||dS)zA Delegate an info call to the underlying logger. N)r#r )rorSrWrrr7r7r8r"`szLoggerAdapter.infocOs|jt|f||dS)zC Delegate a warning call to the underlying logger. N)r#r)rorSrWrrr7r7r8r(fszLoggerAdapter.warningcOs$tjdtd|j|f||dS)Nz6The 'warn' method is deprecated, use 'warning' insteadr?)rr'rr()rorSrWrrr7r7r8r'lszLoggerAdapter.warncOs|jt|f||dS)zB Delegate an error call to the underlying logger. N)r#r)rorSrWrrr7r7r8rqszLoggerAdapter.errorT)rAcOs |jt|f|d|i|dS)zF Delegate an exception call to the underlying logger. rAN)r#r)rorSrArWrrr7r7r8rwszLoggerAdapter.exceptioncOs|jt|f||dS)zD Delegate a critical call to the underlying logger. N)r#r)rorSrWrrr7r7r8r}szLoggerAdapter.criticalcOs4|j|r0|j||\}}|jj||f||dS)z Delegate a log call to the underlying logger, after adding contextual information from this adapter instance. N)rrnr#r#)ror5rSrWrrr7r7r8r#s zLoggerAdapter.logcCs|jjj|krdS||jkS)z; Is this logger enabled for level 'level'? F)r#rrr$)ror5r7r7r8rszLoggerAdapter.isEnabledForcCs|jj|dS)zC Set the specified level on the underlying logger. N)r#r)ror5r7r7r8rszLoggerAdapter.setLevelcCs |jjS)zD Get the effective level for the underlying logger. )r#r$)ror7r7r8r$szLoggerAdapter.getEffectiveLevelcCs |jjS)z@ See if the underlying logger has any handlers. )r#r!)ror7r7r8r!szLoggerAdapter.hasHandlersNFcCs|jj||||||dS)zX Low-level log implementation, proxied to allow nested logger adapters. )rArrb)r#r)ror5rSrWrArrbr7r7r8rszLoggerAdapter._logcCs|jjS)N)r#r)ror7r7r8rszLoggerAdapter.managercCs ||j_dS)N)r#r)rovaluer7r7r8rscCs|jjS)N)r#rR)ror7r7r8rRszLoggerAdapter.namecCs&|j}t|j}d|jj|j|fS)Nz <%s %s (%s)>)r#rr$rrwrR)ror#r5r7r7r8r{s zLoggerAdapter.__repr__)NNF)rwrxryrzrtrnrr"r(r'rrrr#rrr$r!rrrsetterrRr{r7r7r7r8r6s(   c Kstzjttjdkrp|jdd}|dkrHd|kr`d|kr`tdnd|ksXd|kr`td|dkr|jdd}|jdd }|rt||}n|jdd}t|}|g}|jd d}|jd d }|tkrtd dj tj |jdt|d}t |||} x.|D]&}|j dkr |j | tj|qW|jdd} | dk rPtj| |rpdj |j } td| WdtXdS)a Do basic configuration for the logging system. This function does nothing if the root logger already has handlers configured. It is a convenience method intended for use by simple scripts to do one-shot configuration of the logging package. The default behaviour is to create a StreamHandler which writes to sys.stderr, set a formatter using the BASIC_FORMAT format string, and add the handler to the root logger. A number of optional keyword arguments may be specified, which can alter the default behaviour. filename Specifies that a FileHandler be created, using the specified filename, rather than a StreamHandler. filemode Specifies the mode to open the file, if filename is specified (if filemode is unspecified, it defaults to 'a'). format Use the specified format string for the handler. datefmt Use the specified date/time format. style If a format string is specified, use this to specify the type of format string (possible values '%', '{', '$', for %-formatting, :meth:`str.format` and :class:`string.Template` - defaults to '%'). level Set the root logger level to the specified level. stream Use the specified stream to initialize the StreamHandler. Note that this argument is incompatible with 'filename' - if both are present, 'stream' is ignored. handlers If specified, this should be an iterable of already created handlers, which will be added to the root handler. Any handler in the list which does not have a formatter assigned will be assigned the formatter created in this function. Note that you could specify a stream created using open(filename, mode) rather than passing the filename and mode in. However, it should be remembered that StreamHandler does not close its stream (since it may be using sys.stdout or sys.stderr), whereas FileHandler closes its stream when the handler is closed. .. versionchanged:: 3.2 Added the ``style`` parameter. .. versionchanged:: 3.3 Added the ``handlers`` parameter. A ``ValueError`` is now thrown for incompatible arguments (e.g. ``handlers`` specified together with ``filename``/``filemode``, or ``filename``/``filemode`` specified together with ``stream``, or ``handlers`` specified together with ``stream``. rrNrr]z8'stream' and 'filename' should not be specified togetherzG'stream' or 'filename' should not be specified together with 'handlers'filemoderrrrzStyle must be one of: %srrrOr5z, zUnrecognised argument(s): %s)r9rTrrpoprHr rrrrr rrrrr:) rrrr]rhrZdfsrZfsrr5rr7r7r8rsF4               cCs|rtjj|StSdS)z Return a logger with the specified name, creating it if necessary. If no name is specified, return the root logger. N)rrr r)rRr7r7r8r .s cOs*ttjdkrttj|f||dS)z Log a message with severity 'CRITICAL' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr)rSrWrrr7r7r8r9scOs*ttjdkrttj|f||dS)z Log a message with severity 'ERROR' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr)rSrWrrr7r7r8rEs)rAcOst|f|d|i|dS)z Log a message with severity 'ERROR' on the root logger, with exception information. If the logger has no handlers, basicConfig() is called to add a console handler with a pre-defined format. rAN)r)rSrArWrrr7r7r8rOscOs*ttjdkrttj|f||dS)z Log a message with severity 'WARNING' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr()rSrWrrr7r7r8r(WscOs"tjdtdt|f||dS)Nz8The 'warn' function is deprecated, use 'warning' insteadr?)rr'rr()rSrWrrr7r7r8r'ascOs*ttjdkrttj|f||dS)z Log a message with severity 'INFO' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr")rSrWrrr7r7r8r"fscOs*ttjdkrttj|f||dS)z Log a message with severity 'DEBUG' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr)rSrWrrr7r7r8rpscOs,ttjdkrttj||f||dS)z Log 'msg % args' with the integer severity 'level' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr#)r5rSrWrrr7r7r8r#zscCs |tj_dS)zB Disable all logging calls of severity 'level' and below. N)rrr)r5r7r7r8rscCsxt|ddD]l}yT|}|rhz:y|j|j|jWnttfk rXYnXWd|jXWqtrxYqXqWdS)z Perform any cleanup actions in the logging system (e.g. flushing buffers). Should be called at application exit. N)reversedrMrrrrHrNr,)Z handlerListrr,r7r7r8r&s  c@s(eZdZdZddZddZddZdS) ra This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. cCsdS)zStub.Nr7)rorr7r7r8rszNullHandler.handlecCsdS)zStub.Nr7)rorr7r7r8rszNullHandler.emitcCs d|_dS)N)r)ror7r7r8rszNullHandler.createLockN)rwrxryrzrrrr7r7r7r8rs cCs`|dk r$tdk r\t||||||n8tj|||||}td}|jsP|jt|jd|dS)a Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. Nz py.warningsz%s)_warnings_showwarningr formatwarningr rrrr()rcategoryr]rcrlinerr#r7r7r8 _showwarnings r2cCs0|rtdkr,tjatt_ntdk r,tt_dadS)z If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. N)r.r showwarningr2)Zcapturer7r7r8rs)N)NN)grzr=rZrQrrrrrUstringr__all__rh ImportError __author__Z __status__ __version__Z__date__rfr,rgrjrlrrrrrr rrr2r4rrrmrDr[r __code__rr rKrrLr9r:objectrr|r*r)r$rrrrrr rrr rWeakValueDictionaryrrrrr rr rZ_defaultLastResortr+rr%r!rrr'rrrrrr rrrrr(r'r"rr#rr&atexitregisterrr.r2rr7r7r7r8s@                  i   .*%4 >;E lE  b          PK`d1]^[^[!__pycache__/config.cpython-36.pycnu[3 \Ќ @stdZddlZddlZddlZddlZddlZddlZddlZddlZyddl Z ddl Z Wne k rpdZ YnXddl mZmZdZejZdad+ddZdd Zd d Zd d ZddZddZddZddZejdejZddZGddde Z!Gddde"e!Z#Gddde$e!Z%Gdd d e&e!Z'Gd!d"d"e Z(Gd#d$d$e(Z)e)Z*d%d&Z+edfd'd(Z,d)d*Z-dS),a Configuration functions for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N)ThreadingTCPServerStreamRequestHandleriF#Tc Csddl}t||jr|}n*|j|}t|dr:|j|n |j|t|}tj z t t ||}t |||Wdtj XdS)aD Read the logging configuration from a ConfigParser-format file. This can be called several times from an application, allowing an end user the ability to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration). rNreadline) configparser isinstanceZRawConfigParserZ ConfigParserhasattrZ read_fileread_create_formatterslogging _acquireLock_clearExistingHandlers_install_handlers_install_loggers _releaseLock)ZfnameZdefaultsdisable_existing_loggersrcp formattershandlersr&/usr/lib64/python3.6/logging/config.py fileConfig8s       rc Csp|jd}|jd}t|}xN|D]F}|d|}yt||}Wq"tk rft|t||}Yq"Xq"W|S)z)Resolve a dotted name to a global object..r)splitpop __import__getattrAttributeError)nameusedfoundnrrr_resolveZs    r!cCstdd|S)NcSs|jS)N)strip)xrrrisz_strip_spaces..)map)Zalistrrr _strip_spaceshsr&c Cs|dd}t|siS|jd}t|}i}x~|D]v}d|}|j|dddd}|j|d ddd}|j|d dd d}tj}||jd } | rt| }||||} | ||<q4W|S) zCreate and return formattersrkeys,z formatter_%sformatTN)rawfallbackdatefmtstyle%class)lenrr&getr Formatterr!) rZflistrZformZsectnameZfsZdfsZstlc class_namefrrrr ks$     r c CsD|dd}t|siS|jd}t|}i}g}x|D]}|d|}|d}|jdd}yt|tt}Wn ttfk rt |}YnX|d} t| tt} || } d |kr|d } | j | t|r| j ||t |tj jr|jd d} t| r|j| | f| ||<q8Wx |D]\} } | j|| q$W|S) zInstall and return handlersrr'r(z handler_%sr/ formatterargsleveltarget)r0rr&r1evalvarsr r NameErrorr!setLevel setFormatter issubclassr MemoryHandlerappendZ setTarget)rrhlistrZfixupshandsectionklassfmtr8hr9r:trrrr s>         r cCsHtj}x<|D]4}|jj|}||kr:tj|_g|_d|_q ||_q WdS)a When (re)configuring logging, handle loggers which were in the previous configuration but are not in the new configuration. There's no point deleting them as other threads may continue to hold references to them; and by disabling them, you stop them doing any logging. However, don't disable children of named loggers, as that's probably not what was intended by the user. Also, allow existing loggers to NOT be disabled if disable_existing is false. TN) r rootmanager loggerDictZNOTSETr9r propagatedisabled)existing child_loggersdisable_existingrJlogloggerrrr_handle_existing_loggerss   rTcCs,|dd}|jd}ttdd|}|jd|d}tj}|}d|kr^|d}|j|x |jd d D]}|j|qnW|d } t | r| jd} t | } x| D]} |j || qWt|j j j} | jg} x>|D]4}|d |}|d } |jd dd}tj| }| | kr| j| d}| d}t |}t | }x<||kr| |d ||krt| j| ||d7}qFW| j| d|kr|d}|j|x"|jd d D]}|j|qW||_d|_|d } t | r| jd} t | } x| D]} |j || qWqWt| | |d S)zCreate and install loggersloggersr'r(cSs|jS)N)r")r#rrrr$sz"_install_loggers..rJZ logger_rootr9Nrz logger_%squalnamerM)r+rr)rlistr%remover rJr>r removeHandlerr0r& addHandlerrKrLr'sortZgetint getLoggerindexrBrMrNrT)rrrQZllistrErJrRr9rHrCrDrOrPZqnrMrSiprefixedpflen num_existingrrrrsd                rcCs.tjjtjtjddtjdd=dS)z!Clear and close existing handlersN)r _handlersclearZshutdownZ _handlerListrrrrr s r z^[a-z_][a-z0-9_]*$cCstj|}|std|dS)Nz!Not a valid Python identifier: %rT) IDENTIFIERmatch ValueError)smrrr valid_idents  rjc@s"eZdZdZdddZddZdS) ConvertingMixinz?For ConvertingXXX's, this mixin class provides common functionsTcCsB|jj|}||k r>|r |||<t|tttfkr>||_||_|S)N) configuratorconverttypeConvertingDictConvertingListConvertingTupleparentkey)selfrsvaluereplaceresultrrrconvert_with_key$s  z ConvertingMixin.convert_with_keycCs0|jj|}||k r,t|tttfkr,||_|S)N)rlrmrnrorprqrr)rtrurwrrrrm0s   zConvertingMixin.convertN)T)__name__ __module__ __qualname____doc__rxrmrrrrrk!s rkc@s,eZdZdZddZd ddZd ddZdS) roz A converting dictionary wrapper.cCstj||}|j||S)N)dict __getitem__rx)rtrsrurrrr~Es zConvertingDict.__getitem__NcCstj|||}|j||S)N)r}r1rx)rtrsdefaultrurrrr1IszConvertingDict.getcCstj|||}|j||ddS)NF)rv)r}rrx)rtrsrrurrrrMszConvertingDict.pop)N)N)ryrzr{r|r~r1rrrrrroBs roc@s"eZdZdZddZd ddZdS) rpzA converting list wrapper.cCstj||}|j||S)N)rXr~rx)rtrsrurrrr~Ss zConvertingList.__getitem__rWcCstj||}|j|S)N)rXrrm)rtidxrurrrrWs zConvertingList.popN)r)ryrzr{r|r~rrrrrrpQsrpc@seZdZdZddZdS)rqzA converting tuple wrapper.cCstj||}|j||ddS)NF)rv)tupler~rx)rtrsrurrrr~]s zConvertingTuple.__getitem__N)ryrzr{r|r~rrrrrq[srqc@seZdZdZejdZejdZejdZejdZ ejdZ ddd Z e e Zd d Zd d ZddZddZddZddZddZdS)BaseConfiguratorzI The configurator base class which defines some useful defaults. z%^(?P[a-z]+)://(?P.*)$z ^\s*(\w+)\s*z^\.\s*(\w+)\s*z^\[\s*(\w+)\s*\]\s*z^\d+$ ext_convert cfg_convert)ZextZcfgcCst||_||j_dS)N)roconfigrl)rtrrrr__init__vs zBaseConfigurator.__init__c Cs|jd}|jd}y`|j|}xP|D]H}|d|7}yt||}Wq&tk rl|j|t||}Yq&Xq&W|Stk rtjdd\}}td||f}|||_ |_ |YnXdS)z` Resolve strings to objects using standard import and attribute syntax. rrrWNzCannot resolve %r: %s) rrimporterrr ImportErrorsysexc_inforg __cause__ __traceback__) rtrhrrrZfragetbvrrrresolvezs"      zBaseConfigurator.resolvecCs |j|S)z*Default converter for the ext:// protocol.)r)rtrurrrrszBaseConfigurator.ext_convertc Cs|}|jj|}|dkr&td|n||jd}|j|jd}x|r|jj|}|rp||jd}nd|jj|}|r|jd}|jj|s||}n2yt |}||}Wnt k r||}YnX|r||jd}qJtd||fqJW|S)z*Default converter for the cfg:// protocol.NzUnable to convert %rrzUnable to convert %r at %r) WORD_PATTERNrfrgendrgroups DOT_PATTERN INDEX_PATTERN DIGIT_PATTERNint TypeError)rtrurestridrr rrrrs2       zBaseConfigurator.cfg_convertcCst|t r&t|tr&t|}||_nt|t rLt|trLt|}||_n|t|t rrt|trrt|}||_nVt|tr|j j |}|r|j }|d}|j j |d}|r|d}t||}||}|S)z Convert values to an appropriate type. dicts, lists and tuples are replaced by their converting alternatives. Strings are checked to see if they have a conversion format and are converted if they do. prefixNsuffix)rror}rlrprXrqrstrCONVERT_PATTERNrf groupdictvalue_convertersr1r)rtrurirrZ converterrrrrrms*     zBaseConfigurator.convertcsrjd}t|s|j|}jdd}tfddD}|f|}|rnx |jD]\}}t|||qVW|S)z1Configure an object with a user-supplied factory.z()rNcs g|]}t|r||fqSr)rj).0k)rrr sz5BaseConfigurator.configure_custom..)rcallablerr}itemssetattr)rtrr3propskwargsrwrrur)rrconfigure_customs    z!BaseConfigurator.configure_customcCst|trt|}|S)z0Utility function which converts lists to tuples.)rrXr)rtrurrras_tuples zBaseConfigurator.as_tupleN)ryrzr{r|recompilerrrrrr staticmethodrrrrrrrmrrrrrrrbs      "rc@s^eZdZdZddZddZddZdd Zd d Zd d Z dddZ dddZ dddZ dS)DictConfiguratorz] Configure logging using a dictionary-like object to describe the configuration. cCs|j}d|krtd|ddkr2td|d|jdd}i}tjz|r|jd|}x|D]}|tjkrtd|qfy6tj|}||}|jd d }|r|jtj|Wqft k r} ztd || fWYd d } ~ XqfXqfW|jd |} xZ| D]R}y|j || |d Wn4t k rP} ztd|| fWYd d } ~ XnXqW|jdd } | ry|j | d Wn0t k r} ztd| WYd d } ~ XnXn:|jdd } t |jd|} xZ| D]R}y|j | || |<Wn4t k r"} ztd|| fWYd d } ~ XnXqW|jd|}xZ|D]R}y|j||||<Wn4t k r} ztd|| fWYd d } ~ XnXq _checkLevel Exceptionconfigure_loggerconfigure_rootr configure_formatterconfigure_filtersortedconfigure_handlerrrrBrJrXrKrLr'r\r^r0rYrTr)rtrrZ EMPTY_DICTrrhandlerZhandler_configr9rrUrJrQrrZdeferredrOrPr_r`rarbrrr configures        "  $    $  $   $  $      $ zDictConfigurator.configurec Csd|krr|d}y|j|}Wqtk rn}z4dt|kr>|jd|d<||d<|j|}WYdd}~XqXnP|jdd}|jdd}|jdd}|jd d}|stj} nt|} | |||}|S) z(Configure a formatter from a dictionary.z()z'format'r)rGNr,r-r.r/)rrrrr1r r2r!) rtrfactoryrwterGZdfmtr-cnamer3rrrrs&      z$DictConfigurator.configure_formattercCs.d|kr|j|}n|jdd}tj|}|S)z%Configure a filter from a dictionary.z()rr7)rr1r ZFilter)rtrrwrrrrrs    z!DictConfigurator.configure_filtercCs^xX|D]P}y|j|jd|Wqtk rT}ztd||fWYdd}~XqXqWdS)z/Add filters to a filterer from a list of names.rzUnable to add filter %r: %sN)Z addFilterrrrg)rtZfiltererrr5rrrr add_filterss  zDictConfigurator.add_filtersc/st}jdd}|r^y|jd|}Wn2tk r\}ztd||fWYdd}~XnXjdd}jdd}dkrjd}t|s|j|}|}njd} |j| } t| tj j od krHy>|jd d } t | tj sj |td | d <Wn8tk rD}ztd d |fWYdd}~XnXnZt| tj jrvd krv|jd d <n,t| tj jrdkr|jdd<| }jdd} tfddD} y|f| }WnLtk r"}z.dt|kr| jd| d<|f| }WYdd}~XnX|r4|j||dk rN|jtj||r`|j||| rx"| jD]\}}t|||qpW|S)z&Configure a handler from a dictionary.r6NrzUnable to set formatter %r: %sr9rz()r/r:rztarget not configured yetz#Unable to set target handler %r: %sZmailhostZaddressrcs g|]}t|r||fqSr)rj)rr)rrrrsz6DictConfigurator.configure_handler..z'stream'streamZstrm)r}rrrrgrrr@r rrArZHandlerupdaterZ SMTPHandlerrZ SysLogHandlerrr?r>rrrr)rtrZ config_copyr6rr9rr3rrrFZthrrrwrrrur)rrrsl          $      z"DictConfigurator.configure_handlercCs^xX|D]P}y|j|jd|Wqtk rT}ztd||fWYdd}~XqXqWdS)z.Add handlers to a logger from a list of names.rzUnable to add handler %r: %sN)r[rrrg)rtrSrrHrrrr add_handlerss  zDictConfigurator.add_handlersFcCs|jdd}|dk r$|jtj||sx |jddD]}|j|q8W|jdd}|rf|j|||jdd}|r|j||dS)zU Perform configuration which is common to root and non-root loggers. r9Nrr)r1r>r rrrZrr)rtrSrrr9rHrrrrrcommon_logger_configs    z%DictConfigurator.common_logger_configcCs6tj|}|j||||jdd}|dk r2||_dS)z.Configure a non-root logger from a dictionary.rMN)r r]rr1rM)rtrrrrSrMrrrrs   z!DictConfigurator.configure_loggercCstj}|j|||dS)z*Configure a root logger from a dictionary.N)r r]r)rtrrrJrrrrszDictConfigurator.configure_rootN)F)F)F) ryrzr{r|rrrrrrrrrrrrrrs ?  rcCst|jdS)z%Configure logging using a dictionary.N)dictConfigClassr)rrrr dictConfig srcsPts tdGdddt}Gdddt}Gfdddtj||||S)au Start up a socket server on the specified port, and listen for new configurations. These will be sent as a file suitable for processing by fileConfig(). Returns a Thread object on which you can call start() to start the server, and which you can join() when appropriate. To stop the server, call stopListening(). Use the ``verify`` argument to verify any bytes received across the wire from a client. If specified, it should be a callable which receives a single argument - the bytes of configuration data received across the network - and it should return either ``None``, to indicate that the passed in bytes could not be verified and should be discarded, or a byte string which is then passed to the configuration machinery as normal. Note that you can return transformed bytes, e.g. by decrypting the bytes passed in. z listen() needs threading to workc@seZdZdZddZdS)z#listen..ConfigStreamHandlerz Handler for a logging configuration request. It expects a completely new logging configuration and uses fileConfig to install it. cSs\y"|j}|jd}t|dkr"tjd|d}|jj|}x&t||krd||j|t|}q@W|jjdk r~|jj|}|dk r |jd}y,ddl}|j |}t |t st t |WnLtk r tj|}y t|Wntk rtjYnXYnX|jjr"|jjjWn2tk rV}z|jtkrFWYdd}~XnXdS)z Handle a request. Each request is expected to be a 4-byte length, packed using struct.pack(">L", n), followed by the config file. Uses fileConfig() to do the grunt work. z>LrNzutf-8)Z connectionZrecvr0structZunpackserververifydecodejsonloadsrr}AssertionErrorrrioStringIOr traceback print_excreadysetOSErrorerrno RESET_ERROR)rtZconnchunkZslenrrfilerrrrhandleBs8            z*listen..ConfigStreamHandler.handleN)ryrzr{r|rrrrrConfigStreamHandler;src@s0eZdZdZdZdedddfddZddZdS) z$listen..ConfigSocketReceiverzD A simple TCP socket-based logging config receiver. rWZ localhostNcSs>tj|||f|tjd|_tjd|_||_||_dS)NrrW) rrr r abortrtimeoutrr)rthostportrrrrrrrpsz-listen..ConfigSocketReceiver.__init__cSsfddl}d}xJ|sV|j|jjggg|j\}}}|r>|jtj|j}tjqW|jj dS)Nr) selectZsocketfilenorZhandle_requestr r rrclose)rtrrZrdwrZexrrrserve_until_stoppedzs z8listen..ConfigSocketReceiver.serve_until_stopped)ryrzr{r|Zallow_reuse_addressDEFAULT_LOGGING_CONFIG_PORTrrrrrrConfigSocketReceiveris  rcs&eZdZfddZddZZS)zlisten..Servercs4t|j||_||_||_||_tj|_dS)N) superrrcvrhdlrrr threadingZEventr)rtrrrr)Server __class__rrrs zlisten..Server.__init__cSsZ|j|j|j|j|jd}|jdkr0|jd|_|jjtj|a tj |j dS)N)rrrrrrW) rrrrrZserver_addressrr r _listenerrr)rtrrrrruns     zlisten..Server.run)ryrzr{rr __classcell__r)r)rrrsr)threadNotImplementedErrorrrrZThread)rrrrr)rrlisten%s .rc Cs*tjztrdt_daWdtjXdS)zN Stop the listening server which was created with a call to listen(). rWN)r r rrrrrrr stopListenings r)NT).r|rrr Zlogging.handlersrrrr_threadrrrZ socketserverrrrZ ECONNRESETrrrr!r&r r rTrr rIrerjobjectrkr}rorXrprrqrrrrrrrrrrsP   "#W! 9|PK`d1]Pm=.[.['__pycache__/config.cpython-36.opt-1.pycnu[3 \Ќ @stdZddlZddlZddlZddlZddlZddlZddlZddlZyddl Z ddl Z Wne k rpdZ YnXddl mZmZdZejZdad+ddZdd Zd d Zd d ZddZddZddZddZejdejZddZGddde Z!Gddde"e!Z#Gddde$e!Z%Gdd d e&e!Z'Gd!d"d"e Z(Gd#d$d$e(Z)e)Z*d%d&Z+edfd'd(Z,d)d*Z-dS),a Configuration functions for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N)ThreadingTCPServerStreamRequestHandleriF#Tc Csddl}t||jr|}n*|j|}t|dr:|j|n |j|t|}tj z t t ||}t |||Wdtj XdS)aD Read the logging configuration from a ConfigParser-format file. This can be called several times from an application, allowing an end user the ability to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration). rNreadline) configparser isinstanceZRawConfigParserZ ConfigParserhasattrZ read_fileread_create_formatterslogging _acquireLock_clearExistingHandlers_install_handlers_install_loggers _releaseLock)ZfnameZdefaultsdisable_existing_loggersrcp formattershandlersr&/usr/lib64/python3.6/logging/config.py fileConfig8s       rc Csp|jd}|jd}t|}xN|D]F}|d|}yt||}Wq"tk rft|t||}Yq"Xq"W|S)z)Resolve a dotted name to a global object..r)splitpop __import__getattrAttributeError)nameusedfoundnrrr_resolveZs    r!cCstdd|S)NcSs|jS)N)strip)xrrrisz_strip_spaces..)map)Zalistrrr _strip_spaceshsr&c Cs|dd}t|siS|jd}t|}i}x~|D]v}d|}|j|dddd}|j|d ddd}|j|d dd d}tj}||jd } | rt| }||||} | ||<q4W|S) zCreate and return formattersrkeys,z formatter_%sformatTN)rawfallbackdatefmtstyle%class)lenrr&getr Formatterr!) rZflistrZformZsectnameZfsZdfsZstlc class_namefrrrr ks$     r c CsD|dd}t|siS|jd}t|}i}g}x|D]}|d|}|d}|jdd}yt|tt}Wn ttfk rt |}YnX|d} t| tt} || } d |kr|d } | j | t|r| j ||t |tj jr|jd d} t| r|j| | f| ||<q8Wx |D]\} } | j|| q$W|S) zInstall and return handlersrr'r(z handler_%sr/ formatterargsleveltarget)r0rr&r1evalvarsr r NameErrorr!setLevel setFormatter issubclassr MemoryHandlerappendZ setTarget)rrhlistrZfixupshandsectionklassfmtr8hr9r:trrrr s>         r cCsHtj}x<|D]4}|jj|}||kr:tj|_g|_d|_q ||_q WdS)a When (re)configuring logging, handle loggers which were in the previous configuration but are not in the new configuration. There's no point deleting them as other threads may continue to hold references to them; and by disabling them, you stop them doing any logging. However, don't disable children of named loggers, as that's probably not what was intended by the user. Also, allow existing loggers to NOT be disabled if disable_existing is false. TN) r rootmanager loggerDictZNOTSETr9r propagatedisabled)existing child_loggersdisable_existingrJlogloggerrrr_handle_existing_loggerss   rTcCs,|dd}|jd}ttdd|}|jd|d}tj}|}d|kr^|d}|j|x |jd d D]}|j|qnW|d } t | r| jd} t | } x| D]} |j || qWt|j j j} | jg} x>|D]4}|d |}|d } |jd dd}tj| }| | kr| j| d}| d}t |}t | }x<||kr| |d ||krt| j| ||d7}qFW| j| d|kr|d}|j|x"|jd d D]}|j|qW||_d|_|d } t | r| jd} t | } x| D]} |j || qWqWt| | |d S)zCreate and install loggersloggersr'r(cSs|jS)N)r")r#rrrr$sz"_install_loggers..rJZ logger_rootr9Nrz logger_%squalnamerM)r+rr)rlistr%remover rJr>r removeHandlerr0r& addHandlerrKrLr'sortZgetint getLoggerindexrBrMrNrT)rrrQZllistrErJrRr9rHrCrDrOrPZqnrMrSiprefixedpflen num_existingrrrrsd                rcCs.tjjtjtjddtjdd=dS)z!Clear and close existing handlersN)r _handlersclearZshutdownZ _handlerListrrrrr s r z^[a-z_][a-z0-9_]*$cCstj|}|std|dS)Nz!Not a valid Python identifier: %rT) IDENTIFIERmatch ValueError)smrrr valid_idents  rjc@s"eZdZdZdddZddZdS) ConvertingMixinz?For ConvertingXXX's, this mixin class provides common functionsTcCsB|jj|}||k r>|r |||<t|tttfkr>||_||_|S)N) configuratorconverttypeConvertingDictConvertingListConvertingTupleparentkey)selfrsvaluereplaceresultrrrconvert_with_key$s  z ConvertingMixin.convert_with_keycCs0|jj|}||k r,t|tttfkr,||_|S)N)rlrmrnrorprqrr)rtrurwrrrrm0s   zConvertingMixin.convertN)T)__name__ __module__ __qualname____doc__rxrmrrrrrk!s rkc@s,eZdZdZddZd ddZd ddZdS) roz A converting dictionary wrapper.cCstj||}|j||S)N)dict __getitem__rx)rtrsrurrrr~Es zConvertingDict.__getitem__NcCstj|||}|j||S)N)r}r1rx)rtrsdefaultrurrrr1IszConvertingDict.getcCstj|||}|j||ddS)NF)rv)r}rrx)rtrsrrurrrrMszConvertingDict.pop)N)N)ryrzr{r|r~r1rrrrrroBs roc@s"eZdZdZddZd ddZdS) rpzA converting list wrapper.cCstj||}|j||S)N)rXr~rx)rtrsrurrrr~Ss zConvertingList.__getitem__rWcCstj||}|j|S)N)rXrrm)rtidxrurrrrWs zConvertingList.popN)r)ryrzr{r|r~rrrrrrpQsrpc@seZdZdZddZdS)rqzA converting tuple wrapper.cCstj||}|j||ddS)NF)rv)tupler~rx)rtrsrurrrr~]s zConvertingTuple.__getitem__N)ryrzr{r|r~rrrrrq[srqc@seZdZdZejdZejdZejdZejdZ ejdZ ddd Z e e Zd d Zd d ZddZddZddZddZddZdS)BaseConfiguratorzI The configurator base class which defines some useful defaults. z%^(?P[a-z]+)://(?P.*)$z ^\s*(\w+)\s*z^\.\s*(\w+)\s*z^\[\s*(\w+)\s*\]\s*z^\d+$ ext_convert cfg_convert)ZextZcfgcCst||_||j_dS)N)roconfigrl)rtrrrr__init__vs zBaseConfigurator.__init__c Cs|jd}|jd}y`|j|}xP|D]H}|d|7}yt||}Wq&tk rl|j|t||}Yq&Xq&W|Stk rtjdd\}}td||f}|||_ |_ |YnXdS)z` Resolve strings to objects using standard import and attribute syntax. rrrWNzCannot resolve %r: %s) rrimporterrr ImportErrorsysexc_inforg __cause__ __traceback__) rtrhrrrZfragetbvrrrresolvezs"      zBaseConfigurator.resolvecCs |j|S)z*Default converter for the ext:// protocol.)r)rtrurrrrszBaseConfigurator.ext_convertc Cs|}|jj|}|dkr&td|n||jd}|j|jd}x|r|jj|}|rp||jd}nd|jj|}|r|jd}|jj|s||}n2yt |}||}Wnt k r||}YnX|r||jd}qJtd||fqJW|S)z*Default converter for the cfg:// protocol.NzUnable to convert %rrzUnable to convert %r at %r) WORD_PATTERNrfrgendrgroups DOT_PATTERN INDEX_PATTERN DIGIT_PATTERNint TypeError)rtrurestridrr rrrrs2       zBaseConfigurator.cfg_convertcCst|t r&t|tr&t|}||_nt|t rLt|trLt|}||_n|t|t rrt|trrt|}||_nVt|tr|j j |}|r|j }|d}|j j |d}|r|d}t||}||}|S)z Convert values to an appropriate type. dicts, lists and tuples are replaced by their converting alternatives. Strings are checked to see if they have a conversion format and are converted if they do. prefixNsuffix)rror}rlrprXrqrstrCONVERT_PATTERNrf groupdictvalue_convertersr1r)rtrurirrZ converterrrrrrms*     zBaseConfigurator.convertcsrjd}t|s|j|}jdd}tfddD}|f|}|rnx |jD]\}}t|||qVW|S)z1Configure an object with a user-supplied factory.z()rNcs g|]}t|r||fqSr)rj).0k)rrr sz5BaseConfigurator.configure_custom..)rcallablerr}itemssetattr)rtrr3propskwargsrwrrur)rrconfigure_customs    z!BaseConfigurator.configure_customcCst|trt|}|S)z0Utility function which converts lists to tuples.)rrXr)rtrurrras_tuples zBaseConfigurator.as_tupleN)ryrzr{r|recompilerrrrrr staticmethodrrrrrrrmrrrrrrrbs      "rc@s^eZdZdZddZddZddZdd Zd d Zd d Z dddZ dddZ dddZ dS)DictConfiguratorz] Configure logging using a dictionary-like object to describe the configuration. cCs|j}d|krtd|ddkr2td|d|jdd}i}tjz|r|jd|}x|D]}|tjkrtd|qfy6tj|}||}|jd d }|r|jtj|Wqft k r} ztd || fWYd d } ~ XqfXqfW|jd |} xZ| D]R}y|j || |d Wn4t k rP} ztd|| fWYd d } ~ XnXqW|jdd } | ry|j | d Wn0t k r} ztd| WYd d } ~ XnXn:|jdd } t |jd|} xZ| D]R}y|j | || |<Wn4t k r"} ztd|| fWYd d } ~ XnXqW|jd|}xZ|D]R}y|j||||<Wn4t k r} ztd|| fWYd d } ~ XnXq _checkLevel Exceptionconfigure_loggerconfigure_rootr configure_formatterconfigure_filtersortedconfigure_handlerrrrBrJrXrKrLr'r\r^r0rYrTr)rtrrZ EMPTY_DICTrrhandlerZhandler_configr9rrUrJrQrrZdeferredrOrPr_r`rarbrrr configures        "  $    $  $   $  $      $ zDictConfigurator.configurec Csd|krr|d}y|j|}Wqtk rn}z4dt|kr>|jd|d<||d<|j|}WYdd}~XqXnP|jdd}|jdd}|jdd}|jd d}|stj} nt|} | |||}|S) z(Configure a formatter from a dictionary.z()z'format'r)rGNr,r-r.r/)rrrrr1r r2r!) rtrfactoryrwterGZdfmtr-cnamer3rrrrs&      z$DictConfigurator.configure_formattercCs.d|kr|j|}n|jdd}tj|}|S)z%Configure a filter from a dictionary.z()rr7)rr1r ZFilter)rtrrwrrrrrs    z!DictConfigurator.configure_filtercCs^xX|D]P}y|j|jd|Wqtk rT}ztd||fWYdd}~XqXqWdS)z/Add filters to a filterer from a list of names.rzUnable to add filter %r: %sN)Z addFilterrrrg)rtZfiltererrr5rrrr add_filterss  zDictConfigurator.add_filtersc/st}jdd}|r^y|jd|}Wn2tk r\}ztd||fWYdd}~XnXjdd}jdd}dkrjd}t|s|j|}|}njd} |j| } t| tj j od krHy>|jd d } t | tj sj |td | d <Wn8tk rD}ztd d |fWYdd}~XnXnZt| tj jrvd krv|jd d <n,t| tj jrdkr|jdd<| }jdd} tfddD} y|f| }WnLtk r"}z.dt|kr| jd| d<|f| }WYdd}~XnX|r4|j||dk rN|jtj||r`|j||| rx"| jD]\}}t|||qpW|S)z&Configure a handler from a dictionary.r6NrzUnable to set formatter %r: %sr9rz()r/r:rztarget not configured yetz#Unable to set target handler %r: %sZmailhostZaddressrcs g|]}t|r||fqSr)rj)rr)rrrrsz6DictConfigurator.configure_handler..z'stream'streamZstrm)r}rrrrgrrr@r rrArZHandlerupdaterZ SMTPHandlerrZ SysLogHandlerrr?r>rrrr)rtrZ config_copyr6rr9rr3rrrFZthrrrwrrrur)rrrsl          $      z"DictConfigurator.configure_handlercCs^xX|D]P}y|j|jd|Wqtk rT}ztd||fWYdd}~XqXqWdS)z.Add handlers to a logger from a list of names.rzUnable to add handler %r: %sN)r[rrrg)rtrSrrHrrrr add_handlerss  zDictConfigurator.add_handlersFcCs|jdd}|dk r$|jtj||sx |jddD]}|j|q8W|jdd}|rf|j|||jdd}|r|j||dS)zU Perform configuration which is common to root and non-root loggers. r9Nrr)r1r>r rrrZrr)rtrSrrr9rHrrrrrcommon_logger_configs    z%DictConfigurator.common_logger_configcCs6tj|}|j||||jdd}|dk r2||_dS)z.Configure a non-root logger from a dictionary.rMN)r r]rr1rM)rtrrrrSrMrrrrs   z!DictConfigurator.configure_loggercCstj}|j|||dS)z*Configure a root logger from a dictionary.N)r r]r)rtrrrJrrrrszDictConfigurator.configure_rootN)F)F)F) ryrzr{r|rrrrrrrrrrrrrrs ?  rcCst|jdS)z%Configure logging using a dictionary.N)dictConfigClassr)rrrr dictConfig srcsPts tdGdddt}Gdddt}Gfdddtj||||S)au Start up a socket server on the specified port, and listen for new configurations. These will be sent as a file suitable for processing by fileConfig(). Returns a Thread object on which you can call start() to start the server, and which you can join() when appropriate. To stop the server, call stopListening(). Use the ``verify`` argument to verify any bytes received across the wire from a client. If specified, it should be a callable which receives a single argument - the bytes of configuration data received across the network - and it should return either ``None``, to indicate that the passed in bytes could not be verified and should be discarded, or a byte string which is then passed to the configuration machinery as normal. Note that you can return transformed bytes, e.g. by decrypting the bytes passed in. z listen() needs threading to workc@seZdZdZddZdS)z#listen..ConfigStreamHandlerz Handler for a logging configuration request. It expects a completely new logging configuration and uses fileConfig to install it. cSsHy|j}|jd}t|dkrtjd|d}|jj|}x&t||krd||j|t|}q@W|jjdk r~|jj|}|dk r|jd}yddl}|j |}t |WnHt k rt j |}y t|Wnt k rtjYnXYnX|jjr|jjjWn2tk rB}z|jtkr2WYdd}~XnXdS)z Handle a request. Each request is expected to be a 4-byte length, packed using struct.pack(">L", n), followed by the config file. Uses fileConfig() to do the grunt work. z>LrNzutf-8)Z connectionZrecvr0structZunpackserververifydecodejsonloadsrrioStringIOr traceback print_excreadysetOSErrorerrno RESET_ERROR)rtZconnchunkZslenrrfilerrrrhandleBs6           z*listen..ConfigStreamHandler.handleN)ryrzr{r|rrrrrConfigStreamHandler;src@s0eZdZdZdZdedddfddZddZdS) z$listen..ConfigSocketReceiverzD A simple TCP socket-based logging config receiver. rWZ localhostNcSs>tj|||f|tjd|_tjd|_||_||_dS)NrrW) rrr r abortrtimeoutrr)rthostportrrrrrrrpsz-listen..ConfigSocketReceiver.__init__cSsfddl}d}xJ|sV|j|jjggg|j\}}}|r>|jtj|j}tjqW|jj dS)Nr) selectZsocketfilenorZhandle_requestr r rrclose)rtrrZrdwrZexrrrserve_until_stoppedzs z8listen..ConfigSocketReceiver.serve_until_stopped)ryrzr{r|Zallow_reuse_addressDEFAULT_LOGGING_CONFIG_PORTrrrrrrConfigSocketReceiveris  rcs&eZdZfddZddZZS)zlisten..Servercs4t|j||_||_||_||_tj|_dS)N) superrrcvrhdlrrr threadingZEventr)rtrrrr)Server __class__rrrs zlisten..Server.__init__cSsZ|j|j|j|j|jd}|jdkr0|jd|_|jjtj|a tj |j dS)N)rrrrrrW) rrrrrZserver_addressrr r _listenerrr)rtrrrrruns     zlisten..Server.run)ryrzr{rr __classcell__r)r)rrrsr)threadNotImplementedErrorrrrZThread)rrrrr)rrlisten%s .rc Cs*tjztrdt_daWdtjXdS)zN Stop the listening server which was created with a call to listen(). rWN)r r rrrrrrr stopListenings r)NT).r|rrr Zlogging.handlersrrrr_threadrrrZ socketserverrrrZ ECONNRESETrrrr!r&r r rTrr rIrerjobjectrkr}rorXrprrqrrrrrrrrrrsP   "#W! 9|PK`d1] ll#__pycache__/handlers.cpython-36.pycnu[3 ctjI @sdZddlZddlZddlZddlZddlZddlZddlZddlm Z m Z m Z ddl Z y ddl Z Wnek r|dZ YnXdZdZdZdZdZdZd(ZGd d d ejZGd ddeZGdddeZGdddejZGdddejZGdddeZGdddejZGdddejZGdddejZ GdddejZ!Gdd d ejZ"Gd!d"d"e"Z#Gd#d$d$ejZ$e rGd%d&d&e%Z&dS))z Additional handlers for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2016 Vinay Sajip. All Rights Reserved. To use, simply 'import logging.handlers' and log away! N)ST_DEVST_INOST_MTIMEi<#i=#i>#i?#i<c@s2eZdZdZd ddZddZdd Zd d ZdS) BaseRotatingHandlerz Base class for handlers that rotate log files at a certain point. Not meant to be instantiated directly. Instead, use RotatingFileHandler or TimedRotatingFileHandler. NFcCs0tjj|||||||_||_d|_d|_dS)zA Use the specified filename for streamed logging N)logging FileHandler__init__modeencodingnamerrotator)selffilenamer r delayr(/usr/lib64/python3.6/logging/handlers.pyr 5s zBaseRotatingHandler.__init__c CsHy$|j|r|jtjj||Wntk rB|j|YnXdS)z Emit a record. Output the record to the file, catering for rollover as described in doRollover(). N)shouldRollover doRolloverrr emit Exception handleError)rrecordrrrr?s  zBaseRotatingHandler.emitcCst|js|}n |j|}|S)a Modify the filename of a log file when rotating. This is provided so that a custom filename can be provided. The default implementation calls the 'namer' attribute of the handler, if it's callable, passing the default name to it. If the attribute isn't callable (the default is None), the name is returned unchanged. :param default_name: The default name for the log file. )callabler )rZ default_nameresultrrrrotation_filenameMs  z%BaseRotatingHandler.rotation_filenamecCs4t|js$tjj|r0tj||n |j||dS)aL When rotating, rotate the current log. The default implementation calls the 'rotator' attribute of the handler, if it's callable, passing the source and dest arguments to it. If the attribute isn't callable (the default is None), the source is simply renamed to the destination. :param source: The source filename. This is normally the base filename, e.g. 'test.log' :param dest: The destination filename. This is normally what the source is rotated to, e.g. 'test.log.1'. N)rrospathexistsrename)rsourcedestrrrrotate`s  zBaseRotatingHandler.rotate)NF)__name__ __module__ __qualname____doc__r rrr#rrrrr/s  rc@s*eZdZdZd ddZdd Zd d ZdS) RotatingFileHandlerz Handler for logging to a set of files, which switches from one file to the next when the current file reaches a certain size. arNFcCs.|dkr d}tj|||||||_||_dS)a Open the specified file and use it as the stream for logging. By default, the file grows indefinitely. You can specify particular values of maxBytes and backupCount to allow the file to rollover at a predetermined size. Rollover occurs whenever the current log file is nearly maxBytes in length. If backupCount is >= 1, the system will successively create new files with the same pathname as the base file, but with extensions ".1", ".2" etc. appended to it. For example, with a backupCount of 5 and a base file name of "app.log", you would get "app.log", "app.log.1", "app.log.2", ... through to "app.log.5". The file being written to is always "app.log" - when it gets filled up, it is closed and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc. exist, then they are renamed to "app.log.2", "app.log.3" etc. respectively. If maxBytes is zero, rollover never occurs. rr)N)rr maxBytes backupCount)rrr r*r+r rrrrr zs zRotatingFileHandler.__init__cCs|jr|jjd|_|jdkrxtt|jdddD]^}|jd|j|f}|jd|j|df}tjj|r4tjj|rtj |tj ||q4W|j|jd}tjj|rtj ||j |j||j s|j |_dS)z< Do a rollover, as described in __init__(). Nrz%s.%dz.1)streamcloser+ranger baseFilenamerrrremover r#r_open)riZsfndfnrrrrs$        zRotatingFileHandler.doRollovercCs|tjj|jr"tjj|j r"dS|jdkr6|j|_|jdkrxd|j|}|jj dd|jj t ||jkrxdSdS)z Determine if rollover should occur. Basically, see if the supplied record would cause the file to exceed the size limit we have. FNrz%s T) rrrr1isfiler.r3r*formatseektelllen)rrmsgrrrrs   z"RotatingFileHandler.shouldRollover)r)rrNF)r$r%r&r'r rrrrrrr(us r(c@s:eZdZdZdddZd d Zd d Zd dZddZdS)TimedRotatingFileHandlerz Handler for logging to a file, rotating the log file at certain timed intervals. If backupCount is > 0, when rollover is done, no more than backupCount files are kept - the oldest ones are deleted. hr,rNFc Cstj||d|||j|_||_||_||_|jdkrNd|_d|_d|_ n|jdkrld|_d|_d |_ n|jd krd|_d |_d |_ n|jd ks|jdkrd|_d|_d|_ n|jj dr.d|_t |jdkrt d|j|jddks|jddkrt d|jt |jd|_d|_d|_ nt d|jtj|j tj|_ |j||_|j}tjj|r~tj|t} n t tj} |j| |_dS) Nr)Sr,z%Y-%m-%d_%H-%M-%Sz-^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}(\.\w+)?$Mrz%Y-%m-%d_%H-%Mz'^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}(\.\w+)?$Hz %Y-%m-%d_%Hz!^\d{4}-\d{2}-\d{2}_\d{2}(\.\w+)?$DMIDNIGHTrz%Y-%m-%dz^\d{4}-\d{2}-\d{2}(\.\w+)?$Wr6zHYou must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s06z-Invalid day specified for weekly rollover: %sz'Invalid rollover interval specified: %siiiQiiQi: )rr upperwhenr+utcatTimeintervalsuffixextMatch startswithr; ValueErrorint dayOfWeekrecompileASCIIr1rrrstatrtimecomputeRollover rolloverAt) rrrIrLr+r rrJrKtrrrr sL        z!TimedRotatingFileHandler.__init__cCsd||j}|jdks"|jjdr`|jr4tj|}n tj|}|d}|d}|d}|d}|jdkrnt}n |jj d|jj d|jj }||d|d|} | d kr| t7} |d d }|| }|jjdr`|} | |j kr`| |j kr|j | } nd| |j d } || d} |js\|d} tj| d}| |kr\| sPd}nd }| |7} | }|S)zI Work out the rollover time based on the specified time. rCrDNrrr,rEriiiQr-r-i) rLrIrOrJrWgmtime localtimerK _MIDNIGHTZhourZminutesecondrR)r currentTimerrZZ currentHourZ currentMinuteZ currentSecondZ currentDayZ rotate_tsrZdayZ daysToWait newRolloverAtdstNow dstAtRolloveraddendrrrrXsH           z(TimedRotatingFileHandler.computeRollovercCs@tjj|jr"tjj|j r"dSttj}||jkr|jjdrx|j rxtj| d } || krx|sld }nd}| |7} | |_dS) ax do a rollover; in this case, a date/time stamp is appended to the filename when the rollover happens. However, you want the file to be named for the start of the interval, not the current time. If there is a backup count, then we have to get a list of matching filenames, sort them and remove the one with the oldest suffix. Nr,irirrCrDr-r-ir-i)r.r/rQrWr`rYrLrJr_rr1ZstrftimerMrrrr2r#r+rqrr3rXrIrO) rrcrfrZZ timeTupleZdstThenrhr5srergrrrrtsH            $ z#TimedRotatingFileHandler.doRollover)r>r,rNFFN) r$r%r&r'r rXrrqrrrrrr=s  9Ir=c@s2eZdZdZd ddZddZd d Zd d ZdS)WatchedFileHandlera A handler for logging to a file, which watches the file to see if it has changed while in use. This can happen because of usage of programs such as newsyslog and logrotate which perform log file rotation. This handler, intended for use under Unix, watches the file to see if it has changed since the last emit. (A file has changed if its device or inode have changed.) If it has changed, the old file stream is closed, and the file opened to get a new stream. This handler is not appropriate for use under Windows, because under Windows open files cannot be moved or renamed - logging opens the files with exclusive locks - and so there is no need for such a handler. Furthermore, ST_INO is not supported under Windows; stat always returns zero for this value. This handler is based on a suggestion and patch by Chad J. Schroeder. r)NFcCs,tjj|||||d\|_|_|jdS)Nr,r-r-)r-r-)rr r devino _statstream)rrr r rrrrr s zWatchedFileHandler.__init__cCs0|jr,tj|jj}|t|t|_|_dS)N)r.rfstatfilenorrrtru)rsresrrrrvszWatchedFileHandler._statstreamc Csytj|j}Wntk r(d}YnX| sL|t|jksL|t|jkr|jdk r|jj |jj d|_|j |_|j dS)z Reopen log file if needed. Checks if the underlying file has changed, and if it has, close the old stream and reopen the file to get the current stream. N) rrVr1FileNotFoundErrorrrtrrur.flushr/r3rv)rryrrrreopenIfNeededs  "    z!WatchedFileHandler.reopenIfNeededcCs|jtjj||dS)z Emit a record. If underlying file has changed, reopen the file before emitting the record to it. N)r|rr r)rrrrrrszWatchedFileHandler.emit)r)NF)r$r%r&r'r rvr|rrrrrrss  rsc@sReZdZdZddZdddZddZd d Zd d Zd dZ ddZ ddZ dS) SocketHandlera A handler class which writes logging records, in pickle format, to a streaming socket. The socket is kept open across logging calls. If the peer resets it, an attempt is made to reconnect on the next call. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCsZtjj|||_||_|dkr(||_n ||f|_d|_d|_d|_d|_ d|_ d|_ dS)a Initializes the handler with a specific host address and port. When the attribute *closeOnError* is set to True - if a socket error occurs, the socket is silently closed and then reopened on the next logging call. NFg?g>@g@) rHandlerr hostportaddresssock closeOnError retryTime retryStartretryMax retryFactor)rrrrrrr s  zSocketHandler.__init__r,c Csj|jdk rtj|j|d}nJtjtjtj}|j|y|j|jWntk rd|j YnX|S)zr A factory method which allows subclasses to define the precise type of socket they want. N)timeout) rsocketZcreate_connectionrAF_UNIX SOCK_STREAMZ settimeoutconnectOSErrorr/)rrrrrr makeSockets  zSocketHandler.makeSocketc Cstj}|jdkrd}n ||jk}|ry|j|_d|_WnVtk r|jdkr^|j|_n"|j|j|_|j|jkr|j|_||j|_YnXdS)z Try to create a socket, using an exponential backoff with a max retry time. Thanks to Robert Olson for the original patch (SF #815911) which has been slightly refactored. NT) rWrrrrrZ retryPeriodrr)rZnowZattemptrrr createSocket"s       zSocketHandler.createSocketc CsR|jdkr|j|jrNy|jj|Wn$tk rL|jjd|_YnXdS)z Send a pickled string to the socket. This function allows for partial sends which can happen when the network is busy. N)rrsendallrr/)rrrrrrsend>s  zSocketHandler.sendcCsj|j}|r|j|}t|j}|j|d<d|d<d|d<|jddtj|d}tj dt |}||S)z Pickles the record in binary format with a length prefix, and returns it ready for transmission across the socket. r<Nargsexc_infomessager,z>L) rr8dict__dict__Z getMessagepoppickledumpsstructZpackr;)rrZeiZdummydrrZslenrrr makePickleQs     zSocketHandler.makePicklecCs0|jr|jr|jjd|_ntjj||dS)z Handle an error during logging. An error has occurred during logging. Most likely cause - connection lost. Close the socket so that we can retry on the next event. N)rrr/rr~r)rrrrrrgs  zSocketHandler.handleErrorc Cs<y|j|}|j|Wntk r6|j|YnXdS)a Emit a record. Pickles the record and writes it to the socket in binary format. If there is an error with the socket, silently drop the packet. If there was a problem with the socket, re-establishes the socket. N)rrrr)rrrrrrrrus  zSocketHandler.emitc Cs@|jz(|j}|r"d|_|jtjj|Wd|jXdS)z$ Closes the socket. N)acquirerr/rr~release)rrrrrr/szSocketHandler.closeN)r,) r$r%r&r'r rrrrrrr/rrrrr}s  r}c@s(eZdZdZddZddZddZdS) DatagramHandlera A handler class which writes logging records, in pickle format, to a datagram socket. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCstj|||d|_dS)zP Initializes the handler with a specific host address and port. FN)r}r r)rrrrrrr szDatagramHandler.__init__cCs*|jdkrtj}ntj}tj|tj}|S)zu The factory method of SocketHandler is here overridden to create a UDP socket (SOCK_DGRAM). N)rrrZAF_INET SOCK_DGRAM)rZfamilyrrrrrrs  zDatagramHandler.makeSocketcCs&|jdkr|j|jj||jdS)z Send a pickled string to a socket. This function no longer allows for partial sends which can happen when the network is busy - UDP does not guarantee delivery and can deliver packets out of sequence. N)rrsendtor)rrrrrrrs zDatagramHandler.sendN)r$r%r&r'r rrrrrrrs  rc@s"eZdZdZdZdZdZdZdZdZ dZ d Z dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZdZeeee eeee e eeed Z eeeeee eeeeee eeeeeeeeedZ!ddddddZ"de#fe dfd d!Z$d"d#Z%d$d%Z&d&d'Z'd(d)Z(d*Z)d+Z*d,d-Z+dS). SysLogHandlera A handler class which sends formatted logging records to a syslog server. Based on Sam Rushing's syslog module: http://www.nightmare.com/squirl/python-ext/misc/syslog.py Contributed by Nicolas Untz (after which minor refactoring changes have been made). rr,r6r[r\r]r^rE ) ZalertZcritcriticaldebugZemergerrerrorinfoZnoticeZpanicwarnwarning)ZauthZauthprivZcrondaemonZftpZkernZlprZmailZnewsZsecurityZsysloguserZuucpZlocal0Zlocal1Zlocal2Zlocal3Zlocal4Zlocal5Zlocal6Zlocal7rrrrr)DEBUGINFOWARNINGERRORCRITICALZ localhostNcCs0tjj|||_||_||_t|trTd|_y|j |Wnt k rPYnXnd|_|dkrht j }|\}}t j ||d|}|st dx|D]|}|\}}} } } d} } y(t j ||| } |t jkr| j| PWqt k r }z|} | dk r| jWYdd}~XqXqW| dk r | | |_ ||_dS)a Initialize a handler. If address is specified as a string, a UNIX socket is used. To log to a local syslogd, "SysLogHandler(address="/dev/log")" can be used. If facility is not specified, LOG_USER is used. If socktype is specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific socket type will be used. For Unix sockets, you can also specify a socktype of None, in which case socket.SOCK_DGRAM will be used, falling back to socket.SOCK_STREAM. TFNrz!getaddrinfo returns an empty list)rr~r rfacilitysocktype isinstancestr unixsocket_connect_unixsocketrrrZ getaddrinforrr/)rrrrrrZressresZafproto_Zsarrexcrrrr #sB      zSysLogHandler.__init__cCs|j}|dkrtj}tjtj||_y|jj|||_Wnxtk r|jj|jdk r`tj}tjtj||_y|jj|||_Wn tk r|jjYnXYnXdS)N)rrrrrrr/r)rrZ use_socktyperrrrYs&       z!SysLogHandler._connect_unixsocketcCs4t|tr|j|}t|tr(|j|}|d>|BS)z Encode the facility and priority. You can pass in strings or integers - if strings are passed, the facility_names and priority_names mapping dictionaries are used to convert them to integers. r[)rrfacility_namespriority_names)rrZpriorityrrrencodePriorityqs     zSysLogHandler.encodePriorityc Cs2|jz|jjtjj|Wd|jXdS)z$ Closes the socket. N)rrr/rr~r)rrrrr/~s  zSysLogHandler.closecCs|jj|dS)aK Map a logging level name to a key in the priority_names map. This is useful in two scenarios: when custom levels are being used, and in the case where you can't do a straightforward mapping by lowercasing the logging level name because of locale- specific issues (see SF #1524081). r) priority_mapget)rZ levelNamerrr mapPriorityszSysLogHandler.mapPriorityTcCsy|j|}|jr|j|}|jr*|d7}d|j|j|j|j}|jd}|jd}||}|jry|j j |Wqt k r|j j |j |j|j j |YqXn*|jt jkr|j j||jn |j j|Wntk r|j|YnXdS)z Emit a record. The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. z<%d>zutf-8N)r8ident append_nulrrrZ levelnameencoderrrrr/rrrrrrrr)rrr<Zpriorrrrs.        zSysLogHandler.emit),r$r%r&r'Z LOG_EMERGZ LOG_ALERTZLOG_CRITZLOG_ERRZ LOG_WARNINGZ LOG_NOTICEZLOG_INFOZ LOG_DEBUGZLOG_KERNZLOG_USERZLOG_MAILZ LOG_DAEMONZLOG_AUTHZ LOG_SYSLOGZLOG_LPRZLOG_NEWSZLOG_UUCPZLOG_CRONZ LOG_AUTHPRIVZLOG_FTPZ LOG_LOCAL0Z LOG_LOCAL1Z LOG_LOCAL2Z LOG_LOCAL3Z LOG_LOCAL4Z LOG_LOCAL5Z LOG_LOCAL6Z LOG_LOCAL7rrrSYSLOG_UDP_PORTr rrr/rrrrrrrrrs 5   rc@s*eZdZdZd ddZddZdd ZdS) SMTPHandlerzK A handler class which sends an SMTP email for each logging event. N@cCstjj|t|ttfr(|\|_|_n|d|_|_t|ttfrR|\|_|_ nd|_||_ t|t rn|g}||_ ||_ ||_||_dS)ax Initialize the handler. Initialize the instance with the from and to addresses and subject line of the email. To specify a non-standard SMTP port, use the (host, port) tuple format for the mailhost argument. To specify authentication credentials, supply a (username, password) tuple for the credentials argument. To specify the use of a secure protocol (TLS), pass in a tuple for the secure argument. This will only be used when authentication credentials are supplied. The tuple will be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the `starttls` method). A timeout in seconds can be specified for the SMTP connection (the default is one second). N)rr~r rlisttuplemailhostmailportusernamepasswordfromaddrrtoaddrssubjectsecurer)rrrrr credentialsrrrrrr s  zSMTPHandler.__init__cCs|jS)z Determine the subject for the email. If you want to specify a subject line which is record-dependent, override this method. )r)rrrrr getSubjectszSMTPHandler.getSubjectc Csyddl}ddlm}ddl}|j}|s.|j}|j|j||jd}|}|j |d<dj |j |d<|j ||d<|j j|d <|j|j||jr|jdk r|j|j|j|j|j|j|j|j||jWntk r|j|YnXdS) zd Emit a record. Format the record and send it to the specified addressees. rN) EmailMessage)rZFrom,ZToZSubjectZDate)smtplibZ email.messagerZ email.utilsrZ SMTP_PORTZSMTPrrrrnrrZutilsr`Z set_contentr8rrZehloZstarttlsZloginrZ send_messagequitrr)rrrrZemailrZsmtpr<rrrrs0      zSMTPHandler.emit)NNr)r$r%r&r'r rrrrrrrs " rc@sBeZdZdZdddZddZdd Zd d Zd d ZddZ dS)NTEventLogHandlera A handler class which sends events to the NT Event Log. Adds a registry entry for the specified application name. If no dllname is provided, win32service.pyd (which contains some basic message placeholders) is used. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own DLL which contains the message definitions you want to use in the event log. N ApplicationcCstjj|yddl}ddl}||_||_|s`tjj |jj }tjj |d}tjj |dd}||_ ||_ |jj||||j|_tj|jtj|jtj|jtj|jtj|ji|_Wn"tk rtdd|_YnXdS)Nrzwin32service.pydzWThe Python Win32 extensions for NT (service, event logging) appear not to be available.)rr~r win32evtlogutil win32evtlogappname_welurrrj__file__rndllnamelogtypeZAddSourceToRegistryZEVENTLOG_ERROR_TYPEdeftyperZEVENTLOG_INFORMATION_TYPErrZEVENTLOG_WARNING_TYPErrtypemap ImportErrorprint)rrrrrrrrrr s* zNTEventLogHandler.__init__cCsdS)ay Return the message ID for the event record. If you are using your own messages, you could do this by having the msg passed to the logger being an ID rather than a formatting string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in win32service.pyd. r,r)rrrrr getMessageID.szNTEventLogHandler.getMessageIDcCsdS)z Return the event category for the record. Override this if you want to specify your own categories. This version returns 0. rr)rrrrrgetEventCategory8sz"NTEventLogHandler.getEventCategorycCs|jj|j|jS)a Return the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in __init__() to a dictionary which contains mappings for DEBUG, INFO, WARNING, ERROR and CRITICAL. If you are using your own levels you will either need to override this method or place a suitable dictionary in the handler's typemap attribute. )rrlevelnor)rrrrr getEventTypeAs zNTEventLogHandler.getEventTypec Csn|jrjyD|j|}|j|}|j|}|j|}|jj|j||||gWntk rh|j|YnXdS)z Emit a record. Determine the message ID, event category and event type. Then log the message in the NT event log. N) rrrrr8Z ReportEventrrr)rridcattyper<rrrrNs    zNTEventLogHandler.emitcCstjj|dS)aS Clean up this handler. You can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the DLL name. N)rr~r/)rrrrr/_s zNTEventLogHandler.close)Nr) r$r%r&r'r rrrrr/rrrrr s     rc@s*eZdZdZd ddZddZd d ZdS) HTTPHandlerz^ A class which sends records to a Web server, using either GET or POST semantics. GETFNcCsbtjj||j}|dkr$td| r:|dk r:td||_||_||_||_||_ ||_ dS)zr Initialize the instance with the host, the request URL, and the method ("GET" or "POST") rPOSTzmethod must be GET or POSTNz3context parameter only makes sense with secure=True)rr) rr~r rHrPrurlmethodrrcontext)rrrrrrrrrrr qs zHTTPHandler.__init__cCs|jS)z Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner. )r)rrrrr mapLogRecordszHTTPHandler.mapLogRecordc CsxyPddl}ddl}|j}|jr4|jj||jd}n |jj|}|j}|j j |j |}|j dkr|j ddkrvd}nd}|d||f}|j|j ||j d} | dkr|d| }|j d kr|jd d |jd tt||jr$ddl} d |jjd} d| j| jjd} |jd| |j|j d krH|j|jd|jWn tk rr|j|YnXdS)zk Emit a record. Send the record to the Web server as a percent-encoded dictionary rN)rr?&z%c%s:rz Content-typez!application/x-www-form-urlencodedzContent-lengthz%s:%szutf-8zBasic asciiZ Authorization)Z http.clientZ urllib.parserrZclientZHTTPSConnectionrZHTTPConnectionrparseZ urlencoderrfindZ putrequestZ putheaderrr;rbase64rZ b64encodestripdecodeZ endheadersrZ getresponserr) rrZhttpZurllibrr>rdatasepr4rrrrrrrs@        zHTTPHandler.emit)rFNN)r$r%r&r'r rrrrrrrls  rc@s8eZdZdZddZddZddZdd Zd d Zd S) BufferingHandlerz A handler class which buffers logging records in memory. Whenever each record is added to the buffer, a check is made to see if the buffer should be flushed. If it should, then flush() is expected to do what's needed. cCstjj|||_g|_dS)z> Initialize the handler with the buffer size. N)rr~r capacitybuffer)rr rrrr s zBufferingHandler.__init__cCst|j|jkS)z Should the handler flush its buffer? Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies. )r;r r )rrrrr shouldFlushszBufferingHandler.shouldFlushcCs"|jj||j|r|jdS)z Emit a record. Append the record. If shouldFlush() tells us to, call flush() to process the buffer. N)r rmrr{)rrrrrrs  zBufferingHandler.emitc Cs"|jz g|_Wd|jXdS)zw Override to implement custom flushing behaviour. This version just zaps the buffer to empty. N)rr r)rrrrr{s zBufferingHandler.flushc Cs z |jWdtjj|XdS)zp Close the handler. This version just flushes and chains to the parent class' close(). N)r{rr~r/)rrrrr/s zBufferingHandler.closeN) r$r%r&r'r rrr{r/rrrrr s    r c@sBeZdZdZejddfddZddZdd Zd d Z d d Z dS) MemoryHandlerz A handler class which buffers logging records in memory, periodically flushing them to a target handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen. NTcCs"tj||||_||_||_dS)a; Initialize the handler with the buffer size, the level at which flushing should occur and an optional target. Note that without a target being set either here or via setTarget(), a MemoryHandler is no use to anyone! The ``flushOnClose`` argument is ``True`` for backward compatibility reasons - the old behaviour is that when the handler is closed, the buffer is flushed, even if the flush level hasn't been exceeded nor the capacity exceeded. To prevent this, set ``flushOnClose`` to ``False``. N)r r flushLeveltarget flushOnClose)rr rrrrrrr s zMemoryHandler.__init__cCst|j|jkp|j|jkS)zP Check for buffer full or a record at the flushLevel or higher. )r;r r rr)rrrrrrszMemoryHandler.shouldFlushcCs ||_dS)z: Set the target handler for this handler. N)r)rrrrr setTargetszMemoryHandler.setTargetc CsD|jz,|jr2x|jD]}|jj|qWg|_Wd|jXdS)z For a MemoryHandler, flushing means just sending the buffered records to the target, if there is one. Override if you want different behaviour. The record buffer is also cleared by this operation. N)rrr handler)rrrrrr{s  zMemoryHandler.flushcCsBz|jr|jWd|jzd|_tj|Wd|jXXdS)zi Flush, if appropriately configured, set the target to None and lose the buffer. N)rr{rrr r/r)rrrrr/,s zMemoryHandler.close) r$r%r&r'rrr rrr{r/rrrrrs rc@s0eZdZdZddZddZddZdd Zd S) QueueHandlera This handler sends events to a queue. Typically, it would be used together with a multiprocessing Queue to centralise logging to file in one process (in a multi-process application), so as to avoid file write contention between processes. This code is new in Python 3.2, but this class can be copy pasted into user code for use with earlier Python versions. cCstjj|||_dS)zA Initialise an instance, using the passed queue. N)rr~r queue)rrrrrr Hs zQueueHandler.__init__cCs|jj|dS)z Enqueue a record. The base implementation uses put_nowait. You may want to override this method if you want to use blocking, timeouts or custom queue implementations. N)r put_nowait)rrrrrenqueueOszQueueHandler.enqueuecCs"|j||j|_d|_d|_|S)a Prepares a record for queuing. The object returned by this method is enqueued. The base implementation formats the record to merge the message and arguments, and removes unpickleable items from the record in-place. You might want to override this method if you want to convert the record to a dict or JSON string, or send a modified copy of the record while leaving the original intact. N)r8rr<rr)rrrrrprepareYs  zQueueHandler.preparec Cs8y|j|j|Wntk r2|j|YnXdS)zm Emit a record. Writes the LogRecord to the queue, preparing it for pickling first. N)rrrr)rrrrrrrszQueueHandler.emitN)r$r%r&r'r rrrrrrrr=s   rc@sZeZdZdZdZddddZddZd d Zd d Zd dZ ddZ ddZ ddZ dS) QueueListenerz This class implements an internal threaded listener which watches for LogRecords being added to a queue, removes them and passes them to a list of handlers for processing. NF)respect_handler_levelcGs||_||_d|_||_dS)zc Initialise an instance with the specified queue and handlers. N)rhandlers_threadr)rrrrrrrr szQueueListener.__init__cCs |jj|S)z Dequeue a record and return it, optionally blocking. The base implementation uses get. You may want to override this method if you want to use timeouts or work with custom queue implementations. )rr)rblockrrrdequeueszQueueListener.dequeuecCs&tj|jd|_}d|_|jdS)z Start the listener. This starts up a background thread to monitor the queue for LogRecords to process. )rTN) threadingZThread_monitorrrstart)rrZrrrr"szQueueListener.startcCs|S)a Prepare a record for handling. This method just returns the passed-in record. You may want to override this method if you need to do any custom marshalling or manipulation of the record before passing it to the handlers. r)rrrrrrszQueueListener.preparecCsD|j|}x4|jD]*}|js"d}n |j|jk}|r|j|qWdS)z Handle a record. This just loops through the handlers offering them the record to handle. TN)rrrrlevelr)rrZhandlerZprocessrrrrs   zQueueListener.handlec Csd|j}t|d}xNy0|jd}||jkr*P|j||r@|jWqtjk rZPYqXqWdS)z Monitor the queue for records, and ask the handler to deal with them. This method runs on a separate, internal thread. The thread will terminate if it sees a sentinel object in the queue. task_doneTN)rhasattrr _sentinelrr$ZEmpty)rqZ has_task_donerrrrr!s     zQueueListener._monitorcCs|jj|jdS)a This is used to enqueue the sentinel record. The base implementation uses put_nowait. You may want to override this method if you want to use timeouts or work with custom queue implementations. N)rrr&)rrrrenqueue_sentinelszQueueListener.enqueue_sentinelcCs|j|jjd|_dS)a! Stop the listener. This asks the thread to terminate, and then waits for it to do so. Note that if you don't call this before your application exits, there may be some records still left on the queue, which won't be processed. N)r(rrn)rrrrstops zQueueListener.stop) r$r%r&r'r&r rr"rrr!r(r)rrrrr~s     riiQ)'r'rrrrrrWrSrVrrrrr rZDEFAULT_TCP_LOGGING_PORTZDEFAULT_UDP_LOGGING_PORTZDEFAULT_HTTP_LOGGING_PORTZDEFAULT_SOAP_LOGGING_PORTrZSYSLOG_TCP_PORTrar rr(r=rsr~r}rrrrrr rrobjectrrrrrsB8  FOcE(*PbO9I@PK`d1]O)__pycache__/__init__.cpython-36.opt-2.pycnu[3 \e*@sddlZddlZddlZddlZddlZddlZddlZddlZddlm Z ddddddd d d d d ddddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,g*Z y ddl Z Wne k rdZ YnXd-Z d.Zd/Zd0ZejZd1Zd1Zd1Zd1Zd2ZeZd3Zd4ZeZd5Zd6ZdZedededed edediZeeeeeeeed7Zd8dZ d9dZ!e"ed:rjd;d<Z#nd=d>Z#ej$j%e!j&j'Z(d?d@Z)e re j*Z+ndZ+dAdBZ,dCdDZ-GdEdde.Z/e/a0dFd*Z1dGd)Z2dHd$Z3GdIdJdJe.Z4GdKdLdLe4Z5GdMdNdNe4Z6dOZ7e4e7fe5dPfe6dQfdRZ8GdSd d e.Z9e9Z:GdTdde.Z;GdUd d e.ZZ?gZ@dXdYZAdZd[ZBGd\d d e=ZCGd]ddeCZDGd^d d eDZEGd_d`d`eDZFeFeZGeGZHGdadbdbe.ZIdcd%ZJddd!ZKGdedfdfe.ZLGdgdde=ZMGdhdidieMZNeMaOGdjdde.ZPeNeZQeQeM_QeLeMjQeM_RdkdZSd|dld ZTdmdZUeUZVdndZWd1dodpdZXdqd(ZYdrd'ZZdsd"Z[dtdZ\dud#Z]dvdZ^e@fdwd&Z_ddl`Z`e`jae_GdxddeCZbdacd}dydzZdd{dZedS)~N)Template BASIC_FORMATBufferingFormatterCRITICALDEBUGERRORFATAL FileHandlerFilter FormatterHandlerINFO LogRecordLogger LoggerAdapterNOTSET NullHandler StreamHandlerWARNWARNING addLevelName basicConfigcaptureWarningscriticaldebugdisableerror exceptionfatal getLevelName getLoggergetLoggerClassinfolog makeLogRecordsetLoggerClassshutdownwarnwarninggetLogRecordFactorysetLogRecordFactory lastResortraiseExceptionsz&Vinay Sajip Z productionz0.5.1.2z07 February 2010T2( )rrrrrr rrcCs4tj|}|dk r|Stj|}|dk r,|Sd|S)NzLevel %s) _levelToNameget _nameToLevel)levelresultr7(/usr/lib64/python3.6/logging/__init__.pyrxs  c Cs(tz|t|<|t|<WdtXdS)N) _acquireLockr2r4 _releaseLock)r5Z levelNamer7r7r8rs   _getframecCs tjdS)N)sysr;r7r7r7r8sr>c Cs.ytWn tk r(tjdjjSXdS)N) Exceptionr=exc_infotb_framef_backr7r7r7r8 currentframesrDcCsJt|tr|}n6t||kr:|tkr0td|t|}n td||S)NzUnknown level: %rz*Level not an integer or a valid string: %r) isinstanceintstrr4 ValueError TypeError)r5rvr7r7r8 _checkLevels     rKcCstr tjdS)N)_lockacquirer7r7r7r8r9sr9cCstr tjdS)N)rLreleaser7r7r7r8r:sr:c@s*eZdZdddZddZeZddZdS) rNc Kstj} ||_||_|rDt|dkrDt|dtjrD|drD|d}||_t||_ ||_ ||_ y&t j j||_t j j|jd|_Wn&tttfk r||_d|_YnX||_d|_| |_||_||_| |_| t| d|_|jtd|_tot rt j!|_"t j#j|_$n d|_"d|_$t%s0d|_&nDd|_&t'j(j)d} | dk rty| j*j|_&Wnt+k rrYnXt,rt-t drt j.|_/nd|_/dS)NrzUnknown moduleiZ MainProcessZmultiprocessinggetpid)0timenamemsglenrE collectionsMappingargsrZ levelnamelevelnopathnameospathbasenamefilenamesplitextmodulerIrHAttributeErrorrAexc_text stack_infolinenoZfuncNamecreatedrFmsecs _startTimeZrelativeCreated logThreads threading get_identZthreadZcurrent_threadZ threadNamelogMultiprocessingZ processNamer=modulesr3Zcurrent_processr@ logProcesseshasattrrPprocess) selfrRr5rYrcrSrWrAfuncsinfokwargsctZmpr7r7r8__init__sR        zLogRecord.__init__cCsd|j|j|j|j|jfS)Nz!)rRrXrYrcrS)ror7r7r8__str__Cs zLogRecord.__str__cCst|j}|jr||j}|S)N)rGrSrW)rorSr7r7r8 getMessageIs  zLogRecord.getMessage)NN)__name__ __module__ __qualname__rtru__repr__rvr7r7r7r8rs GcCs|adS)N)_logRecordFactory)factoryr7r7r8r*ZscCstS)N)r{r7r7r7r8r)dsc Cs&tdddddfdd}|jj||S)Nr)r{__dict__update)dictrJr7r7r8r$ks c@s0eZdZdZdZdZddZddZdd Zd S) PercentStylez %(message)sz %(asctime)sz %(asctime)cCs|p|j|_dS)N)default_format_fmt)rofmtr7r7r8rtszPercentStyle.__init__cCs|jj|jdkS)Nr)rfindasctime_search)ror7r7r8usesTimeszPercentStyle.usesTimecCs |j|jS)N)rr~)rorecordr7r7r8formatszPercentStyle.formatN) rwrxryrasctime_formatrrtrrr7r7r7r8rzs rc@s eZdZdZdZdZddZdS)StrFormatStylez {message}z {asctime}z{asctimecCs|jjf|jS)N)rrr~)rorr7r7r8rszStrFormatStyle.formatN)rwrxryrrrrr7r7r7r8rsrc@s0eZdZdZdZdZddZddZddZd S) StringTemplateStylez ${message}z ${asctime}cCs|p|j|_t|j|_dS)N)rrr_tpl)rorr7r7r8rts zStringTemplateStyle.__init__cCs$|j}|jddkp"|j|jdkS)Nz$asctimer)rrr)rorr7r7r8rszStringTemplateStyle.usesTimecCs|jjf|jS)N)rZ substituter~)rorr7r7r8rszStringTemplateStyle.formatN) rwrxryrrrrtrrr7r7r7r8rs rz"%(levelname)s:%(name)s:%(message)sz{levelname}:{name}:{message}z${levelname}:${name}:${message})%{$c@sVeZdZejZdddZdZdZdddZ d d Z d d Z d dZ ddZ ddZdS)r NrcCsD|tkrtddjtjt|d||_|jj|_||_dS)NzStyle must be one of: %s,r)_STYLESrHjoinkeys_stylerdatefmt)rorrstyler7r7r8rts  zFormatter.__init__z%Y-%m-%d %H:%M:%Sz%s,%03dcCs@|j|j}|rtj||}ntj|j|}|j||jf}|S)N) converterrdrQZstrftimedefault_time_formatdefault_msec_formatre)rorrrsstr7r7r8 formatTimes  zFormatter.formatTimecCsZtj}|d}tj|d|d|d||j}|j|dddkrV|dd}|S)Nr?rrO r)ioStringIO tracebackprint_exceptiongetvalueclose)roZeisiotbrr7r7r8formatException s zFormatter.formatExceptioncCs |jjS)N)rr)ror7r7r8rszFormatter.usesTimecCs |jj|S)N)rr)rorr7r7r8 formatMessage$szFormatter.formatMessagecCs|S)Nr7)rorbr7r7r8 formatStack's zFormatter.formatStackcCs|j|_|jr"|j||j|_|j|}|jrF|jsF|j |j|_|jrn|dddkrd|d}||j}|j r|dddkr|d}||j |j }|S)NrOrrr) rvmessagerrrasctimerrArarrbr)rorrr7r7r8r4s   zFormatter.format)NNr)N)rwrxryrQZ localtimerrtrrrrrrrrr7r7r7r8r s+   c@s.eZdZd ddZddZddZdd ZdS) rNcCs|r ||_nt|_dS)N)linefmt_defaultFormatter)rorr7r7r8rt]szBufferingFormatter.__init__cCsdS)Nr}r7)rorecordsr7r7r8 formatHeadergszBufferingFormatter.formatHeadercCsdS)Nr}r7)rorr7r7r8 formatFootermszBufferingFormatter.formatFootercCsNd}t|dkrJ||j|}x|D]}||jj|}q$W||j|}|S)Nr}r)rTrrrr)rorrJrr7r7r8rss  zBufferingFormatter.format)N)rwrxryrtrrrr7r7r7r8rYs c@seZdZdddZddZdS)r r}cCs||_t||_dS)N)rRrTnlen)rorRr7r7r8rtszFilter.__init__cCsJ|jdkrdS|j|jkrdS|jj|jd|jdkr:dS|j|jdkS)NrTF.)rrRr)rorr7r7r8filters  z Filter.filterN)r})rwrxryrtrr7r7r7r8r s c@s,eZdZddZddZddZddZd S) FilterercCs g|_dS)N)filters)ror7r7r8rtszFilterer.__init__cCs||jkr|jj|dS)N)rappend)rorr7r7r8 addFilters zFilterer.addFiltercCs||jkr|jj|dS)N)rremove)rorr7r7r8 removeFilters zFilterer.removeFiltercCs@d}x6|jD],}t|dr&|j|}n||}|s d}Pq W|S)NTrF)rrmr)rorrJfr6r7r7r8rs    zFilterer.filterN)rwrxryrtrrrr7r7r7r8rsrc CsFttt}}}|rB|rB|rB|z||kr6|j|Wd|XdS)N)r9r: _handlerListr)wrrMrNhandlersr7r7r8_removeHandlerRefs rc Cs*tztjtj|tWdtXdS)N)r9rrweakrefrefrr:)Zhandlerr7r7r8_addHandlerRefsrc@seZdZefddZddZddZeeeZddZ d d Z d d Z d dZ ddZ ddZddZddZddZddZddZddZdS) r cCs4tj|d|_t||_d|_t||jdS)N)rrt_namerKr5 formatterr createLock)ror5r7r7r8rts   zHandler.__init__cCs|jS)N)r)ror7r7r8get_nameszHandler.get_namec Cs<tz(|jtkrt|j=||_|r,|t|<WdtXdS)N)r9r _handlersr:)rorRr7r7r8set_names  zHandler.set_namecCstrtj|_nd|_dS)N)rhRLocklock)ror7r7r8r s zHandler.createLockcCs|jr|jjdS)N)rrM)ror7r7r8rM)szHandler.acquirecCs|jr|jjdS)N)rrN)ror7r7r8rN0szHandler.releasecCst||_dS)N)rKr5)ror5r7r7r8setLevel7szHandler.setLevelcCs|jr|j}nt}|j|S)N)rrr)rorrr7r7r8r=szHandler.formatcCs tddS)Nz.emit must be implemented by Handler subclasses)NotImplementedError)rorr7r7r8emitJsz Handler.emitc Cs4|j|}|r0|jz|j|Wd|jX|S)N)rrMrrN)rorrJr7r7r8handleTs  zHandler.handlecCs ||_dS)N)r)rorr7r7r8 setFormatterfszHandler.setFormattercCsdS)Nr7)ror7r7r8flushlsz Handler.flushc Cs0tz|jr |jtkr t|j=WdtXdS)N)r9rrr:)ror7r7r8rus  z Handler.closecCs totjrtj\}}}zytjjdtj|||dtjtjjd|j}x&|rvtj j |j j t dkrv|j}qRW|rtj|tjdntjjd|j|jfytjjd|j|jfWn tk rtjjdYnXWntk rYnXWd~~~XdS)Nz--- Logging error --- z Call stack: r)filezLogged from file %s, line %s zMessage: %r Arguments: %s zwUnable to print the message and arguments - possible formatting error. Use the traceback above to help find the error. )r,r=stderrrAwriterrrBrZr[dirnamef_code co_filename__path__rC print_stackr]rcrSrWr@OSError)rorrvrframer7r7r8 handleErrors.      zHandler.handleErrorcCst|j}d|jj|fS)Nz <%s (%s)>)rr5 __class__rw)ror5r7r7r8rzs zHandler.__repr__N)rwrxryrrtrrpropertyrRrrMrNrrrrrrrrrzr7r7r7r8r s       -c@s2eZdZdZd ddZddZddZd d ZdS) rrNcCs"tj||dkrtj}||_dS)N)r rtr=rstream)rorr7r7r8rts zStreamHandler.__init__c Cs8|jz |jr&t|jdr&|jjWd|jXdS)Nr)rMrrmrrN)ror7r7r8rs zStreamHandler.flushc CsVy2|j|}|j}|j||j|j|jWntk rP|j|YnXdS)N)rrr terminatorrr@r)rorrSrr7r7r8rs     zStreamHandler.emitcCs6t|j}t|jdd}|r$|d7}d|jj||fS)NrRr} z <%s %s(%s)>)rr5getattrrrrw)ror5rRr7r7r8rzs  zStreamHandler.__repr__)N)rwrxryrrtrrrzr7r7r7r8rs   c@s6eZdZdddZddZdd Zd d Zd d ZdS)r aNFcCsTtj|}tjj||_||_||_||_|r@tj |d|_ nt j ||j dS)N) rZfspathr[abspath baseFilenamemodeencodingdelayr rtrr_open)ror]rrrr7r7r8rts  zFileHandler.__init__cCsb|jzJz8|jr@z |jWd|j}d|_t|dr>|jXWdtj|XWd|jXdS)Nr)rMrrrmrrrN)rorr7r7r8r s  zFileHandler.closecCst|j|j|jdS)N)r)openrrr)ror7r7r8r szFileHandler._opencCs$|jdkr|j|_tj||dS)N)rrrr)rorr7r7r8r's  zFileHandler.emitcCst|j}d|jj|j|fS)Nz <%s %s (%s)>)rr5rrwr)ror5r7r7r8rz2s zFileHandler.__repr__)rNF)rwrxryrtrrrrzr7r7r7r8r s   c@s$eZdZefddZeddZdS)_StderrHandlercCstj||dS)N)r rt)ror5r7r7r8rt=sz_StderrHandler.__init__cCstjS)N)r=r)ror7r7r8rCsz_StderrHandler.streamN)rwrxryrrtrrr7r7r7r8r7s rc@seZdZddZddZdS) PlaceHoldercCs|di|_dS)N) loggerMap)roaloggerr7r7r8rtUszPlaceHolder.__init__cCs||jkrd|j|<dS)N)r)rorr7r7r8r[s zPlaceHolder.appendN)rwrxryrtrr7r7r7r8rOsrcCs(|tkr t|ts td|j|adS)Nz(logger not derived from logging.Logger: )r issubclassrIrw _loggerClass)klassr7r7r8r%fs   cCstS)N)rr7r7r7r8r!ssc@s<eZdZddZddZddZddZd d Zd d Zd S)ManagercCs(||_d|_d|_i|_d|_d|_dS)NrF)rootremittedNoHandlerWarning loggerDict loggerClasslogRecordFactory)roZrootnoder7r7r8rt~s zManager.__init__c Csd}t|tstdtz||jkrv|j|}t|tr|}|jpHt|}||_||j|<|j |||j |n(|jp~t|}||_||j|<|j |Wdt X|S)NzA logger name must be a string) rErGrIr9rrrrmanager_fixupChildren _fixupParentsr:)rorRrJphr7r7r8r s(         zManager.getLoggercCs*|tkr t|ts td|j||_dS)Nz(logger not derived from logging.Logger: )rrrIrwr)rorr7r7r8r%s   zManager.setLoggerClasscCs ||_dS)N)r)ror|r7r7r8r*szManager.setLogRecordFactorycCs|j}|jd}d}xn|dkr| r|d|}||jkrJt||j|<n$|j|}t|trd|}n |j||jdd|d}qW|s|j}||_dS)NrrrO) rRrfindrrrErrrparent)rorrRirJZsubstrobjr7r7r8rs      zManager._fixupParentscCsH|j}t|}x4|jjD]&}|jjd||kr|j|_||_qWdS)N)rRrTrrr)rorrrRZnamelencr7r7r8rs zManager._fixupChildrenN) rwrxryrtr r%r*rrr7r7r7r8rys  " rc@seZdZefddZddZddZddZd d Zd d Z d dZ ddddZ ddZ e Z ddZd1ddZd2ddZd3ddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Zd+d,Zd-d.Zd/d0ZdS)4rcCs6tj|||_t||_d|_d|_g|_d|_dS)NTF) rrtrRrKr5r propagaterdisabled)rorRr5r7r7r8rts  zLogger.__init__cCst||_dS)N)rKr5)ror5r7r7r8rszLogger.setLevelcOs |jtr|jt||f|dS)N) isEnabledForr_log)rorSrWrrr7r7r8rs z Logger.debugcOs |jtr|jt||f|dS)N)rr r)rorSrWrrr7r7r8r"s z Logger.infocOs |jtr|jt||f|dS)N)rrr)rorSrWrrr7r7r8r(s zLogger.warningcOs$tjdtd|j|f||dS)Nz6The 'warn' method is deprecated, use 'warning' insteadr?)warningsr'DeprecationWarningr()rorSrWrrr7r7r8r'*sz Logger.warncOs |jtr|jt||f|dS)N)rrr)rorSrWrrr7r7r8r/s z Logger.errorT)rAcOs|j|f|d|i|dS)NrA)r)rorSrArWrrr7r7r8r;szLogger.exceptioncOs |jtr|jt||f|dS)N)rrr)rorSrWrrr7r7r8rAs zLogger.criticalcOs<t|tstrtdndS|j|r8|j|||f|dS)Nzlevel must be an integer)rErFr,rIrr)ror5rSrWrrr7r7r8r#Os   z Logger.logFcCst}|dk r|j}d }xt|dr|j}tjj|j}|tkrH|j}qd}|rt j }|j dt j ||d|j}|d dkr|dd }|j|j|j|j|f}PqW|S) N(unknown file)r(unknown function)rzStack (most recent call last): )rrOr)rrr Nrr)rDrCrmrrZr[normcaser_srcfilerrrrrrrf_linenoco_name)rorbrrJcor]rqrr7r7r8 findCaller`s,    zLogger.findCallerNc Cs^t||||||||| } | dk rZx8| D]0} | dks<| | jkrHtd| | | | j| <q&W| S)Nrrz$Attempt to overwrite %r in LogRecord)rr)r{r~KeyError) rorRr5fnlnorSrWrArpextrarqrJkeyr7r7r8 makeRecord~s  zLogger.makeRecordc Csd}tr@y|j|\}} } }WqJtk r<d\}} } YqJXn d\}} } |r|t|trjt|||jf}nt|ts|tj }|j |j ||| |||| || } |j | dS)N(unknown file)r(unknown function))rrr)rrr) r rrHrE BaseExceptiontype __traceback__tupler=rArrRr) ror5rSrWrArrbrqrrrprr7r7r8rs    z Logger._logcCs |j r|j|r|j|dS)N)rr callHandlers)rorr7r7r8rsz Logger.handlec Cs.tz||jkr|jj|WdtXdS)N)r9rrr:)rohdlrr7r7r8 addHandlers  zLogger.addHandlerc Cs.tz||jkr|jj|WdtXdS)N)r9rrr:)rorr7r7r8 removeHandlers  zLogger.removeHandlercCs2|}d}x$|r,|jrd}P|js$Pq |j}q W|S)NFT)rrr)rorrJr7r7r8 hasHandlerss  zLogger.hasHandlerscCs|}d}xH|rPx,|jD]"}|d}|j|jkr|j|qW|jsHd}q |j}q W|dkrtrv|jtjkrtj|n(tr|jj rt j j d|j d|j_ dS)NrrOz+No handlers could be found for logger "%s" T)rrXr5rrrr+r,rrr=rrrR)rorrfoundrr7r7r8rs$       zLogger.callHandlerscCs$|}x|r|jr|jS|j}qWtS)N)r5rr)rologgerr7r7r8getEffectiveLevels  zLogger.getEffectiveLevelcCs|jj|krdS||jkS)NF)rrr#)ror5r7r7r8rs zLogger.isEnabledForcCs&|j|k rdj|j|f}|jj|S)Nr)rrrRrr )rosuffixr7r7r8getChilds zLogger.getChildcCs t|j}d|jj|j|fS)Nz <%s %s (%s)>)rr#rrwrR)ror5r7r7r8rz#s zLogger.__repr__)F)NNN)NNF)rwrxryrrtrrr"r(r'rrrrr#rrrrrrr rr#rr%rzr7r7r7r8rs.            c@seZdZddZdS) RootLoggercCstj|d|dS)Nr)rrt)ror5r7r7r8rt.szRootLogger.__init__N)rwrxryrtr7r7r7r8r&(sr&c@seZdZddZddZddZddZd d Zd d Zd dZ ddddZ ddZ ddZ ddZ ddZddZddZd*d!d"Zed#d$Zejd%d$Zed&d'Zd(d)ZdS)+rcCs||_||_dS)N)r"r)ror"rr7r7r8rt<s zLoggerAdapter.__init__cCs|j|d<||fS)Nr)r)rorSrrr7r7r8rnJs zLoggerAdapter.processcOs|jt|f||dS)N)r#r)rorSrWrrr7r7r8rZszLoggerAdapter.debugcOs|jt|f||dS)N)r#r )rorSrWrrr7r7r8r"`szLoggerAdapter.infocOs|jt|f||dS)N)r#r)rorSrWrrr7r7r8r(fszLoggerAdapter.warningcOs$tjdtd|j|f||dS)Nz6The 'warn' method is deprecated, use 'warning' insteadr?)rr'rr()rorSrWrrr7r7r8r'lszLoggerAdapter.warncOs|jt|f||dS)N)r#r)rorSrWrrr7r7r8rqszLoggerAdapter.errorT)rAcOs |jt|f|d|i|dS)NrA)r#r)rorSrArWrrr7r7r8rwszLoggerAdapter.exceptioncOs|jt|f||dS)N)r#r)rorSrWrrr7r7r8r}szLoggerAdapter.criticalcOs4|j|r0|j||\}}|jj||f||dS)N)rrnr"r#)ror5rSrWrrr7r7r8r#s zLoggerAdapter.logcCs|jjj|krdS||jkS)NF)r"rrr#)ror5r7r7r8rszLoggerAdapter.isEnabledForcCs|jj|dS)N)r"r)ror5r7r7r8rszLoggerAdapter.setLevelcCs |jjS)N)r"r#)ror7r7r8r#szLoggerAdapter.getEffectiveLevelcCs |jjS)N)r"r )ror7r7r8r szLoggerAdapter.hasHandlersNFcCs|jj||||||dS)N)rArrb)r"r)ror5rSrWrArrbr7r7r8rszLoggerAdapter._logcCs|jjS)N)r"r)ror7r7r8rszLoggerAdapter.managercCs ||j_dS)N)r"r)rovaluer7r7r8rscCs|jjS)N)r"rR)ror7r7r8rRszLoggerAdapter.namecCs&|j}t|j}d|jj|j|fS)Nz <%s %s (%s)>)r"rr#rrwrR)ror"r5r7r7r8rzs zLoggerAdapter.__repr__)NNF)rwrxryrtrnrr"r(r'rrrr#rrr#r rrrsetterrRrzr7r7r7r8r6s&   c Kstzjttjdkrp|jdd}|dkrHd|kr`d|kr`tdnd|ksXd|kr`td|dkr|jdd}|jdd}|rt||}n|jdd}t|}|g}|jd d}|jd d }|tkrtd d j tj |jdt|d}t |||} x.|D]&}|j dkr |j | tj|qW|jdd} | dk rPtj| |rpdj |j } td| WdtXdS)Nrrrr]z8'stream' and 'filename' should not be specified togetherzG'stream' or 'filename' should not be specified together with 'handlers'filemoderrrrzStyle must be one of: %srrrOr5z, zUnrecognised argument(s): %s)r9rTrrpoprHr rrrrr rrrrr:) rrrr]rhrZdfsrZfsrr5rr7r7r8rsF4               cCs|rtjj|StSdS)N)rrr r)rRr7r7r8r .s cOs*ttjdkrttj|f||dS)Nr)rTrrrr)rSrWrrr7r7r8r9scOs*ttjdkrttj|f||dS)Nr)rTrrrr)rSrWrrr7r7r8rEs)rAcOst|f|d|i|dS)NrA)r)rSrArWrrr7r7r8rOscOs*ttjdkrttj|f||dS)Nr)rTrrrr()rSrWrrr7r7r8r(WscOs"tjdtdt|f||dS)Nz8The 'warn' function is deprecated, use 'warning' insteadr?)rr'rr()rSrWrrr7r7r8r'ascOs*ttjdkrttj|f||dS)Nr)rTrrrr")rSrWrrr7r7r8r"fscOs*ttjdkrttj|f||dS)Nr)rTrrrr)rSrWrrr7r7r8rpscOs,ttjdkrttj||f||dS)Nr)rTrrrr#)r5rSrWrrr7r7r8r#zscCs |tj_dS)N)rrr)r5r7r7r8rscCsxt|ddD]l}yT|}|rhz:y|j|j|jWnttfk rXYnXWd|jXWqtrxYqXqWdS)N)reversedrMrrrrHrNr,)Z handlerListrr+r7r7r8r&s  c@s$eZdZddZddZddZdS)rcCsdS)Nr7)rorr7r7r8rszNullHandler.handlecCsdS)Nr7)rorr7r7r8rszNullHandler.emitcCs d|_dS)N)r)ror7r7r8rszNullHandler.createLockN)rwrxryrrrr7r7r7r8rs cCs`|dk r$tdk r\t||||||n8tj|||||}td}|jsP|jt|jd|dS)Nz py.warningsz%s)_warnings_showwarningr formatwarningr rrrr()rcategoryr]rcrlinerr"r7r7r8 _showwarnings r1cCs0|rtdkr,tjatt_ntdk r,tt_dadS)N)r-r showwarningr1)Zcapturer7r7r8rs)N)NN)fr=rZrQrrrrrUstringr__all__rh ImportError __author__Z __status__ __version__Z__date__rfr,rgrjrlrrrrrr rrr2r4rrrmrDr[r __code__rr rKrrLr9r:objectrr{r*r)r$rrrrrr rrr rWeakValueDictionaryrrrrr rr rZ_defaultLastResortr+rr%r!rrr&rrrrrr rrrrr(r'r"rr#rr&atexitregisterrr-r1rr7r7r7r8s@                  i   .*%4 >;E lE  b          PK`d1] ll)__pycache__/handlers.cpython-36.opt-1.pycnu[3 ctjI @sdZddlZddlZddlZddlZddlZddlZddlZddlm Z m Z m Z ddl Z y ddl Z Wnek r|dZ YnXdZdZdZdZdZdZd(ZGd d d ejZGd ddeZGdddeZGdddejZGdddejZGdddeZGdddejZGdddejZGdddejZ GdddejZ!Gdd d ejZ"Gd!d"d"e"Z#Gd#d$d$ejZ$e rGd%d&d&e%Z&dS))z Additional handlers for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2016 Vinay Sajip. All Rights Reserved. To use, simply 'import logging.handlers' and log away! N)ST_DEVST_INOST_MTIMEi<#i=#i>#i?#i<c@s2eZdZdZd ddZddZdd Zd d ZdS) BaseRotatingHandlerz Base class for handlers that rotate log files at a certain point. Not meant to be instantiated directly. Instead, use RotatingFileHandler or TimedRotatingFileHandler. NFcCs0tjj|||||||_||_d|_d|_dS)zA Use the specified filename for streamed logging N)logging FileHandler__init__modeencodingnamerrotator)selffilenamer r delayr(/usr/lib64/python3.6/logging/handlers.pyr 5s zBaseRotatingHandler.__init__c CsHy$|j|r|jtjj||Wntk rB|j|YnXdS)z Emit a record. Output the record to the file, catering for rollover as described in doRollover(). N)shouldRollover doRolloverrr emit Exception handleError)rrecordrrrr?s  zBaseRotatingHandler.emitcCst|js|}n |j|}|S)a Modify the filename of a log file when rotating. This is provided so that a custom filename can be provided. The default implementation calls the 'namer' attribute of the handler, if it's callable, passing the default name to it. If the attribute isn't callable (the default is None), the name is returned unchanged. :param default_name: The default name for the log file. )callabler )rZ default_nameresultrrrrotation_filenameMs  z%BaseRotatingHandler.rotation_filenamecCs4t|js$tjj|r0tj||n |j||dS)aL When rotating, rotate the current log. The default implementation calls the 'rotator' attribute of the handler, if it's callable, passing the source and dest arguments to it. If the attribute isn't callable (the default is None), the source is simply renamed to the destination. :param source: The source filename. This is normally the base filename, e.g. 'test.log' :param dest: The destination filename. This is normally what the source is rotated to, e.g. 'test.log.1'. N)rrospathexistsrename)rsourcedestrrrrotate`s  zBaseRotatingHandler.rotate)NF)__name__ __module__ __qualname____doc__r rrr#rrrrr/s  rc@s*eZdZdZd ddZdd Zd d ZdS) RotatingFileHandlerz Handler for logging to a set of files, which switches from one file to the next when the current file reaches a certain size. arNFcCs.|dkr d}tj|||||||_||_dS)a Open the specified file and use it as the stream for logging. By default, the file grows indefinitely. You can specify particular values of maxBytes and backupCount to allow the file to rollover at a predetermined size. Rollover occurs whenever the current log file is nearly maxBytes in length. If backupCount is >= 1, the system will successively create new files with the same pathname as the base file, but with extensions ".1", ".2" etc. appended to it. For example, with a backupCount of 5 and a base file name of "app.log", you would get "app.log", "app.log.1", "app.log.2", ... through to "app.log.5". The file being written to is always "app.log" - when it gets filled up, it is closed and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc. exist, then they are renamed to "app.log.2", "app.log.3" etc. respectively. If maxBytes is zero, rollover never occurs. rr)N)rr maxBytes backupCount)rrr r*r+r rrrrr zs zRotatingFileHandler.__init__cCs|jr|jjd|_|jdkrxtt|jdddD]^}|jd|j|f}|jd|j|df}tjj|r4tjj|rtj |tj ||q4W|j|jd}tjj|rtj ||j |j||j s|j |_dS)z< Do a rollover, as described in __init__(). Nrz%s.%dz.1)streamcloser+ranger baseFilenamerrrremover r#r_open)riZsfndfnrrrrs$        zRotatingFileHandler.doRollovercCs|tjj|jr"tjj|j r"dS|jdkr6|j|_|jdkrxd|j|}|jj dd|jj t ||jkrxdSdS)z Determine if rollover should occur. Basically, see if the supplied record would cause the file to exceed the size limit we have. FNrz%s T) rrrr1isfiler.r3r*formatseektelllen)rrmsgrrrrs   z"RotatingFileHandler.shouldRollover)r)rrNF)r$r%r&r'r rrrrrrr(us r(c@s:eZdZdZdddZd d Zd d Zd dZddZdS)TimedRotatingFileHandlerz Handler for logging to a file, rotating the log file at certain timed intervals. If backupCount is > 0, when rollover is done, no more than backupCount files are kept - the oldest ones are deleted. hr,rNFc Cstj||d|||j|_||_||_||_|jdkrNd|_d|_d|_ n|jdkrld|_d|_d |_ n|jd krd|_d |_d |_ n|jd ks|jdkrd|_d|_d|_ n|jj dr.d|_t |jdkrt d|j|jddks|jddkrt d|jt |jd|_d|_d|_ nt d|jtj|j tj|_ |j||_|j}tjj|r~tj|t} n t tj} |j| |_dS) Nr)Sr,z%Y-%m-%d_%H-%M-%Sz-^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}(\.\w+)?$Mrz%Y-%m-%d_%H-%Mz'^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}(\.\w+)?$Hz %Y-%m-%d_%Hz!^\d{4}-\d{2}-\d{2}_\d{2}(\.\w+)?$DMIDNIGHTrz%Y-%m-%dz^\d{4}-\d{2}-\d{2}(\.\w+)?$Wr6zHYou must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s06z-Invalid day specified for weekly rollover: %sz'Invalid rollover interval specified: %siiiQiiQi: )rr upperwhenr+utcatTimeintervalsuffixextMatch startswithr; ValueErrorint dayOfWeekrecompileASCIIr1rrrstatrtimecomputeRollover rolloverAt) rrrIrLr+r rrJrKtrrrr sL        z!TimedRotatingFileHandler.__init__cCsd||j}|jdks"|jjdr`|jr4tj|}n tj|}|d}|d}|d}|d}|jdkrnt}n |jj d|jj d|jj }||d|d|} | d kr| t7} |d d }|| }|jjdr`|} | |j kr`| |j kr|j | } nd| |j d } || d} |js\|d} tj| d}| |kr\| sPd}nd }| |7} | }|S)zI Work out the rollover time based on the specified time. rCrDNrrr,rEriiiQr-r-i) rLrIrOrJrWgmtime localtimerK _MIDNIGHTZhourZminutesecondrR)r currentTimerrZZ currentHourZ currentMinuteZ currentSecondZ currentDayZ rotate_tsrZdayZ daysToWait newRolloverAtdstNow dstAtRolloveraddendrrrrXsH           z(TimedRotatingFileHandler.computeRollovercCs@tjj|jr"tjj|j r"dSttj}||jkr|jjdrx|j rxtj| d } || krx|sld }nd}| |7} | |_dS) ax do a rollover; in this case, a date/time stamp is appended to the filename when the rollover happens. However, you want the file to be named for the start of the interval, not the current time. If there is a backup count, then we have to get a list of matching filenames, sort them and remove the one with the oldest suffix. Nr,irirrCrDr-r-ir-i)r.r/rQrWr`rYrLrJr_rr1ZstrftimerMrrrr2r#r+rqrr3rXrIrO) rrcrfrZZ timeTupleZdstThenrhr5srergrrrrtsH            $ z#TimedRotatingFileHandler.doRollover)r>r,rNFFN) r$r%r&r'r rXrrqrrrrrr=s  9Ir=c@s2eZdZdZd ddZddZd d Zd d ZdS)WatchedFileHandlera A handler for logging to a file, which watches the file to see if it has changed while in use. This can happen because of usage of programs such as newsyslog and logrotate which perform log file rotation. This handler, intended for use under Unix, watches the file to see if it has changed since the last emit. (A file has changed if its device or inode have changed.) If it has changed, the old file stream is closed, and the file opened to get a new stream. This handler is not appropriate for use under Windows, because under Windows open files cannot be moved or renamed - logging opens the files with exclusive locks - and so there is no need for such a handler. Furthermore, ST_INO is not supported under Windows; stat always returns zero for this value. This handler is based on a suggestion and patch by Chad J. Schroeder. r)NFcCs,tjj|||||d\|_|_|jdS)Nr,r-r-)r-r-)rr r devino _statstream)rrr r rrrrr s zWatchedFileHandler.__init__cCs0|jr,tj|jj}|t|t|_|_dS)N)r.rfstatfilenorrrtru)rsresrrrrvszWatchedFileHandler._statstreamc Csytj|j}Wntk r(d}YnX| sL|t|jksL|t|jkr|jdk r|jj |jj d|_|j |_|j dS)z Reopen log file if needed. Checks if the underlying file has changed, and if it has, close the old stream and reopen the file to get the current stream. N) rrVr1FileNotFoundErrorrrtrrur.flushr/r3rv)rryrrrreopenIfNeededs  "    z!WatchedFileHandler.reopenIfNeededcCs|jtjj||dS)z Emit a record. If underlying file has changed, reopen the file before emitting the record to it. N)r|rr r)rrrrrrszWatchedFileHandler.emit)r)NF)r$r%r&r'r rvr|rrrrrrss  rsc@sReZdZdZddZdddZddZd d Zd d Zd dZ ddZ ddZ dS) SocketHandlera A handler class which writes logging records, in pickle format, to a streaming socket. The socket is kept open across logging calls. If the peer resets it, an attempt is made to reconnect on the next call. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCsZtjj|||_||_|dkr(||_n ||f|_d|_d|_d|_d|_ d|_ d|_ dS)a Initializes the handler with a specific host address and port. When the attribute *closeOnError* is set to True - if a socket error occurs, the socket is silently closed and then reopened on the next logging call. NFg?g>@g@) rHandlerr hostportaddresssock closeOnError retryTime retryStartretryMax retryFactor)rrrrrrr s  zSocketHandler.__init__r,c Csj|jdk rtj|j|d}nJtjtjtj}|j|y|j|jWntk rd|j YnX|S)zr A factory method which allows subclasses to define the precise type of socket they want. N)timeout) rsocketZcreate_connectionrAF_UNIX SOCK_STREAMZ settimeoutconnectOSErrorr/)rrrrrr makeSockets  zSocketHandler.makeSocketc Cstj}|jdkrd}n ||jk}|ry|j|_d|_WnVtk r|jdkr^|j|_n"|j|j|_|j|jkr|j|_||j|_YnXdS)z Try to create a socket, using an exponential backoff with a max retry time. Thanks to Robert Olson for the original patch (SF #815911) which has been slightly refactored. NT) rWrrrrrZ retryPeriodrr)rZnowZattemptrrr createSocket"s       zSocketHandler.createSocketc CsR|jdkr|j|jrNy|jj|Wn$tk rL|jjd|_YnXdS)z Send a pickled string to the socket. This function allows for partial sends which can happen when the network is busy. N)rrsendallrr/)rrrrrrsend>s  zSocketHandler.sendcCsj|j}|r|j|}t|j}|j|d<d|d<d|d<|jddtj|d}tj dt |}||S)z Pickles the record in binary format with a length prefix, and returns it ready for transmission across the socket. r<Nargsexc_infomessager,z>L) rr8dict__dict__Z getMessagepoppickledumpsstructZpackr;)rrZeiZdummydrrZslenrrr makePickleQs     zSocketHandler.makePicklecCs0|jr|jr|jjd|_ntjj||dS)z Handle an error during logging. An error has occurred during logging. Most likely cause - connection lost. Close the socket so that we can retry on the next event. N)rrr/rr~r)rrrrrrgs  zSocketHandler.handleErrorc Cs<y|j|}|j|Wntk r6|j|YnXdS)a Emit a record. Pickles the record and writes it to the socket in binary format. If there is an error with the socket, silently drop the packet. If there was a problem with the socket, re-establishes the socket. N)rrrr)rrrrrrrrus  zSocketHandler.emitc Cs@|jz(|j}|r"d|_|jtjj|Wd|jXdS)z$ Closes the socket. N)acquirerr/rr~release)rrrrrr/szSocketHandler.closeN)r,) r$r%r&r'r rrrrrrr/rrrrr}s  r}c@s(eZdZdZddZddZddZdS) DatagramHandlera A handler class which writes logging records, in pickle format, to a datagram socket. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCstj|||d|_dS)zP Initializes the handler with a specific host address and port. FN)r}r r)rrrrrrr szDatagramHandler.__init__cCs*|jdkrtj}ntj}tj|tj}|S)zu The factory method of SocketHandler is here overridden to create a UDP socket (SOCK_DGRAM). N)rrrZAF_INET SOCK_DGRAM)rZfamilyrrrrrrs  zDatagramHandler.makeSocketcCs&|jdkr|j|jj||jdS)z Send a pickled string to a socket. This function no longer allows for partial sends which can happen when the network is busy - UDP does not guarantee delivery and can deliver packets out of sequence. N)rrsendtor)rrrrrrrs zDatagramHandler.sendN)r$r%r&r'r rrrrrrrs  rc@s"eZdZdZdZdZdZdZdZdZ dZ d Z dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZdZeeee eeee e eeed Z eeeeee eeeeee eeeeeeeeedZ!ddddddZ"de#fe dfd d!Z$d"d#Z%d$d%Z&d&d'Z'd(d)Z(d*Z)d+Z*d,d-Z+dS). SysLogHandlera A handler class which sends formatted logging records to a syslog server. Based on Sam Rushing's syslog module: http://www.nightmare.com/squirl/python-ext/misc/syslog.py Contributed by Nicolas Untz (after which minor refactoring changes have been made). rr,r6r[r\r]r^rE ) ZalertZcritcriticaldebugZemergerrerrorinfoZnoticeZpanicwarnwarning)ZauthZauthprivZcrondaemonZftpZkernZlprZmailZnewsZsecurityZsysloguserZuucpZlocal0Zlocal1Zlocal2Zlocal3Zlocal4Zlocal5Zlocal6Zlocal7rrrrr)DEBUGINFOWARNINGERRORCRITICALZ localhostNcCs0tjj|||_||_||_t|trTd|_y|j |Wnt k rPYnXnd|_|dkrht j }|\}}t j ||d|}|st dx|D]|}|\}}} } } d} } y(t j ||| } |t jkr| j| PWqt k r }z|} | dk r| jWYdd}~XqXqW| dk r | | |_ ||_dS)a Initialize a handler. If address is specified as a string, a UNIX socket is used. To log to a local syslogd, "SysLogHandler(address="/dev/log")" can be used. If facility is not specified, LOG_USER is used. If socktype is specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific socket type will be used. For Unix sockets, you can also specify a socktype of None, in which case socket.SOCK_DGRAM will be used, falling back to socket.SOCK_STREAM. TFNrz!getaddrinfo returns an empty list)rr~r rfacilitysocktype isinstancestr unixsocket_connect_unixsocketrrrZ getaddrinforrr/)rrrrrrZressresZafproto_Zsarrexcrrrr #sB      zSysLogHandler.__init__cCs|j}|dkrtj}tjtj||_y|jj|||_Wnxtk r|jj|jdk r`tj}tjtj||_y|jj|||_Wn tk r|jjYnXYnXdS)N)rrrrrrr/r)rrZ use_socktyperrrrYs&       z!SysLogHandler._connect_unixsocketcCs4t|tr|j|}t|tr(|j|}|d>|BS)z Encode the facility and priority. You can pass in strings or integers - if strings are passed, the facility_names and priority_names mapping dictionaries are used to convert them to integers. r[)rrfacility_namespriority_names)rrZpriorityrrrencodePriorityqs     zSysLogHandler.encodePriorityc Cs2|jz|jjtjj|Wd|jXdS)z$ Closes the socket. N)rrr/rr~r)rrrrr/~s  zSysLogHandler.closecCs|jj|dS)aK Map a logging level name to a key in the priority_names map. This is useful in two scenarios: when custom levels are being used, and in the case where you can't do a straightforward mapping by lowercasing the logging level name because of locale- specific issues (see SF #1524081). r) priority_mapget)rZ levelNamerrr mapPriorityszSysLogHandler.mapPriorityTcCsy|j|}|jr|j|}|jr*|d7}d|j|j|j|j}|jd}|jd}||}|jry|j j |Wqt k r|j j |j |j|j j |YqXn*|jt jkr|j j||jn |j j|Wntk r|j|YnXdS)z Emit a record. The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. z<%d>zutf-8N)r8ident append_nulrrrZ levelnameencoderrrrr/rrrrrrrr)rrr<Zpriorrrrs.        zSysLogHandler.emit),r$r%r&r'Z LOG_EMERGZ LOG_ALERTZLOG_CRITZLOG_ERRZ LOG_WARNINGZ LOG_NOTICEZLOG_INFOZ LOG_DEBUGZLOG_KERNZLOG_USERZLOG_MAILZ LOG_DAEMONZLOG_AUTHZ LOG_SYSLOGZLOG_LPRZLOG_NEWSZLOG_UUCPZLOG_CRONZ LOG_AUTHPRIVZLOG_FTPZ LOG_LOCAL0Z LOG_LOCAL1Z LOG_LOCAL2Z LOG_LOCAL3Z LOG_LOCAL4Z LOG_LOCAL5Z LOG_LOCAL6Z LOG_LOCAL7rrrSYSLOG_UDP_PORTr rrr/rrrrrrrrrs 5   rc@s*eZdZdZd ddZddZdd ZdS) SMTPHandlerzK A handler class which sends an SMTP email for each logging event. N@cCstjj|t|ttfr(|\|_|_n|d|_|_t|ttfrR|\|_|_ nd|_||_ t|t rn|g}||_ ||_ ||_||_dS)ax Initialize the handler. Initialize the instance with the from and to addresses and subject line of the email. To specify a non-standard SMTP port, use the (host, port) tuple format for the mailhost argument. To specify authentication credentials, supply a (username, password) tuple for the credentials argument. To specify the use of a secure protocol (TLS), pass in a tuple for the secure argument. This will only be used when authentication credentials are supplied. The tuple will be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the `starttls` method). A timeout in seconds can be specified for the SMTP connection (the default is one second). N)rr~r rlisttuplemailhostmailportusernamepasswordfromaddrrtoaddrssubjectsecurer)rrrrr credentialsrrrrrr s  zSMTPHandler.__init__cCs|jS)z Determine the subject for the email. If you want to specify a subject line which is record-dependent, override this method. )r)rrrrr getSubjectszSMTPHandler.getSubjectc Csyddl}ddlm}ddl}|j}|s.|j}|j|j||jd}|}|j |d<dj |j |d<|j ||d<|j j|d <|j|j||jr|jdk r|j|j|j|j|j|j|j|j||jWntk r|j|YnXdS) zd Emit a record. Format the record and send it to the specified addressees. rN) EmailMessage)rZFrom,ZToZSubjectZDate)smtplibZ email.messagerZ email.utilsrZ SMTP_PORTZSMTPrrrrnrrZutilsr`Z set_contentr8rrZehloZstarttlsZloginrZ send_messagequitrr)rrrrZemailrZsmtpr<rrrrs0      zSMTPHandler.emit)NNr)r$r%r&r'r rrrrrrrs " rc@sBeZdZdZdddZddZdd Zd d Zd d ZddZ dS)NTEventLogHandlera A handler class which sends events to the NT Event Log. Adds a registry entry for the specified application name. If no dllname is provided, win32service.pyd (which contains some basic message placeholders) is used. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own DLL which contains the message definitions you want to use in the event log. N ApplicationcCstjj|yddl}ddl}||_||_|s`tjj |jj }tjj |d}tjj |dd}||_ ||_ |jj||||j|_tj|jtj|jtj|jtj|jtj|ji|_Wn"tk rtdd|_YnXdS)Nrzwin32service.pydzWThe Python Win32 extensions for NT (service, event logging) appear not to be available.)rr~r win32evtlogutil win32evtlogappname_welurrrj__file__rndllnamelogtypeZAddSourceToRegistryZEVENTLOG_ERROR_TYPEdeftyperZEVENTLOG_INFORMATION_TYPErrZEVENTLOG_WARNING_TYPErrtypemap ImportErrorprint)rrrrrrrrrr s* zNTEventLogHandler.__init__cCsdS)ay Return the message ID for the event record. If you are using your own messages, you could do this by having the msg passed to the logger being an ID rather than a formatting string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in win32service.pyd. r,r)rrrrr getMessageID.szNTEventLogHandler.getMessageIDcCsdS)z Return the event category for the record. Override this if you want to specify your own categories. This version returns 0. rr)rrrrrgetEventCategory8sz"NTEventLogHandler.getEventCategorycCs|jj|j|jS)a Return the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in __init__() to a dictionary which contains mappings for DEBUG, INFO, WARNING, ERROR and CRITICAL. If you are using your own levels you will either need to override this method or place a suitable dictionary in the handler's typemap attribute. )rrlevelnor)rrrrr getEventTypeAs zNTEventLogHandler.getEventTypec Csn|jrjyD|j|}|j|}|j|}|j|}|jj|j||||gWntk rh|j|YnXdS)z Emit a record. Determine the message ID, event category and event type. Then log the message in the NT event log. N) rrrrr8Z ReportEventrrr)rridcattyper<rrrrNs    zNTEventLogHandler.emitcCstjj|dS)aS Clean up this handler. You can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the DLL name. N)rr~r/)rrrrr/_s zNTEventLogHandler.close)Nr) r$r%r&r'r rrrrr/rrrrr s     rc@s*eZdZdZd ddZddZd d ZdS) HTTPHandlerz^ A class which sends records to a Web server, using either GET or POST semantics. GETFNcCsbtjj||j}|dkr$td| r:|dk r:td||_||_||_||_||_ ||_ dS)zr Initialize the instance with the host, the request URL, and the method ("GET" or "POST") rPOSTzmethod must be GET or POSTNz3context parameter only makes sense with secure=True)rr) rr~r rHrPrurlmethodrrcontext)rrrrrrrrrrr qs zHTTPHandler.__init__cCs|jS)z Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner. )r)rrrrr mapLogRecordszHTTPHandler.mapLogRecordc CsxyPddl}ddl}|j}|jr4|jj||jd}n |jj|}|j}|j j |j |}|j dkr|j ddkrvd}nd}|d||f}|j|j ||j d} | dkr|d| }|j d kr|jd d |jd tt||jr$ddl} d |jjd} d| j| jjd} |jd| |j|j d krH|j|jd|jWn tk rr|j|YnXdS)zk Emit a record. Send the record to the Web server as a percent-encoded dictionary rN)rr?&z%c%s:rz Content-typez!application/x-www-form-urlencodedzContent-lengthz%s:%szutf-8zBasic asciiZ Authorization)Z http.clientZ urllib.parserrZclientZHTTPSConnectionrZHTTPConnectionrparseZ urlencoderrfindZ putrequestZ putheaderrr;rbase64rZ b64encodestripdecodeZ endheadersrZ getresponserr) rrZhttpZurllibrr>rdatasepr4rrrrrrrs@        zHTTPHandler.emit)rFNN)r$r%r&r'r rrrrrrrls  rc@s8eZdZdZddZddZddZdd Zd d Zd S) BufferingHandlerz A handler class which buffers logging records in memory. Whenever each record is added to the buffer, a check is made to see if the buffer should be flushed. If it should, then flush() is expected to do what's needed. cCstjj|||_g|_dS)z> Initialize the handler with the buffer size. N)rr~r capacitybuffer)rr rrrr s zBufferingHandler.__init__cCst|j|jkS)z Should the handler flush its buffer? Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies. )r;r r )rrrrr shouldFlushszBufferingHandler.shouldFlushcCs"|jj||j|r|jdS)z Emit a record. Append the record. If shouldFlush() tells us to, call flush() to process the buffer. N)r rmrr{)rrrrrrs  zBufferingHandler.emitc Cs"|jz g|_Wd|jXdS)zw Override to implement custom flushing behaviour. This version just zaps the buffer to empty. N)rr r)rrrrr{s zBufferingHandler.flushc Cs z |jWdtjj|XdS)zp Close the handler. This version just flushes and chains to the parent class' close(). N)r{rr~r/)rrrrr/s zBufferingHandler.closeN) r$r%r&r'r rrr{r/rrrrr s    r c@sBeZdZdZejddfddZddZdd Zd d Z d d Z dS) MemoryHandlerz A handler class which buffers logging records in memory, periodically flushing them to a target handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen. NTcCs"tj||||_||_||_dS)a; Initialize the handler with the buffer size, the level at which flushing should occur and an optional target. Note that without a target being set either here or via setTarget(), a MemoryHandler is no use to anyone! The ``flushOnClose`` argument is ``True`` for backward compatibility reasons - the old behaviour is that when the handler is closed, the buffer is flushed, even if the flush level hasn't been exceeded nor the capacity exceeded. To prevent this, set ``flushOnClose`` to ``False``. N)r r flushLeveltarget flushOnClose)rr rrrrrrr s zMemoryHandler.__init__cCst|j|jkp|j|jkS)zP Check for buffer full or a record at the flushLevel or higher. )r;r r rr)rrrrrrszMemoryHandler.shouldFlushcCs ||_dS)z: Set the target handler for this handler. N)r)rrrrr setTargetszMemoryHandler.setTargetc CsD|jz,|jr2x|jD]}|jj|qWg|_Wd|jXdS)z For a MemoryHandler, flushing means just sending the buffered records to the target, if there is one. Override if you want different behaviour. The record buffer is also cleared by this operation. N)rrr handler)rrrrrr{s  zMemoryHandler.flushcCsBz|jr|jWd|jzd|_tj|Wd|jXXdS)zi Flush, if appropriately configured, set the target to None and lose the buffer. N)rr{rrr r/r)rrrrr/,s zMemoryHandler.close) r$r%r&r'rrr rrr{r/rrrrrs rc@s0eZdZdZddZddZddZdd Zd S) QueueHandlera This handler sends events to a queue. Typically, it would be used together with a multiprocessing Queue to centralise logging to file in one process (in a multi-process application), so as to avoid file write contention between processes. This code is new in Python 3.2, but this class can be copy pasted into user code for use with earlier Python versions. cCstjj|||_dS)zA Initialise an instance, using the passed queue. N)rr~r queue)rrrrrr Hs zQueueHandler.__init__cCs|jj|dS)z Enqueue a record. The base implementation uses put_nowait. You may want to override this method if you want to use blocking, timeouts or custom queue implementations. N)r put_nowait)rrrrrenqueueOszQueueHandler.enqueuecCs"|j||j|_d|_d|_|S)a Prepares a record for queuing. The object returned by this method is enqueued. The base implementation formats the record to merge the message and arguments, and removes unpickleable items from the record in-place. You might want to override this method if you want to convert the record to a dict or JSON string, or send a modified copy of the record while leaving the original intact. N)r8rr<rr)rrrrrprepareYs  zQueueHandler.preparec Cs8y|j|j|Wntk r2|j|YnXdS)zm Emit a record. Writes the LogRecord to the queue, preparing it for pickling first. N)rrrr)rrrrrrrszQueueHandler.emitN)r$r%r&r'r rrrrrrrr=s   rc@sZeZdZdZdZddddZddZd d Zd d Zd dZ ddZ ddZ ddZ dS) QueueListenerz This class implements an internal threaded listener which watches for LogRecords being added to a queue, removes them and passes them to a list of handlers for processing. NF)respect_handler_levelcGs||_||_d|_||_dS)zc Initialise an instance with the specified queue and handlers. N)rhandlers_threadr)rrrrrrrr szQueueListener.__init__cCs |jj|S)z Dequeue a record and return it, optionally blocking. The base implementation uses get. You may want to override this method if you want to use timeouts or work with custom queue implementations. )rr)rblockrrrdequeueszQueueListener.dequeuecCs&tj|jd|_}d|_|jdS)z Start the listener. This starts up a background thread to monitor the queue for LogRecords to process. )rTN) threadingZThread_monitorrrstart)rrZrrrr"szQueueListener.startcCs|S)a Prepare a record for handling. This method just returns the passed-in record. You may want to override this method if you need to do any custom marshalling or manipulation of the record before passing it to the handlers. r)rrrrrrszQueueListener.preparecCsD|j|}x4|jD]*}|js"d}n |j|jk}|r|j|qWdS)z Handle a record. This just loops through the handlers offering them the record to handle. TN)rrrrlevelr)rrZhandlerZprocessrrrrs   zQueueListener.handlec Csd|j}t|d}xNy0|jd}||jkr*P|j||r@|jWqtjk rZPYqXqWdS)z Monitor the queue for records, and ask the handler to deal with them. This method runs on a separate, internal thread. The thread will terminate if it sees a sentinel object in the queue. task_doneTN)rhasattrr _sentinelrr$ZEmpty)rqZ has_task_donerrrrr!s     zQueueListener._monitorcCs|jj|jdS)a This is used to enqueue the sentinel record. The base implementation uses put_nowait. You may want to override this method if you want to use timeouts or work with custom queue implementations. N)rrr&)rrrrenqueue_sentinelszQueueListener.enqueue_sentinelcCs|j|jjd|_dS)a! Stop the listener. This asks the thread to terminate, and then waits for it to do so. Note that if you don't call this before your application exits, there may be some records still left on the queue, which won't be processed. N)r(rrn)rrrrstops zQueueListener.stop) r$r%r&r'r&r rr"rrr!r(r)rrrrr~s     riiQ)'r'rrrrrrWrSrVrrrrr rZDEFAULT_TCP_LOGGING_PORTZDEFAULT_UDP_LOGGING_PORTZDEFAULT_HTTP_LOGGING_PORTZDEFAULT_SOAP_LOGGING_PORTrZSYSLOG_TCP_PORTrar rr(r=rsr~r}rrrrrr rrobjectrrrrrsB8  FOcE(*PbO9I@PK`d1]y]KK'__pycache__/config.cpython-36.opt-2.pycnu[3 \Ќ @spddlZddlZddlZddlZddlZddlZddlZddlZyddlZ ddl Z Wne k rldZ YnXddl m Z mZdZejZdad*ddZddZd d Zd d Zd dZddZddZddZejdejZddZGdddeZ Gddde!e Z"Gddde#e Z$Gddde%e Z&Gd d!d!eZ'Gd"d#d#e'Z(e(Z)d$d%Z*edfd&d'Z+d(d)Z,dS)+N)ThreadingTCPServerStreamRequestHandleriF#Tc Csddl}t||jr|}n*|j|}t|dr:|j|n |j|t|}tj z t t ||}t |||Wdtj XdS)Nrreadline) configparser isinstanceZRawConfigParserZ ConfigParserhasattrZ read_fileread_create_formatterslogging _acquireLock_clearExistingHandlers_install_handlers_install_loggers _releaseLock)ZfnameZdefaultsdisable_existing_loggersrcp formattershandlersr&/usr/lib64/python3.6/logging/config.py fileConfig8s       rc Csp|jd}|jd}t|}xN|D]F}|d|}yt||}Wq"tk rft|t||}Yq"Xq"W|S)N.r)splitpop __import__getattrAttributeError)nameusedfoundnrrr_resolveZs    r!cCstdd|S)NcSs|jS)N)strip)xrrrisz_strip_spaces..)map)Zalistrrr _strip_spaceshsr&c Cs|dd}t|siS|jd}t|}i}x~|D]v}d|}|j|dddd}|j|dddd}|j|d dd d}tj}||jd } | rt| }||||} | ||<q4W|S) Nrkeys,z formatter_%sformatT)rawfallbackdatefmtstyle%class)lenrr&getr Formatterr!) rZflistrZformZsectnameZfsZdfsZstlc class_namefrrrr ks$     r c CsD|dd}t|siS|jd}t|}i}g}x|D]}|d|}|d}|jdd}yt|tt}Wn ttfk rt |}YnX|d} t| tt} || } d |kr|d } | j | t|r| j ||t |tj jr|jd d} t| r|j| | f| ||<q8Wx |D]\} } | j|| q$W|S) Nrr'r(z handler_%sr/ formatterargsleveltarget)r0rr&r1evalvarsr r NameErrorr!setLevel setFormatter issubclassr MemoryHandlerappendZ setTarget)rrhlistrZfixupshandsectionklassfmtr8hr9r:trrrr s>         r cCsHtj}x<|D]4}|jj|}||kr:tj|_g|_d|_q ||_q WdS)NT) r rootmanager loggerDictZNOTSETr9r propagatedisabled)existing child_loggersdisable_existingrJlogloggerrrr_handle_existing_loggerss   rTcCs,|dd}|jd}ttdd|}|jd|d}tj}|}d|kr^|d}|j|x |jddD]}|j|qnW|d } t | r| jd} t | } x| D]} |j || qWt|j j j} | jg} x>|D]4}|d |}|d } |jd d d}tj| }| | kr| j| d }| d}t |}t | }x<||kr| |d||krt| j| ||d 7}qFW| j| d|kr|d}|j|x"|jddD]}|j|qW||_d|_|d } t | r| jd} t | } x| D]} |j || qWqWt| | |dS)Nloggersr'r(cSs|jS)N)r")r#rrrr$sz"_install_loggers..rJZ logger_rootr9rz logger_%squalnamerM)r+rr)rlistr%remover rJr>r removeHandlerr0r& addHandlerrKrLr'sortZgetint getLoggerindexrBrMrNrT)rrrQZllistrErJrRr9rHrCrDrOrPZqnrMrSiprefixedpflen num_existingrrrrsd                rcCs.tjjtjtjddtjdd=dS)N)r _handlersclearZshutdownZ _handlerListrrrrr s r z^[a-z_][a-z0-9_]*$cCstj|}|std|dS)Nz!Not a valid Python identifier: %rT) IDENTIFIERmatch ValueError)smrrr valid_idents  rjc@seZdZdddZddZdS)ConvertingMixinTcCsB|jj|}||k r>|r |||<t|tttfkr>||_||_|S)N) configuratorconverttypeConvertingDictConvertingListConvertingTupleparentkey)selfrsvaluereplaceresultrrrconvert_with_key$s  z ConvertingMixin.convert_with_keycCs0|jj|}||k r,t|tttfkr,||_|S)N)rlrmrnrorprqrr)rtrurwrrrrm0s   zConvertingMixin.convertN)T)__name__ __module__ __qualname__rxrmrrrrrk!s rkc@s(eZdZddZdddZd ddZdS) rocCstj||}|j||S)N)dict __getitem__rx)rtrsrurrrr}Es zConvertingDict.__getitem__NcCstj|||}|j||S)N)r|r1rx)rtrsdefaultrurrrr1IszConvertingDict.getcCstj|||}|j||ddS)NF)rv)r|rrx)rtrsr~rurrrrMszConvertingDict.pop)N)N)ryrzr{r}r1rrrrrroBs roc@seZdZddZdddZdS) rpcCstj||}|j||S)N)rXr}rx)rtrsrurrrr}Ss zConvertingList.__getitem__rWcCstj||}|j|S)N)rXrrm)rtidxrurrrrWs zConvertingList.popN)r)ryrzr{r}rrrrrrpQsrpc@seZdZddZdS)rqcCstj||}|j||ddS)NF)rv)tupler}rx)rtrsrurrrr}]s zConvertingTuple.__getitem__N)ryrzr{r}rrrrrq[srqc@seZdZejdZejdZejdZejdZejdZ dddZ e e Z d d Zd d Zd dZddZddZddZddZdS)BaseConfiguratorz%^(?P[a-z]+)://(?P.*)$z ^\s*(\w+)\s*z^\.\s*(\w+)\s*z^\[\s*(\w+)\s*\]\s*z^\d+$ ext_convert cfg_convert)ZextZcfgcCst||_||j_dS)N)roconfigrl)rtrrrr__init__vs zBaseConfigurator.__init__c Cs|jd}|jd}y`|j|}xP|D]H}|d|7}yt||}Wq&tk rl|j|t||}Yq&Xq&W|Stk rtjdd\}}td||f}|||_ |_ |YnXdS)NrrrWzCannot resolve %r: %s) rrimporterrr ImportErrorsysexc_inforg __cause__ __traceback__) rtrhrrrZfragetbvrrrresolvezs"      zBaseConfigurator.resolvecCs |j|S)N)r)rtrurrrrszBaseConfigurator.ext_convertc Cs|}|jj|}|dkr&td|n||jd}|j|jd}x|r|jj|}|rp||jd}nd|jj|}|r|jd}|jj|s||}n2yt |}||}Wnt k r||}YnX|r||jd}qJtd||fqJW|S)NzUnable to convert %rrzUnable to convert %r at %r) WORD_PATTERNrfrgendrgroups DOT_PATTERN INDEX_PATTERN DIGIT_PATTERNint TypeError)rtrurestridrr rrrrs2       zBaseConfigurator.cfg_convertcCst|t r&t|tr&t|}||_nt|t rLt|trLt|}||_n|t|t rrt|trrt|}||_nVt|tr|j j |}|r|j }|d}|j j |d}|r|d}t||}||}|S)Nprefixsuffix)rror|rlrprXrqrstrCONVERT_PATTERNrf groupdictvalue_convertersr1r)rtrurirrZ converterrrrrrms*     zBaseConfigurator.convertcsrjd}t|s|j|}jdd}tfddD}|f|}|rnx |jD]\}}t|||qVW|S)Nz()rcs g|]}t|r||fqSr)rj).0k)rrr sz5BaseConfigurator.configure_custom..)rcallablerr|itemssetattr)rtrr3propskwargsrwrrur)rrconfigure_customs    z!BaseConfigurator.configure_customcCst|trt|}|S)N)rrXr)rtrurrras_tuples zBaseConfigurator.as_tupleN)ryrzr{recompilerrrrrr staticmethodrrrrrrrmrrrrrrrbs     "rc@sZeZdZddZddZddZddZd d Zd d ZdddZ dddZ dddZ dS)DictConfiguratorcCs|j}d|krtd|ddkr2td|d|jdd}i}tjz|r|jd|}x|D]}|tjkrtd|qfy6tj|}||}|jd d}|r|jtj|Wqft k r} ztd || fWYdd} ~ XqfXqfW|jd |} xZ| D]R}y|j || |d Wn4t k rP} ztd || fWYdd} ~ XnXqW|jdd} | ry|j | d Wn0t k r} ztd| WYdd} ~ XnXn:|jdd } t |jd|} xZ| D]R}y|j | || |<Wn4t k r"} ztd|| fWYdd} ~ XnXqW|jd|}xZ|D]R}y|j||||<Wn4t k r} ztd|| fWYdd} ~ XnXq _checkLevel Exceptionconfigure_loggerconfigure_rootr configure_formatterconfigure_filtersortedconfigure_handlerrrrBrJrXrKrLr'r\r^r0rYrTr)rtrrZ EMPTY_DICTrrhandlerZhandler_configr9rrUrJrQrrZdeferredrOrPr_r`rarbrrr configures        "  $    $  $   $  $      $ zDictConfigurator.configurec Csd|krr|d}y|j|}Wqtk rn}z4dt|kr>|jd|d<||d<|j|}WYdd}~XqXnP|jdd}|jdd}|jdd}|jdd}|stj} nt|} | |||}|S) Nz()z'format'r)rGr,r-r.r/)rrrrr1r r2r!) rtrfactoryrwterGZdfmtr-cnamer3rrrrs&      z$DictConfigurator.configure_formattercCs.d|kr|j|}n|jdd}tj|}|S)Nz()rr7)rr1r ZFilter)rtrrwrrrrrs    z!DictConfigurator.configure_filtercCs^xX|D]P}y|j|jd|Wqtk rT}ztd||fWYdd}~XqXqWdS)NrzUnable to add filter %r: %s)Z addFilterrrrg)rtZfiltererrr5rrrr add_filterss  zDictConfigurator.add_filtersc/st}jdd}|r^y|jd|}Wn2tk r\}ztd||fWYdd}~XnXjdd}jdd}dkrjd}t|s|j|}|}njd} |j| } t| tj j odkrHy>|jd d} t | tj sj |td | d<Wn8tk rD}ztd d|fWYdd}~XnXnZt| tj jrvd krv|jd d <n,t| tj jrd kr|jd d <| }jdd} tfddD} y|f| }WnLtk r"}z.dt|kr| jd| d<|f| }WYdd}~XnX|r4|j||dk rN|jtj||r`|j||| rx"| jD]\}}t|||qpW|S)Nr6rzUnable to set formatter %r: %sr9rz()r/r:rztarget not configured yetz#Unable to set target handler %r: %sZmailhostZaddressrcs g|]}t|r||fqSr)rj)rr)rrrrsz6DictConfigurator.configure_handler..z'stream'streamZstrm)r|rrrrgrrr@r rrArZHandlerupdaterZ SMTPHandlerrZ SysLogHandlerrr?r>rrrr)rtrZ config_copyr6rr9rr3rrrFZthrrrwrrrur)rrrsl          $      z"DictConfigurator.configure_handlercCs^xX|D]P}y|j|jd|Wqtk rT}ztd||fWYdd}~XqXqWdS)NrzUnable to add handler %r: %s)r[rrrg)rtrSrrHrrrr add_handlerss  zDictConfigurator.add_handlersFcCs|jdd}|dk r$|jtj||sx |jddD]}|j|q8W|jdd}|rf|j|||jdd}|r|j||dS)Nr9rr)r1r>r rrrZrr)rtrSrrr9rHrrrrrcommon_logger_configs    z%DictConfigurator.common_logger_configcCs6tj|}|j||||jdd}|dk r2||_dS)NrM)r r]rr1rM)rtrrrrSrMrrrrs   z!DictConfigurator.configure_loggercCstj}|j|||dS)N)r r]r)rtrrrJrrrrszDictConfigurator.configure_rootN)F)F)F) ryrzr{rrrrrrrrrrrrrrs ?  rcCst|jdS)N)dictConfigClassr)rrrr dictConfig srcsPts tdGdddt}Gdddt}Gfdddtj||||S)Nz listen() needs threading to workc@seZdZddZdS)z#listen..ConfigStreamHandlercSsHy|j}|jd}t|dkrtjd|d}|jj|}x&t||krd||j|t|}q@W|jjdk r~|jj|}|dk r|jd}yddl}|j |}t |WnHt k rt j |}y t|Wnt k rtjYnXYnX|jjr|jjjWn2tk rB}z|jtkr2WYdd}~XnXdS)Nz>Lrzutf-8)Z connectionZrecvr0structZunpackserververifydecodejsonloadsrrioStringIOr traceback print_excreadysetOSErrorerrno RESET_ERROR)rtZconnchunkZslenrrfilerrrrhandleBs6           z*listen..ConfigStreamHandler.handleN)ryrzr{rrrrrConfigStreamHandler;src@s,eZdZdZdedddfddZddZdS)z$listen..ConfigSocketReceiverrWZ localhostNcSs>tj|||f|tjd|_tjd|_||_||_dS)NrrW) rrr r abortrtimeoutrr)rthostportrrrrrrrpsz-listen..ConfigSocketReceiver.__init__cSsfddl}d}xJ|sV|j|jjggg|j\}}}|r>|jtj|j}tjqW|jj dS)Nr) selectZsocketfilenorZhandle_requestr r rrclose)rtrrZrdwrZexrrrserve_until_stoppedzs z8listen..ConfigSocketReceiver.serve_until_stopped)ryrzr{Zallow_reuse_addressDEFAULT_LOGGING_CONFIG_PORTrrrrrrConfigSocketReceiveris rcs&eZdZfddZddZZS)zlisten..Servercs4t|j||_||_||_||_tj|_dS)N) superrrcvrhdlrrr threadingZEventr)rtrrrr)Server __class__rrrs zlisten..Server.__init__cSsZ|j|j|j|j|jd}|jdkr0|jd|_|jjtj|a tj |j dS)N)rrrrrrW) rrrrrZserver_addressrr r _listenerrr)rtrrrrruns     zlisten..Server.run)ryrzr{rr __classcell__r)r)rrrsr)threadNotImplementedErrorrrrZThread)rrrrr)rrlisten%s .rc Cs*tjztrdt_daWdtjXdS)NrW)r r rrrrrrr stopListenings r)NT)-rrr Zlogging.handlersrrrr_threadrrrZ socketserverrrrZ ECONNRESETrrrr!r&r r rTrr rIrerjobjectrkr|rorXrprrqrrrrrrrrrrsN   "#W! 9|PK`d1].I_I_)__pycache__/handlers.cpython-36.opt-2.pycnu[3 ctjI @sddlZddlZddlZddlZddlZddlZddlZddlmZm Z m Z ddl Z y ddl Z Wne k rxdZ YnXdZdZdZdZdZdZd'ZGd d d ejZGd d d eZGdddeZGdddejZGdddejZGdddeZGdddejZGdddejZGdddejZGdddejZ GdddejZ!Gd d!d!e!Z"Gd"d#d#ejZ#e rGd$d%d%e$Z%dS)(N)ST_DEVST_INOST_MTIMEi<#i=#i>#i?#i<c@s.eZdZd ddZddZddZd d ZdS) BaseRotatingHandlerNFcCs0tjj|||||||_||_d|_d|_dS)N)logging FileHandler__init__modeencodingnamerrotator)selffilenamer r delayr(/usr/lib64/python3.6/logging/handlers.pyr 5s zBaseRotatingHandler.__init__c CsHy$|j|r|jtjj||Wntk rB|j|YnXdS)N)shouldRollover doRolloverrr emit Exception handleError)rrecordrrrr?s  zBaseRotatingHandler.emitcCst|js|}n |j|}|S)N)callabler )rZ default_nameresultrrrrotation_filenameMs  z%BaseRotatingHandler.rotation_filenamecCs4t|js$tjj|r0tj||n |j||dS)N)rrospathexistsrename)rsourcedestrrrrotate`s  zBaseRotatingHandler.rotate)NF)__name__ __module__ __qualname__r rrr#rrrrr/s rc@s&eZdZd ddZddZd d ZdS) RotatingFileHandlerarNFcCs.|dkr d}tj|||||||_||_dS)Nrr()rr maxBytes backupCount)rrr r)r*r rrrrr zs zRotatingFileHandler.__init__cCs|jr|jjd|_|jdkrxtt|jdddD]^}|jd|j|f}|jd|j|df}tjj|r4tjj|rtj |tj ||q4W|j|jd}tjj|rtj ||j |j||j s|j |_dS)Nrz%s.%dz.1)streamcloser*ranger baseFilenamerrrremover r#r_open)riZsfndfnrrrrs$        zRotatingFileHandler.doRollovercCs|tjj|jr"tjj|j r"dS|jdkr6|j|_|jdkrxd|j|}|jj dd|jj t ||jkrxdSdS)NFrz%s T) rrrr0isfiler-r2r)formatseektelllen)rrmsgrrrrs   z"RotatingFileHandler.shouldRollover)r(rrNF)r$r%r&r rrrrrrr'us r'c@s6eZdZdddZdd Zd d Zd d ZddZdS)TimedRotatingFileHandlerhr+rNFc Cstj||d|||j|_||_||_||_|jdkrNd|_d|_d|_ n|jdkrld|_d|_d |_ n|jd krd|_d |_d |_ n|jd ks|jdkrd|_d|_d|_ n|jj dr.d|_t |jdkrt d|j|jddks|jddkrt d|jt |jd|_d|_d|_ nt d|jtj|j tj|_ |j||_|j}tjj|r~tj|t} n t tj} |j| |_dS) Nr(Sr+z%Y-%m-%d_%H-%M-%Sz-^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}(\.\w+)?$Mrz%Y-%m-%d_%H-%Mz'^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}(\.\w+)?$Hz %Y-%m-%d_%Hz!^\d{4}-\d{2}-\d{2}_\d{2}(\.\w+)?$DMIDNIGHTrz%Y-%m-%dz^\d{4}-\d{2}-\d{2}(\.\w+)?$Wr5zHYou must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s06z-Invalid day specified for weekly rollover: %sz'Invalid rollover interval specified: %siiiQiiQi: )rr upperwhenr*utcatTimeintervalsuffixextMatch startswithr: ValueErrorint dayOfWeekrecompileASCIIr0rrrstatrtimecomputeRollover rolloverAt) rrrHrKr*r rrIrJtrrrr sL        z!TimedRotatingFileHandler.__init__cCsd||j}|jdks"|jjdr`|jr4tj|}n tj|}|d}|d}|d}|d}|jdkrnt}n |jj d|jj d|jj }||d|d|} | dkr| t7} |d d }|| }|jjdr`|} | |j kr`| |j kr|j | } nd| |j d } || d} |js\|d} tj| d}| |kr\| sPd}nd }| |7} | }|S)NrBrCrrr+rDriiiQr,r,i) rKrHrNrIrVgmtime localtimerJ _MIDNIGHTZhourZminutesecondrQ)r currentTimerrYZ currentHourZ currentMinuteZ currentSecondZ currentDayZ rotate_tsrZdayZ daysToWait newRolloverAtdstNow dstAtRolloveraddendrrrrWsH           z(TimedRotatingFileHandler.computeRollovercCs@tjj|jr"tjj|j r"dSttj}||jkr|jjdrx|j rxtj| d } || krx|sld }nd}| |7} | |_dS) Nr+irhrrBrCr,r,ir,i)r-r.rPrVr_rXrKrIr^rr0ZstrftimerLrrrr1r#r*rprr2rWrHrN) rrbrerYZ timeTupleZdstThenrgr4srdrfrrrrtsH            $ z#TimedRotatingFileHandler.doRollover)r=r+rNFFN)r$r%r&r rWrrprrrrrr<s  9Ir<c@s.eZdZd ddZddZdd Zd d ZdS) WatchedFileHandlerr(NFcCs,tjj|||||d\|_|_|jdS)Nr+r,r,)r,r,)rr r devino _statstream)rrr r rrrrr s zWatchedFileHandler.__init__cCs0|jr,tj|jj}|t|t|_|_dS)N)r-rfstatfilenorrrsrt)rsresrrrruszWatchedFileHandler._statstreamc Csytj|j}Wntk r(d}YnX| sL|t|jksL|t|jkr|jdk r|jj |jj d|_|j |_|j dS)N) rrUr0FileNotFoundErrorrrsrrtr-flushr.r2ru)rrxrrrreopenIfNeededs  "    z!WatchedFileHandler.reopenIfNeededcCs|jtjj||dS)N)r{rr r)rrrrrrszWatchedFileHandler.emit)r(NF)r$r%r&r rur{rrrrrrrs rrc@sNeZdZddZdddZddZdd Zd d Zd d ZddZ ddZ dS) SocketHandlercCsZtjj|||_||_|dkr(||_n ||f|_d|_d|_d|_d|_ d|_ d|_ dS)NFg?g>@g@) rHandlerr hostportaddresssock closeOnError retryTime retryStartretryMax retryFactor)rr~rrrrr s  zSocketHandler.__init__r+c Csj|jdk rtj|j|d}nJtjtjtj}|j|y|j|jWntk rd|j YnX|S)N)timeout) rsocketZcreate_connectionrAF_UNIX SOCK_STREAMZ settimeoutconnectOSErrorr.)rrrrrr makeSockets  zSocketHandler.makeSocketc Cstj}|jdkrd}n ||jk}|ry|j|_d|_WnVtk r|jdkr^|j|_n"|j|j|_|j|jkr|j|_||j|_YnXdS)NT) rVrrrrrZ retryPeriodrr)rZnowZattemptrrr createSocket"s       zSocketHandler.createSocketc CsR|jdkr|j|jrNy|jj|Wn$tk rL|jjd|_YnXdS)N)rrsendallrr.)rrqrrrsend>s  zSocketHandler.sendcCsj|j}|r|j|}t|j}|j|d<d|d<d|d<|jddtj|d}tj dt |}||S)Nr;argsexc_infomessager+z>L) rr7dict__dict__Z getMessagepoppickledumpsstructZpackr:)rrZeiZdummydrqZslenrrr makePickleQs     zSocketHandler.makePicklecCs0|jr|jr|jjd|_ntjj||dS)N)rrr.rr}r)rrrrrrgs  zSocketHandler.handleErrorc Cs<y|j|}|j|Wntk r6|j|YnXdS)N)rrrr)rrrqrrrrus  zSocketHandler.emitc Cs@|jz(|j}|r"d|_|jtjj|Wd|jXdS)N)acquirerr.rr}release)rrrrrr.szSocketHandler.closeN)r+) r$r%r&r rrrrrrr.rrrrr|s  r|c@s$eZdZddZddZddZdS)DatagramHandlercCstj|||d|_dS)NF)r|r r)rr~rrrrr szDatagramHandler.__init__cCs*|jdkrtj}ntj}tj|tj}|S)N)rrrZAF_INET SOCK_DGRAM)rZfamilyrqrrrrs  zDatagramHandler.makeSocketcCs&|jdkr|j|jj||jdS)N)rrsendtor)rrqrrrrs zDatagramHandler.sendN)r$r%r&r rrrrrrrs  rc@seZdZdZdZdZdZdZdZdZ dZ dZ dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZeeee eeee eeeed Zeeeeee ee eeee eeeeeeeeedZ ddddddZ!de"fe dfdd Z#d!d"Z$d#d$Z%d%d&Z&d'd(Z'd)Z(d*Z)d+d,Z*dS)- SysLogHandlerrr+r5rZr[r\r]rD ) ZalertZcritcriticaldebugZemergerrerrorinfoZnoticeZpanicwarnwarning)ZauthZauthprivZcrondaemonZftpZkernZlprZmailZnewsZsecurityZsysloguserZuucpZlocal0Zlocal1Zlocal2Zlocal3Zlocal4Zlocal5Zlocal6Zlocal7rrrrr)DEBUGINFOWARNINGERRORCRITICALZ localhostNcCs0tjj|||_||_||_t|trTd|_y|j |Wnt k rPYnXnd|_|dkrht j }|\}}t j ||d|}|st dx|D]|}|\}}} } } d} } y(t j ||| } |t jkr| j| PWqt k r }z|} | dk r| jWYdd}~XqXqW| dk r | | |_ ||_dS)NTFrz!getaddrinfo returns an empty list)rr}r rfacilitysocktype isinstancestr unixsocket_connect_unixsocketrrrZ getaddrinforrr.)rrrrr~rZressresZafproto_Zsarrexcrrrr #sB      zSysLogHandler.__init__cCs|j}|dkrtj}tjtj||_y|jj|||_Wnxtk r|jj|jdk r`tj}tjtj||_y|jj|||_Wn tk r|jjYnXYnXdS)N)rrrrrrr.r)rrZ use_socktyperrrrYs&       z!SysLogHandler._connect_unixsocketcCs4t|tr|j|}t|tr(|j|}|d>|BS)NrZ)rrfacility_namespriority_names)rrZpriorityrrrencodePriorityqs     zSysLogHandler.encodePriorityc Cs2|jz|jjtjj|Wd|jXdS)N)rrr.rr}r)rrrrr.~s  zSysLogHandler.closecCs|jj|dS)Nr) priority_mapget)rZ levelNamerrr mapPriorityszSysLogHandler.mapPriorityTcCsy|j|}|jr|j|}|jr*|d7}d|j|j|j|j}|jd}|jd}||}|jry|j j |Wqt k r|j j |j |j|j j |YqXn*|jt jkr|j j||jn |j j|Wntk r|j|YnXdS)Nz<%d>zutf-8)r7ident append_nulrrrZ levelnameencoderrrrr.rrrrrrrr)rrr;Zpriorrrrs.        zSysLogHandler.emit)+r$r%r&Z LOG_EMERGZ LOG_ALERTZLOG_CRITZLOG_ERRZ LOG_WARNINGZ LOG_NOTICEZLOG_INFOZ LOG_DEBUGZLOG_KERNZLOG_USERZLOG_MAILZ LOG_DAEMONZLOG_AUTHZ LOG_SYSLOGZLOG_LPRZLOG_NEWSZLOG_UUCPZLOG_CRONZ LOG_AUTHPRIVZLOG_FTPZ LOG_LOCAL0Z LOG_LOCAL1Z LOG_LOCAL2Z LOG_LOCAL3Z LOG_LOCAL4Z LOG_LOCAL5Z LOG_LOCAL6Z LOG_LOCAL7rrrSYSLOG_UDP_PORTr rrr.rrrrrrrrrs5   rc@s&eZdZd ddZddZddZdS) SMTPHandlerN@cCstjj|t|ttfr(|\|_|_n|d|_|_t|ttfrR|\|_|_ nd|_||_ t|t rn|g}||_ ||_ ||_||_dS)N)rr}r rlisttuplemailhostmailportusernamepasswordfromaddrrtoaddrssubjectsecurer)rrrrr credentialsrrrrrr s  zSMTPHandler.__init__cCs|jS)N)r)rrrrr getSubjectszSMTPHandler.getSubjectc Csyddl}ddlm}ddl}|j}|s.|j}|j|j||jd}|}|j |d<dj |j |d<|j ||d<|j j|d<|j|j||jr|jdk r|j|j|j|j|j|j|j|j||jWntk r|j|YnXdS) Nr) EmailMessage)rZFrom,ZToZSubjectZDate)smtplibZ email.messagerZ email.utilsrZ SMTP_PORTZSMTPrrrrmrrZutilsr_Z set_contentr7rrZehloZstarttlsZloginrZ send_messagequitrr)rrrrZemailrZsmtpr;rrrrs0      zSMTPHandler.emit)NNr)r$r%r&r rrrrrrrs " rc@s>eZdZdddZddZddZd d Zd d Zd dZdS)NTEventLogHandlerN ApplicationcCstjj|yddl}ddl}||_||_|s`tjj |jj }tjj |d}tjj |dd}||_ ||_ |jj||||j|_tj|jtj|jtj|jtj|jtj|ji|_Wn"tk rtdd|_YnXdS)Nrzwin32service.pydzWThe Python Win32 extensions for NT (service, event logging) appear not to be available.)rr}r win32evtlogutil win32evtlogappname_welurrri__file__rmdllnamelogtypeZAddSourceToRegistryZEVENTLOG_ERROR_TYPEdeftyperZEVENTLOG_INFORMATION_TYPErrZEVENTLOG_WARNING_TYPErrtypemap ImportErrorprint)rrrrrrrrrr s* zNTEventLogHandler.__init__cCsdS)Nr+r)rrrrr getMessageID.szNTEventLogHandler.getMessageIDcCsdS)Nrr)rrrrrgetEventCategory8sz"NTEventLogHandler.getEventCategorycCs|jj|j|jS)N)rrlevelnor)rrrrr getEventTypeAs zNTEventLogHandler.getEventTypec Csn|jrjyD|j|}|j|}|j|}|j|}|jj|j||||gWntk rh|j|YnXdS)N) rrrrr7Z ReportEventrrr)rridcattyper;rrrrNs    zNTEventLogHandler.emitcCstjj|dS)N)rr}r.)rrrrr._s zNTEventLogHandler.close)Nr) r$r%r&r rrrrr.rrrrr s     rc@s&eZdZd ddZddZdd ZdS) HTTPHandlerGETFNcCsbtjj||j}|dkr$td| r:|dk r:td||_||_||_||_||_ ||_ dS)NrPOSTzmethod must be GET or POSTz3context parameter only makes sense with secure=True)rr) rr}r rGrOr~urlmethodrrcontext)rr~rrrrrrrrr qs zHTTPHandler.__init__cCs|jS)N)r)rrrrr mapLogRecordszHTTPHandler.mapLogRecordc CsxyPddl}ddl}|j}|jr4|jj||jd}n |jj|}|j}|j j |j |}|j dkr|j ddkrvd}nd}|d||f}|j|j ||j d} | dkr|d| }|j dkr|jd d |jd tt||jr$ddl} d |jjd } d| j| jjd} |jd| |j|j dkrH|j|jd |jWn tk rr|j|YnXdS)Nr)rr?&z%c%s:rz Content-typez!application/x-www-form-urlencodedzContent-lengthz%s:%szutf-8zBasic asciiZ Authorization)Z http.clientZ urllib.parser~rZclientZHTTPSConnectionrZHTTPConnectionrparseZ urlencoderrfindZ putrequestZ putheaderrr:rbase64rZ b64encodestripdecodeZ endheadersrZ getresponserr) rrZhttpZurllibr~r=rdatasepr3rrqrrrrs@        zHTTPHandler.emit)rFNN)r$r%r&r rrrrrrrls rc@s4eZdZddZddZddZddZd d Zd S) BufferingHandlercCstjj|||_g|_dS)N)rr}r capacitybuffer)rr rrrr s zBufferingHandler.__init__cCst|j|jkS)N)r:r r )rrrrr shouldFlushszBufferingHandler.shouldFlushcCs"|jj||j|r|jdS)N)r rlr rz)rrrrrrs  zBufferingHandler.emitc Cs"|jz g|_Wd|jXdS)N)rr r)rrrrrzs zBufferingHandler.flushc Cs z |jWdtjj|XdS)N)rzrr}r.)rrrrr.s zBufferingHandler.closeN)r$r%r&r r rrzr.rrrrr s    r c@s>eZdZejddfddZddZddZd d Zd d Z dS) MemoryHandlerNTcCs"tj||||_||_||_dS)N)r r flushLeveltarget flushOnClose)rr rrrrrrr s zMemoryHandler.__init__cCst|j|jkp|j|jkS)N)r:r r rr)rrrrrr szMemoryHandler.shouldFlushcCs ||_dS)N)r)rrrrr setTargetszMemoryHandler.setTargetc CsD|jz,|jr2x|jD]}|jj|qWg|_Wd|jXdS)N)rrr handler)rrrrrrzs  zMemoryHandler.flushcCsBz|jr|jWd|jzd|_tj|Wd|jXXdS)N)rrzrrr r.r)rrrrr.,s zMemoryHandler.close) r$r%r&rrr r rrzr.rrrrrs  rc@s,eZdZddZddZddZddZd S) QueueHandlercCstjj|||_dS)N)rr}r queue)rrrrrr Hs zQueueHandler.__init__cCs|jj|dS)N)r put_nowait)rrrrrenqueueOszQueueHandler.enqueuecCs"|j||j|_d|_d|_|S)N)r7rr;rr)rrrrrprepareYs  zQueueHandler.preparec Cs8y|j|j|Wntk r2|j|YnXdS)N)rrrr)rrrrrrrszQueueHandler.emitN)r$r%r&r rrrrrrrr=s  rc@sVeZdZdZddddZddZdd Zd d Zd d ZddZ ddZ ddZ dS) QueueListenerNF)respect_handler_levelcGs||_||_d|_||_dS)N)rhandlers_threadr)rrrrrrrr szQueueListener.__init__cCs |jj|S)N)rr)rblockrrrdequeueszQueueListener.dequeuecCs&tj|jd|_}d|_|jdS)N)rT) threadingZThread_monitorrrstart)rrYrrrr!szQueueListener.startcCs|S)Nr)rrrrrrszQueueListener.preparecCsD|j|}x4|jD]*}|js"d}n |j|jk}|r|j|qWdS)NT)rrrrlevelr)rrZhandlerZprocessrrrrs   zQueueListener.handlec Csd|j}t|d}xNy0|jd}||jkr*P|j||r@|jWqtjk rZPYqXqWdS)N task_doneT)rhasattrr _sentinelrr#ZEmpty)rqZ has_task_donerrrrr s     zQueueListener._monitorcCs|jj|jdS)N)rrr%)rrrrenqueue_sentinelszQueueListener.enqueue_sentinelcCs|j|jjd|_dS)N)r'rrm)rrrrstops zQueueListener.stop) r$r%r&r%r rr!rrr r'r(rrrrr~s     riiQ)&rrrrrrVrRrUrrrrrrZDEFAULT_TCP_LOGGING_PORTZDEFAULT_UDP_LOGGING_PORTZDEFAULT_HTTP_LOGGING_PORTZDEFAULT_SOAP_LOGGING_PORTrZSYSLOG_TCP_PORTr`r rr'r<rrr}r|rrrrrr rrobjectrrrrrs@8  FOcE(*PbO9I@PK`d1]0Z#__pycache__/__init__.cpython-36.pycnu[3 \e*@sdZddlZddlZddlZddlZddlZddlZddlZddlZddl m Z dddddd d d d d ddddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-g*Z y ddl Z Wne k rdZ YnXd.Zd/Zd0Zd1ZejZd2Zd2Zd2Zd2Zd3ZeZd4Zd5ZeZd6Zd7ZdZedededededediZeeeeeeeed8Z d9d Z!d:dZ"e#ed;rndd?Z$ej%j&e"j'j(Z)d@dAZ*e re j+Z,ndZ,dBdCZ-dDdEZ.GdFdde/Z0e0a1dGd+Z2dHd*Z3dId%Z4GdJdKdKe/Z5GdLdMdMe5Z6GdNdOdOe5Z7dPZ8e5e8fe6dQfe7dRfdSZ9GdTd d e/Z:e:Z;GdUdde/Zej?Z@gZAdYdZZBd[d\ZCGd]d d e>ZDGd^ddeDZEGd_d d eEZFGd`dadaeEZGeGeZHeHZIGdbdcdce/ZJddd&ZKded"ZLGdfdgdge/ZMGdhdde>ZNGdidjdjeNZOeNaPGdkdde/ZQeOeZReReN_ReMeNjReN_SdldZTd}dmd!ZUdndZVeVZWdodZXd2dpdqdZYdrd)ZZdsd(Z[dtd#Z\dudZ]dvd$Z^dwdZ_eAfdxd'Z`ddlaZaeajbe`GdyddeDZcdadd~dzd{Zed|dZfdS)z Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2016 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! N)Template BASIC_FORMATBufferingFormatterCRITICALDEBUGERRORFATAL FileHandlerFilter FormatterHandlerINFO LogRecordLogger LoggerAdapterNOTSET NullHandler StreamHandlerWARNWARNING addLevelName basicConfigcaptureWarningscriticaldebugdisableerror exceptionfatal getLevelName getLoggergetLoggerClassinfolog makeLogRecordsetLoggerClassshutdownwarnwarninggetLogRecordFactorysetLogRecordFactory lastResortraiseExceptionsz&Vinay Sajip Z productionz0.5.1.2z07 February 2010T2( )rrrrrr rrcCs4tj|}|dk r|Stj|}|dk r,|Sd|S)a Return the textual representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. Otherwise, the string "Level %s" % level is returned. NzLevel %s) _levelToNameget _nameToLevel)levelresultr7(/usr/lib64/python3.6/logging/__init__.pyrxs  c Cs(tz|t|<|t|<WdtXdS)zy Associate 'levelName' with 'level'. This is used when converting levels to text during message formatting. N) _acquireLockr2r4 _releaseLock)r5Z levelNamer7r7r8rs   _getframecCs tjdS)N)sysr;r7r7r7r8sr>c Cs.ytWn tk r(tjdjjSXdS)z5Return the frame object for the caller's stack frame.N) Exceptionr=exc_infotb_framef_backr7r7r7r8 currentframesrDcCsJt|tr|}n6t||kr:|tkr0td|t|}n td||S)NzUnknown level: %rz*Level not an integer or a valid string: %r) isinstanceintstrr4 ValueError TypeError)r5rvr7r7r8 _checkLevels     rKcCstr tjdS)z Acquire the module-level lock for serializing access to shared data. This should be released with _releaseLock(). N)_lockacquirer7r7r7r8r9sr9cCstr tjdS)zK Release the module-level lock acquired by calling _acquireLock(). N)rLreleaser7r7r7r8r:sr:c@s.eZdZdZd ddZddZeZddZdS) ra A LogRecord instance represents an event being logged. LogRecord instances are created every time something is logged. They contain all the information pertinent to the event being logged. The main information passed in is in msg and args, which are combined using str(msg) % args to create the message field of the record. The record also includes information such as when the record was created, the source line where the logging call was made, and any exception information to be logged. Nc Kstj} ||_||_|rDt|dkrDt|dtjrD|drD|d}||_t||_ ||_ ||_ y&t j j||_t j j|jd|_Wn&tttfk r||_d|_YnX||_d|_| |_||_||_| |_| t| d|_|jtd|_tot rt j!|_"t j#j|_$n d|_"d|_$t%s0d|_&nDd|_&t'j(j)d} | dk rty| j*j|_&Wnt+k rrYnXt,rt-t drt j.|_/nd|_/dS) zK Initialize a logging record with interesting information. rzUnknown moduleNiZ MainProcessZmultiprocessinggetpid)0timenamemsglenrE collectionsMappingargsrZ levelnamelevelnopathnameospathbasenamefilenamesplitextmodulerIrHAttributeErrorrAexc_text stack_infolinenoZfuncNamecreatedrFmsecs _startTimeZrelativeCreated logThreads threading get_identZthreadZcurrent_threadZ threadNamelogMultiprocessingZ processNamer=modulesr3Zcurrent_processr@ logProcesseshasattrrPprocess) selfrRr5rYrcrSrWrAfuncsinfokwargsctZmpr7r7r8__init__sR        zLogRecord.__init__cCsd|j|j|j|j|jfS)Nz!)rRrXrYrcrS)ror7r7r8__str__Cs zLogRecord.__str__cCst|j}|jr||j}|S)z Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. )rGrSrW)rorSr7r7r8 getMessageIs  zLogRecord.getMessage)NN)__name__ __module__ __qualname____doc__rtru__repr__rvr7r7r7r8rs   GcCs|adS)z Set the factory to be used when instantiating a log record. :param factory: A callable which will be called to instantiate a log record. N)_logRecordFactory)factoryr7r7r8r*ZscCstS)zH Return the factory to be used when instantiating a log record. )r|r7r7r7r8r)dsc Cs&tdddddfdd}|jj||S)z Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. Nr)r|__dict__update)dictrJr7r7r8r$ks c@s0eZdZdZdZdZddZddZdd Zd S) PercentStylez %(message)sz %(asctime)sz %(asctime)cCs|p|j|_dS)N)default_format_fmt)rofmtr7r7r8rtszPercentStyle.__init__cCs|jj|jdkS)Nr)rfindasctime_search)ror7r7r8usesTimeszPercentStyle.usesTimecCs |j|jS)N)rr)rorecordr7r7r8formatszPercentStyle.formatN) rwrxryrasctime_formatrrtrrr7r7r7r8rzs rc@s eZdZdZdZdZddZdS)StrFormatStylez {message}z {asctime}z{asctimecCs|jjf|jS)N)rrr)rorr7r7r8rszStrFormatStyle.formatN)rwrxryrrrrr7r7r7r8rsrc@s0eZdZdZdZdZddZddZddZd S) StringTemplateStylez ${message}z ${asctime}cCs|p|j|_t|j|_dS)N)rrr_tpl)rorr7r7r8rts zStringTemplateStyle.__init__cCs$|j}|jddkp"|j|jdkS)Nz$asctimer)rrr)rorr7r7r8rszStringTemplateStyle.usesTimecCs|jjf|jS)N)rZ substituter)rorr7r7r8rszStringTemplateStyle.formatN) rwrxryrrrrtrrr7r7r7r8rs rz"%(levelname)s:%(name)s:%(message)sz{levelname}:{name}:{message}z${levelname}:${name}:${message})%{$c@sZeZdZdZejZdddZdZdZ ddd Z d d Z d d Z ddZ ddZddZdS)r a Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the the style-dependent default value, "%(message)s", "{message}", or "${message}", is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted NrcCsD|tkrtddjtjt|d||_|jj|_||_dS)a Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument. If datefmt is omitted, you get an ISO8601-like (or RFC 3339-like) format. Use a style parameter of '%', '{' or '$' to specify that you want to use one of %-formatting, :meth:`str.format` (``{}``) formatting or :class:`string.Template` formatting in your format string. .. versionchanged:: 3.2 Added the ``style`` parameter. zStyle must be one of: %s,rN)_STYLESrHjoinkeys_stylerdatefmt)rorrstyler7r7r8rts  zFormatter.__init__z%Y-%m-%d %H:%M:%Sz%s,%03dcCs@|j|j}|rtj||}ntj|j|}|j||jf}|S)a% Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, an ISO8601-like (or RFC 3339-like) format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. ) converterrdrQZstrftimedefault_time_formatdefault_msec_formatre)rorrrsstr7r7r8 formatTimes  zFormatter.formatTimecCsZtj}|d}tj|d|d|d||j}|j|dddkrV|dd}|S)z Format and return the specified exception information as a string. This default implementation just uses traceback.print_exception() r?rrON r)ioStringIO tracebackprint_exceptiongetvalueclose)roZeisiotbrr7r7r8formatException s zFormatter.formatExceptioncCs |jjS)zK Check if the format uses the creation time of the record. )rr)ror7r7r8rszFormatter.usesTimecCs |jj|S)N)rr)rorr7r7r8 formatMessage$szFormatter.formatMessagecCs|S)aU This method is provided as an extension point for specialized formatting of stack information. The input data is a string as returned from a call to :func:`traceback.print_stack`, but with the last trailing newline removed. The base implementation just returns the value passed in. r7)rorbr7r7r8 formatStack's zFormatter.formatStackcCs|j|_|jr"|j||j|_|j|}|jrF|jsF|j |j|_|jrn|dddkrd|d}||j}|j r|dddkr|d}||j |j }|S)az Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. rONrrr) rvmessagerrrasctimerrArarrbr)rorrr7r7r8r4s   zFormatter.format)NNr)N)rwrxryrzrQZ localtimerrtrrrrrrrrr7r7r7r8r s)   c@s2eZdZdZd ddZddZddZd d ZdS) rzB A formatter suitable for formatting a number of records. NcCs|r ||_nt|_dS)zm Optionally specify a formatter which will be used to format each individual record. N)linefmt_defaultFormatter)rorr7r7r8rt]szBufferingFormatter.__init__cCsdS)zE Return the header string for the specified records. r~r7)rorecordsr7r7r8 formatHeadergszBufferingFormatter.formatHeadercCsdS)zE Return the footer string for the specified records. r~r7)rorr7r7r8 formatFootermszBufferingFormatter.formatFootercCsNd}t|dkrJ||j|}x|D]}||jj|}q$W||j|}|S)zQ Format the specified records and return the result as a string. r~r)rTrrrr)rorrJrr7r7r8rss  zBufferingFormatter.format)N)rwrxryrzrtrrrr7r7r7r8rYs  c@s"eZdZdZdddZddZdS) r a Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. r~cCs||_t||_dS)z Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. N)rRrTnlen)rorRr7r7r8rtszFilter.__init__cCsJ|jdkrdS|j|jkrdS|jj|jd|jdkr:dS|j|jdkS)z Determine if the specified record is to be logged. Is the specified record to be logged? Returns 0 for no, nonzero for yes. If deemed appropriate, the record may be modified in-place. rTF.)rrRr)rorr7r7r8filters  z Filter.filterN)r~)rwrxryrzrtrr7r7r7r8r s  c@s0eZdZdZddZddZddZdd Zd S) Filtererz[ A base class for loggers and handlers which allows them to share common code. cCs g|_dS)zE Initialize the list of filters to be an empty list. N)filters)ror7r7r8rtszFilterer.__init__cCs||jkr|jj|dS)z; Add the specified filter to this handler. N)rappend)rorr7r7r8 addFilters zFilterer.addFiltercCs||jkr|jj|dS)z@ Remove the specified filter from this handler. N)rremove)rorr7r7r8 removeFilters zFilterer.removeFiltercCs@d}x6|jD],}t|dr&|j|}n||}|s d}Pq W|S)ah Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this and the record is then dropped. Returns a zero value if a record is to be dropped, else non-zero. .. versionchanged:: 3.2 Allow filters to be just callables. TrF)rrmr)rorrJfr6r7r7r8rs    zFilterer.filterN)rwrxryrzrtrrrr7r7r7r8rs rc CsFttt}}}|rB|rB|rB|z||kr6|j|Wd|XdS)zD Remove a handler reference from the internal cleanup list. N)r9r: _handlerListr)wrrMrNhandlersr7r7r8_removeHandlerRefs rc Cs*tztjtj|tWdtXdS)zL Add a handler to the internal cleanup list using a weak reference. N)r9rrweakrefrefrr:)Zhandlerr7r7r8_addHandlerRefsrc@seZdZdZefddZddZddZeeeZ dd Z d d Z d d Z ddZ ddZddZddZddZddZddZddZddZd S)!r aq Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. cCs4tj|d|_t||_d|_t||jdS)zz Initializes the instance - basically setting the formatter to None and the filter list to empty. N)rrt_namerKr5 formatterr createLock)ror5r7r7r8rts   zHandler.__init__cCs|jS)N)r)ror7r7r8get_nameszHandler.get_namec Cs<tz(|jtkrt|j=||_|r,|t|<WdtXdS)N)r9r _handlersr:)rorRr7r7r8set_names  zHandler.set_namecCstrtj|_nd|_dS)zU Acquire a thread lock for serializing access to the underlying I/O. N)rhRLocklock)ror7r7r8r s zHandler.createLockcCs|jr|jjdS)z. Acquire the I/O thread lock. N)rrM)ror7r7r8rM)szHandler.acquirecCs|jr|jjdS)z. Release the I/O thread lock. N)rrN)ror7r7r8rN0szHandler.releasecCst||_dS)zX Set the logging level of this handler. level must be an int or a str. N)rKr5)ror5r7r7r8setLevel7szHandler.setLevelcCs|jr|j}nt}|j|S)z Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. )rrr)rorrr7r7r8r=szHandler.formatcCs tddS)z Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. z.emit must be implemented by Handler subclassesN)NotImplementedError)rorr7r7r8emitJsz Handler.emitc Cs4|j|}|r0|jz|j|Wd|jX|S)a< Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns whether the filter passed the record for emission. N)rrMrrN)rorrJr7r7r8handleTs  zHandler.handlecCs ||_dS)z5 Set the formatter for this handler. N)r)rorr7r7r8 setFormatterfszHandler.setFormattercCsdS)z Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. Nr7)ror7r7r8flushlsz Handler.flushc Cs0tz|jr |jtkr t|j=WdtXdS)a% Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. N)r9rrr:)ror7r7r8rus  z Handler.closecCs totjrtj\}}}zytjjdtj|||dtjtjjd|j}x&|rvtj j |j j t dkrv|j}qRW|rtj|tjdntjjd|j|jfytjjd|j|jfWn tk rtjjdYnXWntk rYnXWd~~~XdS) aD Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. z--- Logging error --- Nz Call stack: r)filezLogged from file %s, line %s zMessage: %r Arguments: %s zwUnable to print the message and arguments - possible formatting error. Use the traceback above to help find the error. )r,r=stderrrAwriterrrBrZr[dirnamef_code co_filename__path__rC print_stackr]rcrSrWr@OSError)rorrvrframer7r7r8 handleErrors.      zHandler.handleErrorcCst|j}d|jj|fS)Nz <%s (%s)>)rr5 __class__rw)ror5r7r7r8r{s zHandler.__repr__N)rwrxryrzrrtrrpropertyrRrrMrNrrrrrrrrr{r7r7r7r8r s"      -c@s6eZdZdZdZd ddZddZdd Zd d ZdS) rz A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. rNcCs"tj||dkrtj}||_dS)zb Initialize the handler. If stream is not specified, sys.stderr is used. N)r rtr=rstream)rorr7r7r8rts zStreamHandler.__init__c Cs8|jz |jr&t|jdr&|jjWd|jXdS)z% Flushes the stream. rN)rMrrmrrN)ror7r7r8rs zStreamHandler.flushc CsVy2|j|}|j}|j||j|j|jWntk rP|j|YnXdS)a Emit a record. If a formatter is specified, it is used to format the record. The record is then written to the stream with a trailing newline. If exception information is present, it is formatted using traceback.print_exception and appended to the stream. If the stream has an 'encoding' attribute, it is used to determine how to do the output to the stream. N)rrr terminatorrr@r)rorrSrr7r7r8rs     zStreamHandler.emitcCs6t|j}t|jdd}|r$|d7}d|jj||fS)NrRr~ z <%s %s(%s)>)rr5getattrrrrw)ror5rRr7r7r8r{s  zStreamHandler.__repr__)N) rwrxryrzrrtrrr{r7r7r7r8rs   c@s:eZdZdZdddZddZd d Zd d Zd dZdS)r zO A handler class which writes formatted logging records to disk files. aNFcCsTtj|}tjj||_||_||_||_|r@tj |d|_ nt j ||j dS)zO Open the specified file and use it as the stream for logging. N) rZfspathr[abspath baseFilenamemodeencodingdelayr rtrr_open)ror]rrrr7r7r8rts  zFileHandler.__init__cCsb|jzJz8|jr@z |jWd|j}d|_t|dr>|jXWdtj|XWd|jXdS)z$ Closes the stream. Nr)rMrrrmrrrN)rorr7r7r8r s  zFileHandler.closecCst|j|j|jdS)zx Open the current base file with the (original) mode and encoding. Return the resulting stream. )r)openrrr)ror7r7r8r szFileHandler._opencCs$|jdkr|j|_tj||dS)z Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. N)rrrr)rorr7r7r8r's  zFileHandler.emitcCst|j}d|jj|j|fS)Nz <%s %s (%s)>)rr5rrwr)ror5r7r7r8r{2s zFileHandler.__repr__)rNF) rwrxryrzrtrrrr{r7r7r7r8r s   c@s(eZdZdZefddZeddZdS)_StderrHandlerz This class is like a StreamHandler using sys.stderr, but always uses whatever sys.stderr is currently set to rather than the value of sys.stderr at handler construction time. cCstj||dS)z) Initialize the handler. N)r rt)ror5r7r7r8rt=sz_StderrHandler.__init__cCstjS)N)r=r)ror7r7r8rCsz_StderrHandler.streamN)rwrxryrzrrtrrr7r7r7r8r7s rc@s eZdZdZddZddZdS) PlaceHolderz PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. cCs|di|_dS)zY Initialize with the specified logger being a child of this placeholder. N) loggerMap)roaloggerr7r7r8rtUszPlaceHolder.__init__cCs||jkrd|j|<dS)zJ Add the specified logger as a child of this placeholder. N)r)rorr7r7r8r[s zPlaceHolder.appendN)rwrxryrzrtrr7r7r7r8rOsrcCs(|tkr t|ts td|j|adS)z Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() z(logger not derived from logging.Logger: N)r issubclassrIrw _loggerClass)klassr7r7r8r%fs   cCstS)zB Return the class to be used when instantiating a logger. )rr7r7r7r8r!ssc@s@eZdZdZddZddZddZdd Zd d Zd d Z dS)Managerzt There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. cCs(||_d|_d|_i|_d|_d|_dS)zT Initialize the manager with the root node of the logger hierarchy. rFN)rootremittedNoHandlerWarning loggerDict loggerClasslogRecordFactory)roZrootnoder7r7r8rt~s zManager.__init__c Csd}t|tstdtz||jkrv|j|}t|tr|}|jpHt|}||_||j|<|j |||j |n(|jp~t|}||_||j|<|j |Wdt X|S)a Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. NzA logger name must be a string) rErGrIr9rrrrmanager_fixupChildren _fixupParentsr:)rorRrJphr7r7r8r s(         zManager.getLoggercCs*|tkr t|ts td|j||_dS)zY Set the class to be used when instantiating a logger with this Manager. z(logger not derived from logging.Logger: N)rrrIrwr)rorr7r7r8r%s   zManager.setLoggerClasscCs ||_dS)zg Set the factory to be used when instantiating a log record with this Manager. N)r)ror}r7r7r8r*szManager.setLogRecordFactorycCs|j}|jd}d}x||dkr| r|d|}||jkrJt||j|<n2|j|}t|trd|}nt|tsrt|j||jdd|d}qW|s|j}||_ dS)z Ensure that there are either loggers or placeholders all the way from the specified logger to the root of the logger hierarchy. rNrrO) rRrfindrrrErAssertionErrorrrparent)rorrRirJZsubstrobjr7r7r8rs       zManager._fixupParentscCsH|j}t|}x4|jjD]&}|jjd||kr|j|_||_qWdS)zk Ensure that children of the placeholder ph are connected to the specified logger. N)rRrTrrr)rorrrRZnamelencr7r7r8rs zManager._fixupChildrenN) rwrxryrzrtr r%r*rrr7r7r7r8rys " rc@seZdZdZefddZddZddZdd Zd d Z d d Z ddZ ddddZ ddZ e ZddZd2ddZd3ddZd4ddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1ZdS)5rar Instances of the Logger class represent a single logging channel. A "logging channel" indicates an area of an application. Exactly how an "area" is defined is up to the application developer. Since an application can have any number of areas, logging channels are identified by a unique string. Application areas can be nested (e.g. an area of "input processing" might include sub-areas "read CSV files", "read XLS files" and "read Gnumeric files"). To cater for this natural nesting, channel names are organized into a namespace hierarchy where levels are separated by periods, much like the Java or Python package namespace. So in the instance given above, channel names might be "input" for the upper level, and "input.csv", "input.xls" and "input.gnu" for the sub-levels. There is no arbitrary limit to the depth of nesting. cCs6tj|||_t||_d|_d|_g|_d|_dS)zJ Initialize the logger with a name and an optional level. NTF) rrtrRrKr5r propagaterdisabled)rorRr5r7r7r8rts  zLogger.__init__cCst||_dS)zW Set the logging level of this logger. level must be an int or a str. N)rKr5)ror5r7r7r8rszLogger.setLevelcOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'DEBUG'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.debug("Houston, we have a %s", "thorny problem", exc_info=1) N) isEnabledForr_log)rorSrWrrr7r7r8rs z Logger.debugcOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'INFO'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.info("Houston, we have a %s", "interesting problem", exc_info=1) N)rr r)rorSrWrrr7r7r8r"s z Logger.infocOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'WARNING'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.warning("Houston, we have a %s", "bit of a problem", exc_info=1) N)rrr)rorSrWrrr7r7r8r(s zLogger.warningcOs$tjdtd|j|f||dS)Nz6The 'warn' method is deprecated, use 'warning' insteadr?)warningsr'DeprecationWarningr()rorSrWrrr7r7r8r'*sz Logger.warncOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'ERROR'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.error("Houston, we have a %s", "major problem", exc_info=1) N)rrr)rorSrWrrr7r7r8r/s z Logger.errorT)rAcOs|j|f|d|i|dS)zU Convenience method for logging an ERROR with exception information. rAN)r)rorSrArWrrr7r7r8r;szLogger.exceptioncOs |jtr|jt||f|dS)z Log 'msg % args' with severity 'CRITICAL'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.critical("Houston, we have a %s", "major disaster", exc_info=1) N)rrr)rorSrWrrr7r7r8rAs zLogger.criticalcOs<t|tstrtdndS|j|r8|j|||f|dS)z Log 'msg % args' with the integer severity 'level'. To pass exception information, use the keyword argument exc_info with a true value, e.g. logger.log(level, "We have a %s", "mysterious problem", exc_info=1) zlevel must be an integerN)rErFr,rIrr)ror5rSrWrrr7r7r8r#Os   z Logger.logFcCst}|dk r|j}d }xt|dr|j}tjj|j}|tkrH|j}qd}|rt j }|j dt j ||d|j}|d d kr|dd }|j|j|j|j|f}PqW|S) z Find the stack frame of the caller so that we can note the source file name, line number and function name. N(unknown file)r(unknown function)rzStack (most recent call last): )rrOr)r rr Nrr)rDrCrmrrZr[normcaser_srcfilerrrrrrrf_linenoco_name)rorbrrJcor]rqrr7r7r8 findCaller`s,    zLogger.findCallerNc Cs^t||||||||| } | dk rZx8| D]0} | dks<| | jkrHtd| | | | j| <q&W| S)zr A factory method which can be overridden in subclasses to create specialized LogRecords. Nrrz$Attempt to overwrite %r in LogRecord)rr)r|rKeyError) rorRr5fnlnorSrWrArpextrarqrJkeyr7r7r8 makeRecord~s  zLogger.makeRecordc Csd}tr@y|j|\}} } }WqJtk r<d\}} } YqJXn d\}} } |r|t|trjt|||jf}nt|ts|tj }|j |j ||| |||| || } |j | dS)z Low-level logging routine which creates a LogRecord and then calls all the handlers of this logger to handle the record. N(unknown file)r(unknown function))rrr)rrr) r rrHrE BaseExceptiontype __traceback__tupler=rArrRr) ror5rSrWrArrbrqrrrprr7r7r8rs    z Logger._logcCs |j r|j|r|j|dS)z Call the handlers for the specified record. This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied. N)rr callHandlers)rorr7r7r8rsz Logger.handlec Cs.tz||jkr|jj|WdtXdS)z; Add the specified handler to this logger. N)r9rrr:)rohdlrr7r7r8 addHandlers  zLogger.addHandlerc Cs.tz||jkr|jj|WdtXdS)z@ Remove the specified handler from this logger. N)r9rrr:)rorr7r7r8 removeHandlers  zLogger.removeHandlercCs2|}d}x$|r,|jrd}P|js$Pq |j}q W|S)a See if this logger has any handlers configured. Loop through all handlers for this logger and its parents in the logger hierarchy. Return True if a handler was found, else False. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger which is checked for the existence of handlers. FT)rrr)rorrJr7r7r8 hasHandlerss  zLogger.hasHandlerscCs|}d}xH|rPx,|jD]"}|d}|j|jkr|j|qW|jsHd}q |j}q W|dkrtrv|jtjkrtj|n(tr|jj rt j j d|j d|j_ dS)a Pass a record to all relevant handlers. Loop through all handlers for this logger and its parents in the logger hierarchy. If no handler was found, output a one-off error message to sys.stderr. Stop searching up the hierarchy whenever a logger with the "propagate" attribute set to zero is found - that will be the last logger whose handlers are called. rrONz+No handlers could be found for logger "%s" T)rrXr5rrrr+r,rrr=rrrR)rorrfoundrr7r7r8rs$       zLogger.callHandlerscCs$|}x|r|jr|jS|j}qWtS)z Get the effective level for this logger. Loop through this logger and its parents in the logger hierarchy, looking for a non-zero logging level. Return the first one found. )r5rr)rologgerr7r7r8getEffectiveLevels  zLogger.getEffectiveLevelcCs|jj|krdS||jkS)z; Is this logger enabled for level 'level'? F)rrr%)ror5r7r7r8rs zLogger.isEnabledForcCs&|j|k rdj|j|f}|jj|S)ab Get a logger which is a descendant to this one. This is a convenience method, such that logging.getLogger('abc').getChild('def.ghi') is the same as logging.getLogger('abc.def.ghi') It's useful, for example, when the parent logger is named using __name__ rather than a literal string. r)rrrRrr )rosuffixr7r7r8getChilds zLogger.getChildcCs t|j}d|jj|j|fS)Nz <%s %s (%s)>)rr%rrwrR)ror5r7r7r8r{#s zLogger.__repr__)F)NNN)NNF)rwrxryrzrrtrrr"r(r'rrrrr#rrrrr r!r"rr%rr'r{r7r7r7r8rs0            c@seZdZdZddZdS) RootLoggerz A root logger is not that different to any other logger, except that it must have a logging level and there is only one instance of it in the hierarchy. cCstj|d|dS)z= Initialize the logger with the name "root". rN)rrt)ror5r7r7r8rt.szRootLogger.__init__N)rwrxryrzrtr7r7r7r8r((sr(c@seZdZdZddZddZddZdd Zd d Zd d Z ddZ ddddZ ddZ ddZ ddZddZddZddZd+d"d#Zed$d%Zejd&d%Zed'd(Zd)d*Zd S),rzo An adapter for loggers which makes it easier to specify contextual information in logging output. cCs||_||_dS)ax Initialize the adapter with a logger and a dict-like object which provides contextual information. This constructor signature allows easy stacking of LoggerAdapters, if so desired. You can effectively pass keyword arguments as shown in the following example: adapter = LoggerAdapter(someLogger, dict(p1=v1, p2="v2")) N)r$r)ror$rr7r7r8rt<s zLoggerAdapter.__init__cCs|j|d<||fS)a Process the logging message and keyword arguments passed in to a logging call to insert contextual information. You can either manipulate the message itself, the keyword args or both. Return the message and kwargs modified (or not) to suit your needs. Normally, you'll only need to override this one method in a LoggerAdapter subclass for your specific needs. r)r)rorSrrr7r7r8rnJs zLoggerAdapter.processcOs|jt|f||dS)zA Delegate a debug call to the underlying logger. N)r#r)rorSrWrrr7r7r8rZszLoggerAdapter.debugcOs|jt|f||dS)zA Delegate an info call to the underlying logger. N)r#r )rorSrWrrr7r7r8r"`szLoggerAdapter.infocOs|jt|f||dS)zC Delegate a warning call to the underlying logger. N)r#r)rorSrWrrr7r7r8r(fszLoggerAdapter.warningcOs$tjdtd|j|f||dS)Nz6The 'warn' method is deprecated, use 'warning' insteadr?)rr'r r()rorSrWrrr7r7r8r'lszLoggerAdapter.warncOs|jt|f||dS)zB Delegate an error call to the underlying logger. N)r#r)rorSrWrrr7r7r8rqszLoggerAdapter.errorT)rAcOs |jt|f|d|i|dS)zF Delegate an exception call to the underlying logger. rAN)r#r)rorSrArWrrr7r7r8rwszLoggerAdapter.exceptioncOs|jt|f||dS)zD Delegate a critical call to the underlying logger. N)r#r)rorSrWrrr7r7r8r}szLoggerAdapter.criticalcOs4|j|r0|j||\}}|jj||f||dS)z Delegate a log call to the underlying logger, after adding contextual information from this adapter instance. N)rrnr$r#)ror5rSrWrrr7r7r8r#s zLoggerAdapter.logcCs|jjj|krdS||jkS)z; Is this logger enabled for level 'level'? F)r$rrr%)ror5r7r7r8rszLoggerAdapter.isEnabledForcCs|jj|dS)zC Set the specified level on the underlying logger. N)r$r)ror5r7r7r8rszLoggerAdapter.setLevelcCs |jjS)zD Get the effective level for the underlying logger. )r$r%)ror7r7r8r%szLoggerAdapter.getEffectiveLevelcCs |jjS)z@ See if the underlying logger has any handlers. )r$r")ror7r7r8r"szLoggerAdapter.hasHandlersNFcCs|jj||||||dS)zX Low-level log implementation, proxied to allow nested logger adapters. )rArrb)r$r)ror5rSrWrArrbr7r7r8rszLoggerAdapter._logcCs|jjS)N)r$r)ror7r7r8rszLoggerAdapter.managercCs ||j_dS)N)r$r)rovaluer7r7r8rscCs|jjS)N)r$rR)ror7r7r8rRszLoggerAdapter.namecCs&|j}t|j}d|jj|j|fS)Nz <%s %s (%s)>)r$rr%rrwrR)ror$r5r7r7r8r{s zLoggerAdapter.__repr__)NNF)rwrxryrzrtrnrr"r(r'rrrr#rrr%r"rrrsetterrRr{r7r7r7r8r6s(   c Kstzjttjdkrp|jdd}|dkrHd|kr`d|kr`tdnd|ksXd|kr`td|dkr|jdd}|jdd }|rt||}n|jdd}t|}|g}|jd d}|jd d }|tkrtd dj tj |jdt|d}t |||} x.|D]&}|j dkr |j | tj|qW|jdd} | dk rPtj| |rpdj |j } td| WdtXdS)a Do basic configuration for the logging system. This function does nothing if the root logger already has handlers configured. It is a convenience method intended for use by simple scripts to do one-shot configuration of the logging package. The default behaviour is to create a StreamHandler which writes to sys.stderr, set a formatter using the BASIC_FORMAT format string, and add the handler to the root logger. A number of optional keyword arguments may be specified, which can alter the default behaviour. filename Specifies that a FileHandler be created, using the specified filename, rather than a StreamHandler. filemode Specifies the mode to open the file, if filename is specified (if filemode is unspecified, it defaults to 'a'). format Use the specified format string for the handler. datefmt Use the specified date/time format. style If a format string is specified, use this to specify the type of format string (possible values '%', '{', '$', for %-formatting, :meth:`str.format` and :class:`string.Template` - defaults to '%'). level Set the root logger level to the specified level. stream Use the specified stream to initialize the StreamHandler. Note that this argument is incompatible with 'filename' - if both are present, 'stream' is ignored. handlers If specified, this should be an iterable of already created handlers, which will be added to the root handler. Any handler in the list which does not have a formatter assigned will be assigned the formatter created in this function. Note that you could specify a stream created using open(filename, mode) rather than passing the filename and mode in. However, it should be remembered that StreamHandler does not close its stream (since it may be using sys.stdout or sys.stderr), whereas FileHandler closes its stream when the handler is closed. .. versionchanged:: 3.2 Added the ``style`` parameter. .. versionchanged:: 3.3 Added the ``handlers`` parameter. A ``ValueError`` is now thrown for incompatible arguments (e.g. ``handlers`` specified together with ``filename``/``filemode``, or ``filename``/``filemode`` specified together with ``stream``, or ``handlers`` specified together with ``stream``. rrNrr]z8'stream' and 'filename' should not be specified togetherzG'stream' or 'filename' should not be specified together with 'handlers'filemoderrrrzStyle must be one of: %srrrOr5z, zUnrecognised argument(s): %s)r9rTrrpoprHr rrrrr rrr rr:) rrrr]rhrZdfsrZfsrr5rr7r7r8rsF4               cCs|rtjj|StSdS)z Return a logger with the specified name, creating it if necessary. If no name is specified, return the root logger. N)rrr r)rRr7r7r8r .s cOs*ttjdkrttj|f||dS)z Log a message with severity 'CRITICAL' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr)rSrWrrr7r7r8r9scOs*ttjdkrttj|f||dS)z Log a message with severity 'ERROR' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr)rSrWrrr7r7r8rEs)rAcOst|f|d|i|dS)z Log a message with severity 'ERROR' on the root logger, with exception information. If the logger has no handlers, basicConfig() is called to add a console handler with a pre-defined format. rAN)r)rSrArWrrr7r7r8rOscOs*ttjdkrttj|f||dS)z Log a message with severity 'WARNING' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr()rSrWrrr7r7r8r(WscOs"tjdtdt|f||dS)Nz8The 'warn' function is deprecated, use 'warning' insteadr?)rr'r r()rSrWrrr7r7r8r'ascOs*ttjdkrttj|f||dS)z Log a message with severity 'INFO' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr")rSrWrrr7r7r8r"fscOs*ttjdkrttj|f||dS)z Log a message with severity 'DEBUG' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr)rSrWrrr7r7r8rpscOs,ttjdkrttj||f||dS)z Log 'msg % args' with the integer severity 'level' on the root logger. If the logger has no handlers, call basicConfig() to add a console handler with a pre-defined format. rN)rTrrrr#)r5rSrWrrr7r7r8r#zscCs |tj_dS)zB Disable all logging calls of severity 'level' and below. N)rrr)r5r7r7r8rscCsxt|ddD]l}yT|}|rhz:y|j|j|jWnttfk rXYnXWd|jXWqtrxYqXqWdS)z Perform any cleanup actions in the logging system (e.g. flushing buffers). Should be called at application exit. N)reversedrMrrrrHrNr,)Z handlerListrr-r7r7r8r&s  c@s(eZdZdZddZddZddZdS) ra This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. cCsdS)zStub.Nr7)rorr7r7r8rszNullHandler.handlecCsdS)zStub.Nr7)rorr7r7r8rszNullHandler.emitcCs d|_dS)N)r)ror7r7r8rszNullHandler.createLockN)rwrxryrzrrrr7r7r7r8rs cCs`|dk r$tdk r\t||||||n8tj|||||}td}|jsP|jt|jd|dS)a Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. Nz py.warningsz%s)_warnings_showwarningr formatwarningr rr rr()rcategoryr]rcrlinerr$r7r7r8 _showwarnings r3cCs0|rtdkr,tjatt_ntdk r,tt_dadS)z If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. N)r/r showwarningr3)Zcapturer7r7r8rs)N)NN)grzr=rZrQrrrrrUstringr__all__rh ImportError __author__Z __status__ __version__Z__date__rfr,rgrjrlrrrrrr rrr2r4rrrmrDr[r __code__rr rKrrLr9r:objectrr|r*r)r$rrrrrr rrr rWeakValueDictionaryrrrrr rr rZ_defaultLastResortr+rr%r!rrr(rrrrrr rrrrr(r'r"rr#rr&atexitregisterrr/r3rr7r7r7r8s@                  i   .*%4 >;E lE  b          PK |1]1?~&e&e config.pyonu[ {fc@sdZddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddl Z ddl Z yddl Z ddlZWnek reZ nXddlmZmZdZejZeaeedZdZdZdZd Zd Zd Zej d ej!Z"d Z#de$fdYZ%de&e%fdYZ'de(e%fdYZ)de*e%fdYZ+de$fdYZ,de,fdYZ-e-Z.dZ/edZ0dZ1dS(s Configuration functions for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! iN(tThreadingTCPServertStreamRequestHandleriF#cCsddl}|j|}t|dr:|j|n |j|t|}tjz7tjjtj 2t ||}t |||Wdtj XdS(sD Read the logging configuration from a ConfigParser-format file. This can be called several times from an application, allowing an end user the ability to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration). iNtreadline( t ConfigParserthasattrtreadfptreadt_create_formatterstloggingt _acquireLockt _handlerstcleart _handlerListt_install_handlerst_install_loggerst _releaseLock(tfnametdefaultstdisable_existing_loggersRtcpt formattersthandlers((s&/usr/lib64/python2.7/logging/config.pyt fileConfig<s     cCs|jd}|jd}t|}x\|D]T}|d|}yt||}Wq1tk rt|t||}q1Xq1W|S(s)Resolve a dotted name to a global object.t.i(tsplittpopt __import__tgetattrtAttributeError(tnametusedtfoundtn((s&/usr/lib64/python2.7/logging/config.pyt_resolve[s    cCstd|S(NcSs |jS(N(tstrip(tx((s&/usr/lib64/python2.7/logging/config.pytjt(tmap(talist((s&/usr/lib64/python2.7/logging/config.pyt _strip_spacesiscCs t|tr|S|jdS(Nsutf-8(t isinstancetstrtencode(ts((s&/usr/lib64/python2.7/logging/config.pyt_encodedlsc Cs|jdd}t|s"iS|jd}t|}i}x|D]}d|}|j|}d|kr|j|dd}nd }d|kr|j|dd}nd }tj}d|kr|j|d} | rt| }qn|||} | ||s  R|cBs#eZdZdZddZRS(sA converting list wrapper.cCs"tj||}|j||S(N(R[RR(RRR((s&/usr/lib64/python2.7/logging/config.pyROsicCstj||}|j|S(N(R[RRy(RtidxR((s&/usr/lib64/python2.7/logging/config.pyRSs(RRRRR(((s&/usr/lib64/python2.7/logging/config.pyR|Ms R}cBseZdZdZRS(sA converting tuple wrapper.cCs(tj||}|j||dtS(NR(ttupleRRR(RRR((s&/usr/lib64/python2.7/logging/config.pyRYs(RRRR(((s&/usr/lib64/python2.7/logging/config.pyR}WstBaseConfiguratorcBseZdZejdZejdZejdZejdZejdZ idd6dd 6Z e Z d Z d Zd Zd ZdZdZdZRS(sI The configurator base class which defines some useful defaults. s%^(?P[a-z]+)://(?P.*)$s ^\s*(\w+)\s*s^\.\s*(\w+)\s*s^\[\s*(\w+)\s*\]\s*s^\d+$t ext_converttextt cfg_converttcfgcCs@t||_||j_tttjkr<t|_ndS(N(R{tconfigRxRzRttypest FunctionTypetimporter(RR((s&/usr/lib64/python2.7/logging/config.pyt__init__rs c Cs|jd}|jd}yy|j|}x_|D]W}|d|7}yt||}Wq7tk r|j|t||}q7Xq7W|SWnVtk rtjd\}}td||f}|||_ |_ |nXdS(s` Resolve strings to objects using standard import and attribute syntax. RiisCannot resolve %r: %sN( RRRRRt ImportErrortsystexc_infoRst __cause__t __traceback__( RR,RRRtfragtettbtv((s&/usr/lib64/python2.7/logging/config.pytresolve|s"    cCs |j|S(s*Default converter for the ext:// protocol.(R(RR((s&/usr/lib64/python2.7/logging/config.pyRscCsO|}|jj|}|dkr7td|n||j}|j|jd}x|rJ|jj|}|r||jd}n|jj|}|r|jd}|j j|s||}qyt |}||}Wqt k r||}qXn|r1||j}qatd||fqaW|S(s*Default converter for the cfg:// protocol.sUnable to convert %risUnable to convert %r at %rN( t WORD_PATTERNRrR6RstendRtgroupst DOT_PATTERNt INDEX_PATTERNt DIGIT_PATTERNtintt TypeError(RRtrestRutdRR ((s&/usr/lib64/python2.7/logging/config.pyRs2     cCs/t|t r7t|tr7t|}||_nt|t rnt|trnt|}||_nt|t rt|trt|}||_nt|tr+|j j |}|r+|j }|d}|j j |d}|r(|d}t||}||}q(q+n|S(s Convert values to an appropriate type. dicts, lists and tuples are replaced by their converting alternatives. Strings are checked to see if they have a conversion format and are converted if they do. tprefixtsuffixN(R)R{RRxR|R[R}Rt basestringtCONVERT_PATTERNRrt groupdicttvalue_convertersR3R6R(RRRuRRt converterR((s&/usr/lib64/python2.7/logging/config.pyRys*         c Cs|jd}t|d rUttdrUt|tjkrU|j|}n|jdd}tg|D]"}t|rq|||f^qq}||}|rx-|j D]\}}t |||qWn|S(s1Configure an object with a user-supplied factory.s()t__call__t ClassTypeRN( RRRRzRRR6RRvtitemstsetattr( RRR>tpropstktkwargsRRR((s&/usr/lib64/python2.7/logging/config.pytconfigure_customs45 cCs"t|trt|}n|S(s0Utility function which converts lists to tuples.(R)R[R(RR((s&/usr/lib64/python2.7/logging/config.pytas_tuples(RRRtretcompileRRRRRRRRRRRRRyRR(((s&/usr/lib64/python2.7/logging/config.pyR^s"    "  tDictConfiguratorcBsheZdZdZdZdZdZdZdZe dZ e dZ e d Z RS( s] Configure logging using a dictionary-like object to describe the configuration. cCs|j}d|kr$tdn|ddkrKtd|dn|jdt}i}tjzz|r|jd|}x|D]}|tjkrtd|qyLtj|}||}|jdd}|r|j tj |nWqt k r.} td || fqXqW|jd |} xU| D]M}y|j || |t WqLt k r} td || fqLXqLW|jd d} | ry|j| t Wqt k r} td | qXqn|jdt } tjjtj2|jd|} xU| D]M}y|j| || |RtcnameRRtthRRRR((s&/usr/lib64/python2.7/logging/config.pyRsb 4     5 cCs]xV|D]N}y|j|jd|Wqtk rT}td||fqXqWdS(s.Add handlers to a logger from a list of names.RsUnable to add handler %r: %sN(R^RRRs(RRlRRTR((s&/usr/lib64/python2.7/logging/config.pyt add_handlerss  cCs|jdd}|dk r7|jtj|n|sx|jD]}|j|qHW|jdd}|r|j||n|jdd}|r|j||qndS(sU Perform configuration which is common to root and non-root loggers. RCRRN( R3R6RHRRRR]RR(RRlRRRCRTRR((s&/usr/lib64/python2.7/logging/config.pytcommon_logger_configs cCsPtj|}|j||||jdd}|dk rL||_ndS(s.Configure a non-root logger from a dictionary.RZN(RRcRR3R6RZ(RRRRRlRZ((s&/usr/lib64/python2.7/logging/config.pyR s  cCs#tj}|j|||dS(s*Configure a root logger from a dictionary.N(RRcR(RRRRW((s&/usr/lib64/python2.7/logging/config.pyRs ( RRRRRRRRRRRRR(((s&/usr/lib64/python2.7/logging/config.pyRs   :   cCst|jdS(s%Configure logging using a dictionary.N(tdictConfigClassR(R((s&/usr/lib64/python2.7/logging/config.pyt dictConfigscsptstdndtfdY}dtfdY}dtjffdY|||S(sW Start up a socket server on the specified port, and listen for new configurations. These will be sent as a file suitable for processing by fileConfig(). Returns a Thread object on which you can call start() to start the server, and which you can join() when appropriate. To stop the server, call stopListening(). s listen() needs threading to worktConfigStreamHandlercBseZdZdZRS(s Handler for a logging configuration request. It expects a completely new logging configuration and uses fileConfig to install it. c Ssiddl}y+|j}|jd}t|dkr6tjd|d}|jj|}x3t||kr||j|t|}qdWy)ddl}|j|}t|WnQt j |}yt |Wqt t fk rqtjqXnX|jjr6|jjjq6nWn+tjk rd}|jtkreqenXdS(s Handle a request. Each request is expected to be a 4-byte length, packed using struct.pack(">L", n), followed by the config file. Uses fileConfig() to do the grunt work. iNis>Li(ttempfilet connectiontrecvR4tstructtunpacktjsontloadsRt cStringIOtStringIORtKeyboardInterruptt SystemExitt tracebackt print_exctservertreadytsettsocketterrorterrnot RESET_ERROR( RRtconntchunktslenRRtfileR((s&/usr/lib64/python2.7/logging/config.pythandle1s4  !  (RRRR(((s&/usr/lib64/python2.7/logging/config.pyR*stConfigSocketReceivercBs2eZdZdZdedddZdZRS(sD A simple TCP socket-based logging config receiver. it localhostcSsLtj|||f|tjd|_tjd|_||_dS(Nii(RRRR tabortRttimeoutR(RthosttportRR((s&/usr/lib64/python2.7/logging/config.pyR^s     cSsddl}d}xj|s~|j|jjggg|j\}}}|r^|jntj|j}tjqW|jj dS(Nii( tselectRtfilenoRthandle_requestRR RRtclose(RRRtrdtwrtex((s&/usr/lib64/python2.7/logging/config.pytserve_until_stoppedgs     N(RRRtallow_reuse_addresstDEFAULT_LOGGING_CONFIG_PORTR6RR (((s&/usr/lib64/python2.7/logging/config.pyRWs tServercs eZfdZdZRS(csAt|j||_||_||_tj|_dS(N(tsuperRtrcvrthdlrRt threadingtEventR(RRRR(R(s&/usr/lib64/python2.7/logging/config.pyRws    cSs~|jd|jd|jd|j}|jdkrI|jd|_n|jjtj|atj |j dS(NRRRii( RRRRtserver_addressRRR t _listenerRR (RR((s&/usr/lib64/python2.7/logging/config.pytrun~s    (RRRR((R(s&/usr/lib64/python2.7/logging/config.pyRus(tthreadtNotImplementedErrorRRRtThread(RRR((Rs&/usr/lib64/python2.7/logging/config.pytlistens -cCs8tjztr%dt_danWdtjXdS(sN Stop the listening server which was created with a call to listen(). iN(RR RRR6R(((s&/usr/lib64/python2.7/logging/config.pyt stopListenings    (2RRRtioRtlogging.handlerstosRRRRRRRRRR6t SocketServerRRR t ECONNRESETRRRtRR!R(R-RR RRtIRqRvtobjectRwRR{R[R|RR}RRRRRR(((s&/usr/lib64/python2.7/logging/config.pytsR                     + \ ! .  oPK |1]eZeZe config.pycnu[ {fc@sdZddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl Z ddl Z ddl Z yddl Z ddlZWnek reZ nXddlmZmZdZejZeaeedZdZdZdZd Zd Zd Zej d ej!Z"d Z#de$fdYZ%de&e%fdYZ'de(e%fdYZ)de*e%fdYZ+de$fdYZ,de,fdYZ-e-Z.dZ/edZ0dZ1dS(s Configuration functions for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python, and influenced by Apache's log4j system. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! iN(tThreadingTCPServertStreamRequestHandleriF#cCsddl}|j|}t|dr:|j|n |j|t|}tjz7tjjtj 2t ||}t |||Wdtj XdS(sD Read the logging configuration from a ConfigParser-format file. This can be called several times from an application, allowing an end user the ability to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration). iNtreadline( t ConfigParserthasattrtreadfptreadt_create_formatterstloggingt _acquireLockt _handlerstcleart _handlerListt_install_handlerst_install_loggerst _releaseLock(tfnametdefaultstdisable_existing_loggersRtcpt formattersthandlers((s&/usr/lib64/python2.7/logging/config.pyt fileConfig<s     cCs|jd}|jd}t|}x\|D]T}|d|}yt||}Wq1tk rt|t||}q1Xq1W|S(s)Resolve a dotted name to a global object.t.i(tsplittpopt __import__tgetattrtAttributeError(tnametusedtfoundtn((s&/usr/lib64/python2.7/logging/config.pyt_resolve[s    cCstd|S(NcSs |jS(N(tstrip(tx((s&/usr/lib64/python2.7/logging/config.pytjt(tmap(talist((s&/usr/lib64/python2.7/logging/config.pyt _strip_spacesiscCs t|tr|S|jdS(Nsutf-8(t isinstancetstrtencode(ts((s&/usr/lib64/python2.7/logging/config.pyt_encodedlsc Cs|jdd}t|s"iS|jd}t|}i}x|D]}d|}|j|}d|kr|j|dd}nd }d|kr|j|dd}nd }tj}d|kr|j|d} | rt| }qn|||} | ||s  R|cBs#eZdZdZddZRS(sA converting list wrapper.cCs"tj||}|j||S(N(R[RR(RRR((s&/usr/lib64/python2.7/logging/config.pyROsicCstj||}|j|S(N(R[RRy(RtidxR((s&/usr/lib64/python2.7/logging/config.pyRSs(RRRRR(((s&/usr/lib64/python2.7/logging/config.pyR|Ms R}cBseZdZdZRS(sA converting tuple wrapper.cCs(tj||}|j||dtS(NR(ttupleRRR(RRR((s&/usr/lib64/python2.7/logging/config.pyRYs(RRRR(((s&/usr/lib64/python2.7/logging/config.pyR}WstBaseConfiguratorcBseZdZejdZejdZejdZejdZejdZ idd6dd 6Z e Z d Z d Zd Zd ZdZdZdZRS(sI The configurator base class which defines some useful defaults. s%^(?P[a-z]+)://(?P.*)$s ^\s*(\w+)\s*s^\.\s*(\w+)\s*s^\[\s*(\w+)\s*\]\s*s^\d+$t ext_converttextt cfg_converttcfgcCs@t||_||j_tttjkr<t|_ndS(N(R{tconfigRxRzRttypest FunctionTypetimporter(RR((s&/usr/lib64/python2.7/logging/config.pyt__init__rs c Cs|jd}|jd}yy|j|}x_|D]W}|d|7}yt||}Wq7tk r|j|t||}q7Xq7W|SWnVtk rtjd\}}td||f}|||_ |_ |nXdS(s` Resolve strings to objects using standard import and attribute syntax. RiisCannot resolve %r: %sN( RRRRRt ImportErrortsystexc_infoRst __cause__t __traceback__( RR,RRRtfragtettbtv((s&/usr/lib64/python2.7/logging/config.pytresolve|s"    cCs |j|S(s*Default converter for the ext:// protocol.(R(RR((s&/usr/lib64/python2.7/logging/config.pyRscCsO|}|jj|}|dkr7td|n||j}|j|jd}x|rJ|jj|}|r||jd}n|jj|}|r|jd}|j j|s||}qyt |}||}Wqt k r||}qXn|r1||j}qatd||fqaW|S(s*Default converter for the cfg:// protocol.sUnable to convert %risUnable to convert %r at %rN( t WORD_PATTERNRrR6RstendRtgroupst DOT_PATTERNt INDEX_PATTERNt DIGIT_PATTERNtintt TypeError(RRtrestRutdRR ((s&/usr/lib64/python2.7/logging/config.pyRs2     cCs/t|t r7t|tr7t|}||_nt|t rnt|trnt|}||_nt|t rt|trt|}||_nt|tr+|j j |}|r+|j }|d}|j j |d}|r(|d}t||}||}q(q+n|S(s Convert values to an appropriate type. dicts, lists and tuples are replaced by their converting alternatives. Strings are checked to see if they have a conversion format and are converted if they do. tprefixtsuffixN(R)R{RRxR|R[R}Rt basestringtCONVERT_PATTERNRrt groupdicttvalue_convertersR3R6R(RRRuRRt converterR((s&/usr/lib64/python2.7/logging/config.pyRys*         c Cs|jd}t|d rUttdrUt|tjkrU|j|}n|jdd}tg|D]"}t|rq|||f^qq}||}|rx-|j D]\}}t |||qWn|S(s1Configure an object with a user-supplied factory.s()t__call__t ClassTypeRN( RRRRzRRR6RRvtitemstsetattr( RRR>tpropstktkwargsRRR((s&/usr/lib64/python2.7/logging/config.pytconfigure_customs45 cCs"t|trt|}n|S(s0Utility function which converts lists to tuples.(R)R[R(RR((s&/usr/lib64/python2.7/logging/config.pytas_tuples(RRRtretcompileRRRRRRRRRRRRRyRR(((s&/usr/lib64/python2.7/logging/config.pyR^s"    "  tDictConfiguratorcBsheZdZdZdZdZdZdZdZe dZ e dZ e d Z RS( s] Configure logging using a dictionary-like object to describe the configuration. cCs|j}d|kr$tdn|ddkrKtd|dn|jdt}i}tjzz|r|jd|}x|D]}|tjkrtd|qyLtj|}||}|jdd}|r|j tj |nWqt k r.} td || fqXqW|jd |} xU| D]M}y|j || |t WqLt k r} td || fqLXqLW|jd d} | ry|j| t Wqt k r} td | qXqn|jdt } tjjtj2|jd|} xU| D]M}y|j| || |RtcnameRRtthRRRR((s&/usr/lib64/python2.7/logging/config.pyRsb 4     5 cCs]xV|D]N}y|j|jd|Wqtk rT}td||fqXqWdS(s.Add handlers to a logger from a list of names.RsUnable to add handler %r: %sN(R^RRRs(RRlRRTR((s&/usr/lib64/python2.7/logging/config.pyt add_handlerss  cCs|jdd}|dk r7|jtj|n|sx|jD]}|j|qHW|jdd}|r|j||n|jdd}|r|j||qndS(sU Perform configuration which is common to root and non-root loggers. RCRRN( R3R6RHRRRR]RR(RRlRRRCRTRR((s&/usr/lib64/python2.7/logging/config.pytcommon_logger_configs cCsPtj|}|j||||jdd}|dk rL||_ndS(s.Configure a non-root logger from a dictionary.RZN(RRcRR3R6RZ(RRRRRlRZ((s&/usr/lib64/python2.7/logging/config.pyR s  cCs#tj}|j|||dS(s*Configure a root logger from a dictionary.N(RRcR(RRRRW((s&/usr/lib64/python2.7/logging/config.pyRs ( RRRRRRRRRRRRR(((s&/usr/lib64/python2.7/logging/config.pyRs   :   cCst|jdS(s%Configure logging using a dictionary.N(tdictConfigClassR(R((s&/usr/lib64/python2.7/logging/config.pyt dictConfigscsptstdndtfdY}dtfdY}dtjffdY|||S(sW Start up a socket server on the specified port, and listen for new configurations. These will be sent as a file suitable for processing by fileConfig(). Returns a Thread object on which you can call start() to start the server, and which you can join() when appropriate. To stop the server, call stopListening(). s listen() needs threading to worktConfigStreamHandlercBseZdZdZRS(s Handler for a logging configuration request. It expects a completely new logging configuration and uses fileConfig to install it. c Ss~ddl}y@|j}|jd}t|dkrKtjd|d}|jj|}x3t||kr||j|t|}qdWy>ddl}|j|}t|t st t |WnQt j |}yt|Wq)ttfk rq)tjq)XnX|jjrK|jjjqKnWn+tjk ry}|jtkrzqznXdS(s Handle a request. Each request is expected to be a 4-byte length, packed using struct.pack(">L", n), followed by the config file. Uses fileConfig() to do the grunt work. iNis>Li(ttempfilet connectiontrecvR4tstructtunpacktjsontloadsR)RtAssertionErrorRt cStringIOtStringIORtKeyboardInterruptt SystemExitt tracebackt print_exctservertreadytsettsocketterrorterrnot RESET_ERROR( RRtconntchunktslenRRtfileR((s&/usr/lib64/python2.7/logging/config.pythandle1s6  !  (RRRR(((s&/usr/lib64/python2.7/logging/config.pyR*stConfigSocketReceivercBs2eZdZdZdedddZdZRS(sD A simple TCP socket-based logging config receiver. it localhostcSsLtj|||f|tjd|_tjd|_||_dS(Nii(RRRR tabortRttimeoutR(RthosttportRR((s&/usr/lib64/python2.7/logging/config.pyR^s     cSsddl}d}xj|s~|j|jjggg|j\}}}|r^|jntj|j}tjqW|jj dS(Nii( tselectRtfilenoRthandle_requestRR RRtclose(RRRtrdtwrtex((s&/usr/lib64/python2.7/logging/config.pytserve_until_stoppedgs     N(RRRtallow_reuse_addresstDEFAULT_LOGGING_CONFIG_PORTR6RR (((s&/usr/lib64/python2.7/logging/config.pyRWs tServercs eZfdZdZRS(csAt|j||_||_||_tj|_dS(N(tsuperRtrcvrthdlrRt threadingtEventR(RRRR(R(s&/usr/lib64/python2.7/logging/config.pyRws    cSs~|jd|jd|jd|j}|jdkrI|jd|_n|jjtj|atj |j dS(NRRRii( RRRRtserver_addressRRR t _listenerRR (RR((s&/usr/lib64/python2.7/logging/config.pytrun~s    (RRRR((R(s&/usr/lib64/python2.7/logging/config.pyRus(tthreadtNotImplementedErrorRRRtThread(RRR((Rs&/usr/lib64/python2.7/logging/config.pytlistens -cCs8tjztr%dt_danWdtjXdS(sN Stop the listening server which was created with a call to listen(). iN(RR RRR6R(((s&/usr/lib64/python2.7/logging/config.pyt stopListenings    (2RRRtioRtlogging.handlerstosRRRRRRRRRR6t SocketServerRRRt ECONNRESETRRRtRR!R(R-RR RRtIRqRvtobjectRwRR{R[R|RR}RRRRRR(((s&/usr/lib64/python2.7/logging/config.pytsR                     + \ ! .  oPK |1]G __init__.pycnu[ {fc%@sdZddlZddlZddlZddlZddlZddlZddlZddlZddddddd d d d d ddddddddddddddddddd d!d"d#d$d%d&d'g%Z yddl Z Wne k re Z nXyddl Z ddlZWne k r:e Z nXd(Zd)Zd*Zd+ZyeeZWnek rzeZnXd,Zeed-rd.ZnejjejjZejZd/Z d/Z!d/Z"d/Z#d0Z$e$Z%d1Z&d2Z'e'Z(d3Z)d4Z*d5Z+i de$6de&6de'6d e)6de*6de+6e$d6e&d6e'd6e'd6e)d 6e*d6e+d6Z,d6Z-d7Z.d8Z/e rej0Z1ne Z1d9Z2d:Z3de4fd;YZ5d<Z6d e4fd=YZ7e7Z8de4fd>YZ9d e4fd?YZ:d@e4fdAYZ;ej<Z=gZ>dBZ?dCZ@d e;fdDYZAdeAfdEYZBd eBfdFYZCdGe4fdHYZDe aEdIZFdJZGdKe4fdLYZHde;fdMYZIdNeIfdOYZJeIaEde4fdPYZKeJe'ZLeLeI_LeHeIjLeI_MdQZNdRZOe dSZPdTZQeQZRdUZSdVZTdWZUeUZVdXZWdYZXdZZYd[ZZe>d\Z[ddl\Z\e\j]e[deAfd]YZ^e a_e e d^Z`d_ZadS(`s Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! iNt BASIC_FORMATtBufferingFormattertCRITICALtDEBUGtERRORtFATALt FileHandlertFiltert FormattertHandlertINFOt LogRecordtLoggert LoggerAdaptertNOTSETt NullHandlert StreamHandlertWARNtWARNINGt addLevelNamet basicConfigtcaptureWarningstcriticaltdebugtdisableterrort exceptiontfatalt getLevelNamet getLoggertgetLoggerClasstinfotlogt makeLogRecordtsetLoggerClasstwarntwarnings&Vinay Sajip t productions0.5.1.2s07 February 2010cCs)y tWntjdjjSXdS(s5Return the frame object for the caller's stack frame.iN(t Exceptiontsystexc_infottb_frametf_back(((s(/usr/lib64/python2.7/logging/__init__.pyt currentframe?s t _getframecCs tjdS(Ni(R'R,(((s(/usr/lib64/python2.7/logging/__init__.pytFtii2i(iii icCstj|d|S(s Return the textual representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. Otherwise, the string "Level %s" % level is returned. sLevel %s(t _levelNamestget(tlevel((s(/usr/lib64/python2.7/logging/__init__.pyRscCs.tz|t|<|t|(RDRKRLRVRE(Rj((s(/usr/lib64/python2.7/logging/__init__.pyt__str__4scCstst|j}nK|j}t|tscyt|j}Wqctk r_|j}qcXn|jr|||j}n|S(s Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. (t_unicodeR8RER5t basestringt UnicodeErrorRI(RjRE((s(/usr/lib64/python2.7/logging/__init__.pyt getMessage8s   N(t__name__t __module__t__doc__RTRnRoRs(((s(/usr/lib64/python2.7/logging/__init__.pyR s  F c Cs5tdddddddd}|jj||S(s Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. R.iN((R RTt__dict__tupdate(tdictR;((s(/usr/lib64/python2.7/logging/__init__.pyR!Ls!cBsMeZdZejZdddZddZdZ dZ dZ RS(s Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the default value of "%s(message)\n" is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted cCs(|r||_n d|_||_dS(s8 Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument (if omitted, you get the ISO8601 format). s %(message)sN(t_fmttdatefmt(RjtfmtR{((s(/usr/lib64/python2.7/logging/__init__.pyRns  cCsV|j|j}|r-tj||}n%tjd|}d||jf}|S(s Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, the ISO8601 format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. s%Y-%m-%d %H:%M:%Ss%s,%03d(t converterRXRCtstrftimeRY(RjtrecordR{Rltstt((s(/usr/lib64/python2.7/logging/__init__.pyt formatTimes cCshtj}tj|d|d|dd||j}|j|ddkrd|d }n|S(s Format and return the specified exception information as a string. This default implementation just uses traceback.print_exception() iiiis N(t cStringIOtStringIOt tracebacktprint_exceptionRTtgetvaluetclose(RjteitsioR((s(/usr/lib64/python2.7/logging/__init__.pytformatExceptions %   cCs|jjddkS(sK Check if the format uses the creation time of the record. s %(asctime)i(Rztfind(Rj((s(/usr/lib64/python2.7/logging/__init__.pytusesTimescCsA|j|_|jr6|j||j|_ny|j|j}WnVtk r}y)|j j d|_ |j|j}Wqtk r|qXnX|j r|j s|j |j |_ qn|j r=|ddkr|d}ny||j }Wq=tk r9||j j tjd}q=Xn|S(sz Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. sutf-8is treplace(RstmessageRRR{tasctimeRzRwtUnicodeDecodeErrorRDtdecodeR(RURRrR'tgetfilesystemencoding(RjRRte((s(/usr/lib64/python2.7/logging/__init__.pytformats.        N( RtRuRvRCt localtimeR}RTRnRRRR(((s(/usr/lib64/python2.7/logging/__init__.pyR[s(    cBs5eZdZddZdZdZdZRS(sB A formatter suitable for formatting a number of records. cCs|r||_n t|_dS(sm Optionally specify a formatter which will be used to format each individual record. N(tlinefmtt_defaultFormatter(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRns cCsdS(sE Return the header string for the specified records. R.((Rjtrecords((s(/usr/lib64/python2.7/logging/__init__.pyt formatHeaderscCsdS(sE Return the footer string for the specified records. R.((RjR((s(/usr/lib64/python2.7/logging/__init__.pyt formatFooter scCsld}t|dkrh||j|}x$|D]}||jj|}q2W||j|}n|S(sQ Format the specified records and return the result as a string. R.i(RFRRRR(RjRR;R((s(/usr/lib64/python2.7/logging/__init__.pyRs N(RtRuRvRTRnRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRs   cBs#eZdZddZdZRS(s Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. R.cCs||_t||_dS(s Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. N(RDRFtnlen(RjRD((s(/usr/lib64/python2.7/logging/__init__.pyRn,s cCse|jdkrdS|j|jkr)dS|jj|jd|jdkrQdS|j|jdkS(s Determine if the specified record is to be logged. Is the specified record to be logged? Returns 0 for no, nonzero for yes. If deemed appropriate, the record may be modified in-place. iit.(RRDR(RjR((s(/usr/lib64/python2.7/logging/__init__.pytfilter7s$(RtRuRvRnR(((s(/usr/lib64/python2.7/logging/__init__.pyR!s  tFilterercBs2eZdZdZdZdZdZRS(s[ A base class for loggers and handlers which allows them to share common code. cCs g|_dS(sE Initialize the list of filters to be an empty list. N(tfilters(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRnKscCs&||jkr"|jj|ndS(s; Add the specified filter to this handler. N(Rtappend(RjR((s(/usr/lib64/python2.7/logging/__init__.pyt addFilterQscCs&||jkr"|jj|ndS(s@ Remove the specified filter from this handler. N(Rtremove(RjR((s(/usr/lib64/python2.7/logging/__init__.pyt removeFilterXscCs7d}x*|jD]}|j|sd}PqqW|S(s Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this and the record is then dropped. Returns a zero value if a record is to be dropped, else non-zero. ii(RR(RjRR;tf((s(/usr/lib64/python2.7/logging/__init__.pyR_s (RtRuRvRnRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRFs    cCswttt}}}|rs|rs|rsy6|z ||krO|j|nWd|XWqstk roqsXndS(sD Remove a handler reference from the internal cleanup list. N(R2R3t _handlerListRR:(twrR>R?thandlers((s(/usr/lib64/python2.7/logging/__init__.pyt_removeHandlerRefus   cCs3tztjtj|tWdtXdS(sL Add a handler to the internal cleanup list using a weak reference. N(R2RRtweakreftrefRR3(thandler((s(/usr/lib64/python2.7/logging/__init__.pyt_addHandlerRefscBseZdZedZdZdZeeeZdZ dZ dZ dZ dZ d Zd Zd Zd Zd ZdZRS(sq Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. cCsFtj|d|_t||_d|_t||jdS(sz Initializes the instance - basically setting the formatter to None and the filter list to empty. N( RRnRTt_nameR<R1t formatterRt createLock(RjR1((s(/usr/lib64/python2.7/logging/__init__.pyRns     cCs|jS(N(R(Rj((s(/usr/lib64/python2.7/logging/__init__.pytget_namescCsRtz<|jtkr&t|j=n||_|rB|t|(Rj((s(/usr/lib64/python2.7/logging/__init__.pyR>s cCs|jr|jjndS(s. Release the I/O thread lock. N(RR?(Rj((s(/usr/lib64/python2.7/logging/__init__.pyR?s cCst||_dS(s8 Set the logging level of this handler. N(R<R1(RjR1((s(/usr/lib64/python2.7/logging/__init__.pytsetLevelscCs(|jr|j}nt}|j|S(s Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. (RRR(RjRR|((s(/usr/lib64/python2.7/logging/__init__.pyRs  cCstddS(s Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. s.emit must be implemented by Handler subclassesN(tNotImplementedError(RjR((s(/usr/lib64/python2.7/logging/__init__.pytemitscCsE|j|}|rA|jz|j|Wd|jXn|S(s< Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns whether the filter passed the record for emission. N(RR>RR?(RjRR;((s(/usr/lib64/python2.7/logging/__init__.pythandles  cCs ||_dS(s5 Set the formatter for this handler. N(R(RjR|((s(/usr/lib64/python2.7/logging/__init__.pyt setFormatterscCsdS(s Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. N((Rj((s(/usr/lib64/python2.7/logging/__init__.pytflush scCs?tz)|jr/|jtkr/t|j=nWdtXdS(s% Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. N(R2RRR3(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRs cCstrtjrtj}zdyLtj|d|d|ddtjtjjd|j|j fWnt k r}nXWd~XndS(sD Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. iiisLogged from file %s, line %s N( traiseExceptionsR'tstderrR(RRRTtwriteRPRVtIOError(RjRR((s(/usr/lib64/python2.7/logging/__init__.pyt handleError#s     (RtRuRvRRnRRtpropertyRDRR>R?RRRRRRRR(((s(/usr/lib64/python2.7/logging/__init__.pyR s         cBs,eZdZddZdZdZRS(s A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. cCs2tj||dkr%tj}n||_dS(sb Initialize the handler. If stream is not specified, sys.stderr is used. N(R RnRTR'Rtstream(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRnBs   cCsK|jz/|jr8t|jdr8|jjnWd|jXdS(s% Flushes the stream. RN(R>RRhRR?(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRMs  cCs-y|j|}|j}d}ts;|j||nyt|trt|ddrd}y|j||Wqtk r|j||j |j qXn|j||Wn+t k r|j||j dnX|j Wn-t tfk rn|j|nXdS(s Emit a record. If a formatter is specified, it is used to format the record. The record is then written to the stream with a trailing newline. If exception information is present, it is formatted using traceback.print_exception and appended to the stream. If the stream has an 'encoding' attribute, it is used to determine how to do the output to the stream. s%s tencodingu%s sUTF-8N(RRRpRR5tunicodetgetattrRTtUnicodeEncodeErrortencodeRRrRtKeyboardInterruptt SystemExitR(RjRRERtfstufs((s(/usr/lib64/python2.7/logging/__init__.pyRXs,   $ N(RtRuRvRTRnRR(((s(/usr/lib64/python2.7/logging/__init__.pyR;s cBs;eZdZddddZdZdZdZRS(sO A handler class which writes formatted logging records to disk files. taicCs~tdkrd}ntjj||_||_||_||_|rdt j |d|_ nt j ||j dS(sO Open the specified file and use it as the stream for logging. N(tcodecsRTRMRNtabspatht baseFilenametmodeRtdelayR RnRRt_open(RjRPRRR((s(/usr/lib64/python2.7/logging/__init__.pyRns       cCs|jzezP|jr\z|jWd|j}d|_t|drX|jnXnWdtj|XWd|jXdS(s$ Closes the stream. NR(R>RRRTRhRRR?(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRs    cCsI|jdkr't|j|j}ntj|j|j|j}|S(sx Open the current base file with the (original) mode and encoding. Return the resulting stream. N(RRTtopenRRR(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRscCs5|jdkr!|j|_ntj||dS(s Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. N(RRTRRR(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRsN(RtRuRvRTRnRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRs   t PlaceHoldercBs eZdZdZdZRS(s PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. cCsid|6|_dS(sY Initialize with the specified logger being a child of this placeholder. N(RTt loggerMap(Rjtalogger((s(/usr/lib64/python2.7/logging/__init__.pyRnscCs#||jkrd|j||tkr4t|ts4td|jq4n|adS(s Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() s(logger not derived from logging.Logger: N(R t issubclassR:Rtt _loggerClass(tklass((s(/usr/lib64/python2.7/logging/__init__.pyR"s  cCstS(sB Return the class to be used when instantiating a logger. (R(((s(/usr/lib64/python2.7/logging/__init__.pyRstManagercBs;eZdZdZdZdZdZdZRS(st There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. cCs1||_d|_d|_i|_d|_dS(sT Initialize the manager with the root node of the logger hierarchy. iN(trootRtemittedNoHandlerWarningt loggerDictRTt loggerClass(Rjtrootnode((s(/usr/lib64/python2.7/logging/__init__.pyRns     cCsd}t|ts$tdnt|trE|jd}ntz||jkr|j|}t|tr|}|j pt |}||_ ||j|<|j |||j |qn8|j pt |}||_ ||j|<|j |WdtX|S(s Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. s'A logger name must be string or Unicodesutf-8N(RTR5RqR:RRR2RRRRtmanagert_fixupChildrent _fixupParentsR3(RjRDR;tph((s(/usr/lib64/python2.7/logging/__init__.pyRs,      cCsA|tkr4t|ts4td|jq4n||_dS(sY Set the class to be used when instantiating a logger with this Manager. s(logger not derived from logging.Logger: N(R RR:RtR(RjR((s(/usr/lib64/python2.7/logging/__init__.pyR",s  cCs|j}|jd}d}x|dkr| r|| }||jkrct||j|RRRR9R?R(t handlerListRth((s(/usr/lib64/python2.7/logging/__init__.pytshutdown|s   cBs)eZdZdZdZdZRS(s This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. cCsdS(N((RjR((s(/usr/lib64/python2.7/logging/__init__.pyRscCsdS(N((RjR((s(/usr/lib64/python2.7/logging/__init__.pyRscCs d|_dS(N(RTR(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRs(RtRuRvRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRs   cCs|dk r7tdk rt||||||qnStj|||||}td}|jsz|jtn|jd|dS(s Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. s py.warningss%sN( RTt_warnings_showwarningtwarningst formatwarningRRRRR$(RtcategoryRPRVtfiletlineRR((s(/usr/lib64/python2.7/logging/__init__.pyt _showwarnings    cCsL|r*tdkrHtjatt_qHntdk rHtt_dandS(s If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. N(RRTRt showwarningR(tcapture((s(/usr/lib64/python2.7/logging/__init__.pyRs    (bRvR'RMRCRRRRRGt__all__Rt ImportErrorRTR]R_t __author__t __status__t __version__t__date__RtTrueRpt NameErrortFalseR+RhRNRt__code__RRRZRR\RbRgRRRRRR RRR/RRR<RR=R2R3tobjectR R!RRRRRtWeakValueDictionaryRRRRR RRRRR"RRR R R RRRRRRRRRR$R#RRR RRtatexittregisterRRRR(((s(/usr/lib64/python2.7/logging/__init__.pyts`                k  *%,   GH f `   <            PK |1] __init__.pyonu[ {fc%@sdZddlZddlZddlZddlZddlZddlZddlZddlZddddddd d d d d ddddddddddddddddddd d!d"d#d$d%d&d'g%Z yddl Z Wne k re Z nXyddl Z ddlZWne k r:e Z nXd(Zd)Zd*Zd+ZyeeZWnek rzeZnXd,Zeed-rd.ZnejjejjZejZd/Z d/Z!d/Z"d/Z#d0Z$e$Z%d1Z&d2Z'e'Z(d3Z)d4Z*d5Z+i de$6de&6de'6d e)6de*6de+6e$d6e&d6e'd6e'd6e)d 6e*d6e+d6Z,d6Z-d7Z.d8Z/e rej0Z1ne Z1d9Z2d:Z3de4fd;YZ5d<Z6d e4fd=YZ7e7Z8de4fd>YZ9d e4fd?YZ:d@e4fdAYZ;ej<Z=gZ>dBZ?dCZ@d e;fdDYZAdeAfdEYZBd eBfdFYZCdGe4fdHYZDe aEdIZFdJZGdKe4fdLYZHde;fdMYZIdNeIfdOYZJeIaEde4fdPYZKeJe'ZLeLeI_LeHeIjLeI_MdQZNdRZOe dSZPdTZQeQZRdUZSdVZTdWZUeUZVdXZWdYZXdZZYd[ZZe>d\Z[ddl\Z\e\j]e[deAfd]YZ^e a_e e d^Z`d_ZadS(`s Logging package for Python. Based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2014 Vinay Sajip. All Rights Reserved. To use, simply 'import logging' and log away! iNt BASIC_FORMATtBufferingFormattertCRITICALtDEBUGtERRORtFATALt FileHandlertFiltert FormattertHandlertINFOt LogRecordtLoggert LoggerAdaptertNOTSETt NullHandlert StreamHandlertWARNtWARNINGt addLevelNamet basicConfigtcaptureWarningstcriticaltdebugtdisableterrort exceptiontfatalt getLevelNamet getLoggertgetLoggerClasstinfotlogt makeLogRecordtsetLoggerClasstwarntwarnings&Vinay Sajip t productions0.5.1.2s07 February 2010cCs)y tWntjdjjSXdS(s5Return the frame object for the caller's stack frame.iN(t Exceptiontsystexc_infottb_frametf_back(((s(/usr/lib64/python2.7/logging/__init__.pyt currentframe?s t _getframecCs tjdS(Ni(R'R,(((s(/usr/lib64/python2.7/logging/__init__.pytFtii2i(iii icCstj|d|S(s Return the textual representation of logging level 'level'. If the level is one of the predefined levels (CRITICAL, ERROR, WARNING, INFO, DEBUG) then you get the corresponding string. If you have associated levels with names using addLevelName then the name you have associated with 'level' is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned. Otherwise, the string "Level %s" % level is returned. sLevel %s(t _levelNamestget(tlevel((s(/usr/lib64/python2.7/logging/__init__.pyRscCs.tz|t|<|t|(RDRKRLRVRE(Rj((s(/usr/lib64/python2.7/logging/__init__.pyt__str__4scCstst|j}nK|j}t|tscyt|j}Wqctk r_|j}qcXn|jr|||j}n|S(s Return the message for this LogRecord. Return the message for this LogRecord after merging any user-supplied arguments with the message. (t_unicodeR8RER5t basestringt UnicodeErrorRI(RjRE((s(/usr/lib64/python2.7/logging/__init__.pyt getMessage8s   N(t__name__t __module__t__doc__RTRnRoRs(((s(/usr/lib64/python2.7/logging/__init__.pyR s  F c Cs5tdddddddd}|jj||S(s Make a LogRecord whose attributes are defined by the specified dictionary, This function is useful for converting a logging event received over a socket connection (which is sent as a dictionary) into a LogRecord instance. R.iN((R RTt__dict__tupdate(tdictR;((s(/usr/lib64/python2.7/logging/__init__.pyR!Ls!cBsMeZdZejZdddZddZdZ dZ dZ RS(s Formatter instances are used to convert a LogRecord to text. Formatters need to know how a LogRecord is constructed. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the default value of "%s(message)\n" is used. The Formatter can be initialized with a format string which makes use of knowledge of the LogRecord attributes - e.g. the default value mentioned above makes use of the fact that the user's message and arguments are pre- formatted into a LogRecord's message attribute. Currently, the useful attributes in a LogRecord are described by: %(name)s Name of the logger (logging channel) %(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL) %(levelname)s Text logging level for the message ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL") %(pathname)s Full pathname of the source file where the logging call was issued (if available) %(filename)s Filename portion of pathname %(module)s Module (name portion of filename) %(lineno)d Source line number where the logging call was issued (if available) %(funcName)s Function name %(created)f Time when the LogRecord was created (time.time() return value) %(asctime)s Textual time when the LogRecord was created %(msecs)d Millisecond portion of the creation time %(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded (typically at application startup time) %(thread)d Thread ID (if available) %(threadName)s Thread name (if available) %(process)d Process ID (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted cCs(|r||_n d|_||_dS(s8 Initialize the formatter with specified format strings. Initialize the formatter either with the specified format string, or a default as described above. Allow for specialized date formatting with the optional datefmt argument (if omitted, you get the ISO8601 format). s %(message)sN(t_fmttdatefmt(RjtfmtR{((s(/usr/lib64/python2.7/logging/__init__.pyRns  cCsV|j|j}|r-tj||}n%tjd|}d||jf}|S(s Return the creation time of the specified LogRecord as formatted text. This method should be called from format() by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behaviour is as follows: if datefmt (a string) is specified, it is used with time.strftime() to format the creation time of the record. Otherwise, the ISO8601 format is used. The resulting string is returned. This function uses a user-configurable function to convert the creation time to a tuple. By default, time.localtime() is used; to change this for a particular formatter instance, set the 'converter' attribute to a function with the same signature as time.localtime() or time.gmtime(). To change it for all formatters, for example if you want all logging times to be shown in GMT, set the 'converter' attribute in the Formatter class. s%Y-%m-%d %H:%M:%Ss%s,%03d(t converterRXRCtstrftimeRY(RjtrecordR{Rltstt((s(/usr/lib64/python2.7/logging/__init__.pyt formatTimes cCshtj}tj|d|d|dd||j}|j|ddkrd|d }n|S(s Format and return the specified exception information as a string. This default implementation just uses traceback.print_exception() iiiis N(t cStringIOtStringIOt tracebacktprint_exceptionRTtgetvaluetclose(RjteitsioR((s(/usr/lib64/python2.7/logging/__init__.pytformatExceptions %   cCs|jjddkS(sK Check if the format uses the creation time of the record. s %(asctime)i(Rztfind(Rj((s(/usr/lib64/python2.7/logging/__init__.pytusesTimescCsA|j|_|jr6|j||j|_ny|j|j}WnVtk r}y)|j j d|_ |j|j}Wqtk r|qXnX|j r|j s|j |j |_ qn|j r=|ddkr|d}ny||j }Wq=tk r9||j j tjd}q=Xn|S(sz Format the specified record as text. The record's attribute dictionary is used as the operand to a string formatting operation which yields the returned string. Before formatting the dictionary, a couple of preparatory steps are carried out. The message attribute of the record is computed using LogRecord.getMessage(). If the formatting string uses the time (as determined by a call to usesTime(), formatTime() is called to format the event time. If there is exception information, it is formatted using formatException() and appended to the message. sutf-8is treplace(RstmessageRRR{tasctimeRzRwtUnicodeDecodeErrorRDtdecodeR(RURRrR'tgetfilesystemencoding(RjRRte((s(/usr/lib64/python2.7/logging/__init__.pytformats.        N( RtRuRvRCt localtimeR}RTRnRRRR(((s(/usr/lib64/python2.7/logging/__init__.pyR[s(    cBs5eZdZddZdZdZdZRS(sB A formatter suitable for formatting a number of records. cCs|r||_n t|_dS(sm Optionally specify a formatter which will be used to format each individual record. N(tlinefmtt_defaultFormatter(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRns cCsdS(sE Return the header string for the specified records. R.((Rjtrecords((s(/usr/lib64/python2.7/logging/__init__.pyt formatHeaderscCsdS(sE Return the footer string for the specified records. R.((RjR((s(/usr/lib64/python2.7/logging/__init__.pyt formatFooter scCsld}t|dkrh||j|}x$|D]}||jj|}q2W||j|}n|S(sQ Format the specified records and return the result as a string. R.i(RFRRRR(RjRR;R((s(/usr/lib64/python2.7/logging/__init__.pyRs N(RtRuRvRTRnRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRs   cBs#eZdZddZdZRS(s Filter instances are used to perform arbitrary filtering of LogRecords. Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If initialized with the empty string, all events are passed. R.cCs||_t||_dS(s Initialize a filter. Initialize with the name of the logger which, together with its children, will have its events allowed through the filter. If no name is specified, allow every event. N(RDRFtnlen(RjRD((s(/usr/lib64/python2.7/logging/__init__.pyRn,s cCse|jdkrdS|j|jkr)dS|jj|jd|jdkrQdS|j|jdkS(s Determine if the specified record is to be logged. Is the specified record to be logged? Returns 0 for no, nonzero for yes. If deemed appropriate, the record may be modified in-place. iit.(RRDR(RjR((s(/usr/lib64/python2.7/logging/__init__.pytfilter7s$(RtRuRvRnR(((s(/usr/lib64/python2.7/logging/__init__.pyR!s  tFilterercBs2eZdZdZdZdZdZRS(s[ A base class for loggers and handlers which allows them to share common code. cCs g|_dS(sE Initialize the list of filters to be an empty list. N(tfilters(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRnKscCs&||jkr"|jj|ndS(s; Add the specified filter to this handler. N(Rtappend(RjR((s(/usr/lib64/python2.7/logging/__init__.pyt addFilterQscCs&||jkr"|jj|ndS(s@ Remove the specified filter from this handler. N(Rtremove(RjR((s(/usr/lib64/python2.7/logging/__init__.pyt removeFilterXscCs7d}x*|jD]}|j|sd}PqqW|S(s Determine if a record is loggable by consulting all the filters. The default is to allow the record to be logged; any filter can veto this and the record is then dropped. Returns a zero value if a record is to be dropped, else non-zero. ii(RR(RjRR;tf((s(/usr/lib64/python2.7/logging/__init__.pyR_s (RtRuRvRnRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRFs    cCswttt}}}|rs|rs|rsy6|z ||krO|j|nWd|XWqstk roqsXndS(sD Remove a handler reference from the internal cleanup list. N(R2R3t _handlerListRR:(twrR>R?thandlers((s(/usr/lib64/python2.7/logging/__init__.pyt_removeHandlerRefus   cCs3tztjtj|tWdtXdS(sL Add a handler to the internal cleanup list using a weak reference. N(R2RRtweakreftrefRR3(thandler((s(/usr/lib64/python2.7/logging/__init__.pyt_addHandlerRefscBseZdZedZdZdZeeeZdZ dZ dZ dZ dZ d Zd Zd Zd Zd ZdZRS(sq Handler instances dispatch logging events to specific destinations. The base handler class. Acts as a placeholder which defines the Handler interface. Handlers can optionally use Formatter instances to format records as desired. By default, no formatter is specified; in this case, the 'raw' message as determined by record.message is logged. cCsFtj|d|_t||_d|_t||jdS(sz Initializes the instance - basically setting the formatter to None and the filter list to empty. N( RRnRTt_nameR<R1t formatterRt createLock(RjR1((s(/usr/lib64/python2.7/logging/__init__.pyRns     cCs|jS(N(R(Rj((s(/usr/lib64/python2.7/logging/__init__.pytget_namescCsRtz<|jtkr&t|j=n||_|rB|t|(Rj((s(/usr/lib64/python2.7/logging/__init__.pyR>s cCs|jr|jjndS(s. Release the I/O thread lock. N(RR?(Rj((s(/usr/lib64/python2.7/logging/__init__.pyR?s cCst||_dS(s8 Set the logging level of this handler. N(R<R1(RjR1((s(/usr/lib64/python2.7/logging/__init__.pytsetLevelscCs(|jr|j}nt}|j|S(s Format the specified record. If a formatter is set, use it. Otherwise, use the default formatter for the module. (RRR(RjRR|((s(/usr/lib64/python2.7/logging/__init__.pyRs  cCstddS(s Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a NotImplementedError. s.emit must be implemented by Handler subclassesN(tNotImplementedError(RjR((s(/usr/lib64/python2.7/logging/__init__.pytemitscCsE|j|}|rA|jz|j|Wd|jXn|S(s< Conditionally emit the specified logging record. Emission depends on filters which may have been added to the handler. Wrap the actual emission of the record with acquisition/release of the I/O thread lock. Returns whether the filter passed the record for emission. N(RR>RR?(RjRR;((s(/usr/lib64/python2.7/logging/__init__.pythandles  cCs ||_dS(s5 Set the formatter for this handler. N(R(RjR|((s(/usr/lib64/python2.7/logging/__init__.pyt setFormatterscCsdS(s Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses. N((Rj((s(/usr/lib64/python2.7/logging/__init__.pytflush scCs?tz)|jr/|jtkr/t|j=nWdtXdS(s% Tidy up any resources used by the handler. This version removes the handler from an internal map of handlers, _handlers, which is used for handler lookup by name. Subclasses should ensure that this gets called from overridden close() methods. N(R2RRR3(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRs cCstrtjrtj}zdyLtj|d|d|ddtjtjjd|j|j fWnt k r}nXWd~XndS(sD Handle errors which occur during an emit() call. This method should be called from handlers when an exception is encountered during an emit() call. If raiseExceptions is false, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. iiisLogged from file %s, line %s N( traiseExceptionsR'tstderrR(RRRTtwriteRPRVtIOError(RjRR((s(/usr/lib64/python2.7/logging/__init__.pyt handleError#s     (RtRuRvRRnRRtpropertyRDRR>R?RRRRRRRR(((s(/usr/lib64/python2.7/logging/__init__.pyR s         cBs,eZdZddZdZdZRS(s A handler class which writes logging records, appropriately formatted, to a stream. Note that this class does not close the stream, as sys.stdout or sys.stderr may be used. cCs2tj||dkr%tj}n||_dS(sb Initialize the handler. If stream is not specified, sys.stderr is used. N(R RnRTR'Rtstream(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRnBs   cCsK|jz/|jr8t|jdr8|jjnWd|jXdS(s% Flushes the stream. RN(R>RRhRR?(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRMs  cCs-y|j|}|j}d}ts;|j||nyt|trt|ddrd}y|j||Wqtk r|j||j |j qXn|j||Wn+t k r|j||j dnX|j Wn-t tfk rn|j|nXdS(s Emit a record. If a formatter is specified, it is used to format the record. The record is then written to the stream with a trailing newline. If exception information is present, it is formatted using traceback.print_exception and appended to the stream. If the stream has an 'encoding' attribute, it is used to determine how to do the output to the stream. s%s tencodingu%s sUTF-8N(RRRpRR5tunicodetgetattrRTtUnicodeEncodeErrortencodeRRrRtKeyboardInterruptt SystemExitR(RjRRERtfstufs((s(/usr/lib64/python2.7/logging/__init__.pyRXs,   $ N(RtRuRvRTRnRR(((s(/usr/lib64/python2.7/logging/__init__.pyR;s cBs;eZdZddddZdZdZdZRS(sO A handler class which writes formatted logging records to disk files. taicCs~tdkrd}ntjj||_||_||_||_|rdt j |d|_ nt j ||j dS(sO Open the specified file and use it as the stream for logging. N(tcodecsRTRMRNtabspatht baseFilenametmodeRtdelayR RnRRt_open(RjRPRRR((s(/usr/lib64/python2.7/logging/__init__.pyRns       cCs|jzezP|jr\z|jWd|j}d|_t|drX|jnXnWdtj|XWd|jXdS(s$ Closes the stream. NR(R>RRRTRhRRR?(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRs    cCsI|jdkr't|j|j}ntj|j|j|j}|S(sx Open the current base file with the (original) mode and encoding. Return the resulting stream. N(RRTtopenRRR(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRscCs5|jdkr!|j|_ntj||dS(s Emit a record. If the stream was not opened because 'delay' was specified in the constructor, open it before calling the superclass's emit. N(RRTRRR(RjR((s(/usr/lib64/python2.7/logging/__init__.pyRsN(RtRuRvRTRnRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRs   t PlaceHoldercBs eZdZdZdZRS(s PlaceHolder instances are used in the Manager logger hierarchy to take the place of nodes for which no loggers have been defined. This class is intended for internal use only and not as part of the public API. cCsid|6|_dS(sY Initialize with the specified logger being a child of this placeholder. N(RTt loggerMap(Rjtalogger((s(/usr/lib64/python2.7/logging/__init__.pyRnscCs#||jkrd|j||tkr4t|ts4td|jq4n|adS(s Set the class to be used when instantiating a logger. The class should define __init__() such that only a name argument is required, and the __init__() should call Logger.__init__() s(logger not derived from logging.Logger: N(R t issubclassR:Rtt _loggerClass(tklass((s(/usr/lib64/python2.7/logging/__init__.pyR"s  cCstS(sB Return the class to be used when instantiating a logger. (R(((s(/usr/lib64/python2.7/logging/__init__.pyRstManagercBs;eZdZdZdZdZdZdZRS(st There is [under normal circumstances] just one Manager instance, which holds the hierarchy of loggers. cCs1||_d|_d|_i|_d|_dS(sT Initialize the manager with the root node of the logger hierarchy. iN(trootRtemittedNoHandlerWarningt loggerDictRTt loggerClass(Rjtrootnode((s(/usr/lib64/python2.7/logging/__init__.pyRns     cCsd}t|ts$tdnt|trE|jd}ntz||jkr|j|}t|tr|}|j pt |}||_ ||j|<|j |||j |qn8|j pt |}||_ ||j|<|j |WdtX|S(s Get a logger with the specified name (channel name), creating it if it doesn't yet exist. This name is a dot-separated hierarchical name, such as "a", "a.b", "a.b.c" or similar. If a PlaceHolder existed for the specified name [i.e. the logger didn't exist but a child of it did], replace it with the created logger and fix up the parent/child references which pointed to the placeholder to now point to the logger. s'A logger name must be string or Unicodesutf-8N(RTR5RqR:RRR2RRRRtmanagert_fixupChildrent _fixupParentsR3(RjRDR;tph((s(/usr/lib64/python2.7/logging/__init__.pyRs,      cCsA|tkr4t|ts4td|jq4n||_dS(sY Set the class to be used when instantiating a logger with this Manager. s(logger not derived from logging.Logger: N(R RR:RtR(RjR((s(/usr/lib64/python2.7/logging/__init__.pyR",s  cCs|j}|jd}d}x|dkr| r|| }||jkrct||j|RRRR9R?R(t handlerListRth((s(/usr/lib64/python2.7/logging/__init__.pytshutdown|s   cBs)eZdZdZdZdZRS(s This handler does nothing. It's intended to be used to avoid the "No handlers could be found for logger XXX" one-off warning. This is important for library code, which may contain code to log events. If a user of the library does not configure logging, the one-off warning might be produced; to avoid this, the library developer simply needs to instantiate a NullHandler and add it to the top-level logger of the library module or package. cCsdS(N((RjR((s(/usr/lib64/python2.7/logging/__init__.pyRscCsdS(N((RjR((s(/usr/lib64/python2.7/logging/__init__.pyRscCs d|_dS(N(RTR(Rj((s(/usr/lib64/python2.7/logging/__init__.pyRs(RtRuRvRRR(((s(/usr/lib64/python2.7/logging/__init__.pyRs   cCs|dk r7tdk rt||||||qnStj|||||}td}|jsz|jtn|jd|dS(s Implementation of showwarnings which redirects to logging, which will first check to see if the file parameter is None. If a file is specified, it will delegate to the original warnings implementation of showwarning. Otherwise, it will call warnings.formatwarning and will log the resulting string to a warnings logger named "py.warnings" with level logging.WARNING. s py.warningss%sN( RTt_warnings_showwarningtwarningst formatwarningRRRRR$(RtcategoryRPRVtfiletlineRR((s(/usr/lib64/python2.7/logging/__init__.pyt _showwarnings    cCsL|r*tdkrHtjatt_qHntdk rHtt_dandS(s If capture is true, redirect all warnings to the logging package. If capture is False, ensure that warnings are not redirected to logging but to their original destinations. N(RRTRt showwarningR(tcapture((s(/usr/lib64/python2.7/logging/__init__.pyRs    (bRvR'RMRCRRRRRGt__all__Rt ImportErrorRTR]R_t __author__t __status__t __version__t__date__RtTrueRpt NameErrortFalseR+RhRNRt__code__RRRZRR\RbRgRRRRRR RRR/RRR<RR=R2R3tobjectR R!RRRRRtWeakValueDictionaryRRRRR RRRRR"RRR R R RRRRRRRRRR$R#RRR RRtatexittregisterRRRR(((s(/usr/lib64/python2.7/logging/__init__.pyts`                k  *%,   GH f `   <            PK |1]9ʚʚ handlers.pycnu[ {fc@s"dZddlZddlZddlZddlZddlZddlZddlZddlZddl m Z m Z m Z yddl Z Wnek rdZ nXyeeZWnek reZnXdZdZdZdZdZdZd$Zd ejfd YZd efdYZdefdYZdejfdYZ dej!fdYZ"de"fdYZ#dej!fdYZ$dej!fdYZ%dej!fdYZ&dej!fdYZ'dej!fd YZ(d!e(fd"YZ)dS(%s Additional handlers for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2013 Vinay Sajip. All Rights Reserved. To use, simply 'import logging.handlers' and log away! iN(tST_DEVtST_INOtST_MTIMEi<#i=#i>#i?#iii<tBaseRotatingHandlercBs&eZdZdddZdZRS(s Base class for handlers that rotate log files at a certain point. Not meant to be instantiated directly. Instead, use RotatingFileHandler or TimedRotatingFileHandler. icCsGtdkrd}ntjj|||||||_||_dS(sA Use the specified filename for streamed logging N(tcodecstNonetloggingt FileHandlert__init__tmodetencoding(tselftfilenameR R tdelay((s(/usr/lib64/python2.7/logging/handlers.pyR:s    cCsgy3|j|r|jntjj||Wn-ttfk rOn|j|nXdS(s Emit a record. Output the record to the file, catering for rollover as described in doRollover(). N(tshouldRollovert doRolloverRRtemittKeyboardInterruptt SystemExitt handleError(R trecord((s(/usr/lib64/python2.7/logging/handlers.pyRDs N(t__name__t __module__t__doc__RRR(((s(/usr/lib64/python2.7/logging/handlers.pyR4s tRotatingFileHandlercBs8eZdZddddddZdZdZRS(s Handler for logging to a set of files, which switches from one file to the next when the current file reaches a certain size. taicCsD|dkrd}ntj|||||||_||_dS(s Open the specified file and use it as the stream for logging. By default, the file grows indefinitely. You can specify particular values of maxBytes and backupCount to allow the file to rollover at a predetermined size. Rollover occurs whenever the current log file is nearly maxBytes in length. If backupCount is >= 1, the system will successively create new files with the same pathname as the base file, but with extensions ".1", ".2" etc. appended to it. For example, with a backupCount of 5 and a base file name of "app.log", you would get "app.log", "app.log.1", "app.log.2", ... through to "app.log.5". The file being written to is always "app.log" - when it gets filled up, it is closed and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc. exist, then they are renamed to "app.log.2", "app.log.3" etc. respectively. If maxBytes is zero, rollover never occurs. iRN(RRtmaxBytest backupCount(R R R RRR R ((s(/usr/lib64/python2.7/logging/handlers.pyRYs    cCsB|jr"|jjd|_n|jdkr#xt|jdddD]w}d|j|f}d|j|df}tjj|rKtjj|rtj |ntj ||qKqKW|jd}tjj|rtj |ntjj|jr#tj |j|q#n|j s>|j |_ndS(s< Do a rollover, as described in __init__(). iiis%s.%ds.1N( tstreamtcloseRRtranget baseFilenametostpathtexiststremovetrenameR t_open(R titsfntdfn((s(/usr/lib64/python2.7/logging/handlers.pyRys$      cCs|jdkr!|j|_n|jdkrd|j|}|jjdd|jjt||jkrdSndS(s Determine if rollover should occur. Basically, see if the supplied record would cause the file to exceed the size limit we have. is%s iiN(RRR%Rtformattseekttelltlen(R Rtmsg((s(/usr/lib64/python2.7/logging/handlers.pyRs"N(RRRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRTs tTimedRotatingFileHandlercBsMeZdZdddd eedZdZdZdZdZ RS( s Handler for logging to a file, rotating the log file at certain timed intervals. If backupCount is > 0, when rollover is done, no more than backupCount files are kept - the oldest ones are deleted. thiic Cs2tj||d|||j|_||_||_|jdkrgd|_d|_d|_nV|jdkrd|_d|_d |_n)|jd krd|_d |_d |_n|jd ks|jdkrd|_d|_d|_n|jj drd|_t |jdkrCt d|jn|jddksi|jddkrt d|jnt |jd|_ d|_d|_nt d|jtj|j|_|j||_tjj|r tj|t}nt tj}|j||_dS( NRtSis%Y-%m-%d_%H-%M-%Ss%^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}$tMi<s%Y-%m-%d_%H-%Ms^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}$tHs %Y-%m-%d_%Hs^\d{4}-\d{2}-\d{2}_\d{2}$tDtMIDNIGHTis%Y-%m-%ds^\d{4}-\d{2}-\d{2}$tWiisHYou must specify a day for weekly rollover from 0 to 6 (0 is Monday): %st0t6s-Invalid day specified for weekly rollover: %ss'Invalid rollover interval specified: %siiiQiiQi: (RRtuppertwhenRtutctintervaltsuffixtextMatcht startswithR,t ValueErrortintt dayOfWeektretcompileR R!R"tstatRttimetcomputeRollovert rolloverAt( R R R9R;RR R R:tt((s(/usr/lib64/python2.7/logging/handlers.pyRsH               &  cCsq||j}|jdks.|jjdrm|jrItj|}ntj|}|d}|d}|d}t|d|d|}||}|jjdrm|d}||jkrj||jkr|j|} nd||jd} || d} |js^|d } tj| d } | | kr^| sHd } nd } | | 7} q^n| }qjqmn|S(sI Work out the rollover time based on the specified time. R4R5iiii<iiiiiiiiQ( R;R9R>R:REtgmtimet localtimet _MIDNIGHTRA(R t currentTimetresultRHt currentHourt currentMinutet currentSecondtrtdayt daysToWaitt newRolloverAttdstNowt dstAtRollovertaddend((s(/usr/lib64/python2.7/logging/handlers.pyRFs8 !          cCs)ttj}||jkr%dSdS(s Determine if rollover should occur. record is not used, as we are just comparing times, but it is needed so the method signatures are the same ii(R@RERG(R RRH((s(/usr/lib64/python2.7/logging/handlers.pyRsc Cstjj|j\}}tj|}g}|d}t|}x\|D]T}|| |krM||}|jj|r|jtjj ||qqMqMW|j t||j krg}n|t||j  }|S(s Determine the files to delete when rolling over. More specific than the earlier method, which just used glob.glob(). t.( R R!tsplitRtlistdirR,R=tmatchtappendtjointsortR( R tdirNametbaseNamet fileNamesRMtprefixtplentfileNameR<((s(/usr/lib64/python2.7/logging/handlers.pytgetFilesToDelete(s    &  c Cs+|jr"|jjd|_nttj}tj|d}|j|j}|jrrtj |}nPtj|}|d}||kr|rd}nd}tj||}n|j dtj |j |}t jj|rt j|nt jj|j r/t j|j |n|jdkrex$|jD]}t j|qKWn|js|j|_n|j|} x| |kr| |j} qW|jdks|jjdr|j rtj| d} || kr|sd}nd}| |7} qn| |_dS( sx do a rollover; in this case, a date/time stamp is appended to the filename when the rollover happens. However, you want the file to be named for the start of the interval, not the current time. If there is a backup count, then we have to get a list of matching filenames, sort them and remove the one with the oldest suffix. iiiRXiR4R5N(RRRR@RERJRGR;R:RIRtstrftimeR<R R!R"R#R$RReR R%RFR9R>( R RLRURHt timeTupletdstThenRWR(tsRTRV((s(/usr/lib64/python2.7/logging/handlers.pyR?sH         +  N( RRRRtFalseRRFRReR(((s(/usr/lib64/python2.7/logging/handlers.pyR.s 5 < tWatchedFileHandlercBs2eZdZddddZdZdZRS(s A handler for logging to a file, which watches the file to see if it has changed while in use. This can happen because of usage of programs such as newsyslog and logrotate which perform log file rotation. This handler, intended for use under Unix, watches the file to see if it has changed since the last emit. (A file has changed if its device or inode have changed.) If it has changed, the old file stream is closed, and the file opened to get a new stream. This handler is not appropriate for use under Windows, because under Windows open files cannot be moved or renamed - logging opens the files with exclusive locks - and so there is no need for such a handler. Furthermore, ST_INO is not supported under Windows; stat always returns zero for this value. This handler is based on a suggestion and patch by Chad J. Schroeder. RicCs<tjj|||||d\|_|_|jdS(Ni(ii(RRRtdevtinot _statstream(R R R R R ((s(/usr/lib64/python2.7/logging/handlers.pyRscCsC|jr?tj|jj}|t|t|_|_ndS(N(RR tfstattfilenoRRRlRm(R tsres((s(/usr/lib64/python2.7/logging/handlers.pyRns cCsytj|j}Wn1tk rI}|jtjkrCd}qJnX| sw|t|jksw|t |j kr|j dk r|j j |j j d|_ |j|_ |jqntjj||dS(s Emit a record. First check if the underlying file has changed, and if it has, close the old stream and reopen the file to get the current stream. N(R RDRtOSErrorterrnotENOENTRRRlRRmRtflushRR%RnRRR(R RRqterr((s(/usr/lib64/python2.7/logging/handlers.pyRs  -   N(RRRRRRnR(((s(/usr/lib64/python2.7/logging/handlers.pyRkrs t SocketHandlercBsYeZdZdZddZdZdZdZdZdZ d Z RS( s A handler class which writes logging records, in pickle format, to a streaming socket. The socket is kept open across logging calls. If the peer resets it, an attempt is made to reconnect on the next call. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCs\tjj|||_||_d|_d|_d|_d|_ d|_ d|_ dS(s  Initializes the handler with a specific host address and port. The attribute 'closeOnError' is set to 1 - which means that if a socket error occurs, the socket is silently closed and then reopened on the next logging call. ig?g>@g@N( RtHandlerRthosttportRtsockt closeOnErrort retryTimet retryStarttretryMaxt retryFactor(R RyRz((s(/usr/lib64/python2.7/logging/handlers.pyRs       icCsTtjtjtj}t|dr7|j|n|j|j|jf|S(sr A factory method which allows subclasses to define the precise type of socket they want. t settimeout(tsockettAF_INETt SOCK_STREAMthasattrRtconnectRyRz(R ttimeoutRi((s(/usr/lib64/python2.7/logging/handlers.pyt makeSockets cCstj}|jdkr$d}n||jk}|ry|j|_d|_Wqtjk r|jdkr|j|_n4|j|j |_|j|j kr|j |_n||j|_qXndS(s Try to create a socket, using an exponential backoff with a max retry time. Thanks to Robert Olson for the original patch (SF #815911) which has been slightly refactored. iN( RER}RRR{RterrorR~t retryPeriodRR(R tnowtattempt((s(/usr/lib64/python2.7/logging/handlers.pyt createSockets   cCs|jdkr|jn|jryxt|jdrM|jj|nOd}t|}x:|dkr|jj||}||}||}qbWWqtjk r|jj d|_qXndS(s Send a pickled string to the socket. This function allows for partial sends which can happen when the network is busy. tsendalliN( R{RRRRR,tsendRRR(R Rit sentsofartlefttsent((s(/usr/lib64/python2.7/logging/handlers.pyRs     cCs|j}|r*|j|}d|_nt|j}|j|dLN( texc_infoR)Rtdictt__dict__t getMessagetcPickletdumpststructtpackR,(R RteitdummytdRitslen((s(/usr/lib64/python2.7/logging/handlers.pyt makePickles    cCsB|jr+|jr+|jjd|_ntjj||dS(s Handle an error during logging. An error has occurred during logging. Most likely cause - connection lost. Close the socket so that we can retry on the next event. N(R|R{RRRRxR(R R((s(/usr/lib64/python2.7/logging/handlers.pyR*s  cCsTy |j|}|j|Wn-ttfk r<n|j|nXdS(s Emit a record. Pickles the record and writes it to the socket in binary format. If there is an error with the socket, silently drop the packet. If there was a problem with the socket, re-establishes the socket. N(RRRRR(R RRi((s(/usr/lib64/python2.7/logging/handlers.pyR8s cCsU|jz)|j}|r2d|_|jnWd|jXtjj|dS(s$ Closes the socket. N(tacquireR{RRtreleaseRRx(R R{((s(/usr/lib64/python2.7/logging/handlers.pyRIs    ( RRRRRRRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRws       tDatagramHandlercBs)eZdZdZdZdZRS(s A handler class which writes logging records, in pickle format, to a datagram socket. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCs tj|||d|_dS(sP Initializes the handler with a specific host address and port. iN(RwRR|(R RyRz((s(/usr/lib64/python2.7/logging/handlers.pyRbscCstjtjtj}|S(su The factory method of SocketHandler is here overridden to create a UDP socket (SOCK_DGRAM). (RRt SOCK_DGRAM(R Ri((s(/usr/lib64/python2.7/logging/handlers.pyRiscCs?|jdkr|jn|jj||j|jfdS(s Send a pickled string to a socket. This function no longer allows for partial sends which can happen when the network is busy - UDP does not guarantee delivery and can deliver packets out of sequence. N(R{RRtsendtoRyRz(R Ri((s(/usr/lib64/python2.7/logging/handlers.pyRqs (RRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRWs   t SysLogHandlercBseZdZdZdZdZdZdZdZdZ dZ dZ dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZi ed6ed6ed6e d6ed6ed6ed6e d6ed6ed6ed6ed 6Zied!6ed"6ed#6ed$6ed%6e d&6ed'6e d(6ed)6ed*6ed+6e d,6ed-6ed.6ed/6ed06ed16ed26ed36ed46ed56Z idd66dd76d d86dd96dd:6Z!d;e"fe dCd<Z$d=Z%d>Z&d?Z'd@Z(dAZ)dBZ*RS(Ds A handler class which sends formatted logging records to a syslog server. Based on Sam Rushing's syslog module: http://www.nightmare.com/squirl/python-ext/misc/syslog.py Contributed by Nicolas Untz (after which minor refactoring changes have been made). iiiiiiiiii i i iiiiiiiitalerttcrittcriticaltdebugtemergRvRtinfotnoticetpanictwarntwarningtauthtauthprivtcrontdaemontftptkerntlprtmailtnewstsecuritytsyslogtusertuucptlocal0tlocal1tlocal2tlocal3tlocal4tlocal5tlocal6tlocal7tDEBUGtINFOtWARNINGtERRORtCRITICALt localhostcCs|tjj|||_||_||_t|trSd|_|j |n%t |_|dkrtt j }n|\}}t j||d|}|st jdnx|D]}|\}}} } } d} } y9t j ||| } |t jkr| j| nPWqt jk rL}|} | dk rM| jqMqXqW| dk rf| n| |_ ||_dS(s Initialize a handler. If address is specified as a string, a UNIX socket is used. To log to a local syslogd, "SysLogHandler(address="/dev/log")" can be used. If facility is not specified, LOG_USER is used. If socktype is specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific socket type will be used. For Unix sockets, you can also specify a socktype of None, in which case socket.SOCK_DGRAM will be used, falling back to socket.SOCK_STREAM. iis!getaddrinfo returns an empty listN(RRxRtaddresstfacilitytsocktypet isinstancet basestringt unixsockett_connect_unixsocketRjRRRt getaddrinfoRRRR(R RRRRyRztresstrestaftprotot_tsaRvR{texc((s(/usr/lib64/python2.7/logging/handlers.pyRs<               cCs|j}|dkr!tj}ntjtj||_y|jj|||_Wntjk r|jj|jdk rntj}tjtj||_y|jj|||_Wqtjk r|jjqXnXdS(N( RRRRtAF_UNIXRRRR(R Rt use_socktype((s(/usr/lib64/python2.7/logging/handlers.pyRs&        s<%d>%scCsJt|tr|j|}nt|tr>|j|}n|d>|BS(s Encode the facility and priority. You can pass in strings or integers - if strings are passed, the facility_names and priority_names mapping dictionaries are used to convert them to integers. i(RRtfacility_namestpriority_names(R Rtpriority((s(/usr/lib64/python2.7/logging/handlers.pytencodePriority1s cCsI|jz|jr&|jjnWd|jXtjj|dS(s$ Closes the socket. N(RRRRRRRx(R ((s(/usr/lib64/python2.7/logging/handlers.pyR>s    cCs|jj|dS(sK Map a logging level name to a key in the priority_names map. This is useful in two scenarios: when custom levels are being used, and in the case where you can't do a straightforward mapping by lowercasing the logging level name because of locale- specific issues (see SF #1524081). R(t priority_maptget(R t levelName((s(/usr/lib64/python2.7/logging/handlers.pyt mapPriorityJscCs=y |j|d}d|j|j|j|j}t|tkr_|jd}n||}|jry|j j |Wqt j k r|j j |j |j|j j |qXn;|jt jkr|j j||jn|j j|Wn-ttfk r%n|j|nXdS(s Emit a record. The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. ss<%d>sutf-8N(R)RRRt levelnamettypetunicodetencodeRRRRRRRRRRRRRR(R RR-tprio((s(/usr/lib64/python2.7/logging/handlers.pyRTs*   N(+RRRt LOG_EMERGt LOG_ALERTtLOG_CRITtLOG_ERRt LOG_WARNINGt LOG_NOTICEtLOG_INFOt LOG_DEBUGtLOG_KERNtLOG_USERtLOG_MAILt LOG_DAEMONtLOG_AUTHt LOG_SYSLOGtLOG_LPRtLOG_NEWStLOG_UUCPtLOG_CRONt LOG_AUTHPRIVtLOG_FTPt LOG_LOCAL0t LOG_LOCAL1t LOG_LOCAL2t LOG_LOCAL3t LOG_LOCAL4t LOG_LOCAL5t LOG_LOCAL6t LOG_LOCAL7RRRtSYSLOG_UDP_PORTRRRtlog_format_stringRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyR}s     .  t SMTPHandlercBs/eZdZdddZdZdZRS(sK A handler class which sends an SMTP email for each logging event. cCstjj|t|ttfr:|\|_|_n|d|_|_t|ttfrw|\|_ |_ n d|_ ||_ t|t r|g}n||_ ||_||_d|_dS(s  Initialize the handler. Initialize the instance with the from and to addresses and subject line of the email. To specify a non-standard SMTP port, use the (host, port) tuple format for the mailhost argument. To specify authentication credentials, supply a (username, password) tuple for the credentials argument. To specify the use of a secure protocol (TLS), pass in a tuple for the secure argument. This will only be used when authentication credentials are supplied. The tuple will be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the `starttls` method). g@N(RRxRRtlistttupletmailhosttmailportRtusernametpasswordtfromaddrRttoaddrstsubjecttsecuret_timeout(R R RRRt credentialsR((s(/usr/lib64/python2.7/logging/handlers.pyR{s      cCs|jS(s Determine the subject for the email. If you want to specify a subject line which is record-dependent, override this method. (R(R R((s(/usr/lib64/python2.7/logging/handlers.pyt getSubjectscCsKyddl}ddlm}|j}|s:|j}n|j|j|d|j}|j|}d|j dj |j |j |||f}|j r|jdk r|j|j|j|jn|j|j |jn|j|j |j ||jWn-ttfk r3n|j|nXdS(sd Emit a record. Format the record and send it to the specified addressees. iN(t formatdateRs-From: %s To: %s Subject: %s Date: %s %st,(tsmtplibt email.utilsRR t SMTP_PORTtSMTPR RR)RR]RRR RRtehlotstarttlstloginRtsendmailtquitRRR(R RRRRztsmtpR-((s(/usr/lib64/python2.7/logging/handlers.pyRs2       N(RRRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRws tNTEventLogHandlercBsJeZdZdddZdZdZdZdZdZ RS( s A handler class which sends events to the NT Event Log. Adds a registry entry for the specified application name. If no dllname is provided, win32service.pyd (which contains some basic message placeholders) is used. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own DLL which contains the message definitions you want to use in the event log. t ApplicationcCs2tjj|yddl}ddl}||_||_|stjj |jj }tjj |d}tjj |dd}n||_ ||_ |jj||||j|_i|jtj6|jtj6|jtj6|jtj6|jtj6|_Wntk r-dGHd|_nXdS(Niiswin32service.pydsWThe Python Win32 extensions for NT (service, event logging) appear not to be available.(RRxRtwin32evtlogutilt win32evtlogtappnamet_weluR R!RYt__file__R]tdllnametlogtypetAddSourceToRegistrytEVENTLOG_ERROR_TYPEtdeftypetEVENTLOG_INFORMATION_TYPERRtEVENTLOG_WARNING_TYPERRRttypemapt ImportErrorR(R R&R)R*R$R%((s(/usr/lib64/python2.7/logging/handlers.pyRs,          cCsdS(sy Return the message ID for the event record. If you are using your own messages, you could do this by having the msg passed to the logger being an ID rather than a formatting string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in win32service.pyd. i((R R((s(/usr/lib64/python2.7/logging/handlers.pyt getMessageIDscCsdS(s Return the event category for the record. Override this if you want to specify your own categories. This version returns 0. i((R R((s(/usr/lib64/python2.7/logging/handlers.pytgetEventCategoryscCs|jj|j|jS(s Return the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in __init__() to a dictionary which contains mappings for DEBUG, INFO, WARNING, ERROR and CRITICAL. If you are using your own levels you will either need to override this method or place a suitable dictionary in the handler's typemap attribute. (R0RtlevelnoR-(R R((s(/usr/lib64/python2.7/logging/handlers.pyt getEventTypes cCs|jryb|j|}|j|}|j|}|j|}|jj|j||||gWqttfk rq|j |qXndS(s Emit a record. Determine the message ID, event category and event type. Then log the message in the NT event log. N( R'R2R3R5R)t ReportEventR&RRR(R RtidtcatRR-((s(/usr/lib64/python2.7/logging/handlers.pyR s &cCstjj|dS(sS Clean up this handler. You can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the DLL name. N(RRxR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRs N( RRRRRR2R3R5RR(((s(/usr/lib64/python2.7/logging/handlers.pyR"s  t HTTPHandlercBs,eZdZddZdZdZRS(s^ A class which sends records to a Web server, using either GET or POST semantics. tGETcCsVtjj||j}|dkr7tdn||_||_||_dS(sr Initialize the instance with the host, the request URL, and the method ("GET" or "POST") R:tPOSTsmethod must be GET or POSTN(R:R;(RRxRR8R?Ryturltmethod(R RyR<R=((s(/usr/lib64/python2.7/logging/handlers.pyR.s    cCs|jS(s Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner. (R(R R((s(/usr/lib64/python2.7/logging/handlers.pyt mapLogRecord;sc CsyTddl}ddl}|j}|j|}|j}|j|j|}|jdkr|jddkrd}nd}|d||f}n|j |j||jd} | dkr|| }n|j d ||jd kr'|j d d |j d t t |n|j |jd krB|nd|jWn-ttfk rpn|j|nXdS(sk Emit a record. Send the record to the Web server as a percent-encoded dictionary iNR:t?it&s%c%st:tHostR;s Content-types!application/x-www-form-urlencodedsContent-length(thttplibturllibRytHTTPR<t urlencodeR>R=tfindt putrequestt putheadertstrR,t endheadersRtgetreplyRRR( R RRCRDRyR/R<tdatatsepR&((s(/usr/lib64/python2.7/logging/handlers.pyRCs4      "(RRRRR>R(((s(/usr/lib64/python2.7/logging/handlers.pyR9)s tBufferingHandlercBs;eZdZdZdZdZdZdZRS(s A handler class which buffers logging records in memory. Whenever each record is added to the buffer, a check is made to see if the buffer should be flushed. If it should, then flush() is expected to do what's needed. cCs&tjj|||_g|_dS(s> Initialize the handler with the buffer size. N(RRxRtcapacitytbuffer(R RP((s(/usr/lib64/python2.7/logging/handlers.pyRms cCst|j|jkS(s Should the handler flush its buffer? Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies. (R,RQRP(R R((s(/usr/lib64/python2.7/logging/handlers.pyt shouldFlushuscCs0|jj||j|r,|jndS(s Emit a record. Append the record. If shouldFlush() tells us to, call flush() to process the buffer. N(RQR\RRRu(R R((s(/usr/lib64/python2.7/logging/handlers.pyR~scCs)|jz g|_Wd|jXdS(sw Override to implement custom flushing behaviour. This version just zaps the buffer to empty. N(RRQR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRus  cCs&z|jWdtjj|XdS(sp Close the handler. This version just flushes and chains to the parent class' close(). N(RuRRxR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRs(RRRRRRRRuR(((s(/usr/lib64/python2.7/logging/handlers.pyROgs   t MemoryHandlercBsDeZdZejddZdZdZdZ dZ RS(s A handler class which buffers logging records in memory, periodically flushing them to a target handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen. cCs&tj||||_||_dS(s Initialize the handler with the buffer size, the level at which flushing should occur and an optional target. Note that without a target being set either here or via setTarget(), a MemoryHandler is no use to anyone! N(RORt flushLevelttarget(R RPRTRU((s(/usr/lib64/python2.7/logging/handlers.pyRs cCs(t|j|jkp'|j|jkS(sP Check for buffer full or a record at the flushLevel or higher. (R,RQRPR4RT(R R((s(/usr/lib64/python2.7/logging/handlers.pyRRscCs ||_dS(s: Set the target handler for this handler. N(RU(R RU((s(/usr/lib64/python2.7/logging/handlers.pyt setTargetscCsY|jz=|jrFx!|jD]}|jj|q Wg|_nWd|jXdS(s For a MemoryHandler, flushing means just sending the buffered records to the target, if there is one. Override if you want different behaviour. N(RRURQthandleR(R R((s(/usr/lib64/python2.7/logging/handlers.pyRus  cCsHz|jWd|jzd|_tj|Wd|jXXdS(sD Flush, set the target to None and lose the buffer. N(RuRRRURORR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRs  N( RRRRRRRRRRVRuR(((s(/usr/lib64/python2.7/logging/handlers.pyRSs    iiQ(*RRsRRR RRRERBRDRRRRR1RRtTruet_unicodet NameErrorRjtDEFAULT_TCP_LOGGING_PORTtDEFAULT_UDP_LOGGING_PORTtDEFAULT_HTTP_LOGGING_PORTtDEFAULT_SOAP_LOGGING_PORTRtSYSLOG_TCP_PORTRKRRRR.RkRxRwRRRR"R9RORS(((s(/usr/lib64/python2.7/logging/handlers.pyts<`      N>&Nd>9PK |1]9ʚʚ handlers.pyonu[ {fc@s"dZddlZddlZddlZddlZddlZddlZddlZddlZddl m Z m Z m Z yddl Z Wnek rdZ nXyeeZWnek reZnXdZdZdZdZdZdZd$Zd ejfd YZd efdYZdefdYZdejfdYZ dej!fdYZ"de"fdYZ#dej!fdYZ$dej!fdYZ%dej!fdYZ&dej!fdYZ'dej!fd YZ(d!e(fd"YZ)dS(%s Additional handlers for the logging package for Python. The core package is based on PEP 282 and comments thereto in comp.lang.python. Copyright (C) 2001-2013 Vinay Sajip. All Rights Reserved. To use, simply 'import logging.handlers' and log away! iN(tST_DEVtST_INOtST_MTIMEi<#i=#i>#i?#iii<tBaseRotatingHandlercBs&eZdZdddZdZRS(s Base class for handlers that rotate log files at a certain point. Not meant to be instantiated directly. Instead, use RotatingFileHandler or TimedRotatingFileHandler. icCsGtdkrd}ntjj|||||||_||_dS(sA Use the specified filename for streamed logging N(tcodecstNonetloggingt FileHandlert__init__tmodetencoding(tselftfilenameR R tdelay((s(/usr/lib64/python2.7/logging/handlers.pyR:s    cCsgy3|j|r|jntjj||Wn-ttfk rOn|j|nXdS(s Emit a record. Output the record to the file, catering for rollover as described in doRollover(). N(tshouldRollovert doRolloverRRtemittKeyboardInterruptt SystemExitt handleError(R trecord((s(/usr/lib64/python2.7/logging/handlers.pyRDs N(t__name__t __module__t__doc__RRR(((s(/usr/lib64/python2.7/logging/handlers.pyR4s tRotatingFileHandlercBs8eZdZddddddZdZdZRS(s Handler for logging to a set of files, which switches from one file to the next when the current file reaches a certain size. taicCsD|dkrd}ntj|||||||_||_dS(s Open the specified file and use it as the stream for logging. By default, the file grows indefinitely. You can specify particular values of maxBytes and backupCount to allow the file to rollover at a predetermined size. Rollover occurs whenever the current log file is nearly maxBytes in length. If backupCount is >= 1, the system will successively create new files with the same pathname as the base file, but with extensions ".1", ".2" etc. appended to it. For example, with a backupCount of 5 and a base file name of "app.log", you would get "app.log", "app.log.1", "app.log.2", ... through to "app.log.5". The file being written to is always "app.log" - when it gets filled up, it is closed and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc. exist, then they are renamed to "app.log.2", "app.log.3" etc. respectively. If maxBytes is zero, rollover never occurs. iRN(RRtmaxBytest backupCount(R R R RRR R ((s(/usr/lib64/python2.7/logging/handlers.pyRYs    cCsB|jr"|jjd|_n|jdkr#xt|jdddD]w}d|j|f}d|j|df}tjj|rKtjj|rtj |ntj ||qKqKW|jd}tjj|rtj |ntjj|jr#tj |j|q#n|j s>|j |_ndS(s< Do a rollover, as described in __init__(). iiis%s.%ds.1N( tstreamtcloseRRtranget baseFilenametostpathtexiststremovetrenameR t_open(R titsfntdfn((s(/usr/lib64/python2.7/logging/handlers.pyRys$      cCs|jdkr!|j|_n|jdkrd|j|}|jjdd|jjt||jkrdSndS(s Determine if rollover should occur. Basically, see if the supplied record would cause the file to exceed the size limit we have. is%s iiN(RRR%Rtformattseekttelltlen(R Rtmsg((s(/usr/lib64/python2.7/logging/handlers.pyRs"N(RRRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRTs tTimedRotatingFileHandlercBsMeZdZdddd eedZdZdZdZdZ RS( s Handler for logging to a file, rotating the log file at certain timed intervals. If backupCount is > 0, when rollover is done, no more than backupCount files are kept - the oldest ones are deleted. thiic Cs2tj||d|||j|_||_||_|jdkrgd|_d|_d|_nV|jdkrd|_d|_d |_n)|jd krd|_d |_d |_n|jd ks|jdkrd|_d|_d|_n|jj drd|_t |jdkrCt d|jn|jddksi|jddkrt d|jnt |jd|_ d|_d|_nt d|jtj|j|_|j||_tjj|r tj|t}nt tj}|j||_dS( NRtSis%Y-%m-%d_%H-%M-%Ss%^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}$tMi<s%Y-%m-%d_%H-%Ms^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}$tHs %Y-%m-%d_%Hs^\d{4}-\d{2}-\d{2}_\d{2}$tDtMIDNIGHTis%Y-%m-%ds^\d{4}-\d{2}-\d{2}$tWiisHYou must specify a day for weekly rollover from 0 to 6 (0 is Monday): %st0t6s-Invalid day specified for weekly rollover: %ss'Invalid rollover interval specified: %siiiQiiQi: (RRtuppertwhenRtutctintervaltsuffixtextMatcht startswithR,t ValueErrortintt dayOfWeektretcompileR R!R"tstatRttimetcomputeRollovert rolloverAt( R R R9R;RR R R:tt((s(/usr/lib64/python2.7/logging/handlers.pyRsH               &  cCsq||j}|jdks.|jjdrm|jrItj|}ntj|}|d}|d}|d}t|d|d|}||}|jjdrm|d}||jkrj||jkr|j|} nd||jd} || d} |js^|d } tj| d } | | kr^| sHd } nd } | | 7} q^n| }qjqmn|S(sI Work out the rollover time based on the specified time. R4R5iiii<iiiiiiiiQ( R;R9R>R:REtgmtimet localtimet _MIDNIGHTRA(R t currentTimetresultRHt currentHourt currentMinutet currentSecondtrtdayt daysToWaitt newRolloverAttdstNowt dstAtRollovertaddend((s(/usr/lib64/python2.7/logging/handlers.pyRFs8 !          cCs)ttj}||jkr%dSdS(s Determine if rollover should occur. record is not used, as we are just comparing times, but it is needed so the method signatures are the same ii(R@RERG(R RRH((s(/usr/lib64/python2.7/logging/handlers.pyRsc Cstjj|j\}}tj|}g}|d}t|}x\|D]T}|| |krM||}|jj|r|jtjj ||qqMqMW|j t||j krg}n|t||j  }|S(s Determine the files to delete when rolling over. More specific than the earlier method, which just used glob.glob(). t.( R R!tsplitRtlistdirR,R=tmatchtappendtjointsortR( R tdirNametbaseNamet fileNamesRMtprefixtplentfileNameR<((s(/usr/lib64/python2.7/logging/handlers.pytgetFilesToDelete(s    &  c Cs+|jr"|jjd|_nttj}tj|d}|j|j}|jrrtj |}nPtj|}|d}||kr|rd}nd}tj||}n|j dtj |j |}t jj|rt j|nt jj|j r/t j|j |n|jdkrex$|jD]}t j|qKWn|js|j|_n|j|} x| |kr| |j} qW|jdks|jjdr|j rtj| d} || kr|sd}nd}| |7} qn| |_dS( sx do a rollover; in this case, a date/time stamp is appended to the filename when the rollover happens. However, you want the file to be named for the start of the interval, not the current time. If there is a backup count, then we have to get a list of matching filenames, sort them and remove the one with the oldest suffix. iiiRXiR4R5N(RRRR@RERJRGR;R:RIRtstrftimeR<R R!R"R#R$RReR R%RFR9R>( R RLRURHt timeTupletdstThenRWR(tsRTRV((s(/usr/lib64/python2.7/logging/handlers.pyR?sH         +  N( RRRRtFalseRRFRReR(((s(/usr/lib64/python2.7/logging/handlers.pyR.s 5 < tWatchedFileHandlercBs2eZdZddddZdZdZRS(s A handler for logging to a file, which watches the file to see if it has changed while in use. This can happen because of usage of programs such as newsyslog and logrotate which perform log file rotation. This handler, intended for use under Unix, watches the file to see if it has changed since the last emit. (A file has changed if its device or inode have changed.) If it has changed, the old file stream is closed, and the file opened to get a new stream. This handler is not appropriate for use under Windows, because under Windows open files cannot be moved or renamed - logging opens the files with exclusive locks - and so there is no need for such a handler. Furthermore, ST_INO is not supported under Windows; stat always returns zero for this value. This handler is based on a suggestion and patch by Chad J. Schroeder. RicCs<tjj|||||d\|_|_|jdS(Ni(ii(RRRtdevtinot _statstream(R R R R R ((s(/usr/lib64/python2.7/logging/handlers.pyRscCsC|jr?tj|jj}|t|t|_|_ndS(N(RR tfstattfilenoRRRlRm(R tsres((s(/usr/lib64/python2.7/logging/handlers.pyRns cCsytj|j}Wn1tk rI}|jtjkrCd}qJnX| sw|t|jksw|t |j kr|j dk r|j j |j j d|_ |j|_ |jqntjj||dS(s Emit a record. First check if the underlying file has changed, and if it has, close the old stream and reopen the file to get the current stream. N(R RDRtOSErrorterrnotENOENTRRRlRRmRtflushRR%RnRRR(R RRqterr((s(/usr/lib64/python2.7/logging/handlers.pyRs  -   N(RRRRRRnR(((s(/usr/lib64/python2.7/logging/handlers.pyRkrs t SocketHandlercBsYeZdZdZddZdZdZdZdZdZ d Z RS( s A handler class which writes logging records, in pickle format, to a streaming socket. The socket is kept open across logging calls. If the peer resets it, an attempt is made to reconnect on the next call. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCs\tjj|||_||_d|_d|_d|_d|_ d|_ d|_ dS(s  Initializes the handler with a specific host address and port. The attribute 'closeOnError' is set to 1 - which means that if a socket error occurs, the socket is silently closed and then reopened on the next logging call. ig?g>@g@N( RtHandlerRthosttportRtsockt closeOnErrort retryTimet retryStarttretryMaxt retryFactor(R RyRz((s(/usr/lib64/python2.7/logging/handlers.pyRs       icCsTtjtjtj}t|dr7|j|n|j|j|jf|S(sr A factory method which allows subclasses to define the precise type of socket they want. t settimeout(tsockettAF_INETt SOCK_STREAMthasattrRtconnectRyRz(R ttimeoutRi((s(/usr/lib64/python2.7/logging/handlers.pyt makeSockets cCstj}|jdkr$d}n||jk}|ry|j|_d|_Wqtjk r|jdkr|j|_n4|j|j |_|j|j kr|j |_n||j|_qXndS(s Try to create a socket, using an exponential backoff with a max retry time. Thanks to Robert Olson for the original patch (SF #815911) which has been slightly refactored. iN( RER}RRR{RterrorR~t retryPeriodRR(R tnowtattempt((s(/usr/lib64/python2.7/logging/handlers.pyt createSockets   cCs|jdkr|jn|jryxt|jdrM|jj|nOd}t|}x:|dkr|jj||}||}||}qbWWqtjk r|jj d|_qXndS(s Send a pickled string to the socket. This function allows for partial sends which can happen when the network is busy. tsendalliN( R{RRRRR,tsendRRR(R Rit sentsofartlefttsent((s(/usr/lib64/python2.7/logging/handlers.pyRs     cCs|j}|r*|j|}d|_nt|j}|j|dLN( texc_infoR)Rtdictt__dict__t getMessagetcPickletdumpststructtpackR,(R RteitdummytdRitslen((s(/usr/lib64/python2.7/logging/handlers.pyt makePickles    cCsB|jr+|jr+|jjd|_ntjj||dS(s Handle an error during logging. An error has occurred during logging. Most likely cause - connection lost. Close the socket so that we can retry on the next event. N(R|R{RRRRxR(R R((s(/usr/lib64/python2.7/logging/handlers.pyR*s  cCsTy |j|}|j|Wn-ttfk r<n|j|nXdS(s Emit a record. Pickles the record and writes it to the socket in binary format. If there is an error with the socket, silently drop the packet. If there was a problem with the socket, re-establishes the socket. N(RRRRR(R RRi((s(/usr/lib64/python2.7/logging/handlers.pyR8s cCsU|jz)|j}|r2d|_|jnWd|jXtjj|dS(s$ Closes the socket. N(tacquireR{RRtreleaseRRx(R R{((s(/usr/lib64/python2.7/logging/handlers.pyRIs    ( RRRRRRRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRws       tDatagramHandlercBs)eZdZdZdZdZRS(s A handler class which writes logging records, in pickle format, to a datagram socket. The pickle which is sent is that of the LogRecord's attribute dictionary (__dict__), so that the receiver does not need to have the logging module installed in order to process the logging event. To unpickle the record at the receiving end into a LogRecord, use the makeLogRecord function. cCs tj|||d|_dS(sP Initializes the handler with a specific host address and port. iN(RwRR|(R RyRz((s(/usr/lib64/python2.7/logging/handlers.pyRbscCstjtjtj}|S(su The factory method of SocketHandler is here overridden to create a UDP socket (SOCK_DGRAM). (RRt SOCK_DGRAM(R Ri((s(/usr/lib64/python2.7/logging/handlers.pyRiscCs?|jdkr|jn|jj||j|jfdS(s Send a pickled string to a socket. This function no longer allows for partial sends which can happen when the network is busy - UDP does not guarantee delivery and can deliver packets out of sequence. N(R{RRtsendtoRyRz(R Ri((s(/usr/lib64/python2.7/logging/handlers.pyRqs (RRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRWs   t SysLogHandlercBseZdZdZdZdZdZdZdZdZ dZ dZ dZ dZ dZdZdZdZdZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZi ed6ed6ed6e d6ed6ed6ed6e d6ed6ed6ed6ed 6Zied!6ed"6ed#6ed$6ed%6e d&6ed'6e d(6ed)6ed*6ed+6e d,6ed-6ed.6ed/6ed06ed16ed26ed36ed46ed56Z idd66dd76d d86dd96dd:6Z!d;e"fe dCd<Z$d=Z%d>Z&d?Z'd@Z(dAZ)dBZ*RS(Ds A handler class which sends formatted logging records to a syslog server. Based on Sam Rushing's syslog module: http://www.nightmare.com/squirl/python-ext/misc/syslog.py Contributed by Nicolas Untz (after which minor refactoring changes have been made). iiiiiiiiii i i iiiiiiiitalerttcrittcriticaltdebugtemergRvRtinfotnoticetpanictwarntwarningtauthtauthprivtcrontdaemontftptkerntlprtmailtnewstsecuritytsyslogtusertuucptlocal0tlocal1tlocal2tlocal3tlocal4tlocal5tlocal6tlocal7tDEBUGtINFOtWARNINGtERRORtCRITICALt localhostcCs|tjj|||_||_||_t|trSd|_|j |n%t |_|dkrtt j }n|\}}t j||d|}|st jdnx|D]}|\}}} } } d} } y9t j ||| } |t jkr| j| nPWqt jk rL}|} | dk rM| jqMqXqW| dk rf| n| |_ ||_dS(s Initialize a handler. If address is specified as a string, a UNIX socket is used. To log to a local syslogd, "SysLogHandler(address="/dev/log")" can be used. If facility is not specified, LOG_USER is used. If socktype is specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific socket type will be used. For Unix sockets, you can also specify a socktype of None, in which case socket.SOCK_DGRAM will be used, falling back to socket.SOCK_STREAM. iis!getaddrinfo returns an empty listN(RRxRtaddresstfacilitytsocktypet isinstancet basestringt unixsockett_connect_unixsocketRjRRRt getaddrinfoRRRR(R RRRRyRztresstrestaftprotot_tsaRvR{texc((s(/usr/lib64/python2.7/logging/handlers.pyRs<               cCs|j}|dkr!tj}ntjtj||_y|jj|||_Wntjk r|jj|jdk rntj}tjtj||_y|jj|||_Wqtjk r|jjqXnXdS(N( RRRRtAF_UNIXRRRR(R Rt use_socktype((s(/usr/lib64/python2.7/logging/handlers.pyRs&        s<%d>%scCsJt|tr|j|}nt|tr>|j|}n|d>|BS(s Encode the facility and priority. You can pass in strings or integers - if strings are passed, the facility_names and priority_names mapping dictionaries are used to convert them to integers. i(RRtfacility_namestpriority_names(R Rtpriority((s(/usr/lib64/python2.7/logging/handlers.pytencodePriority1s cCsI|jz|jr&|jjnWd|jXtjj|dS(s$ Closes the socket. N(RRRRRRRx(R ((s(/usr/lib64/python2.7/logging/handlers.pyR>s    cCs|jj|dS(sK Map a logging level name to a key in the priority_names map. This is useful in two scenarios: when custom levels are being used, and in the case where you can't do a straightforward mapping by lowercasing the logging level name because of locale- specific issues (see SF #1524081). R(t priority_maptget(R t levelName((s(/usr/lib64/python2.7/logging/handlers.pyt mapPriorityJscCs=y |j|d}d|j|j|j|j}t|tkr_|jd}n||}|jry|j j |Wqt j k r|j j |j |j|j j |qXn;|jt jkr|j j||jn|j j|Wn-ttfk r%n|j|nXdS(s Emit a record. The record is formatted, and then sent to the syslog server. If exception information is present, it is NOT sent to the server. ss<%d>sutf-8N(R)RRRt levelnamettypetunicodetencodeRRRRRRRRRRRRRR(R RR-tprio((s(/usr/lib64/python2.7/logging/handlers.pyRTs*   N(+RRRt LOG_EMERGt LOG_ALERTtLOG_CRITtLOG_ERRt LOG_WARNINGt LOG_NOTICEtLOG_INFOt LOG_DEBUGtLOG_KERNtLOG_USERtLOG_MAILt LOG_DAEMONtLOG_AUTHt LOG_SYSLOGtLOG_LPRtLOG_NEWStLOG_UUCPtLOG_CRONt LOG_AUTHPRIVtLOG_FTPt LOG_LOCAL0t LOG_LOCAL1t LOG_LOCAL2t LOG_LOCAL3t LOG_LOCAL4t LOG_LOCAL5t LOG_LOCAL6t LOG_LOCAL7RRRtSYSLOG_UDP_PORTRRRtlog_format_stringRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyR}s     .  t SMTPHandlercBs/eZdZdddZdZdZRS(sK A handler class which sends an SMTP email for each logging event. cCstjj|t|ttfr:|\|_|_n|d|_|_t|ttfrw|\|_ |_ n d|_ ||_ t|t r|g}n||_ ||_||_d|_dS(s  Initialize the handler. Initialize the instance with the from and to addresses and subject line of the email. To specify a non-standard SMTP port, use the (host, port) tuple format for the mailhost argument. To specify authentication credentials, supply a (username, password) tuple for the credentials argument. To specify the use of a secure protocol (TLS), pass in a tuple for the secure argument. This will only be used when authentication credentials are supplied. The tuple will be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the `starttls` method). g@N(RRxRRtlistttupletmailhosttmailportRtusernametpasswordtfromaddrRttoaddrstsubjecttsecuret_timeout(R R RRRt credentialsR((s(/usr/lib64/python2.7/logging/handlers.pyR{s      cCs|jS(s Determine the subject for the email. If you want to specify a subject line which is record-dependent, override this method. (R(R R((s(/usr/lib64/python2.7/logging/handlers.pyt getSubjectscCsKyddl}ddlm}|j}|s:|j}n|j|j|d|j}|j|}d|j dj |j |j |||f}|j r|jdk r|j|j|j|jn|j|j |jn|j|j |j ||jWn-ttfk r3n|j|nXdS(sd Emit a record. Format the record and send it to the specified addressees. iN(t formatdateRs-From: %s To: %s Subject: %s Date: %s %st,(tsmtplibt email.utilsRR t SMTP_PORTtSMTPR RR)RR]RRR RRtehlotstarttlstloginRtsendmailtquitRRR(R RRRRztsmtpR-((s(/usr/lib64/python2.7/logging/handlers.pyRs2       N(RRRRRRR(((s(/usr/lib64/python2.7/logging/handlers.pyRws tNTEventLogHandlercBsJeZdZdddZdZdZdZdZdZ RS( s A handler class which sends events to the NT Event Log. Adds a registry entry for the specified application name. If no dllname is provided, win32service.pyd (which contains some basic message placeholders) is used. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own DLL which contains the message definitions you want to use in the event log. t ApplicationcCs2tjj|yddl}ddl}||_||_|stjj |jj }tjj |d}tjj |dd}n||_ ||_ |jj||||j|_i|jtj6|jtj6|jtj6|jtj6|jtj6|_Wntk r-dGHd|_nXdS(Niiswin32service.pydsWThe Python Win32 extensions for NT (service, event logging) appear not to be available.(RRxRtwin32evtlogutilt win32evtlogtappnamet_weluR R!RYt__file__R]tdllnametlogtypetAddSourceToRegistrytEVENTLOG_ERROR_TYPEtdeftypetEVENTLOG_INFORMATION_TYPERRtEVENTLOG_WARNING_TYPERRRttypemapt ImportErrorR(R R&R)R*R$R%((s(/usr/lib64/python2.7/logging/handlers.pyRs,          cCsdS(sy Return the message ID for the event record. If you are using your own messages, you could do this by having the msg passed to the logger being an ID rather than a formatting string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in win32service.pyd. i((R R((s(/usr/lib64/python2.7/logging/handlers.pyt getMessageIDscCsdS(s Return the event category for the record. Override this if you want to specify your own categories. This version returns 0. i((R R((s(/usr/lib64/python2.7/logging/handlers.pytgetEventCategoryscCs|jj|j|jS(s Return the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in __init__() to a dictionary which contains mappings for DEBUG, INFO, WARNING, ERROR and CRITICAL. If you are using your own levels you will either need to override this method or place a suitable dictionary in the handler's typemap attribute. (R0RtlevelnoR-(R R((s(/usr/lib64/python2.7/logging/handlers.pyt getEventTypes cCs|jryb|j|}|j|}|j|}|j|}|jj|j||||gWqttfk rq|j |qXndS(s Emit a record. Determine the message ID, event category and event type. Then log the message in the NT event log. N( R'R2R3R5R)t ReportEventR&RRR(R RtidtcatRR-((s(/usr/lib64/python2.7/logging/handlers.pyR s &cCstjj|dS(sS Clean up this handler. You can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the DLL name. N(RRxR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRs N( RRRRRR2R3R5RR(((s(/usr/lib64/python2.7/logging/handlers.pyR"s  t HTTPHandlercBs,eZdZddZdZdZRS(s^ A class which sends records to a Web server, using either GET or POST semantics. tGETcCsVtjj||j}|dkr7tdn||_||_||_dS(sr Initialize the instance with the host, the request URL, and the method ("GET" or "POST") R:tPOSTsmethod must be GET or POSTN(R:R;(RRxRR8R?Ryturltmethod(R RyR<R=((s(/usr/lib64/python2.7/logging/handlers.pyR.s    cCs|jS(s Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner. (R(R R((s(/usr/lib64/python2.7/logging/handlers.pyt mapLogRecord;sc CsyTddl}ddl}|j}|j|}|j}|j|j|}|jdkr|jddkrd}nd}|d||f}n|j |j||jd} | dkr|| }n|j d ||jd kr'|j d d |j d t t |n|j |jd krB|nd|jWn-ttfk rpn|j|nXdS(sk Emit a record. Send the record to the Web server as a percent-encoded dictionary iNR:t?it&s%c%st:tHostR;s Content-types!application/x-www-form-urlencodedsContent-length(thttplibturllibRytHTTPR<t urlencodeR>R=tfindt putrequestt putheadertstrR,t endheadersRtgetreplyRRR( R RRCRDRyR/R<tdatatsepR&((s(/usr/lib64/python2.7/logging/handlers.pyRCs4      "(RRRRR>R(((s(/usr/lib64/python2.7/logging/handlers.pyR9)s tBufferingHandlercBs;eZdZdZdZdZdZdZRS(s A handler class which buffers logging records in memory. Whenever each record is added to the buffer, a check is made to see if the buffer should be flushed. If it should, then flush() is expected to do what's needed. cCs&tjj|||_g|_dS(s> Initialize the handler with the buffer size. N(RRxRtcapacitytbuffer(R RP((s(/usr/lib64/python2.7/logging/handlers.pyRms cCst|j|jkS(s Should the handler flush its buffer? Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies. (R,RQRP(R R((s(/usr/lib64/python2.7/logging/handlers.pyt shouldFlushuscCs0|jj||j|r,|jndS(s Emit a record. Append the record. If shouldFlush() tells us to, call flush() to process the buffer. N(RQR\RRRu(R R((s(/usr/lib64/python2.7/logging/handlers.pyR~scCs)|jz g|_Wd|jXdS(sw Override to implement custom flushing behaviour. This version just zaps the buffer to empty. N(RRQR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRus  cCs&z|jWdtjj|XdS(sp Close the handler. This version just flushes and chains to the parent class' close(). N(RuRRxR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRs(RRRRRRRRuR(((s(/usr/lib64/python2.7/logging/handlers.pyROgs   t MemoryHandlercBsDeZdZejddZdZdZdZ dZ RS(s A handler class which buffers logging records in memory, periodically flushing them to a target handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen. cCs&tj||||_||_dS(s Initialize the handler with the buffer size, the level at which flushing should occur and an optional target. Note that without a target being set either here or via setTarget(), a MemoryHandler is no use to anyone! N(RORt flushLevelttarget(R RPRTRU((s(/usr/lib64/python2.7/logging/handlers.pyRs cCs(t|j|jkp'|j|jkS(sP Check for buffer full or a record at the flushLevel or higher. (R,RQRPR4RT(R R((s(/usr/lib64/python2.7/logging/handlers.pyRRscCs ||_dS(s: Set the target handler for this handler. N(RU(R RU((s(/usr/lib64/python2.7/logging/handlers.pyt setTargetscCsY|jz=|jrFx!|jD]}|jj|q Wg|_nWd|jXdS(s For a MemoryHandler, flushing means just sending the buffered records to the target, if there is one. Override if you want different behaviour. N(RRURQthandleR(R R((s(/usr/lib64/python2.7/logging/handlers.pyRus  cCsHz|jWd|jzd|_tj|Wd|jXXdS(sD Flush, set the target to None and lose the buffer. N(RuRRRURORR(R ((s(/usr/lib64/python2.7/logging/handlers.pyRs  N( RRRRRRRRRRVRuR(((s(/usr/lib64/python2.7/logging/handlers.pyRSs    iiQ(*RRsRRR RRRERBRDRRRRR1RRtTruet_unicodet NameErrorRjtDEFAULT_TCP_LOGGING_PORTtDEFAULT_UDP_LOGGING_PORTtDEFAULT_HTTP_LOGGING_PORTtDEFAULT_SOAP_LOGGING_PORTRtSYSLOG_TCP_PORTRKRRRR.RkRxRwRRRR"R9RORS(((s(/usr/lib64/python2.7/logging/handlers.pyts<`      N>&Nd>9PK1])ՇՇ config.pynu[PK1]if"__pycache__/config.cpython-312.pycnu[PK1]C5̞tt$f3__pycache__/__init__.cpython-312.pycnu[PK1]oȪȪ(X__pycache__/config.cpython-312.opt-1.pycnu[PK1]/1HH(xS__pycache__/config.cpython-312.opt-2.pycnu[PK1]0oHII*__pycache__/handlers.cpython-312.opt-2.pycnu[PK1]Nltlt*__pycache__/__init__.cpython-312.opt-1.pycnu[PK1]  * __pycache__/__init__.cpython-312.opt-2.pycnu[PK1]keSgg$!__pycache__/handlers.cpython-312.pycnu[PK1]keSgg*(__pycache__/handlers.cpython-312.opt-1.pycnu[PK1]r~ b/ handlers.pynu[PK1]Q F __init__.pynu[PK`d1]/ )c __pycache__/__init__.cpython-36.opt-1.pycnu[PK`d1]^[^[! __pycache__/config.cpython-36.pycnu[PK`d1]Pm=.[.['8% __pycache__/config.cpython-36.opt-1.pycnu[PK`d1] ll# __pycache__/handlers.cpython-36.pycnu[PK`d1]O)|* __pycache__/__init__.cpython-36.opt-2.pycnu[PK`d1] ll)۩ __pycache__/handlers.cpython-36.opt-1.pycnu[PK`d1]y]KK'S__pycache__/config.cpython-36.opt-2.pycnu[PK`d1].I_I_) __pycache__/handlers.cpython-36.opt-2.pycnu[PK`d1]0Z#__pycache__/__init__.cpython-36.pycnu[PK |1]1?~&e&e config.pyonu[PK |1]eZeZe OPconfig.pycnu[PK |1]G __init__.pycnu[PK |1]  __init__.pyonu[PK |1]9ʚʚ xhandlers.pycnu[PK |1]9ʚʚ  handlers.pyonu[PK