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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later
package dpms
import x "github.com/linuxdeepin/go-x11-client"
func GetVersion(conn *x.Conn, clientMajorVersion, clientMinorVersion uint16) GetVersionCookie {
body := encodeGetVersion(clientMajorVersion, clientMinorVersion)
req := &x.ProtocolRequest{
Ext: _ext,
Header: x.RequestHeader{
Data: GetVersionOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return GetVersionCookie(seq)
}
func (cookie GetVersionCookie) Reply(conn *x.Conn) (*GetVersionReply, error) {
replyBuf, err := conn.WaitForReply(x.SeqNum(cookie))
if err != nil {
return nil, err
}
r := x.NewReaderFromData(replyBuf)
var reply GetVersionReply
err = readGetVersionReply(r, &reply)
if err != nil {
return nil, err
}
return &reply, nil
}
func Capable(conn *x.Conn) CapableCookie {
body := encodeCapable()
req := &x.ProtocolRequest{
Ext: _ext,
Header: x.RequestHeader{
Data: CapableOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return CapableCookie(seq)
}
func (cookie CapableCookie) Reply(conn *x.Conn) (*CapableReply, error) {
replyBuf, err := conn.WaitForReply(x.SeqNum(cookie))
if err != nil {
return nil, err
}
r := x.NewReaderFromData(replyBuf)
var reply CapableReply
err = readCapableReply(r, &reply)
if err != nil {
return nil, err
}
return &reply, nil
}
func GetTimeouts(conn *x.Conn) GetTimeoutsCookie {
body := encodeGetTimeouts()
req := &x.ProtocolRequest{
Ext: _ext,
Header: x.RequestHeader{
Data: GetTimeoutsOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return GetTimeoutsCookie(seq)
}
func (cookie GetTimeoutsCookie) Reply(conn *x.Conn) (*GetTimeoutsReply, error) {
replyBuf, err := conn.WaitForReply(x.SeqNum(cookie))
if err != nil {
return nil, err
}
r := x.NewReaderFromData(replyBuf)
var reply GetTimeoutsReply
err = readGetTimeoutsReply(r, &reply)
if err != nil {
return nil, err
}
return &reply, nil
}
func SetTimeouts(conn *x.Conn, standbyTimeout, suspendTimeout, offTimeout uint16) {
body := encodeSetTimeouts(standbyTimeout, suspendTimeout, offTimeout)
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: SetTimeoutsOpcode,
},
Body: body,
}
conn.SendRequest(0, req)
}
func SetTimeoutsChecked(conn *x.Conn, standbyTimeout, suspendTimeout, offTimeout uint16) x.VoidCookie {
body := encodeSetTimeouts(standbyTimeout, suspendTimeout, offTimeout)
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: SetTimeoutsOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return x.VoidCookie(seq)
}
func Enable(conn *x.Conn) {
body := encodeEnable()
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: EnableOpcode,
},
Body: body,
}
conn.SendRequest(0, req)
}
func EnableChecked(conn *x.Conn) x.VoidCookie {
body := encodeEnable()
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: EnableOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return x.VoidCookie(seq)
}
func Disable(conn *x.Conn) {
body := encodeDisable()
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: DisableOpcode,
},
Body: body,
}
conn.SendRequest(0, req)
}
func DisableChecked(conn *x.Conn) x.VoidCookie {
body := encodeDisable()
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: DisableOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return x.VoidCookie(seq)
}
func ForceLevel(conn *x.Conn, powerLevel uint16) {
body := encodeForceLevel(powerLevel)
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: ForceLevelOpcode,
},
Body: body,
}
conn.SendRequest(0, req)
}
func ForceLevelChecked(conn *x.Conn, powerLevel uint16) x.VoidCookie {
body := encodeForceLevel(powerLevel)
req := &x.ProtocolRequest{
Ext: _ext,
NoReply: true,
Header: x.RequestHeader{
Data: ForceLevelOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return x.VoidCookie(seq)
}
func Info(conn *x.Conn) InfoCookie {
body := encodeInfo()
req := &x.ProtocolRequest{
Ext: _ext,
Header: x.RequestHeader{
Data: InfoOpcode,
},
Body: body,
}
seq := conn.SendRequest(x.RequestChecked, req)
return InfoCookie(seq)
}
func (cookie InfoCookie) Reply(conn *x.Conn) (*InfoReply, error) {
replyBuf, err := conn.WaitForReply(x.SeqNum(cookie))
if err != nil {
return nil, err
}
r := x.NewReaderFromData(replyBuf)
var reply InfoReply
err = readInfoReply(r, &reply)
if err != nil {
return nil, err
}
return &reply, nil
}
|