-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterminal.go
95 lines (81 loc) · 1.87 KB
/
terminal.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
88
89
90
91
92
93
94
95
package terminal
import (
"io"
"os"
"os/exec"
"github.com/kr/pty"
"github.com/sirupsen/logrus"
)
// Service serve the terminal session
type Service struct{}
type SessionWriter struct {
session Terminal_SessionServer
}
func (s *SessionWriter) Write(p []byte) (int, error) {
res := &SessionResponse{Message: string(p)}
err := s.session.Send(res)
if err != nil {
return 0, err
}
return len(p), err
}
// Session rpc manage streaming session between client and server
func (*Service) Session(session Terminal_SessionServer) error {
logrus.Info("Session created")
c := exec.Command("bash")
c.Env = append([]string{})
ptmx, err := pty.Start(c)
if err != nil {
return err
}
defer func() {
err = ptmx.Close()
if err != nil {
logrus.Errorf("Failed to close ptmx %v", err)
} else {
logrus.Info("Closing ptmx")
}
err := c.Wait()
if err != nil {
logrus.Errorf("Command wait fail : %v", err)
}
logrus.Info("Closed command")
}()
sWriter := &SessionWriter{session: session}
go func() { io.Copy(sWriter, ptmx) }()
for {
req, err := session.Recv()
if err == io.EOF {
logrus.Info("Session closed from client")
return nil
} else if err != nil {
logrus.Errorf("Receive error : %v", err)
return err
}
action(req, ptmx)
}
}
func action(req *SessionRequest, ptmx *os.File) error {
switch command := req.Command.(type) {
case *SessionRequest_Message:
{
msg := command.Message
logrus.Debugf("Request string : %v", msg)
_, err := ptmx.Write([]byte(msg))
if err != nil {
return err
}
}
case *SessionRequest_Resize:
{
resize := command.Resize
logrus.Infof("Request to resize columns %v, rows %v", resize.Columns, resize.Rows)
ws := &pty.Winsize{Cols: uint16(resize.Columns), Rows: uint16(resize.Rows)}
pty.Setsize(ptmx, ws)
}
case nil:
default:
logrus.Warn("Empty SessionRequest command")
}
return nil
}