| 
									
										
										
										
											2010-02-07 13:06:51 +00:00
										 |  |  | # Copyright 2001-2010 by Vinay Sajip. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											2004-02-28 16:07:46 +00:00
										 |  |  | Additional handlers 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. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-07 13:06:51 +00:00
										 |  |  | Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-20 23:16:08 +00:00
										 |  |  | To use, simply 'import logging.handlers' and log away! | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  | import logging, socket, os, cPickle, struct, time, re | 
					
						
							| 
									
										
										
										
											2010-03-12 06:01:21 +00:00
										 |  |  | from stat import ST_DEV, ST_INO, ST_MTIME | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-13 09:56:36 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     import codecs | 
					
						
							|  |  |  | except ImportError: | 
					
						
							|  |  |  |     codecs = None | 
					
						
							| 
									
										
										
										
											2009-10-21 20:22:14 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     unicode | 
					
						
							|  |  |  |     _unicode = True | 
					
						
							|  |  |  | except NameError: | 
					
						
							|  |  |  |     _unicode = False | 
					
						
							| 
									
										
										
										
											2005-03-13 09:56:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Some constants... | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DEFAULT_TCP_LOGGING_PORT    = 9020 | 
					
						
							|  |  |  | DEFAULT_UDP_LOGGING_PORT    = 9021 | 
					
						
							|  |  |  | DEFAULT_HTTP_LOGGING_PORT   = 9022 | 
					
						
							|  |  |  | DEFAULT_SOAP_LOGGING_PORT   = 9023 | 
					
						
							|  |  |  | SYSLOG_UDP_PORT             = 514 | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  | SYSLOG_TCP_PORT             = 514 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-02 08:35:36 +00:00
										 |  |  | _MIDNIGHT = 24 * 60 * 60  # number of seconds in a day | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  | class BaseRotatingHandler(logging.FileHandler): | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     Base class for handlers that rotate log files at a certain point. | 
					
						
							|  |  |  |     Not meant to be instantiated directly.  Instead, use RotatingFileHandler | 
					
						
							|  |  |  |     or TimedRotatingFileHandler. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2008-01-24 12:37:33 +00:00
										 |  |  |     def __init__(self, filename, mode, encoding=None, delay=0): | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         Use the specified filename for streamed logging | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2005-03-13 09:56:36 +00:00
										 |  |  |         if codecs is None: | 
					
						
							|  |  |  |             encoding = None | 
					
						
							| 
									
										
										
										
											2008-01-24 12:37:33 +00:00
										 |  |  |         logging.FileHandler.__init__(self, filename, mode, encoding, delay) | 
					
						
							| 
									
										
										
										
											2005-03-13 09:56:36 +00:00
										 |  |  |         self.mode = mode | 
					
						
							|  |  |  |         self.encoding = encoding | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |     def emit(self, record): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Emit a record. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Output the record to the file, catering for rollover as described | 
					
						
							|  |  |  |         in doRollover(). | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2004-07-08 10:24:04 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             if self.shouldRollover(record): | 
					
						
							|  |  |  |                 self.doRollover() | 
					
						
							|  |  |  |             logging.FileHandler.emit(self, record) | 
					
						
							| 
									
										
										
										
											2005-10-31 13:14:19 +00:00
										 |  |  |         except (KeyboardInterrupt, SystemExit): | 
					
						
							|  |  |  |             raise | 
					
						
							| 
									
										
										
										
											2004-07-08 10:24:04 +00:00
										 |  |  |         except: | 
					
						
							|  |  |  |             self.handleError(record) | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class RotatingFileHandler(BaseRotatingHandler): | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     Handler for logging to a set of files, which switches from one file | 
					
						
							|  |  |  |     to the next when the current file reaches a certain size. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2008-01-24 12:37:33 +00:00
										 |  |  |     def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         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. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         if maxBytes > 0: | 
					
						
							| 
									
										
										
										
											2005-03-13 09:56:36 +00:00
										 |  |  |             mode = 'a' # doesn't make sense otherwise! | 
					
						
							| 
									
										
										
										
											2008-01-24 12:37:33 +00:00
										 |  |  |         BaseRotatingHandler.__init__(self, filename, mode, encoding, delay) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         self.maxBytes = maxBytes | 
					
						
							|  |  |  |         self.backupCount = backupCount | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def doRollover(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Do a rollover, as described in __init__(). | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2009-01-20 23:16:08 +00:00
										 |  |  |         if self.stream: | 
					
						
							|  |  |  |             self.stream.close() | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         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) | 
					
						
							| 
									
										
										
										
											2006-06-27 07:34:37 +00:00
										 |  |  |             os.rename(self.baseFilename, dfn) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             #print "%s -> %s" % (self.baseFilename, dfn) | 
					
						
							| 
									
										
										
										
											2007-01-16 09:50:07 +00:00
										 |  |  |         self.mode = 'w' | 
					
						
							|  |  |  |         self.stream = self._open() | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |     def shouldRollover(self, record): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         Determine if rollover should occur. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         Basically, see if the supplied record would cause the file to exceed | 
					
						
							|  |  |  |         the size limit we have. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2009-01-20 23:16:08 +00:00
										 |  |  |         if self.stream is None:                 # delay was set... | 
					
						
							|  |  |  |             self.stream = self._open() | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         if self.maxBytes > 0:                   # are we rolling over? | 
					
						
							|  |  |  |             msg = "%s\n" % self.format(record) | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |             self.stream.seek(0, 2)  #due to non-posix-compliant Windows feature | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             if self.stream.tell() + len(msg) >= self.maxBytes: | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |                 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. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |     def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False): | 
					
						
							| 
									
										
										
										
											2008-01-24 12:37:33 +00:00
										 |  |  |         BaseRotatingHandler.__init__(self, filename, 'a', encoding, delay) | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         self.when = when.upper() | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         self.backupCount = backupCount | 
					
						
							| 
									
										
										
										
											2008-05-20 15:34:36 +00:00
										 |  |  |         self.utc = utc | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         # 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" | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |             self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}$" | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         elif self.when == 'M': | 
					
						
							|  |  |  |             self.interval = 60 # one minute | 
					
						
							|  |  |  |             self.suffix = "%Y-%m-%d_%H-%M" | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |             self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}$" | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         elif self.when == 'H': | 
					
						
							|  |  |  |             self.interval = 60 * 60 # one hour | 
					
						
							|  |  |  |             self.suffix = "%Y-%m-%d_%H" | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |             self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}$" | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         elif self.when == 'D' or self.when == 'MIDNIGHT': | 
					
						
							|  |  |  |             self.interval = 60 * 60 * 24 # one day | 
					
						
							|  |  |  |             self.suffix = "%Y-%m-%d" | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |             self.extMatch = r"^\d{4}-\d{2}-\d{2}$" | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         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" | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |             self.extMatch = r"^\d{4}-\d{2}-\d{2}$" | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             raise ValueError("Invalid rollover interval specified: %s" % self.when) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |         self.extMatch = re.compile(self.extMatch) | 
					
						
							| 
									
										
										
										
											2004-10-03 19:12:07 +00:00
										 |  |  |         self.interval = self.interval * interval # multiply by units requested | 
					
						
							| 
									
										
										
										
											2010-03-12 06:01:21 +00:00
										 |  |  |         if os.path.exists(filename): | 
					
						
							|  |  |  |             t = os.stat(filename)[ST_MTIME] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             t = int(time.time()) | 
					
						
							|  |  |  |         self.rolloverAt = self.computeRollover(t) | 
					
						
							| 
									
										
										
										
											2009-06-11 09:23:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-11 09:53:35 +00:00
										 |  |  |     def computeRollover(self, currentTime): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Work out the rollover time based on the specified time. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         result = currentTime + self.interval | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         # 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 | 
					
						
							| 
									
										
										
										
											2009-06-11 09:23:41 +00:00
										 |  |  |             if self.utc: | 
					
						
							| 
									
										
										
										
											2008-05-20 15:34:36 +00:00
										 |  |  |                 t = time.gmtime(currentTime) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 t = time.localtime(currentTime) | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |             currentHour = t[3] | 
					
						
							|  |  |  |             currentMinute = t[4] | 
					
						
							|  |  |  |             currentSecond = t[5] | 
					
						
							|  |  |  |             # r is the number of seconds left between now and midnight | 
					
						
							| 
									
										
										
										
											2006-05-02 08:35:36 +00:00
										 |  |  |             r = _MIDNIGHT - ((currentHour * 60 + currentMinute) * 60 + | 
					
						
							|  |  |  |                     currentSecond) | 
					
						
							| 
									
										
										
										
											2009-06-11 09:53:35 +00:00
										 |  |  |             result = currentTime + r | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |             # 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). | 
					
						
							| 
									
										
										
										
											2008-01-21 17:02:26 +00:00
										 |  |  |             # 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. | 
					
						
							| 
									
										
										
										
											2009-06-11 09:23:41 +00:00
										 |  |  |             if self.when.startswith('W'): | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |                 day = t[6] # 0 is Monday | 
					
						
							| 
									
										
										
										
											2007-10-24 10:47:06 +00:00
										 |  |  |                 if day != self.dayOfWeek: | 
					
						
							|  |  |  |                     if day < self.dayOfWeek: | 
					
						
							| 
									
										
										
										
											2008-01-21 17:02:26 +00:00
										 |  |  |                         daysToWait = self.dayOfWeek - day | 
					
						
							| 
									
										
										
										
											2007-10-24 10:47:06 +00:00
										 |  |  |                     else: | 
					
						
							| 
									
										
										
										
											2008-01-21 17:02:26 +00:00
										 |  |  |                         daysToWait = 6 - day + self.dayOfWeek + 1 | 
					
						
							| 
									
										
										
										
											2009-06-11 09:53:35 +00:00
										 |  |  |                     newRolloverAt = result + (daysToWait * (60 * 60 * 24)) | 
					
						
							| 
									
										
										
										
											2009-06-11 09:23:41 +00:00
										 |  |  |                     if not self.utc: | 
					
						
							| 
									
										
										
										
											2008-05-20 15:34:36 +00:00
										 |  |  |                         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 | 
					
						
							|  |  |  |                                 newRolloverAt = newRolloverAt - 3600 | 
					
						
							|  |  |  |                             else:           # DST bows out before next rollover, so we need to add an hour | 
					
						
							|  |  |  |                                 newRolloverAt = newRolloverAt + 3600 | 
					
						
							| 
									
										
										
										
											2009-06-11 09:53:35 +00:00
										 |  |  |                     result = newRolloverAt | 
					
						
							|  |  |  |         return result | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def shouldRollover(self, record): | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |         Determine if rollover should occur. | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         record is not used, as we are just comparing times, but it is needed so | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |         the method signatures are the same | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         t = int(time.time()) | 
					
						
							|  |  |  |         if t >= self.rolloverAt: | 
					
						
							|  |  |  |             return 1 | 
					
						
							| 
									
										
										
										
											2004-07-12 09:21:41 +00:00
										 |  |  |         #print "No need to rollover: %d, %d" % (t, self.rolloverAt) | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |     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): | 
					
						
							| 
									
										
										
										
											2008-05-20 15:34:36 +00:00
										 |  |  |                     result.append(os.path.join(dirName, fileName)) | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |         result.sort() | 
					
						
							|  |  |  |         if len(result) < self.backupCount: | 
					
						
							|  |  |  |             result = [] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             result = result[:len(result) - self.backupCount] | 
					
						
							|  |  |  |         return result | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |     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. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2009-01-20 23:16:08 +00:00
										 |  |  |         if self.stream: | 
					
						
							|  |  |  |             self.stream.close() | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         # get the time that this sequence started at and make it a TimeTuple | 
					
						
							|  |  |  |         t = self.rolloverAt - self.interval | 
					
						
							| 
									
										
										
										
											2008-05-20 15:34:36 +00:00
										 |  |  |         if self.utc: | 
					
						
							|  |  |  |             timeTuple = time.gmtime(t) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             timeTuple = time.localtime(t) | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         dfn = self.baseFilename + "." + time.strftime(self.suffix, timeTuple) | 
					
						
							|  |  |  |         if os.path.exists(dfn): | 
					
						
							|  |  |  |             os.remove(dfn) | 
					
						
							| 
									
										
										
										
											2006-06-27 07:34:37 +00:00
										 |  |  |         os.rename(self.baseFilename, dfn) | 
					
						
							| 
									
										
										
										
											2004-07-03 11:48:34 +00:00
										 |  |  |         if self.backupCount > 0: | 
					
						
							|  |  |  |             # find the oldest log file and delete it | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |             #s = glob.glob(self.baseFilename + ".20*") | 
					
						
							|  |  |  |             #if len(s) > self.backupCount: | 
					
						
							|  |  |  |             #    s.sort() | 
					
						
							|  |  |  |             #    os.remove(s[0]) | 
					
						
							|  |  |  |             for s in self.getFilesToDelete(): | 
					
						
							|  |  |  |                 os.remove(s) | 
					
						
							| 
									
										
										
										
											2004-07-12 09:21:41 +00:00
										 |  |  |         #print "%s -> %s" % (self.baseFilename, dfn) | 
					
						
							| 
									
										
										
										
											2007-01-16 09:50:07 +00:00
										 |  |  |         self.mode = 'w' | 
					
						
							|  |  |  |         self.stream = self._open() | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |         currentTime = int(time.time()) | 
					
						
							| 
									
										
										
										
											2009-06-11 09:53:35 +00:00
										 |  |  |         newRolloverAt = self.computeRollover(currentTime) | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |         while newRolloverAt <= currentTime: | 
					
						
							|  |  |  |             newRolloverAt = newRolloverAt + self.interval | 
					
						
							|  |  |  |         #If DST changes and midnight or weekly rollover, adjust for this. | 
					
						
							| 
									
										
										
										
											2008-05-20 15:34:36 +00:00
										 |  |  |         if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc: | 
					
						
							| 
									
										
										
										
											2008-04-02 21:09:27 +00:00
										 |  |  |             dstNow = time.localtime(currentTime)[-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 | 
					
						
							|  |  |  |                     newRolloverAt = newRolloverAt - 3600 | 
					
						
							|  |  |  |                 else:           # DST bows out before next rollover, so we need to add an hour | 
					
						
							|  |  |  |                     newRolloverAt = newRolloverAt + 3600 | 
					
						
							|  |  |  |         self.rolloverAt = newRolloverAt | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-14 21:49:59 +00:00
										 |  |  | 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. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2008-01-24 12:37:33 +00:00
										 |  |  |     def __init__(self, filename, mode='a', encoding=None, delay=0): | 
					
						
							|  |  |  |         logging.FileHandler.__init__(self, filename, mode, encoding, delay) | 
					
						
							|  |  |  |         if not os.path.exists(self.baseFilename): | 
					
						
							|  |  |  |             self.dev, self.ino = -1, -1 | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             stat = os.stat(self.baseFilename) | 
					
						
							|  |  |  |             self.dev, self.ino = stat[ST_DEV], stat[ST_INO] | 
					
						
							| 
									
										
										
										
											2007-01-14 21:49:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     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. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if not os.path.exists(self.baseFilename): | 
					
						
							|  |  |  |             stat = None | 
					
						
							|  |  |  |             changed = 1 | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             stat = os.stat(self.baseFilename) | 
					
						
							|  |  |  |             changed = (stat[ST_DEV] != self.dev) or (stat[ST_INO] != self.ino) | 
					
						
							| 
									
										
										
										
											2008-01-24 12:37:33 +00:00
										 |  |  |         if changed and self.stream is not None: | 
					
						
							| 
									
										
										
										
											2007-01-14 21:49:59 +00:00
										 |  |  |             self.stream.flush() | 
					
						
							|  |  |  |             self.stream.close() | 
					
						
							|  |  |  |             self.stream = self._open() | 
					
						
							|  |  |  |             if stat is None: | 
					
						
							|  |  |  |                 stat = os.stat(self.baseFilename) | 
					
						
							|  |  |  |             self.dev, self.ino = stat[ST_DEV], stat[ST_INO] | 
					
						
							|  |  |  |         logging.FileHandler.emit(self, record) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 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. | 
					
						
							| 
									
										
										
										
											2003-06-27 21:43:39 +00:00
										 |  |  |     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. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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 | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         self.retryTime = None | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # Exponential backoff parameters. | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         self.retryStart = 1.0 | 
					
						
							|  |  |  |         self.retryMax = 30.0 | 
					
						
							|  |  |  |         self.retryFactor = 2.0 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-09 16:16:10 +00:00
										 |  |  |     def makeSocket(self, timeout=1): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         A factory method which allows subclasses to define the precise | 
					
						
							|  |  |  |         type of socket they want. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | 
					
						
							| 
									
										
										
										
											2007-04-09 16:16:10 +00:00
										 |  |  |         if hasattr(s, 'settimeout'): | 
					
						
							|  |  |  |             s.settimeout(timeout) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         s.connect((self.host, self.port)) | 
					
						
							|  |  |  |         return s | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |     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: | 
					
						
							| 
									
										
										
										
											2004-07-07 20:54:48 +00:00
										 |  |  |             attempt = 1 | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2004-07-07 20:54:48 +00:00
										 |  |  |             attempt = (now >= self.retryTime) | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         if attempt: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 self.sock = self.makeSocket() | 
					
						
							|  |  |  |                 self.retryTime = None # next time, no delay before trying | 
					
						
							| 
									
										
										
										
											2007-01-08 18:50:32 +00:00
										 |  |  |             except socket.error: | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |                 #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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |     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. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         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 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def makePickle(self, record): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Pickles the record in binary format with a length prefix, and | 
					
						
							|  |  |  |         returns it ready for transmission across the socket. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         ei = record.exc_info | 
					
						
							|  |  |  |         if ei: | 
					
						
							| 
									
										
										
										
											2004-07-07 20:54:48 +00:00
										 |  |  |             dummy = self.format(record) # just to get traceback text into record.exc_text | 
					
						
							|  |  |  |             record.exc_info = None  # to avoid Unpickleable error | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         s = cPickle.dumps(record.__dict__, 1) | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         if ei: | 
					
						
							| 
									
										
										
										
											2004-07-07 20:54:48 +00:00
										 |  |  |             record.exc_info = ei  # for next handler | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         slen = struct.pack(">L", len(s)) | 
					
						
							|  |  |  |         return slen + s | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |     def handleError(self, record): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         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: | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |             logging.Handler.handleError(self, record) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     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) | 
					
						
							| 
									
										
										
										
											2005-10-31 13:14:19 +00:00
										 |  |  |         except (KeyboardInterrupt, SystemExit): | 
					
						
							|  |  |  |             raise | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         except: | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |             self.handleError(record) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def close(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Closes the socket. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if self.sock: | 
					
						
							|  |  |  |             self.sock.close() | 
					
						
							|  |  |  |             self.sock = None | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         logging.Handler.close(self) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DatagramHandler(SocketHandler): | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     A handler class which writes logging records, in pickle format, to | 
					
						
							| 
									
										
										
										
											2003-06-27 21:43:39 +00:00
										 |  |  |     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. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     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. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2004-08-24 09:36:23 +00:00
										 |  |  |         if self.sock is None: | 
					
						
							|  |  |  |             self.createSocket() | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         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 <linux/sys/syslog.h>: | 
					
						
							|  |  |  |     # ====================================================================== | 
					
						
							|  |  |  |     # 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) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #  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, | 
					
						
							|  |  |  |         "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, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-20 23:20:12 +00:00
										 |  |  |     #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" | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |     def __init__(self, address=('localhost', SYSLOG_UDP_PORT), | 
					
						
							|  |  |  |                  facility=LOG_USER, socktype=socket.SOCK_DGRAM): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         Initialize a handler. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-25 07:05:59 +00:00
										 |  |  |         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. | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         If facility is not specified, LOG_USER is used. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         logging.Handler.__init__(self) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.address = address | 
					
						
							|  |  |  |         self.facility = facility | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         self.socktype = socktype | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if isinstance(address, basestring): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             self.unixsocket = 1 | 
					
						
							| 
									
										
										
										
											2006-12-11 14:07:16 +00:00
										 |  |  |             self._connect_unixsocket(address) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             self.unixsocket = 0 | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |             self.socket = socket.socket(socket.AF_INET, socktype) | 
					
						
							|  |  |  |             if socktype == socket.SOCK_STREAM: | 
					
						
							|  |  |  |                 self.socket.connect(address) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         self.formatter = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-01-13 08:23:56 +00:00
										 |  |  |     def _connect_unixsocket(self, address): | 
					
						
							|  |  |  |         self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM) | 
					
						
							|  |  |  |         # syslog may require either DGRAM or STREAM sockets | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             self.socket.connect(address) | 
					
						
							|  |  |  |         except socket.error: | 
					
						
							|  |  |  |             self.socket.close() | 
					
						
							|  |  |  |             self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) | 
					
						
							| 
									
										
										
										
											2005-11-09 13:55:13 +00:00
										 |  |  |             self.socket.connect(address) | 
					
						
							| 
									
										
										
										
											2005-01-13 08:23:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |     # 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' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-20 23:20:12 +00:00
										 |  |  |     def encodePriority(self, facility, priority): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         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. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         if isinstance(facility, basestring): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             facility = self.facility_names[facility] | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         if isinstance(priority, basestring): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             priority = self.priority_names[priority] | 
					
						
							|  |  |  |         return (facility << 3) | priority | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def close (self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Closes the socket. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if self.unixsocket: | 
					
						
							|  |  |  |             self.socket.close() | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         logging.Handler.close(self) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-20 23:20:12 +00:00
										 |  |  |     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") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |     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. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         msg = self.format(record) | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         We need to convert record level to lowercase, maybe this will | 
					
						
							|  |  |  |         change in the future. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         msg = self.log_format_string % ( | 
					
						
							|  |  |  |             self.encodePriority(self.facility, | 
					
						
							| 
									
										
										
										
											2006-07-20 23:20:12 +00:00
										 |  |  |                                 self.mapPriority(record.levelname)), | 
					
						
							|  |  |  |                                 msg) | 
					
						
							| 
									
										
										
										
											2009-10-21 20:22:14 +00:00
										 |  |  |         # Treat unicode messages as required by RFC 5424 | 
					
						
							|  |  |  |         if _unicode and type(msg) is unicode: | 
					
						
							|  |  |  |             msg = msg.encode('utf-8') | 
					
						
							|  |  |  |             if codecs: | 
					
						
							|  |  |  |                 msg = codecs.BOM_UTF8 + msg | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             if self.unixsocket: | 
					
						
							| 
									
										
										
										
											2005-01-13 08:23:56 +00:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     self.socket.send(msg) | 
					
						
							|  |  |  |                 except socket.error: | 
					
						
							|  |  |  |                     self._connect_unixsocket(self.address) | 
					
						
							|  |  |  |                     self.socket.send(msg) | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |             elif self.socktype == socket.SOCK_DGRAM: | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |                 self.socket.sendto(msg, self.address) | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 self.socket.sendall(msg) | 
					
						
							| 
									
										
										
										
											2005-10-31 13:14:19 +00:00
										 |  |  |         except (KeyboardInterrupt, SystemExit): | 
					
						
							|  |  |  |             raise | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         except: | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |             self.handleError(record) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class SMTPHandler(logging.Handler): | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     A handler class which sends an SMTP email for each logging event. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2009-12-06 17:57:11 +00:00
										 |  |  |     def __init__(self, mailhost, fromaddr, toaddrs, subject, | 
					
						
							| 
									
										
										
										
											2009-12-06 18:05:04 +00:00
										 |  |  |                  credentials=None, secure=None): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         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 | 
					
						
							| 
									
										
										
										
											2007-05-01 10:20:03 +00:00
										 |  |  |         (host, port) tuple format for the mailhost argument. To specify | 
					
						
							|  |  |  |         authentication credentials, supply a (username, password) tuple | 
					
						
							| 
									
										
										
										
											2009-12-06 17:57:11 +00:00
										 |  |  |         for the credentials argument. To specify the use of a secure | 
					
						
							| 
									
										
										
										
											2009-12-06 18:05:04 +00:00
										 |  |  |         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). | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         logging.Handler.__init__(self) | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         if isinstance(mailhost, tuple): | 
					
						
							| 
									
										
										
										
											2007-05-01 10:20:03 +00:00
										 |  |  |             self.mailhost, self.mailport = mailhost | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2007-05-01 10:20:03 +00:00
										 |  |  |             self.mailhost, self.mailport = mailhost, None | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         if isinstance(credentials, tuple): | 
					
						
							| 
									
										
										
										
											2007-05-01 10:20:03 +00:00
										 |  |  |             self.username, self.password = credentials | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.username = None | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         self.fromaddr = fromaddr | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         if isinstance(toaddrs, basestring): | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |             toaddrs = [toaddrs] | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         self.toaddrs = toaddrs | 
					
						
							|  |  |  |         self.subject = subject | 
					
						
							| 
									
										
										
										
											2009-12-06 17:57:11 +00:00
										 |  |  |         self.secure = secure | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     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 | 
					
						
							| 
									
										
										
										
											2010-02-07 13:06:51 +00:00
										 |  |  |             from email.utils import formatdate | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             port = self.mailport | 
					
						
							|  |  |  |             if not port: | 
					
						
							|  |  |  |                 port = smtplib.SMTP_PORT | 
					
						
							|  |  |  |             smtp = smtplib.SMTP(self.mailhost, port) | 
					
						
							|  |  |  |             msg = self.format(record) | 
					
						
							| 
									
										
										
										
											2003-04-23 03:49:43 +00:00
										 |  |  |             msg = "From: %s\r\nTo: %s\r\nSubject: %s\r\nDate: %s\r\n\r\n%s" % ( | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |                             self.fromaddr, | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |                             ",".join(self.toaddrs), | 
					
						
							| 
									
										
										
										
											2003-04-23 03:49:43 +00:00
										 |  |  |                             self.getSubject(record), | 
					
						
							| 
									
										
										
										
											2004-08-18 12:27:40 +00:00
										 |  |  |                             formatdate(), msg) | 
					
						
							| 
									
										
										
										
											2007-05-01 10:20:03 +00:00
										 |  |  |             if self.username: | 
					
						
							| 
									
										
										
										
											2009-12-06 18:05:04 +00:00
										 |  |  |                 if self.secure is not None: | 
					
						
							| 
									
										
										
										
											2009-12-06 17:57:11 +00:00
										 |  |  |                     smtp.ehlo() | 
					
						
							| 
									
										
										
										
											2009-12-06 18:05:04 +00:00
										 |  |  |                     smtp.starttls(*self.secure) | 
					
						
							| 
									
										
										
										
											2009-12-06 17:57:11 +00:00
										 |  |  |                     smtp.ehlo() | 
					
						
							| 
									
										
										
										
											2007-05-01 10:20:03 +00:00
										 |  |  |                 smtp.login(self.username, self.password) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             smtp.sendmail(self.fromaddr, self.toaddrs, msg) | 
					
						
							|  |  |  |             smtp.quit() | 
					
						
							| 
									
										
										
										
											2005-10-31 14:27:01 +00:00
										 |  |  |         except (KeyboardInterrupt, SystemExit): | 
					
						
							|  |  |  |             raise | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         except: | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |             self.handleError(record) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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, | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |                 logging.WARNING : win32evtlog.EVENTLOG_WARNING_TYPE, | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |                 logging.ERROR   : win32evtlog.EVENTLOG_ERROR_TYPE, | 
					
						
							|  |  |  |                 logging.CRITICAL: win32evtlog.EVENTLOG_ERROR_TYPE, | 
					
						
							|  |  |  |          } | 
					
						
							|  |  |  |         except ImportError: | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |             print("The Python Win32 extensions for NT (service, event "\ | 
					
						
							|  |  |  |                         "logging) appear not to be available.") | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             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, | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |         WARNING, ERROR and CRITICAL. If you are using your own levels you will | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         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]) | 
					
						
							| 
									
										
										
										
											2005-10-31 14:27:01 +00:00
										 |  |  |             except (KeyboardInterrupt, SystemExit): | 
					
						
							|  |  |  |                 raise | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             except: | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |                 self.handleError(record) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     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) | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         logging.Handler.close(self) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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) | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |         method = method.upper() | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         if method not in ["GET", "POST"]: | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |             raise ValueError("method must be GET or POST") | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         self.host = host | 
					
						
							|  |  |  |         self.url = url | 
					
						
							|  |  |  |         self.method = method | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-23 03:49:43 +00:00
										 |  |  |     def mapLogRecord(self, record): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Default implementation of mapping the log record into a dict | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         that is sent as the CGI data. Overwrite in your class. | 
					
						
							| 
									
										
										
										
											2003-04-23 03:49:43 +00:00
										 |  |  |         Contributed by Franz  Glasner. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         return record.__dict__ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |     def emit(self, record): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Emit a record. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Send the record to the Web server as an URL-encoded dictionary | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             import httplib, urllib | 
					
						
							| 
									
										
										
										
											2005-10-11 13:15:31 +00:00
										 |  |  |             host = self.host | 
					
						
							|  |  |  |             h = httplib.HTTP(host) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             url = self.url | 
					
						
							| 
									
										
										
										
											2003-04-23 03:49:43 +00:00
										 |  |  |             data = urllib.urlencode(self.mapLogRecord(record)) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             if self.method == "GET": | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |                 if (url.find('?') >= 0): | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |                     sep = '&' | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     sep = '?' | 
					
						
							|  |  |  |                 url = url + "%c%s" % (sep, data) | 
					
						
							|  |  |  |             h.putrequest(self.method, url) | 
					
						
							| 
									
										
										
										
											2005-10-11 13:15:31 +00:00
										 |  |  |             # support multiple hosts on one IP address... | 
					
						
							|  |  |  |             # need to strip optional :port from host, if present | 
					
						
							| 
									
										
										
										
											2009-10-10 20:32:36 +00:00
										 |  |  |             i = host.find(":") | 
					
						
							| 
									
										
										
										
											2005-10-11 13:15:31 +00:00
										 |  |  |             if i >= 0: | 
					
						
							|  |  |  |                 host = host[:i] | 
					
						
							|  |  |  |             h.putheader("Host", host) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             if self.method == "POST": | 
					
						
							| 
									
										
										
										
											2005-10-11 13:15:31 +00:00
										 |  |  |                 h.putheader("Content-type", | 
					
						
							|  |  |  |                             "application/x-www-form-urlencoded") | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |                 h.putheader("Content-length", str(len(data))) | 
					
						
							| 
									
										
										
										
											2009-01-09 20:27:16 +00:00
										 |  |  |             h.endheaders(data if self.method == "POST" else None) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |             h.getreply()    #can't do anything with the result | 
					
						
							| 
									
										
										
										
											2005-10-31 14:27:01 +00:00
										 |  |  |         except (KeyboardInterrupt, SystemExit): | 
					
						
							|  |  |  |             raise | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  |         except: | 
					
						
							| 
									
										
										
										
											2003-02-18 14:20:07 +00:00
										 |  |  |             self.handleError(record) | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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.buffer = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-02-21 22:14:34 +00:00
										 |  |  |     def close(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Close the handler. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         This version just flushes and chains to the parent class' close(). | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         self.flush() | 
					
						
							|  |  |  |         logging.Handler.close(self) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-13 16:15:58 +00:00
										 |  |  | 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. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if self.target: | 
					
						
							|  |  |  |             for record in self.buffer: | 
					
						
							|  |  |  |                 self.target.handle(record) | 
					
						
							|  |  |  |             self.buffer = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def close(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Flush, set the target to None and lose the buffer. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         self.flush() | 
					
						
							|  |  |  |         self.target = None | 
					
						
							| 
									
										
										
										
											2004-02-20 13:17:27 +00:00
										 |  |  |         BufferingHandler.close(self) |