File: cmd_get_message_flags.go

package info (click to toggle)
golang-github-bougou-go-ipmi 0.7.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,880 kB
  • sloc: makefile: 38
file content (57 lines) | stat: -rw-r--r-- 1,506 bytes parent folder | download | duplicates (2)
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
package ipmi

import "context"

// 22.4 Get Message Flags Command
type GetMessageFlagsRequest struct {
	// empty
}

type GetMessageFlagsResponse struct {
	OEM2Available                       bool
	OEM1Available                       bool
	OEM0Available                       bool
	WatchdogPreTimeoutInterruptOccurred bool
	EventMessageBufferFull              bool
	ReceiveMessageQueueAvailable        bool // One or more messages ready for reading from Receive Message Queue
}

func (req *GetMessageFlagsRequest) Command() Command {
	return CommandGetMessageFlags
}

func (req *GetMessageFlagsRequest) Pack() []byte {
	return []byte{}
}

func (res *GetMessageFlagsResponse) Unpack(msg []byte) error {
	if len(msg) < 1 {
		return ErrUnpackedDataTooShortWith(len(msg), 1)
	}

	b, _, _ := unpackUint8(msg, 0)
	res.OEM2Available = isBit7Set(b)
	res.OEM1Available = isBit6Set(b)
	res.OEM0Available = isBit5Set(b)
	res.WatchdogPreTimeoutInterruptOccurred = isBit3Set(b)
	res.EventMessageBufferFull = isBit1Set(b)
	res.ReceiveMessageQueueAvailable = isBit0Set(b)
	return nil
}

func (*GetMessageFlagsResponse) CompletionCodes() map[uint8]string {
	// no command-specific cc
	return map[uint8]string{}
}

func (res *GetMessageFlagsResponse) Format() string {
	// Todo
	return ""
}

func (c *Client) GetMessageFlags(ctx context.Context) (response *GetMessageFlagsResponse, err error) {
	request := &GetMessageFlagsRequest{}
	response = &GetMessageFlagsResponse{}
	err = c.Exchange(ctx, request, response)
	return
}