blob: 435d57432b3e0bb4cf334f91b0a15973c2187f4f [file] [log] [blame]
George Liu682ee182020-12-25 15:24:33 +08001#include "custom_dbus.hpp"
2
3namespace pldm
4{
5namespace dbus
6{
7void CustomDBus::setLocationCode(const std::string& path, std::string value)
8{
9 if (!location.contains(path))
10 {
11 location.emplace(path,
12 std::make_unique<LocationIntf>(
13 pldm::utils::DBusHandler::getBus(), path.c_str()));
14 }
15
16 location.at(path)->locationCode(value);
17}
18
19std::optional<std::string>
20 CustomDBus::getLocationCode(const std::string& path) const
21{
22 if (location.contains(path))
23 {
24 return location.at(path)->locationCode();
25 }
26
27 return std::nullopt;
28}
29
Kamalkumar Patel56da5742024-05-23 04:53:07 -050030void CustomDBus::implementCpuCoreInterface(const std::string& path)
31{
32 if (!cpuCore.contains(path))
33 {
34 cpuCore.emplace(path, std::make_unique<CPUCore>(
35 pldm::utils::DBusHandler::getBus(), path));
36 }
37}
38
39void CustomDBus::setMicroCode(const std::string& path, uint32_t value)
40{
41 if (!cpuCore.contains(path))
42 {
43 cpuCore.emplace(path, std::make_unique<CPUCore>(
44 pldm::utils::DBusHandler::getBus(), path));
45 }
46 cpuCore.at(path)->microcode(value);
47}
48
49std::optional<uint32_t> CustomDBus::getMicroCode(const std::string& path) const
50{
51 if (cpuCore.contains(path))
52 {
53 return cpuCore.at(path)->microcode();
54 }
55
56 return std::nullopt;
57}
George Liu682ee182020-12-25 15:24:33 +080058} // namespace dbus
59} // namespace pldm