-
Notifications
You must be signed in to change notification settings - Fork 22
/
manager.hpp
68 lines (54 loc) · 1.65 KB
/
manager.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#pragma once
#include "sensors/sensor.hpp"
#include <sdbusplus/bus.hpp>
#include <sdbusplus/server.hpp>
#include <map>
#include <memory>
#include <string>
#include <vector>
namespace pid_control
{
/*
* The SensorManager holds all sensors across all zones.
*/
class SensorManager
{
public:
SensorManager(sdbusplus::bus_t& pass, sdbusplus::bus_t& host) :
_passiveListeningBus(&pass), _hostSensorBus(&host)
{
// manager gets its interface from the bus. :D
sdbusplus::server::manager_t(*_hostSensorBus, SensorRoot);
}
SensorManager() = default;
~SensorManager() = default;
SensorManager(const SensorManager&) = delete;
SensorManager& operator=(const SensorManager&) = delete;
SensorManager(SensorManager&&) = default;
SensorManager& operator=(SensorManager&&) = default;
/*
* Add a Sensor to the Manager.
*/
void addSensor(const std::string& type, const std::string& name,
std::unique_ptr<Sensor> sensor);
// TODO(venture): Should implement read/write by name.
Sensor* getSensor(const std::string& name) const
{
return _sensorMap.at(name).get();
}
sdbusplus::bus_t& getPassiveBus(void)
{
return *_passiveListeningBus;
}
sdbusplus::bus_t& getHostBus(void)
{
return *_hostSensorBus;
}
private:
std::map<std::string, std::unique_ptr<Sensor>> _sensorMap;
std::map<std::string, std::vector<std::string>> _sensorTypeList;
sdbusplus::bus_t* _passiveListeningBus;
sdbusplus::bus_t* _hostSensorBus;
static constexpr auto SensorRoot = "/xyz/openbmc_project/extsensors";
};
} // namespace pid_control