-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.go
87 lines (62 loc) · 1.59 KB
/
common.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
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
package sshclient
import (
"github.com/khorevaa/go-v8platform/agent/client/errors"
)
func (c *AgentClient) Connect(opts ...execOption) error {
onSuccess := func(body []byte, stop chan bool) {
c.ibConnected = true
stop <- true
}
var e error
onError := func(err error, errType RespondErrorType, stop chan bool) {
e = err
if errors.Is(errors.DesignerAlreadyConnectedToInfoBase, err) {
e = nil
c.ibConnected = true
}
stop <- true
}
options := newExecOptions()
options = append(options, WithRespondCheck(onSuccess, onError, nil))
options = append(options, opts...)
_, err := c.Exec(CommonConnectInfobase{}, options...)
if err != nil {
return err
}
return e
}
func (c *AgentClient) Disconnect(opts ...execOption) error {
onSuccess := func(body []byte, stop chan bool) {
c.ibConnected = false
stop <- true
}
var err error
onError := func(e error, errType RespondErrorType, stop chan bool) {
err = e
if errors.Is(errors.DesignerNotConnectedToInfoBase, e) {
err = nil
c.ibConnected = false
}
stop <- true
}
options := newExecOptions()
options = append(options, WithRespondCheck(onSuccess, onError, nil))
options = append(options, opts...)
_, errExec := c.Exec(CommonDisconnectInfobase{}, options...)
if errExec != nil {
return errExec
}
return err
}
func (c *AgentClient) Shutdown(opts ...execOption) (err error) {
options := newExecOptions()
options = append(options, WithNullReader())
options = append(options, opts...)
_, err = c.Exec(CommonShutdown{}, options...)
if err != nil {
return err
}
c.ibConnected = false
c.Stop()
return
}