blob: a0255cee364b00dc5f48451199656529cfafaec4 [file] [log] [blame]
Vinay Sajip4600f112005-03-13 09:56:36 +00001# Copyright 2001-2005 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
Vinay Sajip48cfe382004-02-20 13:17:27 +000025Copyright (C) 2001-2004 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 Rossumba205d62006-08-17 08:57:26 +000030import sys, logging, socket, types, os, string, struct, time, glob
31try:
32 import cPickle as pickle
33except ImportError:
34 import pickle
Guido van Rossum57102f82002-11-13 16:15:58 +000035
Vinay Sajip4600f112005-03-13 09:56:36 +000036try:
37 import codecs
38except ImportError:
39 codecs = None
40
Guido van Rossum57102f82002-11-13 16:15:58 +000041#
42# Some constants...
43#
44
45DEFAULT_TCP_LOGGING_PORT = 9020
46DEFAULT_UDP_LOGGING_PORT = 9021
47DEFAULT_HTTP_LOGGING_PORT = 9022
48DEFAULT_SOAP_LOGGING_PORT = 9023
49SYSLOG_UDP_PORT = 514
50
Thomas Wouters477c8d52006-05-27 19:21:47 +000051_MIDNIGHT = 24 * 60 * 60 # number of seconds in a day
52
Vinay Sajip17c52d82004-07-03 11:48:34 +000053class BaseRotatingHandler(logging.FileHandler):
54 """
55 Base class for handlers that rotate log files at a certain point.
56 Not meant to be instantiated directly. Instead, use RotatingFileHandler
57 or TimedRotatingFileHandler.
58 """
Vinay Sajip4600f112005-03-13 09:56:36 +000059 def __init__(self, filename, mode, encoding=None):
Vinay Sajip17c52d82004-07-03 11:48:34 +000060 """
61 Use the specified filename for streamed logging
62 """
Vinay Sajip4600f112005-03-13 09:56:36 +000063 if codecs is None:
64 encoding = None
65 logging.FileHandler.__init__(self, filename, mode, encoding)
66 self.mode = mode
67 self.encoding = encoding
Guido van Rossum57102f82002-11-13 16:15:58 +000068
Vinay Sajip17c52d82004-07-03 11:48:34 +000069 def emit(self, record):
70 """
71 Emit a record.
72
73 Output the record to the file, catering for rollover as described
74 in doRollover().
75 """
Vinay Sajip3970c112004-07-08 10:24:04 +000076 try:
77 if self.shouldRollover(record):
78 self.doRollover()
79 logging.FileHandler.emit(self, record)
Vinay Sajip85c19092005-10-31 13:14:19 +000080 except (KeyboardInterrupt, SystemExit):
81 raise
Vinay Sajip3970c112004-07-08 10:24:04 +000082 except:
83 self.handleError(record)
Vinay Sajip17c52d82004-07-03 11:48:34 +000084
85class RotatingFileHandler(BaseRotatingHandler):
86 """
87 Handler for logging to a set of files, which switches from one file
88 to the next when the current file reaches a certain size.
89 """
Vinay Sajip4600f112005-03-13 09:56:36 +000090 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None):
Guido van Rossum57102f82002-11-13 16:15:58 +000091 """
92 Open the specified file and use it as the stream for logging.
93
94 By default, the file grows indefinitely. You can specify particular
95 values of maxBytes and backupCount to allow the file to rollover at
96 a predetermined size.
97
98 Rollover occurs whenever the current log file is nearly maxBytes in
99 length. If backupCount is >= 1, the system will successively create
100 new files with the same pathname as the base file, but with extensions
101 ".1", ".2" etc. appended to it. For example, with a backupCount of 5
102 and a base file name of "app.log", you would get "app.log",
103 "app.log.1", "app.log.2", ... through to "app.log.5". The file being
104 written to is always "app.log" - when it gets filled up, it is closed
105 and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc.
106 exist, then they are renamed to "app.log.2", "app.log.3" etc.
107 respectively.
108
109 If maxBytes is zero, rollover never occurs.
110 """
Vinay Sajip17c52d82004-07-03 11:48:34 +0000111 if maxBytes > 0:
Vinay Sajip4600f112005-03-13 09:56:36 +0000112 mode = 'a' # doesn't make sense otherwise!
113 BaseRotatingHandler.__init__(self, filename, mode, encoding)
Guido van Rossum57102f82002-11-13 16:15:58 +0000114 self.maxBytes = maxBytes
115 self.backupCount = backupCount
Guido van Rossum57102f82002-11-13 16:15:58 +0000116
117 def doRollover(self):
118 """
119 Do a rollover, as described in __init__().
120 """
121
122 self.stream.close()
123 if self.backupCount > 0:
124 for i in range(self.backupCount - 1, 0, -1):
125 sfn = "%s.%d" % (self.baseFilename, i)
126 dfn = "%s.%d" % (self.baseFilename, i + 1)
127 if os.path.exists(sfn):
128 #print "%s -> %s" % (sfn, dfn)
129 if os.path.exists(dfn):
130 os.remove(dfn)
131 os.rename(sfn, dfn)
132 dfn = self.baseFilename + ".1"
133 if os.path.exists(dfn):
134 os.remove(dfn)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000135 os.rename(self.baseFilename, dfn)
Guido van Rossum57102f82002-11-13 16:15:58 +0000136 #print "%s -> %s" % (self.baseFilename, dfn)
Vinay Sajip4600f112005-03-13 09:56:36 +0000137 if self.encoding:
138 self.stream = codecs.open(self.baseFilename, 'w', self.encoding)
139 else:
140 self.stream = open(self.baseFilename, 'w')
Guido van Rossum57102f82002-11-13 16:15:58 +0000141
Vinay Sajip17c52d82004-07-03 11:48:34 +0000142 def shouldRollover(self, record):
Guido van Rossum57102f82002-11-13 16:15:58 +0000143 """
Vinay Sajip17c52d82004-07-03 11:48:34 +0000144 Determine if rollover should occur.
Guido van Rossum57102f82002-11-13 16:15:58 +0000145
Vinay Sajip17c52d82004-07-03 11:48:34 +0000146 Basically, see if the supplied record would cause the file to exceed
147 the size limit we have.
Guido van Rossum57102f82002-11-13 16:15:58 +0000148 """
149 if self.maxBytes > 0: # are we rolling over?
150 msg = "%s\n" % self.format(record)
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000151 self.stream.seek(0, 2) #due to non-posix-compliant Windows feature
Guido van Rossum57102f82002-11-13 16:15:58 +0000152 if self.stream.tell() + len(msg) >= self.maxBytes:
Vinay Sajip17c52d82004-07-03 11:48:34 +0000153 return 1
154 return 0
Guido van Rossum57102f82002-11-13 16:15:58 +0000155
Vinay Sajip17c52d82004-07-03 11:48:34 +0000156class TimedRotatingFileHandler(BaseRotatingHandler):
157 """
158 Handler for logging to a file, rotating the log file at certain timed
159 intervals.
160
161 If backupCount is > 0, when rollover is done, no more than backupCount
162 files are kept - the oldest ones are deleted.
163 """
Vinay Sajip4600f112005-03-13 09:56:36 +0000164 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None):
165 BaseRotatingHandler.__init__(self, filename, 'a', encoding)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000166 self.when = string.upper(when)
167 self.backupCount = backupCount
168 # Calculate the real rollover interval, which is just the number of
169 # seconds between rollovers. Also set the filename suffix used when
170 # a rollover occurs. Current 'when' events supported:
171 # S - Seconds
172 # M - Minutes
173 # H - Hours
174 # D - Days
175 # midnight - roll over at midnight
176 # W{0-6} - roll over on a certain day; 0 - Monday
177 #
178 # Case of the 'when' specifier is not important; lower or upper case
179 # will work.
180 currentTime = int(time.time())
181 if self.when == 'S':
182 self.interval = 1 # one second
183 self.suffix = "%Y-%m-%d_%H-%M-%S"
184 elif self.when == 'M':
185 self.interval = 60 # one minute
186 self.suffix = "%Y-%m-%d_%H-%M"
187 elif self.when == 'H':
188 self.interval = 60 * 60 # one hour
189 self.suffix = "%Y-%m-%d_%H"
190 elif self.when == 'D' or self.when == 'MIDNIGHT':
191 self.interval = 60 * 60 * 24 # one day
192 self.suffix = "%Y-%m-%d"
193 elif self.when.startswith('W'):
194 self.interval = 60 * 60 * 24 * 7 # one week
195 if len(self.when) != 2:
196 raise ValueError("You must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s" % self.when)
197 if self.when[1] < '0' or self.when[1] > '6':
198 raise ValueError("Invalid day specified for weekly rollover: %s" % self.when)
199 self.dayOfWeek = int(self.when[1])
200 self.suffix = "%Y-%m-%d"
201 else:
202 raise ValueError("Invalid rollover interval specified: %s" % self.when)
203
Vinay Sajipe7d40662004-10-03 19:12:07 +0000204 self.interval = self.interval * interval # multiply by units requested
Vinay Sajip17c52d82004-07-03 11:48:34 +0000205 self.rolloverAt = currentTime + self.interval
206
207 # If we are rolling over at midnight or weekly, then the interval is already known.
208 # What we need to figure out is WHEN the next interval is. In other words,
209 # if you are rolling over at midnight, then your base interval is 1 day,
210 # but you want to start that one day clock at midnight, not now. So, we
211 # have to fudge the rolloverAt value in order to trigger the first rollover
212 # at the right time. After that, the regular interval will take care of
213 # the rest. Note that this code doesn't care about leap seconds. :)
214 if self.when == 'MIDNIGHT' or self.when.startswith('W'):
215 # This could be done with less code, but I wanted it to be clear
216 t = time.localtime(currentTime)
217 currentHour = t[3]
218 currentMinute = t[4]
219 currentSecond = t[5]
220 # r is the number of seconds left between now and midnight
Thomas Wouters477c8d52006-05-27 19:21:47 +0000221 r = _MIDNIGHT - ((currentHour * 60 + currentMinute) * 60 +
222 currentSecond)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000223 self.rolloverAt = currentTime + r
224 # If we are rolling over on a certain day, add in the number of days until
225 # the next rollover, but offset by 1 since we just calculated the time
226 # until the next day starts. There are three cases:
227 # Case 1) The day to rollover is today; in this case, do nothing
228 # Case 2) The day to rollover is further in the interval (i.e., today is
229 # day 2 (Wednesday) and rollover is on day 6 (Sunday). Days to
230 # next rollover is simply 6 - 2 - 1, or 3.
231 # Case 3) The day to rollover is behind us in the interval (i.e., today
232 # is day 5 (Saturday) and rollover is on day 3 (Thursday).
233 # Days to rollover is 6 - 5 + 3, or 4. In this case, it's the
234 # number of days left in the current week (1) plus the number
235 # of days in the next week until the rollover day (3).
236 if when.startswith('W'):
237 day = t[6] # 0 is Monday
238 if day > self.dayOfWeek:
239 daysToWait = (day - self.dayOfWeek) - 1
Vinay Sajipe7d40662004-10-03 19:12:07 +0000240 self.rolloverAt = self.rolloverAt + (daysToWait * (60 * 60 * 24))
Vinay Sajip17c52d82004-07-03 11:48:34 +0000241 if day < self.dayOfWeek:
242 daysToWait = (6 - self.dayOfWeek) + day
Vinay Sajipe7d40662004-10-03 19:12:07 +0000243 self.rolloverAt = self.rolloverAt + (daysToWait * (60 * 60 * 24))
Vinay Sajip17c52d82004-07-03 11:48:34 +0000244
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000245 #print "Will rollover at %d, %d seconds from now" % (self.rolloverAt, self.rolloverAt - currentTime)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000246
247 def shouldRollover(self, record):
248 """
249 Determine if rollover should occur
250
251 record is not used, as we are just comparing times, but it is needed so
252 the method siguratures are the same
253 """
254 t = int(time.time())
255 if t >= self.rolloverAt:
256 return 1
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000257 #print "No need to rollover: %d, %d" % (t, self.rolloverAt)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000258 return 0
259
260 def doRollover(self):
261 """
262 do a rollover; in this case, a date/time stamp is appended to the filename
263 when the rollover happens. However, you want the file to be named for the
264 start of the interval, not the current time. If there is a backup count,
265 then we have to get a list of matching filenames, sort them and remove
266 the one with the oldest suffix.
267 """
268 self.stream.close()
269 # get the time that this sequence started at and make it a TimeTuple
270 t = self.rolloverAt - self.interval
271 timeTuple = time.localtime(t)
272 dfn = self.baseFilename + "." + time.strftime(self.suffix, timeTuple)
273 if os.path.exists(dfn):
274 os.remove(dfn)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000275 os.rename(self.baseFilename, dfn)
Vinay Sajip17c52d82004-07-03 11:48:34 +0000276 if self.backupCount > 0:
277 # find the oldest log file and delete it
278 s = glob.glob(self.baseFilename + ".20*")
279 if len(s) > self.backupCount:
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000280 s.sort()
Vinay Sajip17c52d82004-07-03 11:48:34 +0000281 os.remove(s[0])
Vinay Sajip5e9e9e12004-07-12 09:21:41 +0000282 #print "%s -> %s" % (self.baseFilename, dfn)
Vinay Sajip4600f112005-03-13 09:56:36 +0000283 if self.encoding:
284 self.stream = codecs.open(self.baseFilename, 'w', self.encoding)
285 else:
286 self.stream = open(self.baseFilename, 'w')
Vinay Sajipd9520412006-01-16 09:13:58 +0000287 self.rolloverAt = self.rolloverAt + self.interval
Guido van Rossum57102f82002-11-13 16:15:58 +0000288
289class SocketHandler(logging.Handler):
290 """
291 A handler class which writes logging records, in pickle format, to
292 a streaming socket. The socket is kept open across logging calls.
293 If the peer resets it, an attempt is made to reconnect on the next call.
Raymond Hettinger6f3eaa62003-06-27 21:43:39 +0000294 The pickle which is sent is that of the LogRecord's attribute dictionary
295 (__dict__), so that the receiver does not need to have the logging module
296 installed in order to process the logging event.
297
298 To unpickle the record at the receiving end into a LogRecord, use the
299 makeLogRecord function.
Guido van Rossum57102f82002-11-13 16:15:58 +0000300 """
301
302 def __init__(self, host, port):
303 """
304 Initializes the handler with a specific host address and port.
305
306 The attribute 'closeOnError' is set to 1 - which means that if
307 a socket error occurs, the socket is silently closed and then
308 reopened on the next logging call.
309 """
310 logging.Handler.__init__(self)
311 self.host = host
312 self.port = port
313 self.sock = None
314 self.closeOnError = 0
Vinay Sajip48cfe382004-02-20 13:17:27 +0000315 self.retryTime = None
316 #
317 # Exponential backoff parameters.
318 #
319 self.retryStart = 1.0
320 self.retryMax = 30.0
321 self.retryFactor = 2.0
Guido van Rossum57102f82002-11-13 16:15:58 +0000322
323 def makeSocket(self):
324 """
325 A factory method which allows subclasses to define the precise
326 type of socket they want.
327 """
328 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
329 s.connect((self.host, self.port))
330 return s
331
Vinay Sajip48cfe382004-02-20 13:17:27 +0000332 def createSocket(self):
333 """
334 Try to create a socket, using an exponential backoff with
335 a max retry time. Thanks to Robert Olson for the original patch
336 (SF #815911) which has been slightly refactored.
337 """
338 now = time.time()
339 # Either retryTime is None, in which case this
340 # is the first time back after a disconnect, or
341 # we've waited long enough.
342 if self.retryTime is None:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000343 attempt = 1
Vinay Sajip48cfe382004-02-20 13:17:27 +0000344 else:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000345 attempt = (now >= self.retryTime)
Vinay Sajip48cfe382004-02-20 13:17:27 +0000346 if attempt:
347 try:
348 self.sock = self.makeSocket()
349 self.retryTime = None # next time, no delay before trying
350 except:
351 #Creation failed, so set the retry time and return.
352 if self.retryTime is None:
353 self.retryPeriod = self.retryStart
354 else:
355 self.retryPeriod = self.retryPeriod * self.retryFactor
356 if self.retryPeriod > self.retryMax:
357 self.retryPeriod = self.retryMax
358 self.retryTime = now + self.retryPeriod
359
Guido van Rossum57102f82002-11-13 16:15:58 +0000360 def send(self, s):
361 """
362 Send a pickled string to the socket.
363
364 This function allows for partial sends which can happen when the
365 network is busy.
366 """
Vinay Sajip48cfe382004-02-20 13:17:27 +0000367 if self.sock is None:
368 self.createSocket()
369 #self.sock can be None either because we haven't reached the retry
370 #time yet, or because we have reached the retry time and retried,
371 #but are still unable to connect.
372 if self.sock:
373 try:
374 if hasattr(self.sock, "sendall"):
375 self.sock.sendall(s)
376 else:
377 sentsofar = 0
378 left = len(s)
379 while left > 0:
380 sent = self.sock.send(s[sentsofar:])
381 sentsofar = sentsofar + sent
382 left = left - sent
383 except socket.error:
384 self.sock.close()
385 self.sock = None # so we can call createSocket next time
Guido van Rossum57102f82002-11-13 16:15:58 +0000386
387 def makePickle(self, record):
388 """
389 Pickles the record in binary format with a length prefix, and
390 returns it ready for transmission across the socket.
391 """
Vinay Sajip48cfe382004-02-20 13:17:27 +0000392 ei = record.exc_info
393 if ei:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000394 dummy = self.format(record) # just to get traceback text into record.exc_text
395 record.exc_info = None # to avoid Unpickleable error
Guido van Rossumba205d62006-08-17 08:57:26 +0000396 s = pickle.dumps(record.__dict__, 1)
Vinay Sajip48cfe382004-02-20 13:17:27 +0000397 if ei:
Tim Peters4e0e1b62004-07-07 20:54:48 +0000398 record.exc_info = ei # for next handler
Guido van Rossum57102f82002-11-13 16:15:58 +0000399 slen = struct.pack(">L", len(s))
400 return slen + s
401
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000402 def handleError(self, record):
Guido van Rossum57102f82002-11-13 16:15:58 +0000403 """
404 Handle an error during logging.
405
406 An error has occurred during logging. Most likely cause -
407 connection lost. Close the socket so that we can retry on the
408 next event.
409 """
410 if self.closeOnError and self.sock:
411 self.sock.close()
412 self.sock = None #try to reconnect next time
413 else:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000414 logging.Handler.handleError(self, record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000415
416 def emit(self, record):
417 """
418 Emit a record.
419
420 Pickles the record and writes it to the socket in binary format.
421 If there is an error with the socket, silently drop the packet.
422 If there was a problem with the socket, re-establishes the
423 socket.
424 """
425 try:
426 s = self.makePickle(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000427 self.send(s)
Vinay Sajip85c19092005-10-31 13:14:19 +0000428 except (KeyboardInterrupt, SystemExit):
429 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000430 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000431 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000432
433 def close(self):
434 """
435 Closes the socket.
436 """
437 if self.sock:
438 self.sock.close()
439 self.sock = None
Vinay Sajip48cfe382004-02-20 13:17:27 +0000440 logging.Handler.close(self)
Guido van Rossum57102f82002-11-13 16:15:58 +0000441
442class DatagramHandler(SocketHandler):
443 """
444 A handler class which writes logging records, in pickle format, to
Raymond Hettinger6f3eaa62003-06-27 21:43:39 +0000445 a datagram socket. The pickle which is sent is that of the LogRecord's
446 attribute dictionary (__dict__), so that the receiver does not need to
447 have the logging module installed in order to process the logging event.
448
449 To unpickle the record at the receiving end into a LogRecord, use the
450 makeLogRecord function.
Guido van Rossum57102f82002-11-13 16:15:58 +0000451
452 """
453 def __init__(self, host, port):
454 """
455 Initializes the handler with a specific host address and port.
456 """
457 SocketHandler.__init__(self, host, port)
458 self.closeOnError = 0
459
460 def makeSocket(self):
461 """
462 The factory method of SocketHandler is here overridden to create
463 a UDP socket (SOCK_DGRAM).
464 """
465 s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
466 return s
467
468 def send(self, s):
469 """
470 Send a pickled string to a socket.
471
472 This function no longer allows for partial sends which can happen
473 when the network is busy - UDP does not guarantee delivery and
474 can deliver packets out of sequence.
475 """
Vinay Sajipfb154172004-08-24 09:36:23 +0000476 if self.sock is None:
477 self.createSocket()
Guido van Rossum57102f82002-11-13 16:15:58 +0000478 self.sock.sendto(s, (self.host, self.port))
479
480class SysLogHandler(logging.Handler):
481 """
482 A handler class which sends formatted logging records to a syslog
483 server. Based on Sam Rushing's syslog module:
484 http://www.nightmare.com/squirl/python-ext/misc/syslog.py
485 Contributed by Nicolas Untz (after which minor refactoring changes
486 have been made).
487 """
488
489 # from <linux/sys/syslog.h>:
490 # ======================================================================
491 # priorities/facilities are encoded into a single 32-bit quantity, where
492 # the bottom 3 bits are the priority (0-7) and the top 28 bits are the
493 # facility (0-big number). Both the priorities and the facilities map
494 # roughly one-to-one to strings in the syslogd(8) source code. This
495 # mapping is included in this file.
496 #
497 # priorities (these are ordered)
498
499 LOG_EMERG = 0 # system is unusable
500 LOG_ALERT = 1 # action must be taken immediately
501 LOG_CRIT = 2 # critical conditions
502 LOG_ERR = 3 # error conditions
503 LOG_WARNING = 4 # warning conditions
504 LOG_NOTICE = 5 # normal but significant condition
505 LOG_INFO = 6 # informational
506 LOG_DEBUG = 7 # debug-level messages
507
508 # facility codes
509 LOG_KERN = 0 # kernel messages
510 LOG_USER = 1 # random user-level messages
511 LOG_MAIL = 2 # mail system
512 LOG_DAEMON = 3 # system daemons
513 LOG_AUTH = 4 # security/authorization messages
514 LOG_SYSLOG = 5 # messages generated internally by syslogd
515 LOG_LPR = 6 # line printer subsystem
516 LOG_NEWS = 7 # network news subsystem
517 LOG_UUCP = 8 # UUCP subsystem
518 LOG_CRON = 9 # clock daemon
519 LOG_AUTHPRIV = 10 # security/authorization messages (private)
520
521 # other codes through 15 reserved for system use
522 LOG_LOCAL0 = 16 # reserved for local use
523 LOG_LOCAL1 = 17 # reserved for local use
524 LOG_LOCAL2 = 18 # reserved for local use
525 LOG_LOCAL3 = 19 # reserved for local use
526 LOG_LOCAL4 = 20 # reserved for local use
527 LOG_LOCAL5 = 21 # reserved for local use
528 LOG_LOCAL6 = 22 # reserved for local use
529 LOG_LOCAL7 = 23 # reserved for local use
530
531 priority_names = {
532 "alert": LOG_ALERT,
533 "crit": LOG_CRIT,
534 "critical": LOG_CRIT,
535 "debug": LOG_DEBUG,
536 "emerg": LOG_EMERG,
537 "err": LOG_ERR,
538 "error": LOG_ERR, # DEPRECATED
539 "info": LOG_INFO,
540 "notice": LOG_NOTICE,
541 "panic": LOG_EMERG, # DEPRECATED
542 "warn": LOG_WARNING, # DEPRECATED
543 "warning": LOG_WARNING,
544 }
545
546 facility_names = {
547 "auth": LOG_AUTH,
548 "authpriv": LOG_AUTHPRIV,
549 "cron": LOG_CRON,
550 "daemon": LOG_DAEMON,
551 "kern": LOG_KERN,
552 "lpr": LOG_LPR,
553 "mail": LOG_MAIL,
554 "news": LOG_NEWS,
555 "security": LOG_AUTH, # DEPRECATED
556 "syslog": LOG_SYSLOG,
557 "user": LOG_USER,
558 "uucp": LOG_UUCP,
559 "local0": LOG_LOCAL0,
560 "local1": LOG_LOCAL1,
561 "local2": LOG_LOCAL2,
562 "local3": LOG_LOCAL3,
563 "local4": LOG_LOCAL4,
564 "local5": LOG_LOCAL5,
565 "local6": LOG_LOCAL6,
566 "local7": LOG_LOCAL7,
567 }
568
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000569 #The map below appears to be trivially lowercasing the key. However,
570 #there's more to it than meets the eye - in some locales, lowercasing
571 #gives unexpected results. See SF #1524081: in the Turkish locale,
572 #"INFO".lower() != "info"
573 priority_map = {
574 "DEBUG" : "debug",
575 "INFO" : "info",
576 "WARNING" : "warning",
577 "ERROR" : "error",
578 "CRITICAL" : "critical"
579 }
580
Guido van Rossum57102f82002-11-13 16:15:58 +0000581 def __init__(self, address=('localhost', SYSLOG_UDP_PORT), facility=LOG_USER):
582 """
583 Initialize a handler.
584
585 If address is specified as a string, UNIX socket is used.
586 If facility is not specified, LOG_USER is used.
587 """
588 logging.Handler.__init__(self)
589
590 self.address = address
591 self.facility = facility
592 if type(address) == types.StringType:
Vinay Sajipa1974c12005-01-13 08:23:56 +0000593 self._connect_unixsocket(address)
Guido van Rossum57102f82002-11-13 16:15:58 +0000594 self.unixsocket = 1
595 else:
596 self.socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
597 self.unixsocket = 0
598
599 self.formatter = None
600
Vinay Sajipa1974c12005-01-13 08:23:56 +0000601 def _connect_unixsocket(self, address):
602 self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
603 # syslog may require either DGRAM or STREAM sockets
604 try:
605 self.socket.connect(address)
606 except socket.error:
607 self.socket.close()
608 self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
Vinay Sajip8b6b53f2005-11-09 13:55:13 +0000609 self.socket.connect(address)
Vinay Sajipa1974c12005-01-13 08:23:56 +0000610
Guido van Rossum57102f82002-11-13 16:15:58 +0000611 # curious: when talking to the unix-domain '/dev/log' socket, a
612 # zero-terminator seems to be required. this string is placed
613 # into a class variable so that it can be overridden if
614 # necessary.
615 log_format_string = '<%d>%s\000'
616
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000617 def encodePriority(self, facility, priority):
Guido van Rossum57102f82002-11-13 16:15:58 +0000618 """
619 Encode the facility and priority. You can pass in strings or
620 integers - if strings are passed, the facility_names and
621 priority_names mapping dictionaries are used to convert them to
622 integers.
623 """
624 if type(facility) == types.StringType:
625 facility = self.facility_names[facility]
626 if type(priority) == types.StringType:
627 priority = self.priority_names[priority]
628 return (facility << 3) | priority
629
630 def close (self):
631 """
632 Closes the socket.
633 """
634 if self.unixsocket:
635 self.socket.close()
Vinay Sajip48cfe382004-02-20 13:17:27 +0000636 logging.Handler.close(self)
Guido van Rossum57102f82002-11-13 16:15:58 +0000637
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000638 def mapPriority(self, levelName):
639 """
640 Map a logging level name to a key in the priority_names map.
641 This is useful in two scenarios: when custom levels are being
642 used, and in the case where you can't do a straightforward
643 mapping by lowercasing the logging level name because of locale-
644 specific issues (see SF #1524081).
645 """
646 return self.priority_map.get(levelName, "warning")
647
Guido van Rossum57102f82002-11-13 16:15:58 +0000648 def emit(self, record):
649 """
650 Emit a record.
651
652 The record is formatted, and then sent to the syslog server. If
653 exception information is present, it is NOT sent to the server.
654 """
655 msg = self.format(record)
656 """
657 We need to convert record level to lowercase, maybe this will
658 change in the future.
659 """
660 msg = self.log_format_string % (
661 self.encodePriority(self.facility,
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000662 self.mapPriority(record.levelname)),
663 msg)
Guido van Rossum57102f82002-11-13 16:15:58 +0000664 try:
665 if self.unixsocket:
Vinay Sajipa1974c12005-01-13 08:23:56 +0000666 try:
667 self.socket.send(msg)
668 except socket.error:
669 self._connect_unixsocket(self.address)
670 self.socket.send(msg)
Guido van Rossum57102f82002-11-13 16:15:58 +0000671 else:
672 self.socket.sendto(msg, self.address)
Vinay Sajip85c19092005-10-31 13:14:19 +0000673 except (KeyboardInterrupt, SystemExit):
674 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000675 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000676 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000677
678class SMTPHandler(logging.Handler):
679 """
680 A handler class which sends an SMTP email for each logging event.
681 """
682 def __init__(self, mailhost, fromaddr, toaddrs, subject):
683 """
684 Initialize the handler.
685
686 Initialize the instance with the from and to addresses and subject
687 line of the email. To specify a non-standard SMTP port, use the
688 (host, port) tuple format for the mailhost argument.
689 """
690 logging.Handler.__init__(self)
691 if type(mailhost) == types.TupleType:
692 host, port = mailhost
693 self.mailhost = host
694 self.mailport = port
695 else:
696 self.mailhost = mailhost
697 self.mailport = None
698 self.fromaddr = fromaddr
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000699 if type(toaddrs) == types.StringType:
700 toaddrs = [toaddrs]
Guido van Rossum57102f82002-11-13 16:15:58 +0000701 self.toaddrs = toaddrs
702 self.subject = subject
703
704 def getSubject(self, record):
705 """
706 Determine the subject for the email.
707
708 If you want to specify a subject line which is record-dependent,
709 override this method.
710 """
711 return self.subject
712
Vinay Sajipe7d40662004-10-03 19:12:07 +0000713 weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
714
715 monthname = [None,
716 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
717 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
718
719 def date_time(self):
720 """
721 Return the current date and time formatted for a MIME header.
722 Needed for Python 1.5.2 (no email package available)
723 """
724 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(time.time())
725 s = "%s, %02d %3s %4d %02d:%02d:%02d GMT" % (
726 self.weekdayname[wd],
727 day, self.monthname[month], year,
728 hh, mm, ss)
729 return s
730
Guido van Rossum57102f82002-11-13 16:15:58 +0000731 def emit(self, record):
732 """
733 Emit a record.
734
735 Format the record and send it to the specified addressees.
736 """
737 try:
738 import smtplib
Vinay Sajipe7d40662004-10-03 19:12:07 +0000739 try:
740 from email.Utils import formatdate
741 except:
742 formatdate = self.date_time
Guido van Rossum57102f82002-11-13 16:15:58 +0000743 port = self.mailport
744 if not port:
745 port = smtplib.SMTP_PORT
746 smtp = smtplib.SMTP(self.mailhost, port)
747 msg = self.format(record)
Neal Norwitzf297bd12003-04-23 03:49:43 +0000748 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 +0000749 self.fromaddr,
750 string.join(self.toaddrs, ","),
Neal Norwitzf297bd12003-04-23 03:49:43 +0000751 self.getSubject(record),
Martin v. Löwis318a12e2004-08-18 12:27:40 +0000752 formatdate(), msg)
Guido van Rossum57102f82002-11-13 16:15:58 +0000753 smtp.sendmail(self.fromaddr, self.toaddrs, msg)
754 smtp.quit()
Vinay Sajip245a5ab2005-10-31 14:27:01 +0000755 except (KeyboardInterrupt, SystemExit):
756 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000757 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000758 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000759
760class NTEventLogHandler(logging.Handler):
761 """
762 A handler class which sends events to the NT Event Log. Adds a
763 registry entry for the specified application name. If no dllname is
764 provided, win32service.pyd (which contains some basic message
765 placeholders) is used. Note that use of these placeholders will make
766 your event logs big, as the entire message source is held in the log.
767 If you want slimmer logs, you have to pass in the name of your own DLL
768 which contains the message definitions you want to use in the event log.
769 """
770 def __init__(self, appname, dllname=None, logtype="Application"):
771 logging.Handler.__init__(self)
772 try:
773 import win32evtlogutil, win32evtlog
774 self.appname = appname
775 self._welu = win32evtlogutil
776 if not dllname:
777 dllname = os.path.split(self._welu.__file__)
778 dllname = os.path.split(dllname[0])
779 dllname = os.path.join(dllname[0], r'win32service.pyd')
780 self.dllname = dllname
781 self.logtype = logtype
782 self._welu.AddSourceToRegistry(appname, dllname, logtype)
783 self.deftype = win32evtlog.EVENTLOG_ERROR_TYPE
784 self.typemap = {
785 logging.DEBUG : win32evtlog.EVENTLOG_INFORMATION_TYPE,
786 logging.INFO : win32evtlog.EVENTLOG_INFORMATION_TYPE,
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000787 logging.WARNING : win32evtlog.EVENTLOG_WARNING_TYPE,
Guido van Rossum57102f82002-11-13 16:15:58 +0000788 logging.ERROR : win32evtlog.EVENTLOG_ERROR_TYPE,
789 logging.CRITICAL: win32evtlog.EVENTLOG_ERROR_TYPE,
790 }
791 except ImportError:
792 print "The Python Win32 extensions for NT (service, event "\
793 "logging) appear not to be available."
794 self._welu = None
795
796 def getMessageID(self, record):
797 """
798 Return the message ID for the event record. If you are using your
799 own messages, you could do this by having the msg passed to the
800 logger being an ID rather than a formatting string. Then, in here,
801 you could use a dictionary lookup to get the message ID. This
802 version returns 1, which is the base message ID in win32service.pyd.
803 """
804 return 1
805
806 def getEventCategory(self, record):
807 """
808 Return the event category for the record.
809
810 Override this if you want to specify your own categories. This version
811 returns 0.
812 """
813 return 0
814
815 def getEventType(self, record):
816 """
817 Return the event type for the record.
818
819 Override this if you want to specify your own types. This version does
820 a mapping using the handler's typemap attribute, which is set up in
821 __init__() to a dictionary which contains mappings for DEBUG, INFO,
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000822 WARNING, ERROR and CRITICAL. If you are using your own levels you will
Guido van Rossum57102f82002-11-13 16:15:58 +0000823 either need to override this method or place a suitable dictionary in
824 the handler's typemap attribute.
825 """
826 return self.typemap.get(record.levelno, self.deftype)
827
828 def emit(self, record):
829 """
830 Emit a record.
831
832 Determine the message ID, event category and event type. Then
833 log the message in the NT event log.
834 """
835 if self._welu:
836 try:
837 id = self.getMessageID(record)
838 cat = self.getEventCategory(record)
839 type = self.getEventType(record)
840 msg = self.format(record)
841 self._welu.ReportEvent(self.appname, id, cat, type, [msg])
Vinay Sajip245a5ab2005-10-31 14:27:01 +0000842 except (KeyboardInterrupt, SystemExit):
843 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000844 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000845 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000846
847 def close(self):
848 """
849 Clean up this handler.
850
851 You can remove the application name from the registry as a
852 source of event log entries. However, if you do this, you will
853 not be able to see the events as you intended in the Event Log
854 Viewer - it needs to be able to access the registry to get the
855 DLL name.
856 """
857 #self._welu.RemoveSourceFromRegistry(self.appname, self.logtype)
Vinay Sajip48cfe382004-02-20 13:17:27 +0000858 logging.Handler.close(self)
Guido van Rossum57102f82002-11-13 16:15:58 +0000859
860class HTTPHandler(logging.Handler):
861 """
862 A class which sends records to a Web server, using either GET or
863 POST semantics.
864 """
865 def __init__(self, host, url, method="GET"):
866 """
867 Initialize the instance with the host, the request URL, and the method
868 ("GET" or "POST")
869 """
870 logging.Handler.__init__(self)
871 method = string.upper(method)
872 if method not in ["GET", "POST"]:
873 raise ValueError, "method must be GET or POST"
874 self.host = host
875 self.url = url
876 self.method = method
877
Neal Norwitzf297bd12003-04-23 03:49:43 +0000878 def mapLogRecord(self, record):
879 """
880 Default implementation of mapping the log record into a dict
Vinay Sajip48cfe382004-02-20 13:17:27 +0000881 that is sent as the CGI data. Overwrite in your class.
Neal Norwitzf297bd12003-04-23 03:49:43 +0000882 Contributed by Franz Glasner.
883 """
884 return record.__dict__
885
Guido van Rossum57102f82002-11-13 16:15:58 +0000886 def emit(self, record):
887 """
888 Emit a record.
889
890 Send the record to the Web server as an URL-encoded dictionary
891 """
892 try:
893 import httplib, urllib
Vinay Sajipb7935062005-10-11 13:15:31 +0000894 host = self.host
895 h = httplib.HTTP(host)
Guido van Rossum57102f82002-11-13 16:15:58 +0000896 url = self.url
Neal Norwitzf297bd12003-04-23 03:49:43 +0000897 data = urllib.urlencode(self.mapLogRecord(record))
Guido van Rossum57102f82002-11-13 16:15:58 +0000898 if self.method == "GET":
899 if (string.find(url, '?') >= 0):
900 sep = '&'
901 else:
902 sep = '?'
903 url = url + "%c%s" % (sep, data)
904 h.putrequest(self.method, url)
Vinay Sajipb7935062005-10-11 13:15:31 +0000905 # support multiple hosts on one IP address...
906 # need to strip optional :port from host, if present
907 i = string.find(host, ":")
908 if i >= 0:
909 host = host[:i]
910 h.putheader("Host", host)
Guido van Rossum57102f82002-11-13 16:15:58 +0000911 if self.method == "POST":
Vinay Sajipb7935062005-10-11 13:15:31 +0000912 h.putheader("Content-type",
913 "application/x-www-form-urlencoded")
Guido van Rossum57102f82002-11-13 16:15:58 +0000914 h.putheader("Content-length", str(len(data)))
915 h.endheaders()
916 if self.method == "POST":
917 h.send(data)
918 h.getreply() #can't do anything with the result
Vinay Sajip245a5ab2005-10-31 14:27:01 +0000919 except (KeyboardInterrupt, SystemExit):
920 raise
Guido van Rossum57102f82002-11-13 16:15:58 +0000921 except:
Neal Norwitz6fa635d2003-02-18 14:20:07 +0000922 self.handleError(record)
Guido van Rossum57102f82002-11-13 16:15:58 +0000923
924class BufferingHandler(logging.Handler):
925 """
926 A handler class which buffers logging records in memory. Whenever each
927 record is added to the buffer, a check is made to see if the buffer should
928 be flushed. If it should, then flush() is expected to do what's needed.
929 """
930 def __init__(self, capacity):
931 """
932 Initialize the handler with the buffer size.
933 """
934 logging.Handler.__init__(self)
935 self.capacity = capacity
936 self.buffer = []
937
938 def shouldFlush(self, record):
939 """
940 Should the handler flush its buffer?
941
942 Returns true if the buffer is up to capacity. This method can be
943 overridden to implement custom flushing strategies.
944 """
945 return (len(self.buffer) >= self.capacity)
946
947 def emit(self, record):
948 """
949 Emit a record.
950
951 Append the record. If shouldFlush() tells us to, call flush() to process
952 the buffer.
953 """
954 self.buffer.append(record)
955 if self.shouldFlush(record):
956 self.flush()
957
958 def flush(self):
959 """
960 Override to implement custom flushing behaviour.
961
962 This version just zaps the buffer to empty.
963 """
964 self.buffer = []
965
Vinay Sajipf42d95e2004-02-21 22:14:34 +0000966 def close(self):
967 """
968 Close the handler.
969
970 This version just flushes and chains to the parent class' close().
971 """
972 self.flush()
973 logging.Handler.close(self)
974
Guido van Rossum57102f82002-11-13 16:15:58 +0000975class MemoryHandler(BufferingHandler):
976 """
977 A handler class which buffers logging records in memory, periodically
978 flushing them to a target handler. Flushing occurs whenever the buffer
979 is full, or when an event of a certain severity or greater is seen.
980 """
981 def __init__(self, capacity, flushLevel=logging.ERROR, target=None):
982 """
983 Initialize the handler with the buffer size, the level at which
984 flushing should occur and an optional target.
985
986 Note that without a target being set either here or via setTarget(),
987 a MemoryHandler is no use to anyone!
988 """
989 BufferingHandler.__init__(self, capacity)
990 self.flushLevel = flushLevel
991 self.target = target
992
993 def shouldFlush(self, record):
994 """
995 Check for buffer full or a record at the flushLevel or higher.
996 """
997 return (len(self.buffer) >= self.capacity) or \
998 (record.levelno >= self.flushLevel)
999
1000 def setTarget(self, target):
1001 """
1002 Set the target handler for this handler.
1003 """
1004 self.target = target
1005
1006 def flush(self):
1007 """
1008 For a MemoryHandler, flushing means just sending the buffered
1009 records to the target, if there is one. Override if you want
1010 different behaviour.
1011 """
1012 if self.target:
1013 for record in self.buffer:
1014 self.target.handle(record)
1015 self.buffer = []
1016
1017 def close(self):
1018 """
1019 Flush, set the target to None and lose the buffer.
1020 """
1021 self.flush()
1022 self.target = None
Vinay Sajip48cfe382004-02-20 13:17:27 +00001023 BufferingHandler.close(self)