1 import logging, logging.handlers, os, time, queue, threading, subprocess
2 import traceback, smtplib
3 from email.mime.text import MIMEText
5 # Logging configuration
6 syslogLevel = logging.INFO
7 mailLevel = logging.CRITICAL # must be "larger" than syslog level!
8 mailAddress = 'post+tuer'+'@'+'ralfj.de'
10 # Mail logging handler
11 def sendeMail(subject, text, receivers, sender='sphinx@hacksaar.de', replyTo=None):
12 if not isinstance(type(receivers), list): receivers = [receivers]
14 msg = MIMEText(text.encode('UTF-8'), 'plain', 'UTF-8')
15 msg['Subject'] = subject
17 msg['To'] = ', '.join(receivers)
18 if replyTo is not None:
19 msg['Reply-To'] = replyTo
20 # put into envelope and send
21 s = smtplib.SMTP('ralfj.de')
22 s.sendmail(sender, receivers, msg.as_string())
28 self.syslog = logging.getLogger("tuerd")
29 self.syslog.setLevel(syslogLevel)
30 self.syslog.addHandler(logging.handlers.SysLogHandler(address = '/dev/log',
31 facility = logging.handlers.SysLogHandler.LOG_LOCAL0))
33 def _log (self, lvl, what):
34 thestr = "%s[%d]: %s" % ("osspd", os.getpid(), what)
38 self.syslog.log(lvl, thestr)
41 sendeMail('Kritischer Türfehler', what, mailAddress)
43 def debug(self, what):
44 self._log(logging.DEBUG, what)
46 self._log(logging.INFO, what)
47 def warning(self, what):
48 self._log(logging.WARNING, what)
49 def error(self, what):
50 self._log(logging.ERROR, what)
51 def critical(self, what):
52 self._log(logging.CRITICAL, what)
56 # run a command asynchronously and log the return value if not 0
57 # prefix must be a string identifying the code position where the call came from
58 def fire_and_forget (cmd, log, prefix):
59 def _fire_and_forget ():
60 with open("/dev/null", "w") as fnull:
61 retcode = subprocess.call(cmd, stdout=fnull, stderr=fnull)
63 log("%sReturn code %d at command: %s" % (prefix,retcode,str(cmd)))
64 t = threading.Thread(target=_fire_and_forget)
67 # Threaded callback class
68 class ThreadFunction():
72 def __init__(self, f, name):
75 self._q = queue.Queue()
76 self._t = threading.Thread(target=self._thread_func)
79 def _thread_func(self):
81 (cmd, data) = self._q.get()
83 if cmd == ThreadFunction._CALL:
86 except Exception as e:
87 logger.critical("ThreadFunction: Got exception out of handler thread %s: %s" % (self.name, str(e)))
88 logger.debug(traceback.format_exc())
89 elif cmd == ThreadFunction._TERM:
93 logger.error("ThreadFunction: Command %d does not exist" % cmd)
95 def __call__(self, *arg):
96 self._q.put((ThreadFunction._CALL, arg))
99 self._q.put((ThreadFunction._TERM, None))
102 # Thread timer-repeater class: Call a function every <sleep_time> seconds
103 class ThreadRepeater():
104 def __init__(self, f, sleep_time, name):
108 self._sleep_time = sleep_time
109 self._t = threading.Thread(target=self._thread_func)
112 def _thread_func(self):
118 except Exception as e:
119 logger.critical("ThreadRepeater: Got exception out of handler thread %s: %s" % (self.name, str(e)))
120 logger.debug(traceback.format_exc())
121 time.sleep(self._sleep_time)