1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 09:57:04 -04:00
v2fly/app/proxyman/mux/session.go

149 lines
2.2 KiB
Go
Raw Normal View History

package mux
import (
"sync"
2017-05-02 16:23:07 -04:00
"v2ray.com/core/common/buf"
"v2ray.com/core/common/protocol"
"v2ray.com/core/transport/ray"
)
type SessionManager struct {
sync.RWMutex
sessions map[uint16]*Session
2017-04-19 15:27:21 -04:00
count uint16
2017-04-13 14:14:07 -04:00
closed bool
}
func NewSessionManager() *SessionManager {
return &SessionManager{
count: 0,
2017-10-27 05:40:18 -04:00
sessions: make(map[uint16]*Session, 16),
}
}
func (m *SessionManager) Size() int {
m.RLock()
defer m.RUnlock()
return len(m.sessions)
}
2017-04-19 15:27:21 -04:00
func (m *SessionManager) Count() int {
m.RLock()
defer m.RUnlock()
return int(m.count)
}
2017-04-13 14:14:07 -04:00
func (m *SessionManager) Allocate() *Session {
m.Lock()
defer m.Unlock()
2017-04-13 14:14:07 -04:00
if m.closed {
return nil
}
m.count++
2017-04-13 14:14:07 -04:00
s := &Session{
ID: m.count,
parent: m,
}
m.sessions[s.ID] = s
2017-04-13 14:14:07 -04:00
return s
}
func (m *SessionManager) Add(s *Session) {
m.Lock()
defer m.Unlock()
2017-10-27 05:40:18 -04:00
if m.closed {
return
}
m.sessions[s.ID] = s
}
func (m *SessionManager) Remove(id uint16) {
m.Lock()
defer m.Unlock()
2017-10-27 05:40:18 -04:00
if m.closed {
return
}
delete(m.sessions, id)
}
func (m *SessionManager) Get(id uint16) (*Session, bool) {
m.RLock()
defer m.RUnlock()
2017-04-13 14:14:07 -04:00
if m.closed {
return nil, false
}
s, found := m.sessions[id]
return s, found
}
2017-04-13 14:14:07 -04:00
func (m *SessionManager) CloseIfNoSession() bool {
2017-04-19 15:27:21 -04:00
m.Lock()
defer m.Unlock()
if m.closed {
return true
}
2017-04-19 06:36:04 -04:00
if len(m.sessions) != 0 {
2017-04-13 14:14:07 -04:00
return false
}
m.closed = true
return true
}
2018-02-08 09:39:46 -05:00
func (m *SessionManager) Close() error {
2017-04-19 15:27:21 -04:00
m.Lock()
defer m.Unlock()
if m.closed {
2018-02-08 09:39:46 -05:00
return nil
}
2017-04-13 14:14:07 -04:00
m.closed = true
for _, s := range m.sessions {
2017-04-16 07:24:02 -04:00
s.input.Close()
s.output.Close()
}
2017-04-13 14:14:07 -04:00
2017-10-27 05:40:18 -04:00
m.sessions = nil
2018-02-08 09:39:46 -05:00
return nil
}
2017-10-30 07:36:31 -04:00
// Session represents a client connection in a Mux connection.
type Session struct {
2017-05-02 17:53:39 -04:00
input ray.InputStream
output ray.OutputStream
parent *SessionManager
ID uint16
transferType protocol.TransferType
}
2017-10-21 14:40:31 -04:00
// Close closes all resources associated with this session.
2018-02-08 09:39:46 -05:00
func (s *Session) Close() error {
2017-05-02 17:53:39 -04:00
s.output.Close()
s.input.Close()
s.parent.Remove(s.ID)
2018-02-08 09:39:46 -05:00
return nil
}
2017-05-02 16:23:07 -04:00
2017-10-30 07:36:31 -04: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 16:23:07 -04:00
if s.transferType == protocol.TransferTypeStream {
return NewStreamReader(reader)
}
return NewPacketReader(reader)
}