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
|
#pragma once
#include "dbus_utility.hpp"
#include "utils/dbus_utils.hpp"
#include <sdbusplus/unpack_properties.hpp>
#include <cstdint>
#include <optional>
#include <string>
namespace redfish
{
struct DbusEventLogEntry
{
// represents a subset of an instance of dbus interface
// xyz.openbmc_project.Logging.Entry
uint32_t Id = 0;
std::string Message;
const std::string* Path = nullptr;
const std::string* Resolution = nullptr;
bool Resolved = false;
std::string ServiceProviderNotify;
std::string Severity;
uint64_t Timestamp = 0;
uint64_t UpdateTimestamp = 0;
};
inline std::optional<DbusEventLogEntry> fillDbusEventLogEntryFromPropertyMap(
const dbus::utility::DBusPropertiesMap& resp)
{
DbusEventLogEntry entry;
// clang-format off
bool success = sdbusplus::unpackPropertiesNoThrow(
dbus_utils::UnpackErrorPrinter(), resp,
"Id", entry.Id,
"Message", entry.Message,
"Path", entry.Path,
"Resolution", entry.Resolution,
"Resolved", entry.Resolved,
"ServiceProviderNotify", entry.ServiceProviderNotify,
"Severity", entry.Severity,
"Timestamp", entry.Timestamp,
"UpdateTimestamp", entry.UpdateTimestamp
);
// clang-format on
if (!success)
{
return std::nullopt;
}
return entry;
}
} // namespace redfish
|