-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsession_hub.go
84 lines (74 loc) · 1.76 KB
/
session_hub.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
package k8s_exec_pod
import (
"context"
"fmt"
"github.com/Shanghai-Lunara/pkg/zaplogger"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"sync"
)
const (
ErrSessionIdNotExist = "error: the session:%v was not exist"
)
type SessionHub interface {
New(option *ExecOptions) (s Session, err error)
Get(sessionId string) (s Session, err error)
Close(sessionId string, reason string) error
Listen(session Session) error
}
func NewSessionHub(k8sClient kubernetes.Interface, cfg *rest.Config) SessionHub {
return &sessionHub{
items: make(map[string]Session, 0),
k8sClient: k8sClient,
cfg: cfg,
}
}
type sessionHub struct {
mu sync.RWMutex
items map[string]Session
k8sClient kubernetes.Interface
cfg *rest.Config
}
func (sh *sessionHub) New(option *ExecOptions) (s Session, err error) {
sh.mu.Lock()
defer sh.mu.Unlock()
s, err = NewSession(context.Background(), 10, sh.k8sClient, sh.cfg, option)
if err != nil {
return nil, err
}
sh.items[s.Id()] = s
go func() {
if err := sh.Listen(s); err != nil {
zaplogger.Sugar().Error(err)
}
}()
return s, nil
}
func (sh *sessionHub) Get(sessionId string) (Session, error) {
sh.mu.RLock()
defer sh.mu.RUnlock()
if t, ok := sh.items[sessionId]; ok {
return t, nil
}
return nil, fmt.Errorf(ErrSessionIdNotExist, sessionId)
}
func (sh *sessionHub) Close(sessionId string, reason string) error {
sh.mu.Lock()
defer sh.mu.Unlock()
if t, ok := sh.items[sessionId]; ok {
t.Close(reason)
delete(sh.items, sessionId)
} else {
return fmt.Errorf(ErrSessionIdNotExist, sessionId)
}
return nil
}
func (sh *sessionHub) Listen(session Session) error {
select {
case <-session.Ctx().Done():
if err := sh.Close(session.Id(), ReasonContextCancel); err != nil {
return err
}
}
return nil
}