forked from bougou/go-ipmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_get_fru_inventory_area_info.go
55 lines (45 loc) · 1.42 KB
/
cmd_get_fru_inventory_area_info.go
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
package ipmi
import (
"fmt"
)
// 34.1 Get FRU Inventory Area Info Command
type GetFRUInventoryAreaInfoRequest struct {
FRUDeviceID uint8
}
type GetFRUInventoryAreaInfoResponse struct {
AreaSizeBytes uint16
DeviceAccessedByWords bool // false means Device is accessed by Bytes
}
func (req *GetFRUInventoryAreaInfoRequest) Command() Command {
return CommandGetFRUInventoryAreaInfo
}
func (req *GetFRUInventoryAreaInfoRequest) Pack() []byte {
return []byte{req.FRUDeviceID}
}
func (res *GetFRUInventoryAreaInfoResponse) Unpack(msg []byte) error {
if len(msg) < 3 {
return ErrUnpackedDataTooShort
}
res.AreaSizeBytes, _, _ = unpackUint16L(msg, 0)
b, _, _ := unpackUint8(msg, 2)
res.DeviceAccessedByWords = isBit0Set(b)
return nil
}
func (r *GetFRUInventoryAreaInfoResponse) CompletionCodes() map[uint8]string {
return map[uint8]string{}
}
func (res *GetFRUInventoryAreaInfoResponse) Format() string {
return fmt.Sprintf(`fru.size = %d bytes (accessed by %s)`,
res.AreaSizeBytes,
formatBool(res.DeviceAccessedByWords, "words", "bytes"),
)
}
// This command returns overall the size of the FRU Inventory Area in this device, in bytes.
func (c *Client) GetFRUInventoryAreaInfo(fruDeviceID uint8) (response *GetFRUInventoryAreaInfoResponse, err error) {
request := &GetFRUInventoryAreaInfoRequest{
FRUDeviceID: fruDeviceID,
}
response = &GetFRUInventoryAreaInfoResponse{}
err = c.Exchange(request, response)
return
}