waveterm/pkg/sstore/updatebus.go

154 lines
3.6 KiB
Go
Raw Normal View History

package sstore
import "sync"
var MainBus *UpdateBus = MakeUpdateBus()
const PtyDataUpdateStr = "pty"
const ModelUpdateStr = "model"
type UpdatePacket interface {
UpdateType() string
}
type PtyDataUpdate struct {
SessionId string `json:"sessionid"`
CmdId string `json:"cmdid"`
PtyPos int64 `json:"ptypos"`
PtyData64 string `json:"ptydata64"`
PtyDataLen int64 `json:"ptydatalen"`
}
func (PtyDataUpdate) UpdateType() string {
return PtyDataUpdateStr
}
type ModelUpdate struct {
2022-08-25 03:56:50 +02:00
Sessions []*SessionType `json:"sessions,omitempty"`
ActiveSessionId string `json:"activesessionid,omitempty"`
2022-08-25 03:56:50 +02:00
Window *WindowType `json:"window,omitempty"`
Line *LineType `json:"line,omitempty"`
Cmd *CmdType `json:"cmd,omitempty"`
CmdLine *CmdLineType `json:"cmdline,omitempty"`
2022-08-11 03:33:32 +02:00
Info *InfoMsgType `json:"info,omitempty"`
2022-08-26 22:12:17 +02:00
Remote interface{} `json:"remote,omitempty"` // *remote.RemoteState
2022-07-15 10:57:45 +02:00
}
func (ModelUpdate) UpdateType() string {
return ModelUpdateStr
}
func MakeSingleSessionUpdate(sessionId string) (ModelUpdate, *SessionType) {
2022-07-15 10:57:45 +02:00
session := &SessionType{
SessionId: sessionId,
NotifyNum: -1,
}
update := ModelUpdate{
2022-07-15 10:57:45 +02:00
Sessions: []*SessionType{session},
}
return update, session
}
func ReadHistoryDataFromUpdate(update UpdatePacket) (string, string, *RemotePtrType) {
modelUpdate, ok := update.(ModelUpdate)
2022-08-12 08:45:15 +02:00
if !ok {
return "", "", nil
2022-08-12 08:45:15 +02:00
}
if modelUpdate.Line == nil {
return "", "", nil
2022-08-12 08:45:15 +02:00
}
var rptr *RemotePtrType
if modelUpdate.Cmd != nil {
rptr = &modelUpdate.Cmd.Remote
}
return modelUpdate.Line.LineId, modelUpdate.Line.CmdId, rptr
2022-08-12 08:45:15 +02:00
}
2022-08-11 03:33:32 +02:00
type InfoMsgType struct {
2022-08-11 19:21:45 +02:00
InfoTitle string `json:"infotitle"`
InfoError string `json:"infoerror,omitempty"`
InfoMsg string `json:"infomsg,omitempty"`
2022-08-23 03:53:38 +02:00
InfoComps []string `json:"infocomps,omitempty"`
InfoCompsMore bool `json:"infocompssmore,omitempty"`
InfoLines []string `json:"infolines,omitempty"`
2022-08-11 19:21:45 +02:00
TimeoutMs int64 `json:"timeoutms,omitempty"`
2022-08-11 03:33:32 +02:00
}
type CmdLineType struct {
InsertChars string `json:"insertchars"`
InsertPos int64 `json:"insertpos"`
}
type UpdateChannel struct {
SessionId string
ClientId string
Ch chan interface{}
}
func (uch UpdateChannel) Match(sessionId string) bool {
if sessionId == "" {
return true
}
return sessionId == uch.SessionId
}
type UpdateBus struct {
Lock *sync.Mutex
Channels map[string]UpdateChannel
}
func MakeUpdateBus() *UpdateBus {
return &UpdateBus{
Lock: &sync.Mutex{},
Channels: make(map[string]UpdateChannel),
}
}
func (bus *UpdateBus) RegisterChannel(clientId string, sessionId string) chan interface{} {
bus.Lock.Lock()
defer bus.Lock.Unlock()
uch, found := bus.Channels[clientId]
if found {
close(uch.Ch)
uch.SessionId = sessionId
uch.Ch = make(chan interface{})
} else {
uch = UpdateChannel{
ClientId: clientId,
SessionId: sessionId,
Ch: make(chan interface{}),
}
}
bus.Channels[clientId] = uch
return uch.Ch
}
func (bus *UpdateBus) UnregisterChannel(clientId string) {
bus.Lock.Lock()
defer bus.Lock.Unlock()
uch, found := bus.Channels[clientId]
if found {
close(uch.Ch)
delete(bus.Channels, clientId)
}
}
func (bus *UpdateBus) SendUpdate(sessionId string, update interface{}) {
bus.Lock.Lock()
defer bus.Lock.Unlock()
for _, uch := range bus.Channels {
if uch.Match(sessionId) {
uch.Ch <- update
}
}
}
func MakeSessionsUpdateForRemote(sessionId string, ri *RemoteInstance) []*SessionType {
return []*SessionType{
&SessionType{
SessionId: sessionId,
Remotes: []*RemoteInstance{ri},
},
}
}