added logos
[svn42.git] / switch-power.py
index 1ee8421..6b8b9f5 100755 (executable)
@@ -15,6 +15,7 @@ import subprocess
 import types
 import ConfigParser
 import datetime
+import traceback
 
 logger = logging.getLogger()
 logger.setLevel(logging.INFO)
@@ -28,15 +29,19 @@ class UWSConfig:
   def __init__(self,configfile=None):
     self.configfile=configfile
     self.config_parser=ConfigParser.ConfigParser()
+    self.config_parser.add_section('powerswitching')
+    self.config_parser.set('powerswitching','min_secs_periodical_event','59')
+    self.config_parser.set('powerswitching','max_secs_since_movement','600')
     self.config_parser.add_section('slug')
     self.config_parser.set('slug','cgiuri','http://slug.realraum.at/cgi-bin/switch.cgi?id=%ID%&power=%ONOFF%')
-    self.config_parser.set('slug','ids_present_day','logo werkzeug')
-    self.config_parser.set('slug','ids_present_night','logo werkzeug schreibtisch idee labor')
+    self.config_parser.set('slug','ids_logo','logo')
+    self.config_parser.set('slug','ids_present_day','werkzeug')
+    self.config_parser.set('slug','ids_present_night','werkzeug schreibtisch idee labor')
     self.config_parser.set('slug','ids_panic','idee schreibtisch labor werkzeug')
-    self.config_parser.set('slug','ids_nonpresent_off','idee schreibtisch labor werkzeug stereo logo')
+    self.config_parser.set('slug','ids_nonpresent_off','lichter stereo deckehinten')
     #self.config_parser.set('slug','time_day','6:00-17:00')
     self.config_parser.add_section('debug')
-    self.config_parser.set('debug','enabled',"True")
+    self.config_parser.set('debug','enabled',"False")
     self.config_parser.add_section('tracker')
     self.config_parser.set('tracker','socket',"/var/run/tuer/presence.socket")    
     self.config_mtime=0
@@ -109,37 +114,95 @@ def switchPower(powerid,turn_on=False):
   else:
     onoff="off"
   touchURL(uwscfg.slug_cgiuri.replace("%ID%",powerid).replace("%ONOFF%",onoff))
-  
-def eventPresent():
+
+def haveDaylight():
+  dawn_per_month = {1:8, 2:7, 3:6, 4:6, 5:5, 6:5, 7:5, 8:6, 9:7, 10:8, 11:8, 12:8}
+  dusk_per_month = {1:16, 2:17, 3:18, 4:20, 5:21, 6:21, 7:21, 8:20, 9:19, 10:18, 11:16, 12:16}
+  hour = datetime.datetime.now().hour
+  month = datetime.datetime.now().month
+  return (hour >= dawn_per_month[month] and hour < dusk_per_month[month])
+
+def isWolfHour():
   hour = datetime.datetime.now().hour
-  if hour > 6 and hour < 18:
+  return (hour >= 2 and hour < 6)
+
+######### EVENTS ###############  
+unixts_last_movement=0
+status_presense=None
+
+def eventDaylightStart():
+  for id in uwscfg.slug_ids_logo.split(" "):
+    switchPower(id,False)
+
+def eventDaylightStop():
+  if not isWolfHour():
+    for id in uwscfg.slug_ids_logo.split(" "):
+      switchPower(id,True)
+
+def eventWolfHourStart():
+  for id in uwscfg.slug_ids_logo.split(" "):
+    switchPower(id,False)
+
+def eventWolfHourStop():
+  if haveDaylight():
+    for id in uwscfg.slug_ids_logo.split(" "):
+      switchPower(id,True)
+
+def eventMovement():
+  global unixts_last_movement
+  unixts_last_movement=time.time()
+
+def eventPeriodical():
+  pass
+
+#  global unixts_last_movement
+#  if status_presense is True and unixts_last_movement + int(uwscfg.powerswitching_max_secs_since_movement) >= time.time():
+#    presumed_state=not (haveDaylight() or isWolfHour())
+#    logging.debug("event: periodical event")
+#    for id in uwscfg.slug_ids_logo.split(" "):
+#      switchPower(id,not presumed_state)
+#      time.sleep(1);
+#      switchPower(id,presumed_state)
+
+def eventPresent():
+  global status_presense
+  status_presense=True
+  if haveDaylight():
     present_ids=uwscfg.slug_ids_present_day
   else:
     present_ids=uwscfg.slug_ids_present_night
+  logging.info("event: someone present, switching on: "+present_ids)
   for id in present_ids.split(" "):
     switchPower(id,True)
 
 def eventNobodyHere():
-  for id in uwscfg.slug_ids_nonpresent_off.split(" "):
+  global status_presense
+  status_presense=False
+  present_ids=uwscfg.slug_ids_nonpresent_off
+  logging.info("event: noone here, switching off: "+present_ids)
+  for id in present_ids.split(" "):
     switchPower(id,False)
+  for id in present_ids.split(" "):
+    time.sleep(0.3)
     switchPower(id,False)
 
 def eventPanic():
+  logging.info("event: Panic:, switching around: "+uwscfg.slug_ids_panic)
   lst1 = uwscfg.slug_ids_panic.split(" ")
-  lst2 = lst1
-  lst2.append(lst2.pop(0))
-  #guarantee list has even number of elements by multiplying it with a factor of 2
-  lst=zip(lst1,lst2) * 8
-  lst2=None
-  switchPower(lst[0][0],True)
-  for (id1,id2) in lst: 
-    switchPower(id2,True)
-    time.sleep(0.3)
-    switchPower(id1,False)
-  time.sleep(0.6)
-  for id in lst1:
+  lst2 = map(lambda e:[e,True], lst1)
+  for delay in map(lambda e: (40-e)/133.0,range(0,20)):
+    e = random.choice(lst2)
+    e[1]=not e[1]
+    switchPower(e[0],e[1]) 
+    time.sleep(delay)
+  random.shuffle(lst1)
+  for rep in lst1:
     switchPower(id,False)
+  time.sleep(1.2)
   eventPresent()
+    
+
+########################
 
 def exitHandler(signum, frame):
   logging.info("Power Switch Daemon stopping")
@@ -166,8 +229,12 @@ else:
   uwscfg = UWSConfig()
 
 #socket.setdefaulttimeout(10.0) #affects all new Socket Connections (urllib as well)
-RE_PRESENCE = re.compile(r'Presence: (yes|no)')
+RE_PRESENCE = re.compile(r'Presence: (yes|no)(?:, (opened|closed), (.+))?')
 RE_BUTTON = re.compile(r'PanicButton|button\d?')
+RE_MOVEMENT = re.compile(r'movement')
+daylight=None
+wolfhour=None
+unixts_last_periodical=0
 while True:
   try:
     if not os.path.exists(uwscfg.tracker_socket):
@@ -179,6 +246,25 @@ while True:
     conn = os.fdopen(sockhandle.fileno())
     #sockhandle.send("listen\n")
     while True:
+
+      if haveDaylight() != daylight:
+        daylight = haveDaylight()
+        if daylight:
+          eventDaylightStart()
+        else:
+          eventDaylightStop()
+
+      if isWolfHour() != wolfhour:
+        wolfhour = isWolfHour()
+        if wolfhour:
+          eventWolfHourStart()
+        else:
+          eventWolfHourStop()
+     
+      if unixts_last_periodical + int(uwscfg.powerswitching_min_secs_periodical_event) <= time.time():
+        unixts_last_periodical = time.time()
+        eventPeriodical()
+
       line = conn.readline()
       logging.debug("Got Line: " + line)
       
@@ -199,9 +285,14 @@ while True:
       if not m is None:
         eventPanic()
         continue
+      m = RE_MOVEMENT.match(line)
+      if not m is None:
+        eventMovement()
+        continue
           
   except Exception, ex:
-    logging.error("main: "+str(ex)) 
+    logging.error("main: "+str(ex))
+    traceback.print_exc(file=sys.stdout)
     try:
       sockhandle.close()
     except: