handlers.py 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472
  1. # Copyright 2001-2015 by Vinay Sajip. All Rights Reserved.
  2. #
  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.
  16. """
  17. Additional handlers for the logging package for Python. The core package is
  18. based on PEP 282 and comments thereto in comp.lang.python.
  19. Copyright (C) 2001-2015 Vinay Sajip. All Rights Reserved.
  20. To use, simply 'import logging.handlers' and log away!
  21. """
  22. import logging, socket, os, pickle, struct, time, re
  23. from stat import ST_DEV, ST_INO, ST_MTIME
  24. import queue
  25. try:
  26. import threading
  27. except ImportError: #pragma: no cover
  28. threading = None
  29. #
  30. # Some constants...
  31. #
  32. DEFAULT_TCP_LOGGING_PORT = 9020
  33. DEFAULT_UDP_LOGGING_PORT = 9021
  34. DEFAULT_HTTP_LOGGING_PORT = 9022
  35. DEFAULT_SOAP_LOGGING_PORT = 9023
  36. SYSLOG_UDP_PORT = 514
  37. SYSLOG_TCP_PORT = 514
  38. _MIDNIGHT = 24 * 60 * 60 # number of seconds in a day
  39. class BaseRotatingHandler(logging.FileHandler):
  40. """
  41. Base class for handlers that rotate log files at a certain point.
  42. Not meant to be instantiated directly. Instead, use RotatingFileHandler
  43. or TimedRotatingFileHandler.
  44. """
  45. def __init__(self, filename, mode, encoding=None, delay=False):
  46. """
  47. Use the specified filename for streamed logging
  48. """
  49. logging.FileHandler.__init__(self, filename, mode, encoding, delay)
  50. self.mode = mode
  51. self.encoding = encoding
  52. self.namer = None
  53. self.rotator = None
  54. def emit(self, record):
  55. """
  56. Emit a record.
  57. Output the record to the file, catering for rollover as described
  58. in doRollover().
  59. """
  60. try:
  61. if self.shouldRollover(record):
  62. self.doRollover()
  63. logging.FileHandler.emit(self, record)
  64. except Exception:
  65. self.handleError(record)
  66. def rotation_filename(self, default_name):
  67. """
  68. Modify the filename of a log file when rotating.
  69. This is provided so that a custom filename can be provided.
  70. The default implementation calls the 'namer' attribute of the
  71. handler, if it's callable, passing the default name to
  72. it. If the attribute isn't callable (the default is None), the name
  73. is returned unchanged.
  74. :param default_name: The default name for the log file.
  75. """
  76. if not callable(self.namer):
  77. result = default_name
  78. else:
  79. result = self.namer(default_name)
  80. return result
  81. def rotate(self, source, dest):
  82. """
  83. When rotating, rotate the current log.
  84. The default implementation calls the 'rotator' attribute of the
  85. handler, if it's callable, passing the source and dest arguments to
  86. it. If the attribute isn't callable (the default is None), the source
  87. is simply renamed to the destination.
  88. :param source: The source filename. This is normally the base
  89. filename, e.g. 'test.log'
  90. :param dest: The destination filename. This is normally
  91. what the source is rotated to, e.g. 'test.log.1'.
  92. """
  93. if not callable(self.rotator):
  94. # Issue 18940: A file may not have been created if delay is True.
  95. if os.path.exists(source):
  96. os.rename(source, dest)
  97. else:
  98. self.rotator(source, dest)
  99. class RotatingFileHandler(BaseRotatingHandler):
  100. """
  101. Handler for logging to a set of files, which switches from one file
  102. to the next when the current file reaches a certain size.
  103. """
  104. def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=False):
  105. """
  106. Open the specified file and use it as the stream for logging.
  107. By default, the file grows indefinitely. You can specify particular
  108. values of maxBytes and backupCount to allow the file to rollover at
  109. a predetermined size.
  110. Rollover occurs whenever the current log file is nearly maxBytes in
  111. length. If backupCount is >= 1, the system will successively create
  112. new files with the same pathname as the base file, but with extensions
  113. ".1", ".2" etc. appended to it. For example, with a backupCount of 5
  114. and a base file name of "app.log", you would get "app.log",
  115. "app.log.1", "app.log.2", ... through to "app.log.5". The file being
  116. written to is always "app.log" - when it gets filled up, it is closed
  117. and renamed to "app.log.1", and if files "app.log.1", "app.log.2" etc.
  118. exist, then they are renamed to "app.log.2", "app.log.3" etc.
  119. respectively.
  120. If maxBytes is zero, rollover never occurs.
  121. """
  122. # If rotation/rollover is wanted, it doesn't make sense to use another
  123. # mode. If for example 'w' were specified, then if there were multiple
  124. # runs of the calling application, the logs from previous runs would be
  125. # lost if the 'w' is respected, because the log file would be truncated
  126. # on each run.
  127. if maxBytes > 0:
  128. mode = 'a'
  129. BaseRotatingHandler.__init__(self, filename, mode, encoding, delay)
  130. self.maxBytes = maxBytes
  131. self.backupCount = backupCount
  132. def doRollover(self):
  133. """
  134. Do a rollover, as described in __init__().
  135. """
  136. if self.stream:
  137. self.stream.close()
  138. self.stream = None
  139. if self.backupCount > 0:
  140. for i in range(self.backupCount - 1, 0, -1):
  141. sfn = self.rotation_filename("%s.%d" % (self.baseFilename, i))
  142. dfn = self.rotation_filename("%s.%d" % (self.baseFilename,
  143. i + 1))
  144. if os.path.exists(sfn):
  145. if os.path.exists(dfn):
  146. os.remove(dfn)
  147. os.rename(sfn, dfn)
  148. dfn = self.rotation_filename(self.baseFilename + ".1")
  149. if os.path.exists(dfn):
  150. os.remove(dfn)
  151. self.rotate(self.baseFilename, dfn)
  152. if not self.delay:
  153. self.stream = self._open()
  154. def shouldRollover(self, record):
  155. """
  156. Determine if rollover should occur.
  157. Basically, see if the supplied record would cause the file to exceed
  158. the size limit we have.
  159. """
  160. if self.stream is None: # delay was set...
  161. self.stream = self._open()
  162. if self.maxBytes > 0: # are we rolling over?
  163. msg = "%s\n" % self.format(record)
  164. self.stream.seek(0, 2) #due to non-posix-compliant Windows feature
  165. if self.stream.tell() + len(msg) >= self.maxBytes:
  166. return 1
  167. return 0
  168. class TimedRotatingFileHandler(BaseRotatingHandler):
  169. """
  170. Handler for logging to a file, rotating the log file at certain timed
  171. intervals.
  172. If backupCount is > 0, when rollover is done, no more than backupCount
  173. files are kept - the oldest ones are deleted.
  174. """
  175. def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False, atTime=None):
  176. BaseRotatingHandler.__init__(self, filename, 'a', encoding, delay)
  177. self.when = when.upper()
  178. self.backupCount = backupCount
  179. self.utc = utc
  180. self.atTime = atTime
  181. # Calculate the real rollover interval, which is just the number of
  182. # seconds between rollovers. Also set the filename suffix used when
  183. # a rollover occurs. Current 'when' events supported:
  184. # S - Seconds
  185. # M - Minutes
  186. # H - Hours
  187. # D - Days
  188. # midnight - roll over at midnight
  189. # W{0-6} - roll over on a certain day; 0 - Monday
  190. #
  191. # Case of the 'when' specifier is not important; lower or upper case
  192. # will work.
  193. if self.when == 'S':
  194. self.interval = 1 # one second
  195. self.suffix = "%Y-%m-%d_%H-%M-%S"
  196. self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2}(\.\w+)?$"
  197. elif self.when == 'M':
  198. self.interval = 60 # one minute
  199. self.suffix = "%Y-%m-%d_%H-%M"
  200. self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}(\.\w+)?$"
  201. elif self.when == 'H':
  202. self.interval = 60 * 60 # one hour
  203. self.suffix = "%Y-%m-%d_%H"
  204. self.extMatch = r"^\d{4}-\d{2}-\d{2}_\d{2}(\.\w+)?$"
  205. elif self.when == 'D' or self.when == 'MIDNIGHT':
  206. self.interval = 60 * 60 * 24 # one day
  207. self.suffix = "%Y-%m-%d"
  208. self.extMatch = r"^\d{4}-\d{2}-\d{2}(\.\w+)?$"
  209. elif self.when.startswith('W'):
  210. self.interval = 60 * 60 * 24 * 7 # one week
  211. if len(self.when) != 2:
  212. raise ValueError("You must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s" % self.when)
  213. if self.when[1] < '0' or self.when[1] > '6':
  214. raise ValueError("Invalid day specified for weekly rollover: %s" % self.when)
  215. self.dayOfWeek = int(self.when[1])
  216. self.suffix = "%Y-%m-%d"
  217. self.extMatch = r"^\d{4}-\d{2}-\d{2}(\.\w+)?$"
  218. else:
  219. raise ValueError("Invalid rollover interval specified: %s" % self.when)
  220. self.extMatch = re.compile(self.extMatch, re.ASCII)
  221. self.interval = self.interval * interval # multiply by units requested
  222. if os.path.exists(filename):
  223. t = os.stat(filename)[ST_MTIME]
  224. else:
  225. t = int(time.time())
  226. self.rolloverAt = self.computeRollover(t)
  227. def computeRollover(self, currentTime):
  228. """
  229. Work out the rollover time based on the specified time.
  230. """
  231. result = currentTime + self.interval
  232. # If we are rolling over at midnight or weekly, then the interval is already known.
  233. # What we need to figure out is WHEN the next interval is. In other words,
  234. # if you are rolling over at midnight, then your base interval is 1 day,
  235. # but you want to start that one day clock at midnight, not now. So, we
  236. # have to fudge the rolloverAt value in order to trigger the first rollover
  237. # at the right time. After that, the regular interval will take care of
  238. # the rest. Note that this code doesn't care about leap seconds. :)
  239. if self.when == 'MIDNIGHT' or self.when.startswith('W'):
  240. # This could be done with less code, but I wanted it to be clear
  241. if self.utc:
  242. t = time.gmtime(currentTime)
  243. else:
  244. t = time.localtime(currentTime)
  245. currentHour = t[3]
  246. currentMinute = t[4]
  247. currentSecond = t[5]
  248. currentDay = t[6]
  249. # r is the number of seconds left between now and the next rotation
  250. if self.atTime is None:
  251. rotate_ts = _MIDNIGHT
  252. else:
  253. rotate_ts = ((self.atTime.hour * 60 + self.atTime.minute)*60 +
  254. self.atTime.second)
  255. r = rotate_ts - ((currentHour * 60 + currentMinute) * 60 +
  256. currentSecond)
  257. if r < 0:
  258. # Rotate time is before the current time (for example when
  259. # self.rotateAt is 13:45 and it now 14:15), rotation is
  260. # tomorrow.
  261. r += _MIDNIGHT
  262. currentDay = (currentDay + 1) % 7
  263. result = currentTime + r
  264. # If we are rolling over on a certain day, add in the number of days until
  265. # the next rollover, but offset by 1 since we just calculated the time
  266. # until the next day starts. There are three cases:
  267. # Case 1) The day to rollover is today; in this case, do nothing
  268. # Case 2) The day to rollover is further in the interval (i.e., today is
  269. # day 2 (Wednesday) and rollover is on day 6 (Sunday). Days to
  270. # next rollover is simply 6 - 2 - 1, or 3.
  271. # Case 3) The day to rollover is behind us in the interval (i.e., today
  272. # is day 5 (Saturday) and rollover is on day 3 (Thursday).
  273. # Days to rollover is 6 - 5 + 3, or 4. In this case, it's the
  274. # number of days left in the current week (1) plus the number
  275. # of days in the next week until the rollover day (3).
  276. # The calculations described in 2) and 3) above need to have a day added.
  277. # This is because the above time calculation takes us to midnight on this
  278. # day, i.e. the start of the next day.
  279. if self.when.startswith('W'):
  280. day = currentDay # 0 is Monday
  281. if day != self.dayOfWeek:
  282. if day < self.dayOfWeek:
  283. daysToWait = self.dayOfWeek - day
  284. else:
  285. daysToWait = 6 - day + self.dayOfWeek + 1
  286. newRolloverAt = result + (daysToWait * (60 * 60 * 24))
  287. if not self.utc:
  288. dstNow = t[-1]
  289. dstAtRollover = time.localtime(newRolloverAt)[-1]
  290. if dstNow != dstAtRollover:
  291. if not dstNow: # DST kicks in before next rollover, so we need to deduct an hour
  292. addend = -3600
  293. else: # DST bows out before next rollover, so we need to add an hour
  294. addend = 3600
  295. newRolloverAt += addend
  296. result = newRolloverAt
  297. return result
  298. def shouldRollover(self, record):
  299. """
  300. Determine if rollover should occur.
  301. record is not used, as we are just comparing times, but it is needed so
  302. the method signatures are the same
  303. """
  304. t = int(time.time())
  305. if t >= self.rolloverAt:
  306. return 1
  307. return 0
  308. def getFilesToDelete(self):
  309. """
  310. Determine the files to delete when rolling over.
  311. More specific than the earlier method, which just used glob.glob().
  312. """
  313. dirName, baseName = os.path.split(self.baseFilename)
  314. fileNames = os.listdir(dirName)
  315. result = []
  316. prefix = baseName + "."
  317. plen = len(prefix)
  318. for fileName in fileNames:
  319. if fileName[:plen] == prefix:
  320. suffix = fileName[plen:]
  321. if self.extMatch.match(suffix):
  322. result.append(os.path.join(dirName, fileName))
  323. result.sort()
  324. if len(result) < self.backupCount:
  325. result = []
  326. else:
  327. result = result[:len(result) - self.backupCount]
  328. return result
  329. def doRollover(self):
  330. """
  331. do a rollover; in this case, a date/time stamp is appended to the filename
  332. when the rollover happens. However, you want the file to be named for the
  333. start of the interval, not the current time. If there is a backup count,
  334. then we have to get a list of matching filenames, sort them and remove
  335. the one with the oldest suffix.
  336. """
  337. if self.stream:
  338. self.stream.close()
  339. self.stream = None
  340. # get the time that this sequence started at and make it a TimeTuple
  341. currentTime = int(time.time())
  342. dstNow = time.localtime(currentTime)[-1]
  343. t = self.rolloverAt - self.interval
  344. if self.utc:
  345. timeTuple = time.gmtime(t)
  346. else:
  347. timeTuple = time.localtime(t)
  348. dstThen = timeTuple[-1]
  349. if dstNow != dstThen:
  350. if dstNow:
  351. addend = 3600
  352. else:
  353. addend = -3600
  354. timeTuple = time.localtime(t + addend)
  355. dfn = self.rotation_filename(self.baseFilename + "." +
  356. time.strftime(self.suffix, timeTuple))
  357. if os.path.exists(dfn):
  358. os.remove(dfn)
  359. self.rotate(self.baseFilename, dfn)
  360. if self.backupCount > 0:
  361. for s in self.getFilesToDelete():
  362. os.remove(s)
  363. if not self.delay:
  364. self.stream = self._open()
  365. newRolloverAt = self.computeRollover(currentTime)
  366. while newRolloverAt <= currentTime:
  367. newRolloverAt = newRolloverAt + self.interval
  368. #If DST changes and midnight or weekly rollover, adjust for this.
  369. if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc:
  370. dstAtRollover = time.localtime(newRolloverAt)[-1]
  371. if dstNow != dstAtRollover:
  372. if not dstNow: # DST kicks in before next rollover, so we need to deduct an hour
  373. addend = -3600
  374. else: # DST bows out before next rollover, so we need to add an hour
  375. addend = 3600
  376. newRolloverAt += addend
  377. self.rolloverAt = newRolloverAt
  378. class WatchedFileHandler(logging.FileHandler):
  379. """
  380. A handler for logging to a file, which watches the file
  381. to see if it has changed while in use. This can happen because of
  382. usage of programs such as newsyslog and logrotate which perform
  383. log file rotation. This handler, intended for use under Unix,
  384. watches the file to see if it has changed since the last emit.
  385. (A file has changed if its device or inode have changed.)
  386. If it has changed, the old file stream is closed, and the file
  387. opened to get a new stream.
  388. This handler is not appropriate for use under Windows, because
  389. under Windows open files cannot be moved or renamed - logging
  390. opens the files with exclusive locks - and so there is no need
  391. for such a handler. Furthermore, ST_INO is not supported under
  392. Windows; stat always returns zero for this value.
  393. This handler is based on a suggestion and patch by Chad J.
  394. Schroeder.
  395. """
  396. def __init__(self, filename, mode='a', encoding=None, delay=False):
  397. logging.FileHandler.__init__(self, filename, mode, encoding, delay)
  398. self.dev, self.ino = -1, -1
  399. self._statstream()
  400. def _statstream(self):
  401. if self.stream:
  402. sres = os.fstat(self.stream.fileno())
  403. self.dev, self.ino = sres[ST_DEV], sres[ST_INO]
  404. def emit(self, record):
  405. """
  406. Emit a record.
  407. First check if the underlying file has changed, and if it
  408. has, close the old stream and reopen the file to get the
  409. current stream.
  410. """
  411. # Reduce the chance of race conditions by stat'ing by path only
  412. # once and then fstat'ing our new fd if we opened a new log stream.
  413. # See issue #14632: Thanks to John Mulligan for the problem report
  414. # and patch.
  415. try:
  416. # stat the file by path, checking for existence
  417. sres = os.stat(self.baseFilename)
  418. except FileNotFoundError:
  419. sres = None
  420. # compare file system stat with that of our stream file handle
  421. if not sres or sres[ST_DEV] != self.dev or sres[ST_INO] != self.ino:
  422. if self.stream is not None:
  423. # we have an open file handle, clean it up
  424. self.stream.flush()
  425. self.stream.close()
  426. self.stream = None # See Issue #21742: _open () might fail.
  427. # open a new file handle and get new stat info from that fd
  428. self.stream = self._open()
  429. self._statstream()
  430. logging.FileHandler.emit(self, record)
  431. class SocketHandler(logging.Handler):
  432. """
  433. A handler class which writes logging records, in pickle format, to
  434. a streaming socket. The socket is kept open across logging calls.
  435. If the peer resets it, an attempt is made to reconnect on the next call.
  436. The pickle which is sent is that of the LogRecord's attribute dictionary
  437. (__dict__), so that the receiver does not need to have the logging module
  438. installed in order to process the logging event.
  439. To unpickle the record at the receiving end into a LogRecord, use the
  440. makeLogRecord function.
  441. """
  442. def __init__(self, host, port):
  443. """
  444. Initializes the handler with a specific host address and port.
  445. When the attribute *closeOnError* is set to True - if a socket error
  446. occurs, the socket is silently closed and then reopened on the next
  447. logging call.
  448. """
  449. logging.Handler.__init__(self)
  450. self.host = host
  451. self.port = port
  452. if port is None:
  453. self.address = host
  454. else:
  455. self.address = (host, port)
  456. self.sock = None
  457. self.closeOnError = False
  458. self.retryTime = None
  459. #
  460. # Exponential backoff parameters.
  461. #
  462. self.retryStart = 1.0
  463. self.retryMax = 30.0
  464. self.retryFactor = 2.0
  465. def makeSocket(self, timeout=1):
  466. """
  467. A factory method which allows subclasses to define the precise
  468. type of socket they want.
  469. """
  470. if self.port is not None:
  471. result = socket.create_connection(self.address, timeout=timeout)
  472. else:
  473. result = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
  474. result.settimeout(timeout)
  475. try:
  476. result.connect(self.address)
  477. except OSError:
  478. result.close() # Issue 19182
  479. raise
  480. return result
  481. def createSocket(self):
  482. """
  483. Try to create a socket, using an exponential backoff with
  484. a max retry time. Thanks to Robert Olson for the original patch
  485. (SF #815911) which has been slightly refactored.
  486. """
  487. now = time.time()
  488. # Either retryTime is None, in which case this
  489. # is the first time back after a disconnect, or
  490. # we've waited long enough.
  491. if self.retryTime is None:
  492. attempt = True
  493. else:
  494. attempt = (now >= self.retryTime)
  495. if attempt:
  496. try:
  497. self.sock = self.makeSocket()
  498. self.retryTime = None # next time, no delay before trying
  499. except OSError:
  500. #Creation failed, so set the retry time and return.
  501. if self.retryTime is None:
  502. self.retryPeriod = self.retryStart
  503. else:
  504. self.retryPeriod = self.retryPeriod * self.retryFactor
  505. if self.retryPeriod > self.retryMax:
  506. self.retryPeriod = self.retryMax
  507. self.retryTime = now + self.retryPeriod
  508. def send(self, s):
  509. """
  510. Send a pickled string to the socket.
  511. This function allows for partial sends which can happen when the
  512. network is busy.
  513. """
  514. if self.sock is None:
  515. self.createSocket()
  516. #self.sock can be None either because we haven't reached the retry
  517. #time yet, or because we have reached the retry time and retried,
  518. #but are still unable to connect.
  519. if self.sock:
  520. try:
  521. self.sock.sendall(s)
  522. except OSError: #pragma: no cover
  523. self.sock.close()
  524. self.sock = None # so we can call createSocket next time
  525. def makePickle(self, record):
  526. """
  527. Pickles the record in binary format with a length prefix, and
  528. returns it ready for transmission across the socket.
  529. """
  530. ei = record.exc_info
  531. if ei:
  532. # just to get traceback text into record.exc_text ...
  533. dummy = self.format(record)
  534. # See issue #14436: If msg or args are objects, they may not be
  535. # available on the receiving end. So we convert the msg % args
  536. # to a string, save it as msg and zap the args.
  537. d = dict(record.__dict__)
  538. d['msg'] = record.getMessage()
  539. d['args'] = None
  540. d['exc_info'] = None
  541. # Issue #25685: delete 'message' if present: redundant with 'msg'
  542. d.pop('message', None)
  543. s = pickle.dumps(d, 1)
  544. slen = struct.pack(">L", len(s))
  545. return slen + s
  546. def handleError(self, record):
  547. """
  548. Handle an error during logging.
  549. An error has occurred during logging. Most likely cause -
  550. connection lost. Close the socket so that we can retry on the
  551. next event.
  552. """
  553. if self.closeOnError and self.sock:
  554. self.sock.close()
  555. self.sock = None #try to reconnect next time
  556. else:
  557. logging.Handler.handleError(self, record)
  558. def emit(self, record):
  559. """
  560. Emit a record.
  561. Pickles the record and writes it to the socket in binary format.
  562. If there is an error with the socket, silently drop the packet.
  563. If there was a problem with the socket, re-establishes the
  564. socket.
  565. """
  566. try:
  567. s = self.makePickle(record)
  568. self.send(s)
  569. except Exception:
  570. self.handleError(record)
  571. def close(self):
  572. """
  573. Closes the socket.
  574. """
  575. self.acquire()
  576. try:
  577. sock = self.sock
  578. if sock:
  579. self.sock = None
  580. sock.close()
  581. logging.Handler.close(self)
  582. finally:
  583. self.release()
  584. class DatagramHandler(SocketHandler):
  585. """
  586. A handler class which writes logging records, in pickle format, to
  587. a datagram socket. The pickle which is sent is that of the LogRecord's
  588. attribute dictionary (__dict__), so that the receiver does not need to
  589. have the logging module installed in order to process the logging event.
  590. To unpickle the record at the receiving end into a LogRecord, use the
  591. makeLogRecord function.
  592. """
  593. def __init__(self, host, port):
  594. """
  595. Initializes the handler with a specific host address and port.
  596. """
  597. SocketHandler.__init__(self, host, port)
  598. self.closeOnError = False
  599. def makeSocket(self):
  600. """
  601. The factory method of SocketHandler is here overridden to create
  602. a UDP socket (SOCK_DGRAM).
  603. """
  604. if self.port is None:
  605. family = socket.AF_UNIX
  606. else:
  607. family = socket.AF_INET
  608. s = socket.socket(family, socket.SOCK_DGRAM)
  609. return s
  610. def send(self, s):
  611. """
  612. Send a pickled string to a socket.
  613. This function no longer allows for partial sends which can happen
  614. when the network is busy - UDP does not guarantee delivery and
  615. can deliver packets out of sequence.
  616. """
  617. if self.sock is None:
  618. self.createSocket()
  619. self.sock.sendto(s, self.address)
  620. class SysLogHandler(logging.Handler):
  621. """
  622. A handler class which sends formatted logging records to a syslog
  623. server. Based on Sam Rushing's syslog module:
  624. http://www.nightmare.com/squirl/python-ext/misc/syslog.py
  625. Contributed by Nicolas Untz (after which minor refactoring changes
  626. have been made).
  627. """
  628. # from <linux/sys/syslog.h>:
  629. # ======================================================================
  630. # priorities/facilities are encoded into a single 32-bit quantity, where
  631. # the bottom 3 bits are the priority (0-7) and the top 28 bits are the
  632. # facility (0-big number). Both the priorities and the facilities map
  633. # roughly one-to-one to strings in the syslogd(8) source code. This
  634. # mapping is included in this file.
  635. #
  636. # priorities (these are ordered)
  637. LOG_EMERG = 0 # system is unusable
  638. LOG_ALERT = 1 # action must be taken immediately
  639. LOG_CRIT = 2 # critical conditions
  640. LOG_ERR = 3 # error conditions
  641. LOG_WARNING = 4 # warning conditions
  642. LOG_NOTICE = 5 # normal but significant condition
  643. LOG_INFO = 6 # informational
  644. LOG_DEBUG = 7 # debug-level messages
  645. # facility codes
  646. LOG_KERN = 0 # kernel messages
  647. LOG_USER = 1 # random user-level messages
  648. LOG_MAIL = 2 # mail system
  649. LOG_DAEMON = 3 # system daemons
  650. LOG_AUTH = 4 # security/authorization messages
  651. LOG_SYSLOG = 5 # messages generated internally by syslogd
  652. LOG_LPR = 6 # line printer subsystem
  653. LOG_NEWS = 7 # network news subsystem
  654. LOG_UUCP = 8 # UUCP subsystem
  655. LOG_CRON = 9 # clock daemon
  656. LOG_AUTHPRIV = 10 # security/authorization messages (private)
  657. LOG_FTP = 11 # FTP daemon
  658. # other codes through 15 reserved for system use
  659. LOG_LOCAL0 = 16 # reserved for local use
  660. LOG_LOCAL1 = 17 # reserved for local use
  661. LOG_LOCAL2 = 18 # reserved for local use
  662. LOG_LOCAL3 = 19 # reserved for local use
  663. LOG_LOCAL4 = 20 # reserved for local use
  664. LOG_LOCAL5 = 21 # reserved for local use
  665. LOG_LOCAL6 = 22 # reserved for local use
  666. LOG_LOCAL7 = 23 # reserved for local use
  667. priority_names = {
  668. "alert": LOG_ALERT,
  669. "crit": LOG_CRIT,
  670. "critical": LOG_CRIT,
  671. "debug": LOG_DEBUG,
  672. "emerg": LOG_EMERG,
  673. "err": LOG_ERR,
  674. "error": LOG_ERR, # DEPRECATED
  675. "info": LOG_INFO,
  676. "notice": LOG_NOTICE,
  677. "panic": LOG_EMERG, # DEPRECATED
  678. "warn": LOG_WARNING, # DEPRECATED
  679. "warning": LOG_WARNING,
  680. }
  681. facility_names = {
  682. "auth": LOG_AUTH,
  683. "authpriv": LOG_AUTHPRIV,
  684. "cron": LOG_CRON,
  685. "daemon": LOG_DAEMON,
  686. "ftp": LOG_FTP,
  687. "kern": LOG_KERN,
  688. "lpr": LOG_LPR,
  689. "mail": LOG_MAIL,
  690. "news": LOG_NEWS,
  691. "security": LOG_AUTH, # DEPRECATED
  692. "syslog": LOG_SYSLOG,
  693. "user": LOG_USER,
  694. "uucp": LOG_UUCP,
  695. "local0": LOG_LOCAL0,
  696. "local1": LOG_LOCAL1,
  697. "local2": LOG_LOCAL2,
  698. "local3": LOG_LOCAL3,
  699. "local4": LOG_LOCAL4,
  700. "local5": LOG_LOCAL5,
  701. "local6": LOG_LOCAL6,
  702. "local7": LOG_LOCAL7,
  703. }
  704. #The map below appears to be trivially lowercasing the key. However,
  705. #there's more to it than meets the eye - in some locales, lowercasing
  706. #gives unexpected results. See SF #1524081: in the Turkish locale,
  707. #"INFO".lower() != "info"
  708. priority_map = {
  709. "DEBUG" : "debug",
  710. "INFO" : "info",
  711. "WARNING" : "warning",
  712. "ERROR" : "error",
  713. "CRITICAL" : "critical"
  714. }
  715. def __init__(self, address=('localhost', SYSLOG_UDP_PORT),
  716. facility=LOG_USER, socktype=None):
  717. """
  718. Initialize a handler.
  719. If address is specified as a string, a UNIX socket is used. To log to a
  720. local syslogd, "SysLogHandler(address="/dev/log")" can be used.
  721. If facility is not specified, LOG_USER is used. If socktype is
  722. specified as socket.SOCK_DGRAM or socket.SOCK_STREAM, that specific
  723. socket type will be used. For Unix sockets, you can also specify a
  724. socktype of None, in which case socket.SOCK_DGRAM will be used, falling
  725. back to socket.SOCK_STREAM.
  726. """
  727. logging.Handler.__init__(self)
  728. self.address = address
  729. self.facility = facility
  730. self.socktype = socktype
  731. if isinstance(address, str):
  732. self.unixsocket = True
  733. self._connect_unixsocket(address)
  734. else:
  735. self.unixsocket = False
  736. if socktype is None:
  737. socktype = socket.SOCK_DGRAM
  738. self.socket = socket.socket(socket.AF_INET, socktype)
  739. if socktype == socket.SOCK_STREAM:
  740. self.socket.connect(address)
  741. self.socktype = socktype
  742. self.formatter = None
  743. def _connect_unixsocket(self, address):
  744. use_socktype = self.socktype
  745. if use_socktype is None:
  746. use_socktype = socket.SOCK_DGRAM
  747. self.socket = socket.socket(socket.AF_UNIX, use_socktype)
  748. try:
  749. self.socket.connect(address)
  750. # it worked, so set self.socktype to the used type
  751. self.socktype = use_socktype
  752. except OSError:
  753. self.socket.close()
  754. if self.socktype is not None:
  755. # user didn't specify falling back, so fail
  756. raise
  757. use_socktype = socket.SOCK_STREAM
  758. self.socket = socket.socket(socket.AF_UNIX, use_socktype)
  759. try:
  760. self.socket.connect(address)
  761. # it worked, so set self.socktype to the used type
  762. self.socktype = use_socktype
  763. except OSError:
  764. self.socket.close()
  765. raise
  766. def encodePriority(self, facility, priority):
  767. """
  768. Encode the facility and priority. You can pass in strings or
  769. integers - if strings are passed, the facility_names and
  770. priority_names mapping dictionaries are used to convert them to
  771. integers.
  772. """
  773. if isinstance(facility, str):
  774. facility = self.facility_names[facility]
  775. if isinstance(priority, str):
  776. priority = self.priority_names[priority]
  777. return (facility << 3) | priority
  778. def close (self):
  779. """
  780. Closes the socket.
  781. """
  782. self.acquire()
  783. try:
  784. self.socket.close()
  785. logging.Handler.close(self)
  786. finally:
  787. self.release()
  788. def mapPriority(self, levelName):
  789. """
  790. Map a logging level name to a key in the priority_names map.
  791. This is useful in two scenarios: when custom levels are being
  792. used, and in the case where you can't do a straightforward
  793. mapping by lowercasing the logging level name because of locale-
  794. specific issues (see SF #1524081).
  795. """
  796. return self.priority_map.get(levelName, "warning")
  797. ident = '' # prepended to all messages
  798. append_nul = True # some old syslog daemons expect a NUL terminator
  799. def emit(self, record):
  800. """
  801. Emit a record.
  802. The record is formatted, and then sent to the syslog server. If
  803. exception information is present, it is NOT sent to the server.
  804. """
  805. try:
  806. msg = self.format(record)
  807. if self.ident:
  808. msg = self.ident + msg
  809. if self.append_nul:
  810. msg += '\000'
  811. # We need to convert record level to lowercase, maybe this will
  812. # change in the future.
  813. prio = '<%d>' % self.encodePriority(self.facility,
  814. self.mapPriority(record.levelname))
  815. prio = prio.encode('utf-8')
  816. # Message is a string. Convert to bytes as required by RFC 5424
  817. msg = msg.encode('utf-8')
  818. msg = prio + msg
  819. if self.unixsocket:
  820. try:
  821. self.socket.send(msg)
  822. except OSError:
  823. self.socket.close()
  824. self._connect_unixsocket(self.address)
  825. self.socket.send(msg)
  826. elif self.socktype == socket.SOCK_DGRAM:
  827. self.socket.sendto(msg, self.address)
  828. else:
  829. self.socket.sendall(msg)
  830. except Exception:
  831. self.handleError(record)
  832. class SMTPHandler(logging.Handler):
  833. """
  834. A handler class which sends an SMTP email for each logging event.
  835. """
  836. def __init__(self, mailhost, fromaddr, toaddrs, subject,
  837. credentials=None, secure=None, timeout=5.0):
  838. """
  839. Initialize the handler.
  840. Initialize the instance with the from and to addresses and subject
  841. line of the email. To specify a non-standard SMTP port, use the
  842. (host, port) tuple format for the mailhost argument. To specify
  843. authentication credentials, supply a (username, password) tuple
  844. for the credentials argument. To specify the use of a secure
  845. protocol (TLS), pass in a tuple for the secure argument. This will
  846. only be used when authentication credentials are supplied. The tuple
  847. will be either an empty tuple, or a single-value tuple with the name
  848. of a keyfile, or a 2-value tuple with the names of the keyfile and
  849. certificate file. (This tuple is passed to the `starttls` method).
  850. A timeout in seconds can be specified for the SMTP connection (the
  851. default is one second).
  852. """
  853. logging.Handler.__init__(self)
  854. if isinstance(mailhost, (list, tuple)):
  855. self.mailhost, self.mailport = mailhost
  856. else:
  857. self.mailhost, self.mailport = mailhost, None
  858. if isinstance(credentials, (list, tuple)):
  859. self.username, self.password = credentials
  860. else:
  861. self.username = None
  862. self.fromaddr = fromaddr
  863. if isinstance(toaddrs, str):
  864. toaddrs = [toaddrs]
  865. self.toaddrs = toaddrs
  866. self.subject = subject
  867. self.secure = secure
  868. self.timeout = timeout
  869. def getSubject(self, record):
  870. """
  871. Determine the subject for the email.
  872. If you want to specify a subject line which is record-dependent,
  873. override this method.
  874. """
  875. return self.subject
  876. def emit(self, record):
  877. """
  878. Emit a record.
  879. Format the record and send it to the specified addressees.
  880. """
  881. try:
  882. import smtplib
  883. from email.message import EmailMessage
  884. import email.utils
  885. port = self.mailport
  886. if not port:
  887. port = smtplib.SMTP_PORT
  888. smtp = smtplib.SMTP(self.mailhost, port, timeout=self.timeout)
  889. msg = EmailMessage()
  890. msg['From'] = self.fromaddr
  891. msg['To'] = ','.join(self.toaddrs)
  892. msg['Subject'] = self.getSubject(record)
  893. msg['Date'] = email.utils.localtime()
  894. msg.set_content(self.format(record))
  895. if self.username:
  896. if self.secure is not None:
  897. smtp.ehlo()
  898. smtp.starttls(*self.secure)
  899. smtp.ehlo()
  900. smtp.login(self.username, self.password)
  901. smtp.send_message(msg)
  902. smtp.quit()
  903. except Exception:
  904. self.handleError(record)
  905. class NTEventLogHandler(logging.Handler):
  906. """
  907. A handler class which sends events to the NT Event Log. Adds a
  908. registry entry for the specified application name. If no dllname is
  909. provided, win32service.pyd (which contains some basic message
  910. placeholders) is used. Note that use of these placeholders will make
  911. your event logs big, as the entire message source is held in the log.
  912. If you want slimmer logs, you have to pass in the name of your own DLL
  913. which contains the message definitions you want to use in the event log.
  914. """
  915. def __init__(self, appname, dllname=None, logtype="Application"):
  916. logging.Handler.__init__(self)
  917. try:
  918. import win32evtlogutil, win32evtlog
  919. self.appname = appname
  920. self._welu = win32evtlogutil
  921. if not dllname:
  922. dllname = os.path.split(self._welu.__file__)
  923. dllname = os.path.split(dllname[0])
  924. dllname = os.path.join(dllname[0], r'win32service.pyd')
  925. self.dllname = dllname
  926. self.logtype = logtype
  927. self._welu.AddSourceToRegistry(appname, dllname, logtype)
  928. self.deftype = win32evtlog.EVENTLOG_ERROR_TYPE
  929. self.typemap = {
  930. logging.DEBUG : win32evtlog.EVENTLOG_INFORMATION_TYPE,
  931. logging.INFO : win32evtlog.EVENTLOG_INFORMATION_TYPE,
  932. logging.WARNING : win32evtlog.EVENTLOG_WARNING_TYPE,
  933. logging.ERROR : win32evtlog.EVENTLOG_ERROR_TYPE,
  934. logging.CRITICAL: win32evtlog.EVENTLOG_ERROR_TYPE,
  935. }
  936. except ImportError:
  937. print("The Python Win32 extensions for NT (service, event "\
  938. "logging) appear not to be available.")
  939. self._welu = None
  940. def getMessageID(self, record):
  941. """
  942. Return the message ID for the event record. If you are using your
  943. own messages, you could do this by having the msg passed to the
  944. logger being an ID rather than a formatting string. Then, in here,
  945. you could use a dictionary lookup to get the message ID. This
  946. version returns 1, which is the base message ID in win32service.pyd.
  947. """
  948. return 1
  949. def getEventCategory(self, record):
  950. """
  951. Return the event category for the record.
  952. Override this if you want to specify your own categories. This version
  953. returns 0.
  954. """
  955. return 0
  956. def getEventType(self, record):
  957. """
  958. Return the event type for the record.
  959. Override this if you want to specify your own types. This version does
  960. a mapping using the handler's typemap attribute, which is set up in
  961. __init__() to a dictionary which contains mappings for DEBUG, INFO,
  962. WARNING, ERROR and CRITICAL. If you are using your own levels you will
  963. either need to override this method or place a suitable dictionary in
  964. the handler's typemap attribute.
  965. """
  966. return self.typemap.get(record.levelno, self.deftype)
  967. def emit(self, record):
  968. """
  969. Emit a record.
  970. Determine the message ID, event category and event type. Then
  971. log the message in the NT event log.
  972. """
  973. if self._welu:
  974. try:
  975. id = self.getMessageID(record)
  976. cat = self.getEventCategory(record)
  977. type = self.getEventType(record)
  978. msg = self.format(record)
  979. self._welu.ReportEvent(self.appname, id, cat, type, [msg])
  980. except Exception:
  981. self.handleError(record)
  982. def close(self):
  983. """
  984. Clean up this handler.
  985. You can remove the application name from the registry as a
  986. source of event log entries. However, if you do this, you will
  987. not be able to see the events as you intended in the Event Log
  988. Viewer - it needs to be able to access the registry to get the
  989. DLL name.
  990. """
  991. #self._welu.RemoveSourceFromRegistry(self.appname, self.logtype)
  992. logging.Handler.close(self)
  993. class HTTPHandler(logging.Handler):
  994. """
  995. A class which sends records to a Web server, using either GET or
  996. POST semantics.
  997. """
  998. def __init__(self, host, url, method="GET", secure=False, credentials=None,
  999. context=None):
  1000. """
  1001. Initialize the instance with the host, the request URL, and the method
  1002. ("GET" or "POST")
  1003. """
  1004. logging.Handler.__init__(self)
  1005. method = method.upper()
  1006. if method not in ["GET", "POST"]:
  1007. raise ValueError("method must be GET or POST")
  1008. if not secure and context is not None:
  1009. raise ValueError("context parameter only makes sense "
  1010. "with secure=True")
  1011. self.host = host
  1012. self.url = url
  1013. self.method = method
  1014. self.secure = secure
  1015. self.credentials = credentials
  1016. self.context = context
  1017. def mapLogRecord(self, record):
  1018. """
  1019. Default implementation of mapping the log record into a dict
  1020. that is sent as the CGI data. Overwrite in your class.
  1021. Contributed by Franz Glasner.
  1022. """
  1023. return record.__dict__
  1024. def emit(self, record):
  1025. """
  1026. Emit a record.
  1027. Send the record to the Web server as a percent-encoded dictionary
  1028. """
  1029. try:
  1030. import http.client, urllib.parse
  1031. host = self.host
  1032. if self.secure:
  1033. h = http.client.HTTPSConnection(host, context=self.context)
  1034. else:
  1035. h = http.client.HTTPConnection(host)
  1036. url = self.url
  1037. data = urllib.parse.urlencode(self.mapLogRecord(record))
  1038. if self.method == "GET":
  1039. if (url.find('?') >= 0):
  1040. sep = '&'
  1041. else:
  1042. sep = '?'
  1043. url = url + "%c%s" % (sep, data)
  1044. h.putrequest(self.method, url)
  1045. # support multiple hosts on one IP address...
  1046. # need to strip optional :port from host, if present
  1047. i = host.find(":")
  1048. if i >= 0:
  1049. host = host[:i]
  1050. h.putheader("Host", host)
  1051. if self.method == "POST":
  1052. h.putheader("Content-type",
  1053. "application/x-www-form-urlencoded")
  1054. h.putheader("Content-length", str(len(data)))
  1055. if self.credentials:
  1056. import base64
  1057. s = ('%s:%s' % self.credentials).encode('utf-8')
  1058. s = 'Basic ' + base64.b64encode(s).strip().decode('ascii')
  1059. h.putheader('Authorization', s)
  1060. h.endheaders()
  1061. if self.method == "POST":
  1062. h.send(data.encode('utf-8'))
  1063. h.getresponse() #can't do anything with the result
  1064. except Exception:
  1065. self.handleError(record)
  1066. class BufferingHandler(logging.Handler):
  1067. """
  1068. A handler class which buffers logging records in memory. Whenever each
  1069. record is added to the buffer, a check is made to see if the buffer should
  1070. be flushed. If it should, then flush() is expected to do what's needed.
  1071. """
  1072. def __init__(self, capacity):
  1073. """
  1074. Initialize the handler with the buffer size.
  1075. """
  1076. logging.Handler.__init__(self)
  1077. self.capacity = capacity
  1078. self.buffer = []
  1079. def shouldFlush(self, record):
  1080. """
  1081. Should the handler flush its buffer?
  1082. Returns true if the buffer is up to capacity. This method can be
  1083. overridden to implement custom flushing strategies.
  1084. """
  1085. return (len(self.buffer) >= self.capacity)
  1086. def emit(self, record):
  1087. """
  1088. Emit a record.
  1089. Append the record. If shouldFlush() tells us to, call flush() to process
  1090. the buffer.
  1091. """
  1092. self.buffer.append(record)
  1093. if self.shouldFlush(record):
  1094. self.flush()
  1095. def flush(self):
  1096. """
  1097. Override to implement custom flushing behaviour.
  1098. This version just zaps the buffer to empty.
  1099. """
  1100. self.acquire()
  1101. try:
  1102. self.buffer = []
  1103. finally:
  1104. self.release()
  1105. def close(self):
  1106. """
  1107. Close the handler.
  1108. This version just flushes and chains to the parent class' close().
  1109. """
  1110. try:
  1111. self.flush()
  1112. finally:
  1113. logging.Handler.close(self)
  1114. class MemoryHandler(BufferingHandler):
  1115. """
  1116. A handler class which buffers logging records in memory, periodically
  1117. flushing them to a target handler. Flushing occurs whenever the buffer
  1118. is full, or when an event of a certain severity or greater is seen.
  1119. """
  1120. def __init__(self, capacity, flushLevel=logging.ERROR, target=None):
  1121. """
  1122. Initialize the handler with the buffer size, the level at which
  1123. flushing should occur and an optional target.
  1124. Note that without a target being set either here or via setTarget(),
  1125. a MemoryHandler is no use to anyone!
  1126. """
  1127. BufferingHandler.__init__(self, capacity)
  1128. self.flushLevel = flushLevel
  1129. self.target = target
  1130. def shouldFlush(self, record):
  1131. """
  1132. Check for buffer full or a record at the flushLevel or higher.
  1133. """
  1134. return (len(self.buffer) >= self.capacity) or \
  1135. (record.levelno >= self.flushLevel)
  1136. def setTarget(self, target):
  1137. """
  1138. Set the target handler for this handler.
  1139. """
  1140. self.target = target
  1141. def flush(self):
  1142. """
  1143. For a MemoryHandler, flushing means just sending the buffered
  1144. records to the target, if there is one. Override if you want
  1145. different behaviour.
  1146. The record buffer is also cleared by this operation.
  1147. """
  1148. self.acquire()
  1149. try:
  1150. if self.target:
  1151. for record in self.buffer:
  1152. self.target.handle(record)
  1153. self.buffer = []
  1154. finally:
  1155. self.release()
  1156. def close(self):
  1157. """
  1158. Flush, set the target to None and lose the buffer.
  1159. """
  1160. try:
  1161. self.flush()
  1162. finally:
  1163. self.acquire()
  1164. try:
  1165. self.target = None
  1166. BufferingHandler.close(self)
  1167. finally:
  1168. self.release()
  1169. class QueueHandler(logging.Handler):
  1170. """
  1171. This handler sends events to a queue. Typically, it would be used together
  1172. with a multiprocessing Queue to centralise logging to file in one process
  1173. (in a multi-process application), so as to avoid file write contention
  1174. between processes.
  1175. This code is new in Python 3.2, but this class can be copy pasted into
  1176. user code for use with earlier Python versions.
  1177. """
  1178. def __init__(self, queue):
  1179. """
  1180. Initialise an instance, using the passed queue.
  1181. """
  1182. logging.Handler.__init__(self)
  1183. self.queue = queue
  1184. def enqueue(self, record):
  1185. """
  1186. Enqueue a record.
  1187. The base implementation uses put_nowait. You may want to override
  1188. this method if you want to use blocking, timeouts or custom queue
  1189. implementations.
  1190. """
  1191. self.queue.put_nowait(record)
  1192. def prepare(self, record):
  1193. """
  1194. Prepares a record for queuing. The object returned by this method is
  1195. enqueued.
  1196. The base implementation formats the record to merge the message
  1197. and arguments, and removes unpickleable items from the record
  1198. in-place.
  1199. You might want to override this method if you want to convert
  1200. the record to a dict or JSON string, or send a modified copy
  1201. of the record while leaving the original intact.
  1202. """
  1203. # The format operation gets traceback text into record.exc_text
  1204. # (if there's exception data), and also puts the message into
  1205. # record.message. We can then use this to replace the original
  1206. # msg + args, as these might be unpickleable. We also zap the
  1207. # exc_info attribute, as it's no longer needed and, if not None,
  1208. # will typically not be pickleable.
  1209. self.format(record)
  1210. record.msg = record.message
  1211. record.args = None
  1212. record.exc_info = None
  1213. return record
  1214. def emit(self, record):
  1215. """
  1216. Emit a record.
  1217. Writes the LogRecord to the queue, preparing it for pickling first.
  1218. """
  1219. try:
  1220. self.enqueue(self.prepare(record))
  1221. except Exception:
  1222. self.handleError(record)
  1223. if threading:
  1224. class QueueListener(object):
  1225. """
  1226. This class implements an internal threaded listener which watches for
  1227. LogRecords being added to a queue, removes them and passes them to a
  1228. list of handlers for processing.
  1229. """
  1230. _sentinel = None
  1231. def __init__(self, queue, *handlers, respect_handler_level=False):
  1232. """
  1233. Initialise an instance with the specified queue and
  1234. handlers.
  1235. """
  1236. self.queue = queue
  1237. self.handlers = handlers
  1238. self._stop = threading.Event()
  1239. self._thread = None
  1240. self.respect_handler_level = respect_handler_level
  1241. def dequeue(self, block):
  1242. """
  1243. Dequeue a record and return it, optionally blocking.
  1244. The base implementation uses get. You may want to override this method
  1245. if you want to use timeouts or work with custom queue implementations.
  1246. """
  1247. return self.queue.get(block)
  1248. def start(self):
  1249. """
  1250. Start the listener.
  1251. This starts up a background thread to monitor the queue for
  1252. LogRecords to process.
  1253. """
  1254. self._thread = t = threading.Thread(target=self._monitor)
  1255. t.setDaemon(True)
  1256. t.start()
  1257. def prepare(self , record):
  1258. """
  1259. Prepare a record for handling.
  1260. This method just returns the passed-in record. You may want to
  1261. override this method if you need to do any custom marshalling or
  1262. manipulation of the record before passing it to the handlers.
  1263. """
  1264. return record
  1265. def handle(self, record):
  1266. """
  1267. Handle a record.
  1268. This just loops through the handlers offering them the record
  1269. to handle.
  1270. """
  1271. record = self.prepare(record)
  1272. for handler in self.handlers:
  1273. if not self.respect_handler_level:
  1274. process = True
  1275. else:
  1276. process = record.levelno >= handler.level
  1277. if process:
  1278. handler.handle(record)
  1279. def _monitor(self):
  1280. """
  1281. Monitor the queue for records, and ask the handler
  1282. to deal with them.
  1283. This method runs on a separate, internal thread.
  1284. The thread will terminate if it sees a sentinel object in the queue.
  1285. """
  1286. q = self.queue
  1287. has_task_done = hasattr(q, 'task_done')
  1288. while not self._stop.isSet():
  1289. try:
  1290. record = self.dequeue(True)
  1291. if record is self._sentinel:
  1292. break
  1293. self.handle(record)
  1294. if has_task_done:
  1295. q.task_done()
  1296. except queue.Empty:
  1297. pass
  1298. # There might still be records in the queue.
  1299. while True:
  1300. try:
  1301. record = self.dequeue(False)
  1302. if record is self._sentinel:
  1303. break
  1304. self.handle(record)
  1305. if has_task_done:
  1306. q.task_done()
  1307. except queue.Empty:
  1308. break
  1309. def enqueue_sentinel(self):
  1310. """
  1311. This is used to enqueue the sentinel record.
  1312. The base implementation uses put_nowait. You may want to override this
  1313. method if you want to use timeouts or work with custom queue
  1314. implementations.
  1315. """
  1316. self.queue.put_nowait(self._sentinel)
  1317. def stop(self):
  1318. """
  1319. Stop the listener.
  1320. This asks the thread to terminate, and then waits for it to do so.
  1321. Note that if you don't call this before your application exits, there
  1322. may be some records still left on the queue, which won't be processed.
  1323. """
  1324. self._stop.set()
  1325. self.enqueue_sentinel()
  1326. self._thread.join()
  1327. self._thread = None