-
Notifications
You must be signed in to change notification settings - Fork 25
/
fru_area.hpp
124 lines (104 loc) · 2.49 KB
/
fru_area.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#ifndef __IPMI_FRU_AREA_H__
#define __IPMI_FRU_AREA_H__
#include "frup.hpp"
#include "writefrudata.hpp"
#include <cstdint>
#include <memory>
#include <string>
#include <vector>
using std::uint8_t;
/**
* IPMIFruArea represents a piece of a FRU that is accessible over IPMI.
*/
class IPMIFruArea
{
public:
IPMIFruArea() = delete;
~IPMIFruArea() = default;
/**
* Construct an IPMIFruArea.
*
* @param[in] fruID - FRU identifier value
* @param[in] type - the type of FRU area.
* @param[in] bmcOnlyFru - Is this FRU only accessible via the BMC
*/
IPMIFruArea(const uint8_t fruID, const ipmi_fru_area_type type,
bool bmcOnlyFru = false);
/**
* Set whether the FRU is present.
*
* @param[in] present - True if present.
*/
inline void setPresent(const bool present)
{
isPresent = present;
}
/**
* Retrieves the FRU's ID.
*
* @return the FRU ID.
*/
uint8_t getFruID() const
{
return fruID;
}
/**
* Returns the length of the FRU data.
*
* @return the number of bytes.
*/
size_t getLength() const
{
return data.size();
}
/**
* Returns the type of the current FRU area.
*
* @return the type of FRU area
*/
ipmi_fru_area_type getType() const
{
return type;
}
/**
* Returns the FRU area name.
*
* @return the FRU area name
*/
const char* getName() const
{
return name.c_str();
}
/**
* Returns the data portion.
*
* @return pointer to data
*/
inline const uint8_t* getData() const
{
return data.data();
}
/**
* Accepts a pointer to data and sets it in the object.
*
* @param[in] value - The data to copy into the FRU area
* @param[in] length - the number of bytes value points to
*/
void setData(const uint8_t* value, const size_t length);
private:
// Unique way of identifying a FRU
uint8_t fruID = 0;
// Type of the FRU matching offsets in common header
ipmi_fru_area_type type = IPMI_FRU_AREA_INTERNAL_USE;
// Name of the FRU area. ( BOARD/CHASSIS/PRODUCT )
std::string name;
// Special bit for BMC readable eeprom only.
bool bmcOnlyFru = false;
// If a FRU is physically present.
bool isPresent = false;
// Whether a particular area is valid ?
bool isValid = false;
// Actual area data.
std::vector<uint8_t> data;
};
#endif