Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | da06428 | 2018-06-12 19:33:47 -0700 | [diff] [blame] | 3 | #include <string> |
| 4 | |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 5 | /* This program assumes sensors use the Sensor.Value interface |
| 6 | * and for sensor->write() I only implemented sysfs as a type, |
| 7 | * but -- how would it know whether to use Control.FanSpeed or Control.FanPwm? |
| 8 | * |
| 9 | * One could get the interface list for the object and search for Control.* |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 10 | * but, it needs to know the maximum, minimum. The only sensors it wants to |
| 11 | * write in this code base are Fans... |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 12 | */ |
| 13 | enum class IOInterfaceType |
| 14 | { |
| 15 | NONE, // There is no interface. |
| 16 | EXTERNAL, |
| 17 | DBUSPASSIVE, |
| 18 | DBUSACTIVE, // This means for write that it needs to look up the interface. |
| 19 | SYSFS, |
| 20 | UNKNOWN |
| 21 | }; |
| 22 | |
| 23 | /* WriteInterfaceType is different because Dbusactive/passive. how to know... */ |
Patrick Venture | 7af157b | 2018-10-30 11:24:40 -0700 | [diff] [blame] | 24 | IOInterfaceType getWriteInterfaceType(const std::string& path); |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 25 | |
Patrick Venture | 7af157b | 2018-10-30 11:24:40 -0700 | [diff] [blame] | 26 | IOInterfaceType getReadInterfaceType(const std::string& path); |