blob: 2279db2bb0a163f5c434b5f3859458fa3a46c63b [file] [log] [blame]
Thomas Woutersb2137042007-02-01 18:02:27 +00001# Copyright 2001-2007 by Vinay Sajip. All Rights Reserved.
Guido van Rossum57102f82002-11-13 16:15:58 +00002#
3# Permission to use, copy, modify, and distribute this software and its
4# documentation for any purpose and without fee is hereby granted,
5# provided that the above copyright notice appear in all copies and that
6# both that copyright notice and this permission notice appear in
7# supporting documentation, and that the name of Vinay Sajip
8# not be used in advertising or publicity pertaining to distribution
9# of the software without specific, written prior permission.
10# VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
11# ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
12# VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
13# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
14# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Guido van Rossum57102f82002-11-13 16:15:58 +000016
17"""
Vinay Sajip3f742842004-02-28 16:07:46 +000018Additional handlers for the logging package for Python. The core package is
19based on PEP 282 and comments thereto in comp.lang.python, and influenced by
20Apache's log4j system.
Guido van Rossum57102f82002-11-13 16:15:58 +000021
22Should work under Python versions >= 1.5.2, except that source line
Vinay Sajip48cfe382004-02-20 13:17:27 +000023information is not available unless 'sys._getframe()' is.
Guido van Rossum57102f82002-11-13 16:15:58 +000024
Thomas Woutersb2137042007-02-01 18:02:27 +000025Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
Guido van Rossum57102f82002-11-13 16:15:58 +000026
27To use, simply 'import logging' and log away!
28"""
29
Guido van Rossum13257902007-06-07 23:15:56 +000030import sys, logging, socket, os, struct, time, glob
Guido van Rossum99603b02007-07-20 00:22:32 +000031import pickle
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +000032from stat import ST_DEV, ST_INO
Guido van Rossum57102f82002-11-13 16:15:58 +000033
Vinay Sajip4600f112005-03-13 09:56:36 +000034try:
35 import codecs
36except ImportError:
37 codecs = None
38
Guido van Rossum57102f82002-11-13 16:15:58 +000039#
40# Some constants...
41#
42
43DEFAULT_TCP_LOGGING_PORT = 9020
44DEFAULT_UDP_LOGGING_PORT = 9021
45DEFAULT_HTTP_LOGGING_PORT = 9022
46DEFAULT_SOAP_LOGGING_PORT = 9023
47SYSLOG_UDP_PORT = 514
48
Thomas Wouters477c8d52006-05-27 19:21:47 +000049_MIDNIGHT = 24 * 60 * 60 # number of seconds in a day
50
Vinay Sajip17c52d82004-07-03 11:48:34 +000051class BaseRotatingHandler(logging.FileHandler):
52 """
53 Base class for handlers that rotate log files at a certain point.
54 Not meant to be instantiated directly. Instead, use RotatingFileHandler
55 or TimedRotatingFileHandler.
56 """
Vinay Sajip4600f112005-03-13 09:56:36 +000057 def __init__(self, filename, mode, encoding=None):
Vinay Sajip17c52d82004-07-03 11:48:34 +000058 """
59 Use the specified filename for streamed logging
60 """
Vinay Sajip4600f112005-03-13 09:56:36 +000061 if codecs is None:
62 encoding = None
63 logging.FileHandler.__init__(self, filename, mode, encoding)
64 self.mode = mode
65 self.encoding = encoding
Guido van Rossum57102f82002-11-13 16:15:58 +000066
Vinay Sajip17c52d82004-07-03 11:48:34 +000067 def emit(self, record):
68 """
69 Emit a record.
70
71 Output the record to the file, catering for rollover as described
72 in doRollover().
73 """
Vinay Sajip3970c112004-07-08 10:24:04 +000074 try:
75 if self.shouldRollover(record):
76 self.doRollover()
77 logging.FileHandler.emit(self, record)
Vinay Sajip85c19092005-10-31 13:14:19 +000078 except (KeyboardInterrupt, SystemExit):
79 raise
Vinay Sajip3970c112004-07-08 10:24:04 +000080 except:
81 self.handleError(record)
Vinay Sajip17c52d82004-07-03 11:48:34 +000082
83class RotatingFileHandler(BaseRotatingHandler):
84 """
85 Handler for logging to a set of files, which switches from one file
86 to the next when the current file reaches a certain size.
87 """
Vinay Sajip4600f112005-03-13 09:56:36 +000088 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None):
Guido van Rossum57102f82002-11-13 16:15:58 +000089 """
90 Open the specified file and use it as the stream for logging.
91
92 By default, the file grows indefinitely. You can specify particular
93 values of maxBytes and backupCount to allow the file to rollover at
94 a predetermined size.
95
96 Rollover occurs whenever the current log file is nearly maxBytes in
97 length. If backupCount is >= 1, the system will successively create
98 new files with the same pathname as the base file, but with extensions
99 ".1", ".2" etc. appended to it. For example, with a backupCount of 5
100 and a base file name of "app.log", you would get "app.log",
101 "app.log.1", "app.log.2", ... through to "app.log.5". The file being
102 written to is always "app.log" - when it gets filled up, it is closed
103 and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc.
104 exist, then they are renamed to "app.log.2", "app.log.3" etc.
105 respectively.
106
107 If maxBytes is zero, rollover never occurs.
108 """
Vinay Sajip17c52d82004-07-03 11:48:34 +0000109 if maxBytes > 0:
Vinay Sajip4600f112005-03-13 09:56:36 +0000110 mode = 'a' # doesn't make sense otherwise!
111 BaseRotatingHandler.__init__(self, filename, mode, encoding)
Guido van Rossum57102f82002-11-13 16:15:58 +0000112 self.maxBytes = maxBytes
113 self.backupCount = backupCount
Guido van Rossum57102f82002-11-13 16:15:58 +0000114
115 def doRollover(self):
116 """
117 Do a rollover, as described in __init__().
118 """
119
120 self.stream.close()
121 if self.backupCount > 0:
122 for i in range(self.backupCount - 1, 0, -1):
123 sfn = "%s.%d" % (self.baseFilename, i)
124 dfn = "%s.%d" % (self.baseFilename, i + 1)
125 if os.path.exists(sfn):
126 #print "%s -> %s" % (sfn, dfn)
127 if os.path.exists(dfn):
128 os.remove(dfn)
129 os.rename(sfn, dfn)
130 dfn = self.baseFilename + ".1"
131 if os.path.exists(dfn):
132 os.remove(dfn)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000133 os.rename(self.baseFilename, dfn)
Guido van Rossum57102f82002-11-13 16:15:58 +0000134 #print "%s -> %s" % (self.baseFilename, dfn)
Thomas Woutersb2137042007-02-01 18:02:27 +0000135 self.mode = 'w'
136 self.stream = self._open()
Guido van Rossum57102f82002-11-13 16:15:58 +0000137
Vinay Sajip17c52d82004-07-03 11:48:34 +0000138 def shouldRollover(self, record):
Guido van Rossum57102f82002-11-13 16:15:58 +0000139 """
Vinay Sajip17c52d82004-07-03 11:48:34 +0000140 Determine if rollover should occur.
Guido van Rossum57102f82002-11-13 16:15:58 +0000141
Vinay Sajip17c52d82004-07-03 11:48:34 +0000142 Basically, see if the supplied record would cause the file to exceed
143 the size limit we have.
Guido van Rossum57102f82002-11-13 16:15:58 +0000144 """
145 if self.maxBytes > 0: # are we rolling over?
146 msg = "%s\n" % self.format(record)
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000147 self.stream.seek(0, 2) #due to non-posix-compliant Windows feature
Guido van Rossum57102f82002-11-13 16:15:58 +0000148 if self.stream.tell() + len(msg) >= self.maxBytes:
Vinay Sajip17c52d82004-07-03 11:48:34 +0000149 return 1
150 return 0
Guido van Rossum57102f82002-11-13 16:15:58 +0000151
Vinay Sajip17c52d82004-07-03 11:48:34 +0000152class TimedRotatingFileHandler(BaseRotatingHandler):
153 """
154 Handler for logging to a file, rotating the log file at certain timed
155 intervals.
156
157 If backupCount is > 0, when rollover is done, no more than backupCount
158 files are kept - the oldest ones are deleted.
159 """
Vinay Sajip4600f112005-03-13 09:56:36 +0000160 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None):
161 BaseRotatingHandler.__init__(self, filename, 'a', encoding)
Neal Norwitz9d72bb42007-04-17 08:48:32 +0000162 self.when = when.upper()
Vinay Sajip17c52d82004-07-03 11:48:34 +0000163 self.backupCount = backupCount
164 # Calculate the real rollover interval, which is just the number of
165 # seconds between rollovers. Also set the filename suffix used when
166 # a rollover occurs. Current 'when' events supported:
167 # S - Seconds
168 # M - Minutes
169 # H - Hours
170 # D - Days
171 # midnight - roll over at midnight
172 # W{0-6} - roll over on a certain day; 0 - Monday
173 #
174 # Case of the 'when' specifier is not important; lower or upper case
175 # will work.
176 currentTime = int(time.time())
177 if self.when == 'S':
178 self.interval = 1 # one second
179 self.suffix = "%Y-%m-%d_%H-%M-%S"
180 elif self.when == 'M':
181 self.interval = 60 # one minute
182 self.suffix = "%Y-%m-%d_%H-%M"
183 elif self.when == 'H':
184 self.interval = 60 * 60 # one hour
185 self.suffix = "%Y-%m-%d_%H"
186 elif self.when == 'D' or self.when == 'MIDNIGHT':
187 self.interval = 60 * 60 * 24 # one day
188 self.suffix = "%Y-%m-%d"
189 elif self.when.startswith('W'):
190 self.interval = 60 * 60 * 24 * 7 # one week
191 if len(self.when) != 2:
192 raise ValueError("You must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s" % self.when)
193 if self.when[1] < '0' or self.when[1] > '6':
194 raise ValueError("Invalid day specified for weekly rollover: %s" % self.when)
195 self.dayOfWeek = int(self.when[1])
196 self.suffix = "%Y-%m-%d"
197 else:
198 raise ValueError("Invalid rollover interval specified: %s" % self.when)
199
Vinay Sajipe7d40662004-10-03 19:12:07 +0000200 self.interval = self.interval * interval # multiply by units requested
Vinay Sajip17c52d82004-07-03 11:48:34 +0000201 self.rolloverAt = currentTime + self.interval
202
203 # If we are rolling over at midnight or weekly, then the interval is already known.
204 # What we need to figure out is WHEN the next interval is. In other words,
205 # if you are rolling over at midnight, then your base interval is 1 day,
206 # but you want to start that one day clock at midnight, not now. So, we
207 # have to fudge the rolloverAt value in order to trigger the first rollover
208 # at the right time. After that, the regular interval will take care of
209 # the rest. Note that this code doesn't care about leap seconds. :)
210 if self.when == 'MIDNIGHT' or self.when.startswith('W'):
211 # This could be done with less code, but I wanted it to be clear
212 t = time.localtime(currentTime)
213 currentHour = t[3]
214 currentMinute = t[4]
215 currentSecond = t[5]
216 # r is the number of seconds left between now and midnight
Thomas Wouters477c8d52006-05-27 19:21:47 +0000217 r = _MIDNIGHT - ((currentHour * 60 + currentMinute) * 60 +
218 currentSecond)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000219 self.rolloverAt = currentTime + r
220 # If we are rolling over on a certain day, add in the number of days until
221 # the next rollover, but offset by 1 since we just calculated the time
222 # until the next day starts. There are three cases:
223 # Case 1) The day to rollover is today; in this case, do nothing
224 # Case 2) The day to rollover is further in the interval (i.e., today is
225 # day 2 (Wednesday) and rollover is on day 6 (Sunday). Days to
226 # next rollover is simply 6 - 2 - 1, or 3.
227 # Case 3) The day to rollover is behind us in the interval (i.e., today
228 # is day 5 (Saturday) and rollover is on day 3 (Thursday).
229 # Days to rollover is 6 - 5 + 3, or 4. In this case, it's the
230 # number of days left in the current week (1) plus the number
231 # of days in the next week until the rollover day (3).
232 if when.startswith('W'):
233 day = t[6] # 0 is Monday
234 if day > self.dayOfWeek:
235 daysToWait = (day - self.dayOfWeek) - 1
Vinay Sajipe7d40662004-10-03 19:12:07 +0000236 self.rolloverAt = self.rolloverAt + (daysToWait * (60 * 60 * 24))
Vinay Sajip17c52d82004-07-03 11:48:34 +0000237 if day < self.dayOfWeek:
238 daysToWait = (6 - self.dayOfWeek) + day
Vinay Sajipe7d40662004-10-03 19:12:07 +0000239 self.rolloverAt = self.rolloverAt + (daysToWait * (60 * 60 * 24))
Vinay Sajip17c52d82004-07-03 11:48:34 +0000240
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000241 #print "Will rollover at %d, %d seconds from now" % (self.rolloverAt, self.rolloverAt - currentTime)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000242
243 def shouldRollover(self, record):
244 """
245 Determine if rollover should occur
246
247 record is not used, as we are just comparing times, but it is needed so
248 the method siguratures are the same
249 """
250 t = int(time.time())
251 if t >= self.rolloverAt:
252 return 1
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000253 #print "No need to rollover: %d, %d" % (t, self.rolloverAt)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000254 return 0
255
256 def doRollover(self):
257 """
258 do a rollover; in this case, a date/time stamp is appended to the filename
259 when the rollover happens. However, you want the file to be named for the
260 start of the interval, not the current time. If there is a backup count,
261 then we have to get a list of matching filenames, sort them and remove
262 the one with the oldest suffix.
263 """
264 self.stream.close()
265 # get the time that this sequence started at and make it a TimeTuple
266 t = self.rolloverAt - self.interval
267 timeTuple = time.localtime(t)
268 dfn = self.baseFilename + "." + time.strftime(self.suffix, timeTuple)
269 if os.path.exists(dfn):
270 os.remove(dfn)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000271 os.rename(self.baseFilename, dfn)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000272 if self.backupCount > 0:
273 # find the oldest log file and delete it
274 s = glob.glob(self.baseFilename + ".20*")
275 if len(s) > self.backupCount:
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000276 s.sort()
Vinay Sajip17c52d82004-07-03 11:48:34 +0000277 os.remove(s[0])
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000278 #print "%s -> %s" % (self.baseFilename, dfn)
Thomas Woutersb2137042007-02-01 18:02:27 +0000279 self.mode = 'w'
280 self.stream = self._open()
Vinay Sajipd9520412006-01-16 09:13:58 +0000281 self.rolloverAt = self.rolloverAt + self.interval
Guido van Rossum57102f82002-11-13 16:15:58 +0000282
Thomas Woutersfc7bb8c2007-01-15 15:49:28 +0000283class WatchedFileHandler(logging.FileHandler):
284 """
285 A handler for logging to a file, which watches the file
286 to see if it has changed while in use. This can happen because of
287 usage of programs such as newsyslog and logrotate which perform
288 log file rotation. This handler, intended for use under Unix,
289 watches the file to see if it has changed since the last emit.
290 (A file has changed if its device or inode have changed.)
291 If it has changed, the old file stream is closed, and the file
292 opened to get a new stream.
293
294 This handler is not appropriate for use under Windows, because
295 under Windows open files cannot be moved or renamed - logging
296 opens the files with exclusive locks - and so there is no need
297 for such a handler. Furthermore, ST_INO is not supported under
298 Windows; stat always returns zero for this value.
299
300 This handler is based on a suggestion and patch by Chad J.
301 Schroeder.
302 """
303 def __init__(self, filename, mode='a', encoding=None):
304 logging.FileHandler.__init__(self, filename, mode, encoding)
305 stat = os.stat(self.baseFilename)
306 self.dev, self.ino = stat[ST_DEV], stat[ST_INO]
307
308 def emit(self, record):
309 """
310 Emit a record.
311
312 First check if the underlying file has changed, and if it
313 has, close the old stream and reopen the file to get the
314 current stream.
315 """
316 if not os.path.exists(self.baseFilename):
317 stat = None
318 changed = 1
319 else:
320 stat = os.stat(self.baseFilename)
321 changed = (stat[ST_DEV] != self.dev) or (stat[ST_INO] != self.ino)
322 if changed:
323 self.stream.flush()
324 self.stream.close()
325 self.stream = self._open()
326 if stat is None:
327 stat = os.stat(self.baseFilename)
328 self.dev, self.ino = stat[ST_DEV], stat[ST_INO]
329 logging.FileHandler.emit(self, record)
330
Guido van Rossum57102f82002-11-13 16:15:58 +0000331class SocketHandler(logging.Handler):
332 """
333 A handler class which writes logging records, in pickle format, to
334 a streaming socket. The socket is kept open across logging calls.
335 If the peer resets it, an attempt is made to reconnect on the next call.
Raymond Hettinger6f3eaa62003-06-27 21:43:39 +0000336 The pickle which is sent is that of the LogRecord's attribute dictionary
337 (__dict__), so that the receiver does not need to have the logging module
338 installed in order to process the logging event.
339
340 To unpickle the record at the receiving end into a LogRecord, use the
341 makeLogRecord function.
Guido van Rossum57102f82002-11-13 16:15:58 +0000342 """
343
344 def __init__(self, host, port):
345 """
346 Initializes the handler with a specific host address and port.
347
348 The attribute 'closeOnError' is set to 1 - which means that if
349 a socket error occurs, the socket is silently closed and then
350 reopened on the next logging call.
351 """
352 logging.Handler.__init__(self)
353 self.host = host
354 self.port = port
355 self.sock = None
356 self.closeOnError = 0
Vinay Sajip48cfe382004-02-20 13:17:27 +0000357 self.retryTime = None
358 #
359 # Exponential backoff parameters.
360 #
361 self.retryStart = 1.0
362 self.retryMax = 30.0
363 self.retryFactor = 2.0
Guido van Rossum57102f82002-11-13 16:15:58 +0000364
Guido van Rossumd8faa362007-04-27 19:54:29 +0000365 def makeSocket(self, timeout=1):
Guido van Rossum57102f82002-11-13 16:15:58 +0000366 """
367 A factory method which allows subclasses to define the precise
368 type of socket they want.
369 """
370 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000371 if hasattr(s, 'settimeout'):
372 s.settimeout(timeout)
Guido van Rossum57102f82002-11-13 16:15:58 +0000373 s.connect((self.host, self.port))
374 return s
375
Vinay Sajip48cfe382004-02-20 13:17:27 +0000376 def createSocket(self):
377 """
378 Try to create a socket, using an exponential backoff with
379 a max retry time. Thanks to Robert Olson for the original patch
380 (SF #815911) which has been slightly refactored.
381 """
382 now = time.time()
383 # Either retryTime is None, in which case this
384 # is the first time back after a disconnect, or
385 # we've waited long enough.
386 if self.retryTime is None:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000387 attempt = 1
Vinay Sajip48cfe382004-02-20 13:17:27 +0000388 else:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000389 attempt = (now >= self.retryTime)
Vinay Sajip48cfe382004-02-20 13:17:27 +0000390 if attempt:
391 try:
392 self.sock = self.makeSocket()
393 self.retryTime = None # next time, no delay before trying
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000394 except socket.error:
Vinay Sajip48cfe382004-02-20 13:17:27 +0000395 #Creation failed, so set the retry time and return.
396 if self.retryTime is None:
397 self.retryPeriod = self.retryStart
398 else:
399 self.retryPeriod = self.retryPeriod * self.retryFactor
400 if self.retryPeriod > self.retryMax:
401 self.retryPeriod = self.retryMax
402 self.retryTime = now + self.retryPeriod
403
Guido van Rossum57102f82002-11-13 16:15:58 +0000404 def send(self, s):
405 """
406 Send a pickled string to the socket.
407
408 This function allows for partial sends which can happen when the
409 network is busy.
410 """
Vinay Sajip48cfe382004-02-20 13:17:27 +0000411 if self.sock is None:
412 self.createSocket()
413 #self.sock can be None either because we haven't reached the retry
414 #time yet, or because we have reached the retry time and retried,
415 #but are still unable to connect.
416 if self.sock:
417 try:
418 if hasattr(self.sock, "sendall"):
419 self.sock.sendall(s)
420 else:
421 sentsofar = 0
422 left = len(s)
423 while left > 0:
424 sent = self.sock.send(s[sentsofar:])
425 sentsofar = sentsofar + sent
426 left = left - sent
427 except socket.error:
428 self.sock.close()
429 self.sock = None # so we can call createSocket next time
Guido van Rossum57102f82002-11-13 16:15:58 +0000430
431 def makePickle(self, record):
432 """
433 Pickles the record in binary format with a length prefix, and
434 returns it ready for transmission across the socket.
435 """
Vinay Sajip48cfe382004-02-20 13:17:27 +0000436 ei = record.exc_info
437 if ei:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000438 dummy = self.format(record) # just to get traceback text into record.exc_text
439 record.exc_info = None # to avoid Unpickleable error
Guido van Rossumba205d62006-08-17 08:57:26 +0000440 s = pickle.dumps(record.__dict__, 1)
Vinay Sajip48cfe382004-02-20 13:17:27 +0000441 if ei:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000442 record.exc_info = ei # for next handler
Guido van Rossum57102f82002-11-13 16:15:58 +0000443 slen = struct.pack(">L", len(s))
444 return slen + s
445
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000446 def handleError(self, record):
Guido van Rossum57102f82002-11-13 16:15:58 +0000447 """
448 Handle an error during logging.
449
450 An error has occurred during logging. Most likely cause -
451 connection lost. Close the socket so that we can retry on the
452 next event.
453 """
454 if self.closeOnError and self.sock:
455 self.sock.close()
456 self.sock = None #try to reconnect next time
457 else:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000458 logging.Handler.handleError(self, record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000459
460 def emit(self, record):
461 """
462 Emit a record.
463
464 Pickles the record and writes it to the socket in binary format.
465 If there is an error with the socket, silently drop the packet.
466 If there was a problem with the socket, re-establishes the
467 socket.
468 """
469 try:
470 s = self.makePickle(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000471 self.send(s)
Vinay Sajip85c19092005-10-31 13:14:19 +0000472 except (KeyboardInterrupt, SystemExit):
473 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000474 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000475 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000476
477 def close(self):
478 """
479 Closes the socket.
480 """
481 if self.sock:
482 self.sock.close()
483 self.sock = None
Vinay Sajip48cfe382004-02-20 13:17:27 +0000484 logging.Handler.close(self)
Guido van Rossum57102f82002-11-13 16:15:58 +0000485
486class DatagramHandler(SocketHandler):
487 """
488 A handler class which writes logging records, in pickle format, to
Raymond Hettinger6f3eaa62003-06-27 21:43:39 +0000489 a datagram socket. The pickle which is sent is that of the LogRecord's
490 attribute dictionary (__dict__), so that the receiver does not need to
491 have the logging module installed in order to process the logging event.
492
493 To unpickle the record at the receiving end into a LogRecord, use the
494 makeLogRecord function.
Guido van Rossum57102f82002-11-13 16:15:58 +0000495
496 """
497 def __init__(self, host, port):
498 """
499 Initializes the handler with a specific host address and port.
500 """
501 SocketHandler.__init__(self, host, port)
502 self.closeOnError = 0
503
504 def makeSocket(self):
505 """
506 The factory method of SocketHandler is here overridden to create
507 a UDP socket (SOCK_DGRAM).
508 """
509 s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
510 return s
511
512 def send(self, s):
513 """
514 Send a pickled string to a socket.
515
516 This function no longer allows for partial sends which can happen
517 when the network is busy - UDP does not guarantee delivery and
518 can deliver packets out of sequence.
519 """
Vinay Sajipfb154172004-08-24 09:36:23 +0000520 if self.sock is None:
521 self.createSocket()
Guido van Rossum57102f82002-11-13 16:15:58 +0000522 self.sock.sendto(s, (self.host, self.port))
523
524class SysLogHandler(logging.Handler):
525 """
526 A handler class which sends formatted logging records to a syslog
527 server. Based on Sam Rushing's syslog module:
528 http://www.nightmare.com/squirl/python-ext/misc/syslog.py
529 Contributed by Nicolas Untz (after which minor refactoring changes
530 have been made).
531 """
532
533 # from <linux/sys/syslog.h>:
534 # ======================================================================
535 # priorities/facilities are encoded into a single 32-bit quantity, where
536 # the bottom 3 bits are the priority (0-7) and the top 28 bits are the
537 # facility (0-big number). Both the priorities and the facilities map
538 # roughly one-to-one to strings in the syslogd(8) source code. This
539 # mapping is included in this file.
540 #
541 # priorities (these are ordered)
542
543 LOG_EMERG = 0 # system is unusable
544 LOG_ALERT = 1 # action must be taken immediately
545 LOG_CRIT = 2 # critical conditions
546 LOG_ERR = 3 # error conditions
547 LOG_WARNING = 4 # warning conditions
548 LOG_NOTICE = 5 # normal but significant condition
549 LOG_INFO = 6 # informational
550 LOG_DEBUG = 7 # debug-level messages
551
552 # facility codes
553 LOG_KERN = 0 # kernel messages
554 LOG_USER = 1 # random user-level messages
555 LOG_MAIL = 2 # mail system
556 LOG_DAEMON = 3 # system daemons
557 LOG_AUTH = 4 # security/authorization messages
558 LOG_SYSLOG = 5 # messages generated internally by syslogd
559 LOG_LPR = 6 # line printer subsystem
560 LOG_NEWS = 7 # network news subsystem
561 LOG_UUCP = 8 # UUCP subsystem
562 LOG_CRON = 9 # clock daemon
563 LOG_AUTHPRIV = 10 # security/authorization messages (private)
564
565 # other codes through 15 reserved for system use
566 LOG_LOCAL0 = 16 # reserved for local use
567 LOG_LOCAL1 = 17 # reserved for local use
568 LOG_LOCAL2 = 18 # reserved for local use
569 LOG_LOCAL3 = 19 # reserved for local use
570 LOG_LOCAL4 = 20 # reserved for local use
571 LOG_LOCAL5 = 21 # reserved for local use
572 LOG_LOCAL6 = 22 # reserved for local use
573 LOG_LOCAL7 = 23 # reserved for local use
574
575 priority_names = {
576 "alert": LOG_ALERT,
577 "crit": LOG_CRIT,
578 "critical": LOG_CRIT,
579 "debug": LOG_DEBUG,
580 "emerg": LOG_EMERG,
581 "err": LOG_ERR,
582 "error": LOG_ERR, # DEPRECATED
583 "info": LOG_INFO,
584 "notice": LOG_NOTICE,
585 "panic": LOG_EMERG, # DEPRECATED
586 "warn": LOG_WARNING, # DEPRECATED
587 "warning": LOG_WARNING,
588 }
589
590 facility_names = {
591 "auth": LOG_AUTH,
592 "authpriv": LOG_AUTHPRIV,
593 "cron": LOG_CRON,
594 "daemon": LOG_DAEMON,
595 "kern": LOG_KERN,
596 "lpr": LOG_LPR,
597 "mail": LOG_MAIL,
598 "news": LOG_NEWS,
599 "security": LOG_AUTH, # DEPRECATED
600 "syslog": LOG_SYSLOG,
601 "user": LOG_USER,
602 "uucp": LOG_UUCP,
603 "local0": LOG_LOCAL0,
604 "local1": LOG_LOCAL1,
605 "local2": LOG_LOCAL2,
606 "local3": LOG_LOCAL3,
607 "local4": LOG_LOCAL4,
608 "local5": LOG_LOCAL5,
609 "local6": LOG_LOCAL6,
610 "local7": LOG_LOCAL7,
611 }
612
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000613 #The map below appears to be trivially lowercasing the key. However,
614 #there's more to it than meets the eye - in some locales, lowercasing
615 #gives unexpected results. See SF #1524081: in the Turkish locale,
616 #"INFO".lower() != "info"
617 priority_map = {
618 "DEBUG" : "debug",
619 "INFO" : "info",
620 "WARNING" : "warning",
621 "ERROR" : "error",
622 "CRITICAL" : "critical"
623 }
624
Guido van Rossum57102f82002-11-13 16:15:58 +0000625 def __init__(self, address=('localhost', SYSLOG_UDP_PORT), facility=LOG_USER):
626 """
627 Initialize a handler.
628
Guido van Rossume7ba4952007-06-06 23:52:48 +0000629 If address is specified as a string, a UNIX socket is used. To log to a
630 local syslogd, "SysLogHandler(address="/dev/log")" can be used.
Guido van Rossum57102f82002-11-13 16:15:58 +0000631 If facility is not specified, LOG_USER is used.
632 """
633 logging.Handler.__init__(self)
634
635 self.address = address
636 self.facility = facility
Guido van Rossum13257902007-06-07 23:15:56 +0000637 if isinstance(address, str):
Guido van Rossum57102f82002-11-13 16:15:58 +0000638 self.unixsocket = 1
Thomas Wouters89f507f2006-12-13 04:49:30 +0000639 self._connect_unixsocket(address)
Guido van Rossum57102f82002-11-13 16:15:58 +0000640 else:
Guido van Rossum57102f82002-11-13 16:15:58 +0000641 self.unixsocket = 0
Thomas Wouters89f507f2006-12-13 04:49:30 +0000642 self.socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
Guido van Rossum57102f82002-11-13 16:15:58 +0000643
644 self.formatter = None
645
Vinay Sajipa1974c12005-01-13 08:23:56 +0000646 def _connect_unixsocket(self, address):
647 self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
648 # syslog may require either DGRAM or STREAM sockets
649 try:
650 self.socket.connect(address)
651 except socket.error:
652 self.socket.close()
653 self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
Vinay Sajip8b6b53f2005-11-09 13:55:13 +0000654 self.socket.connect(address)
Vinay Sajipa1974c12005-01-13 08:23:56 +0000655
Guido van Rossum57102f82002-11-13 16:15:58 +0000656 # curious: when talking to the unix-domain '/dev/log' socket, a
657 # zero-terminator seems to be required. this string is placed
658 # into a class variable so that it can be overridden if
659 # necessary.
660 log_format_string = '<%d>%s\000'
661
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000662 def encodePriority(self, facility, priority):
Guido van Rossum57102f82002-11-13 16:15:58 +0000663 """
664 Encode the facility and priority. You can pass in strings or
665 integers - if strings are passed, the facility_names and
666 priority_names mapping dictionaries are used to convert them to
667 integers.
668 """
Guido van Rossum13257902007-06-07 23:15:56 +0000669 if isinstance(facility, str):
Guido van Rossum57102f82002-11-13 16:15:58 +0000670 facility = self.facility_names[facility]
Guido van Rossum13257902007-06-07 23:15:56 +0000671 if isinstance(priority, str):
Guido van Rossum57102f82002-11-13 16:15:58 +0000672 priority = self.priority_names[priority]
673 return (facility << 3) | priority
674
675 def close (self):
676 """
677 Closes the socket.
678 """
679 if self.unixsocket:
680 self.socket.close()
Vinay Sajip48cfe382004-02-20 13:17:27 +0000681 logging.Handler.close(self)
Guido van Rossum57102f82002-11-13 16:15:58 +0000682
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000683 def mapPriority(self, levelName):
684 """
685 Map a logging level name to a key in the priority_names map.
686 This is useful in two scenarios: when custom levels are being
687 used, and in the case where you can't do a straightforward
688 mapping by lowercasing the logging level name because of locale-
689 specific issues (see SF #1524081).
690 """
691 return self.priority_map.get(levelName, "warning")
692
Guido van Rossum57102f82002-11-13 16:15:58 +0000693 def emit(self, record):
694 """
695 Emit a record.
696
697 The record is formatted, and then sent to the syslog server. If
698 exception information is present, it is NOT sent to the server.
699 """
700 msg = self.format(record)
701 """
702 We need to convert record level to lowercase, maybe this will
703 change in the future.
704 """
705 msg = self.log_format_string % (
706 self.encodePriority(self.facility,
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000707 self.mapPriority(record.levelname)),
708 msg)
Guido van Rossum57102f82002-11-13 16:15:58 +0000709 try:
710 if self.unixsocket:
Vinay Sajipa1974c12005-01-13 08:23:56 +0000711 try:
712 self.socket.send(msg)
713 except socket.error:
714 self._connect_unixsocket(self.address)
715 self.socket.send(msg)
Guido van Rossum57102f82002-11-13 16:15:58 +0000716 else:
717 self.socket.sendto(msg, self.address)
Vinay Sajip85c19092005-10-31 13:14:19 +0000718 except (KeyboardInterrupt, SystemExit):
719 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000720 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000721 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000722
723class SMTPHandler(logging.Handler):
724 """
725 A handler class which sends an SMTP email for each logging event.
726 """
Guido van Rossum360e4b82007-05-14 22:51:27 +0000727 def __init__(self, mailhost, fromaddr, toaddrs, subject, credentials=None):
Guido van Rossum57102f82002-11-13 16:15:58 +0000728 """
729 Initialize the handler.
730
731 Initialize the instance with the from and to addresses and subject
732 line of the email. To specify a non-standard SMTP port, use the
Guido van Rossum360e4b82007-05-14 22:51:27 +0000733 (host, port) tuple format for the mailhost argument. To specify
734 authentication credentials, supply a (username, password) tuple
735 for the credentials argument.
Guido van Rossum57102f82002-11-13 16:15:58 +0000736 """
737 logging.Handler.__init__(self)
Guido van Rossum13257902007-06-07 23:15:56 +0000738 if isinstance(mailhost, tuple):
Guido van Rossum360e4b82007-05-14 22:51:27 +0000739 self.mailhost, self.mailport = mailhost
Guido van Rossum57102f82002-11-13 16:15:58 +0000740 else:
Guido van Rossum360e4b82007-05-14 22:51:27 +0000741 self.mailhost, self.mailport = mailhost, None
Guido van Rossum13257902007-06-07 23:15:56 +0000742 if isinstance(credentials, tuple):
Guido van Rossum360e4b82007-05-14 22:51:27 +0000743 self.username, self.password = credentials
744 else:
745 self.username = None
Guido van Rossum57102f82002-11-13 16:15:58 +0000746 self.fromaddr = fromaddr
Guido van Rossum13257902007-06-07 23:15:56 +0000747 if isinstance(toaddrs, str):
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000748 toaddrs = [toaddrs]
Guido van Rossum57102f82002-11-13 16:15:58 +0000749 self.toaddrs = toaddrs
750 self.subject = subject
751
752 def getSubject(self, record):
753 """
754 Determine the subject for the email.
755
756 If you want to specify a subject line which is record-dependent,
757 override this method.
758 """
759 return self.subject
760
Vinay Sajipe7d40662004-10-03 19:12:07 +0000761 weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
762
763 monthname = [None,
764 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
765 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
766
767 def date_time(self):
768 """
769 Return the current date and time formatted for a MIME header.
770 Needed for Python 1.5.2 (no email package available)
771 """
772 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(time.time())
773 s = "%s, %02d %3s %4d %02d:%02d:%02d GMT" % (
774 self.weekdayname[wd],
775 day, self.monthname[month], year,
776 hh, mm, ss)
777 return s
778
Guido van Rossum57102f82002-11-13 16:15:58 +0000779 def emit(self, record):
780 """
781 Emit a record.
782
783 Format the record and send it to the specified addressees.
784 """
785 try:
786 import smtplib
Vinay Sajipe7d40662004-10-03 19:12:07 +0000787 try:
Thomas Woutersb2137042007-02-01 18:02:27 +0000788 from email.utils import formatdate
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000789 except ImportError:
Vinay Sajipe7d40662004-10-03 19:12:07 +0000790 formatdate = self.date_time
Guido van Rossum57102f82002-11-13 16:15:58 +0000791 port = self.mailport
792 if not port:
793 port = smtplib.SMTP_PORT
794 smtp = smtplib.SMTP(self.mailhost, port)
795 msg = self.format(record)
Neal Norwitzf297bd12003-04-23 03:49:43 +0000796 msg = "From: %s\r\nTo: %s\r\nSubject: %s\r\nDate: %s\r\n\r\n%s" % (
Guido van Rossum57102f82002-11-13 16:15:58 +0000797 self.fromaddr,
Neal Norwitz9d72bb42007-04-17 08:48:32 +0000798 ",".join(self.toaddrs),
Neal Norwitzf297bd12003-04-23 03:49:43 +0000799 self.getSubject(record),
Martin v. Löwis318a12e2004-08-18 12:27:40 +0000800 formatdate(), msg)
Guido van Rossum360e4b82007-05-14 22:51:27 +0000801 if self.username:
802 smtp.login(self.username, self.password)
Guido van Rossum57102f82002-11-13 16:15:58 +0000803 smtp.sendmail(self.fromaddr, self.toaddrs, msg)
804 smtp.quit()
Vinay Sajip245a5ab2005-10-31 14:27:01 +0000805 except (KeyboardInterrupt, SystemExit):
806 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000807 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000808 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000809
810class NTEventLogHandler(logging.Handler):
811 """
812 A handler class which sends events to the NT Event Log. Adds a
813 registry entry for the specified application name. If no dllname is
814 provided, win32service.pyd (which contains some basic message
815 placeholders) is used. Note that use of these placeholders will make
816 your event logs big, as the entire message source is held in the log.
817 If you want slimmer logs, you have to pass in the name of your own DLL
818 which contains the message definitions you want to use in the event log.
819 """
820 def __init__(self, appname, dllname=None, logtype="Application"):
821 logging.Handler.__init__(self)
822 try:
823 import win32evtlogutil, win32evtlog
824 self.appname = appname
825 self._welu = win32evtlogutil
826 if not dllname:
827 dllname = os.path.split(self._welu.__file__)
828 dllname = os.path.split(dllname[0])
829 dllname = os.path.join(dllname[0], r'win32service.pyd')
830 self.dllname = dllname
831 self.logtype = logtype
832 self._welu.AddSourceToRegistry(appname, dllname, logtype)
833 self.deftype = win32evtlog.EVENTLOG_ERROR_TYPE
834 self.typemap = {
835 logging.DEBUG : win32evtlog.EVENTLOG_INFORMATION_TYPE,
836 logging.INFO : win32evtlog.EVENTLOG_INFORMATION_TYPE,
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000837 logging.WARNING : win32evtlog.EVENTLOG_WARNING_TYPE,
Guido van Rossum57102f82002-11-13 16:15:58 +0000838 logging.ERROR : win32evtlog.EVENTLOG_ERROR_TYPE,
839 logging.CRITICAL: win32evtlog.EVENTLOG_ERROR_TYPE,
840 }
841 except ImportError:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000842 print("The Python Win32 extensions for NT (service, event "\
843 "logging) appear not to be available.")
Guido van Rossum57102f82002-11-13 16:15:58 +0000844 self._welu = None
845
846 def getMessageID(self, record):
847 """
848 Return the message ID for the event record. If you are using your
849 own messages, you could do this by having the msg passed to the
850 logger being an ID rather than a formatting string. Then, in here,
851 you could use a dictionary lookup to get the message ID. This
852 version returns 1, which is the base message ID in win32service.pyd.
853 """
854 return 1
855
856 def getEventCategory(self, record):
857 """
858 Return the event category for the record.
859
860 Override this if you want to specify your own categories. This version
861 returns 0.
862 """
863 return 0
864
865 def getEventType(self, record):
866 """
867 Return the event type for the record.
868
869 Override this if you want to specify your own types. This version does
870 a mapping using the handler's typemap attribute, which is set up in
871 __init__() to a dictionary which contains mappings for DEBUG, INFO,
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000872 WARNING, ERROR and CRITICAL. If you are using your own levels you will
Guido van Rossum57102f82002-11-13 16:15:58 +0000873 either need to override this method or place a suitable dictionary in
874 the handler's typemap attribute.
875 """
876 return self.typemap.get(record.levelno, self.deftype)
877
878 def emit(self, record):
879 """
880 Emit a record.
881
882 Determine the message ID, event category and event type. Then
883 log the message in the NT event log.
884 """
885 if self._welu:
886 try:
887 id = self.getMessageID(record)
888 cat = self.getEventCategory(record)
889 type = self.getEventType(record)
890 msg = self.format(record)
891 self._welu.ReportEvent(self.appname, id, cat, type, [msg])
Vinay Sajip245a5ab2005-10-31 14:27:01 +0000892 except (KeyboardInterrupt, SystemExit):
893 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000894 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000895 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000896
897 def close(self):
898 """
899 Clean up this handler.
900
901 You can remove the application name from the registry as a
902 source of event log entries. However, if you do this, you will
903 not be able to see the events as you intended in the Event Log
904 Viewer - it needs to be able to access the registry to get the
905 DLL name.
906 """
907 #self._welu.RemoveSourceFromRegistry(self.appname, self.logtype)
Vinay Sajip48cfe382004-02-20 13:17:27 +0000908 logging.Handler.close(self)
Guido van Rossum57102f82002-11-13 16:15:58 +0000909
910class HTTPHandler(logging.Handler):
911 """
912 A class which sends records to a Web server, using either GET or
913 POST semantics.
914 """
915 def __init__(self, host, url, method="GET"):
916 """
917 Initialize the instance with the host, the request URL, and the method
918 ("GET" or "POST")
919 """
920 logging.Handler.__init__(self)
Neal Norwitz9d72bb42007-04-17 08:48:32 +0000921 method = method.upper()
Guido van Rossum57102f82002-11-13 16:15:58 +0000922 if method not in ["GET", "POST"]:
923 raise ValueError, "method must be GET or POST"
924 self.host = host
925 self.url = url
926 self.method = method
927
Neal Norwitzf297bd12003-04-23 03:49:43 +0000928 def mapLogRecord(self, record):
929 """
930 Default implementation of mapping the log record into a dict
Vinay Sajip48cfe382004-02-20 13:17:27 +0000931 that is sent as the CGI data. Overwrite in your class.
Neal Norwitzf297bd12003-04-23 03:49:43 +0000932 Contributed by Franz Glasner.
933 """
934 return record.__dict__
935
Guido van Rossum57102f82002-11-13 16:15:58 +0000936 def emit(self, record):
937 """
938 Emit a record.
939
940 Send the record to the Web server as an URL-encoded dictionary
941 """
942 try:
943 import httplib, urllib
Vinay Sajipb7935062005-10-11 13:15:31 +0000944 host = self.host
945 h = httplib.HTTP(host)
Guido van Rossum57102f82002-11-13 16:15:58 +0000946 url = self.url
Neal Norwitzf297bd12003-04-23 03:49:43 +0000947 data = urllib.urlencode(self.mapLogRecord(record))
Guido van Rossum57102f82002-11-13 16:15:58 +0000948 if self.method == "GET":
Neal Norwitz9d72bb42007-04-17 08:48:32 +0000949 if (url.find('?') >= 0):
Guido van Rossum57102f82002-11-13 16:15:58 +0000950 sep = '&'
951 else:
952 sep = '?'
953 url = url + "%c%s" % (sep, data)
954 h.putrequest(self.method, url)
Vinay Sajipb7935062005-10-11 13:15:31 +0000955 # support multiple hosts on one IP address...
956 # need to strip optional :port from host, if present
Neal Norwitz9d72bb42007-04-17 08:48:32 +0000957 i = host.find(":")
Vinay Sajipb7935062005-10-11 13:15:31 +0000958 if i >= 0:
959 host = host[:i]
960 h.putheader("Host", host)
Guido van Rossum57102f82002-11-13 16:15:58 +0000961 if self.method == "POST":
Vinay Sajipb7935062005-10-11 13:15:31 +0000962 h.putheader("Content-type",
963 "application/x-www-form-urlencoded")
Guido van Rossum57102f82002-11-13 16:15:58 +0000964 h.putheader("Content-length", str(len(data)))
965 h.endheaders()
966 if self.method == "POST":
967 h.send(data)
968 h.getreply() #can't do anything with the result
Vinay Sajip245a5ab2005-10-31 14:27:01 +0000969 except (KeyboardInterrupt, SystemExit):
970 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000971 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000972 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000973
974class BufferingHandler(logging.Handler):
975 """
976 A handler class which buffers logging records in memory. Whenever each
977 record is added to the buffer, a check is made to see if the buffer should
978 be flushed. If it should, then flush() is expected to do what's needed.
979 """
980 def __init__(self, capacity):
981 """
982 Initialize the handler with the buffer size.
983 """
984 logging.Handler.__init__(self)
985 self.capacity = capacity
986 self.buffer = []
987
988 def shouldFlush(self, record):
989 """
990 Should the handler flush its buffer?
991
992 Returns true if the buffer is up to capacity. This method can be
993 overridden to implement custom flushing strategies.
994 """
995 return (len(self.buffer) >= self.capacity)
996
997 def emit(self, record):
998 """
999 Emit a record.
1000
1001 Append the record. If shouldFlush() tells us to, call flush() to process
1002 the buffer.
1003 """
1004 self.buffer.append(record)
1005 if self.shouldFlush(record):
1006 self.flush()
1007
1008 def flush(self):
1009 """
1010 Override to implement custom flushing behaviour.
1011
1012 This version just zaps the buffer to empty.
1013 """
1014 self.buffer = []
1015
Vinay Sajipf42d95e2004-02-21 22:14:34 +00001016 def close(self):
1017 """
1018 Close the handler.
1019
1020 This version just flushes and chains to the parent class' close().
1021 """
1022 self.flush()
1023 logging.Handler.close(self)
1024
Guido van Rossum57102f82002-11-13 16:15:58 +00001025class MemoryHandler(BufferingHandler):
1026 """
1027 A handler class which buffers logging records in memory, periodically
1028 flushing them to a target handler. Flushing occurs whenever the buffer
1029 is full, or when an event of a certain severity or greater is seen.
1030 """
1031 def __init__(self, capacity, flushLevel=logging.ERROR, target=None):
1032 """
1033 Initialize the handler with the buffer size, the level at which
1034 flushing should occur and an optional target.
1035
1036 Note that without a target being set either here or via setTarget(),
1037 a MemoryHandler is no use to anyone!
1038 """
1039 BufferingHandler.__init__(self, capacity)
1040 self.flushLevel = flushLevel
1041 self.target = target
1042
1043 def shouldFlush(self, record):
1044 """
1045 Check for buffer full or a record at the flushLevel or higher.
1046 """
1047 return (len(self.buffer) >= self.capacity) or \
1048 (record.levelno >= self.flushLevel)
1049
1050 def setTarget(self, target):
1051 """
1052 Set the target handler for this handler.
1053 """
1054 self.target = target
1055
1056 def flush(self):
1057 """
1058 For a MemoryHandler, flushing means just sending the buffered
1059 records to the target, if there is one. Override if you want
1060 different behaviour.
1061 """
1062 if self.target:
1063 for record in self.buffer:
1064 self.target.handle(record)
1065 self.buffer = []
1066
1067 def close(self):
1068 """
1069 Flush, set the target to None and lose the buffer.
1070 """
1071 self.flush()
1072 self.target = None
Vinay Sajip48cfe382004-02-20 13:17:27 +00001073 BufferingHandler.close(self)