1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/common/mux/session.go

161 lines
2.5 KiB
Go
Raw Normal View History

package mux
import (
"sync"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/buf"
"github.com/v2fly/v2ray-core/v4/common/protocol"
)
type SessionManager struct {
sync.RWMutex
sessions map[uint16]*Session
2017-04-19 19:27:21 +00:00
count uint16
2017-04-13 18:14:07 +00:00
closed bool
}
func NewSessionManager() *SessionManager {
return &SessionManager{
count: 0,
2017-10-27 09:40:18 +00:00
sessions: make(map[uint16]*Session, 16),
}
}
2018-10-29 11:51:56 +00:00
func (m *SessionManager) Closed() bool {
m.RLock()
defer m.RUnlock()
return m.closed
}
func (m *SessionManager) Size() int {
m.RLock()
defer m.RUnlock()
return len(m.sessions)
}
2017-04-19 19:27:21 +00:00
func (m *SessionManager) Count() int {
m.RLock()
defer m.RUnlock()
return int(m.count)
}
2017-04-13 18:14:07 +00:00
func (m *SessionManager) Allocate() *Session {
m.Lock()
defer m.Unlock()
2017-04-13 18:14:07 +00:00
if m.closed {
return nil
}
m.count++
2017-04-13 18:14:07 +00:00
s := &Session{
ID: m.count,
parent: m,
}
m.sessions[s.ID] = s
2017-04-13 18:14:07 +00:00
return s
}
func (m *SessionManager) Add(s *Session) {
m.Lock()
defer m.Unlock()
2017-10-27 09:40:18 +00:00
if m.closed {
return
}
2018-10-28 08:08:43 +00:00
m.count++
m.sessions[s.ID] = s
}
func (m *SessionManager) Remove(id uint16) {
m.Lock()
defer m.Unlock()
2017-10-27 09:40:18 +00:00
if m.closed {
return
}
delete(m.sessions, id)
2018-04-07 21:07:30 +00:00
if len(m.sessions) == 0 {
m.sessions = make(map[uint16]*Session, 16)
}
}
func (m *SessionManager) Get(id uint16) (*Session, bool) {
m.RLock()
defer m.RUnlock()
2017-04-13 18:14:07 +00:00
if m.closed {
return nil, false
}
s, found := m.sessions[id]
return s, found
}
2017-04-13 18:14:07 +00:00
func (m *SessionManager) CloseIfNoSession() bool {
2017-04-19 19:27:21 +00:00
m.Lock()
defer m.Unlock()
if m.closed {
return true
}
2017-04-19 10:36:04 +00:00
if len(m.sessions) != 0 {
2017-04-13 18:14:07 +00:00
return false
}
m.closed = true
return true
}
2018-02-08 14:39:46 +00:00
func (m *SessionManager) Close() error {
2017-04-19 19:27:21 +00:00
m.Lock()
defer m.Unlock()
if m.closed {
2018-02-08 14:39:46 +00:00
return nil
}
2017-04-13 18:14:07 +00:00
m.closed = true
for _, s := range m.sessions {
common.Close(s.input)
common.Close(s.output)
}
2017-04-13 18:14:07 +00:00
2017-10-27 09:40:18 +00:00
m.sessions = nil
2018-02-08 14:39:46 +00:00
return nil
}
2017-10-30 11:36:31 +00:00
// Session represents a client connection in a Mux connection.
type Session struct {
2018-04-16 22:31:10 +00:00
input buf.Reader
output buf.Writer
2017-05-02 21:53:39 +00:00
parent *SessionManager
ID uint16
transferType protocol.TransferType
}
2017-10-21 18:40:31 +00:00
// Close closes all resources associated with this session.
2018-02-08 14:39:46 +00:00
func (s *Session) Close() error {
common.Close(s.output)
common.Close(s.input)
2017-05-02 21:53:39 +00:00
s.parent.Remove(s.ID)
2018-02-08 14:39:46 +00:00
return nil
}
2017-05-02 20:23:07 +00:00
2017-10-30 11:36:31 +00:00
// NewReader creates a buf.Reader based on the transfer type of this Session.
func (s *Session) NewReader(reader *buf.BufferedReader) buf.Reader {
2017-05-02 20:23:07 +00:00
if s.transferType == protocol.TransferTypeStream {
return NewStreamReader(reader)
}
return NewPacketReader(reader)
}