Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 1 | #!/usr/bin/python -u |
| 2 | |
| 3 | import sys |
| 4 | import os |
| 5 | import gobject |
| 6 | import dbus |
| 7 | import dbus.service |
| 8 | import dbus.mainloop.glib |
Brad Bishop | ee1b154 | 2016-05-12 16:55:00 -0400 | [diff] [blame] | 9 | import obmc.sensors |
Brad Bishop | 84e73b5 | 2016-05-12 15:57:52 -0400 | [diff] [blame] | 10 | from obmc.dbuslib.bindings import DbusProperties, DbusObjectManager, get_dbus |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 11 | |
Yi Li | 54decc8 | 2016-05-05 17:42:56 +0800 | [diff] [blame] | 12 | System = __import__(sys.argv[1]) |
| 13 | |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 14 | DBUS_NAME = 'org.openbmc.Sensors' |
| 15 | OBJ_PATH = '/org/openbmc/sensors' |
| 16 | |
| 17 | |
Brad Bishop | 84e73b5 | 2016-05-12 15:57:52 -0400 | [diff] [blame] | 18 | class SensorManager(DbusProperties,DbusObjectManager): |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 19 | def __init__(self,bus,name): |
Brad Bishop | 84e73b5 | 2016-05-12 15:57:52 -0400 | [diff] [blame] | 20 | DbusProperties.__init__(self) |
| 21 | DbusObjectManager.__init__(self) |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 22 | dbus.service.Object.__init__(self,bus,name) |
| 23 | self.InterfacesAdded(name,self.properties) |
| 24 | |
| 25 | @dbus.service.method(DBUS_NAME, |
| 26 | in_signature='ss', out_signature='') |
| 27 | def register(self,object_name,obj_path): |
| 28 | if (self.objects.has_key(obj_path) == False): |
| 29 | print "Register: "+object_name+" : "+obj_path |
Brad Bishop | ee1b154 | 2016-05-12 16:55:00 -0400 | [diff] [blame] | 30 | sensor = eval('obmc.sensors.'+object_name+'(bus,obj_path)') |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 31 | self.add(obj_path,sensor) |
| 32 | |
| 33 | @dbus.service.method(DBUS_NAME, |
| 34 | in_signature='s', out_signature='') |
| 35 | def delete(self,obj_path): |
| 36 | if (self.objects.has_key(obj_path) == True): |
| 37 | print "Delete: "+obj_path |
| 38 | self.remove(obj_path) |
| 39 | |
| 40 | def SensorChange(self,value,path=None): |
| 41 | if (self.objects.has_key(path)): |
| 42 | self.objects[path].setValue(value) |
| 43 | else: |
| 44 | print "ERROR: Sensor not found: "+path |
| 45 | |
| 46 | if __name__ == '__main__': |
| 47 | dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) |
Brad Bishop | 84e73b5 | 2016-05-12 15:57:52 -0400 | [diff] [blame] | 48 | bus = get_dbus() |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 49 | name = dbus.service.BusName(DBUS_NAME,bus) |
| 50 | root_sensor = SensorManager(bus,OBJ_PATH) |
| 51 | |
| 52 | |
| 53 | ## instantiate non-polling sensors |
| 54 | ## these don't need to be in seperate process |
Yi Li | 54decc8 | 2016-05-05 17:42:56 +0800 | [diff] [blame] | 55 | for (id, the_sensor) in System.MISC_SENSORS.items(): |
| 56 | sensor_class = the_sensor['class'] |
| 57 | obj_path = System.ID_LOOKUP['SENSOR'][id] |
Brad Bishop | ee1b154 | 2016-05-12 16:55:00 -0400 | [diff] [blame] | 58 | sensor_obj = getattr(obmc.sensors, sensor_class)(bus, obj_path) |
Yi Li | 54decc8 | 2016-05-05 17:42:56 +0800 | [diff] [blame] | 59 | if 'os_path' in the_sensor: |
| 60 | sensor_obj.sysfs_attr = the_sensor['os_path'] |
| 61 | root_sensor.add(obj_path, sensor_obj) |
Norman James | 323ed97 | 2015-12-09 09:06:37 -0600 | [diff] [blame] | 62 | |
| 63 | mainloop = gobject.MainLoop() |
| 64 | print "Starting sensor manager" |
| 65 | mainloop.run() |
| 66 | |