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
|
package ipmi
import (
"context"
"fmt"
"time"
)
// 22.14 Get System GUID Command
type GetSystemGUIDRequest struct {
// empty
}
type GetSystemGUIDResponse struct {
// Note that the individual fields within the GUID are stored least-significant byte first
GUID [16]byte
}
func (req *GetSystemGUIDRequest) Command() Command {
return CommandGetSystemGUID
}
func (req *GetSystemGUIDRequest) Pack() []byte {
return nil
}
func (res *GetSystemGUIDResponse) Unpack(msg []byte) error {
if len(msg) < 16 {
return ErrUnpackedDataTooShortWith(len(msg), 16)
}
b, _, _ := unpackBytes(msg, 0, 16)
res.GUID = array16(b)
return nil
}
func (*GetSystemGUIDResponse) CompletionCodes() map[uint8]string {
// no command-specific cc
return map[uint8]string{}
}
func (res *GetSystemGUIDResponse) Format() string {
guidMode := GUIDModeSMBIOS
u, err := ParseGUID(res.GUID[:], guidMode)
if err != nil {
return fmt.Sprintf("<invalid UUID bytes> (%s)", err)
}
sec, nsec := u.Time().UnixTime()
return "" +
fmt.Sprintf("System GUID : %s\n", u.String()) +
fmt.Sprintf("UUID Encoding : %s\n", guidMode) +
fmt.Sprintf("UUID Version : %s\n", UUIDVersionString(u)) +
fmt.Sprintf("Timestamp : %s\n", time.Unix(sec, nsec).Format(timeFormat)) +
fmt.Sprintf("Timestamp(Legacy) : %s\n", IPMILegacyGUIDTime(u).Format(timeFormat))
}
func (c *Client) GetSystemGUID(ctx context.Context) (response *GetSystemGUIDResponse, err error) {
request := &GetSystemGUIDRequest{}
response = &GetSystemGUIDResponse{}
err = c.Exchange(ctx, request, response)
return
}
|