mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
refactor irc.Socket
This commit is contained in:
parent
e3e714059c
commit
fa5d4be718
175
irc/socket.go
175
irc/socket.go
@ -9,6 +9,7 @@ import (
|
|||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
|
"errors"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"strings"
|
"strings"
|
||||||
@ -18,24 +19,25 @@ import (
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
handshakeTimeout, _ = time.ParseDuration("5s")
|
handshakeTimeout, _ = time.ParseDuration("5s")
|
||||||
|
errSendQExceeded = errors.New("SendQ exceeded")
|
||||||
)
|
)
|
||||||
|
|
||||||
// Socket represents an IRC socket.
|
// Socket represents an IRC socket.
|
||||||
type Socket struct {
|
type Socket struct {
|
||||||
|
sync.Mutex
|
||||||
|
|
||||||
conn net.Conn
|
conn net.Conn
|
||||||
reader *bufio.Reader
|
reader *bufio.Reader
|
||||||
|
|
||||||
MaxSendQBytes uint64
|
MaxSendQBytes uint64
|
||||||
|
|
||||||
closed bool
|
// coordination system for asynchronous writes
|
||||||
closedMutex sync.Mutex
|
buffer []byte
|
||||||
|
|
||||||
finalData string // what to send when we die
|
|
||||||
finalDataMutex sync.Mutex
|
|
||||||
|
|
||||||
lineToSendExists chan bool
|
lineToSendExists chan bool
|
||||||
linesToSend []string
|
|
||||||
linesToSendMutex sync.Mutex
|
closed bool
|
||||||
|
sendQExceeded bool
|
||||||
|
finalData string // what to send when we die
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewSocket returns a new Socket.
|
// NewSocket returns a new Socket.
|
||||||
@ -44,21 +46,24 @@ func NewSocket(conn net.Conn, maxSendQBytes uint64) Socket {
|
|||||||
conn: conn,
|
conn: conn,
|
||||||
reader: bufio.NewReader(conn),
|
reader: bufio.NewReader(conn),
|
||||||
MaxSendQBytes: maxSendQBytes,
|
MaxSendQBytes: maxSendQBytes,
|
||||||
lineToSendExists: make(chan bool),
|
lineToSendExists: make(chan bool, 1),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close stops a Socket from being able to send/receive any more data.
|
// Close stops a Socket from being able to send/receive any more data.
|
||||||
func (socket *Socket) Close() {
|
func (socket *Socket) Close() {
|
||||||
socket.closedMutex.Lock()
|
alreadyClosed := func() bool {
|
||||||
defer socket.closedMutex.Unlock()
|
socket.Lock()
|
||||||
if socket.closed {
|
defer socket.Unlock()
|
||||||
return
|
result := socket.closed
|
||||||
}
|
socket.closed = true
|
||||||
socket.closed = true
|
return result
|
||||||
|
}()
|
||||||
|
|
||||||
// force close loop to happen if it hasn't already
|
if !alreadyClosed {
|
||||||
go socket.timedFillLineToSendExists(200 * time.Millisecond)
|
// force close loop to happen if it hasn't already
|
||||||
|
socket.Write("")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// CertFP returns the fingerprint of the certificate provided by the client.
|
// CertFP returns the fingerprint of the certificate provided by the client.
|
||||||
@ -114,124 +119,78 @@ func (socket *Socket) Read() (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Write sends the given string out of Socket.
|
// Write sends the given string out of Socket.
|
||||||
func (socket *Socket) Write(data string) error {
|
func (socket *Socket) Write(data string) (err error) {
|
||||||
if socket.IsClosed() {
|
socket.Lock()
|
||||||
return io.EOF
|
defer socket.Unlock()
|
||||||
|
|
||||||
|
if socket.closed {
|
||||||
|
err = io.EOF
|
||||||
|
} else if uint64(len(data)+len(socket.buffer)) > socket.MaxSendQBytes {
|
||||||
|
socket.sendQExceeded = true
|
||||||
|
err = errSendQExceeded
|
||||||
|
} else {
|
||||||
|
socket.buffer = append(socket.buffer, data...)
|
||||||
}
|
}
|
||||||
|
|
||||||
socket.linesToSendMutex.Lock()
|
// this can generate a spurious wakeup, since we are racing against the channel read,
|
||||||
socket.linesToSend = append(socket.linesToSend, data)
|
// but since we are holding the mutex, we are not racing against the other writes
|
||||||
socket.linesToSendMutex.Unlock()
|
// and therefore we cannot miss a wakeup or block
|
||||||
|
if len(socket.lineToSendExists) == 0 {
|
||||||
go socket.timedFillLineToSendExists(15 * time.Second)
|
socket.lineToSendExists <- true
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// timedFillLineToSendExists either sends the note or times out.
|
|
||||||
func (socket *Socket) timedFillLineToSendExists(duration time.Duration) {
|
|
||||||
lineToSendTimeout := time.NewTimer(duration)
|
|
||||||
defer lineToSendTimeout.Stop()
|
|
||||||
select {
|
|
||||||
case socket.lineToSendExists <- true:
|
|
||||||
// passed data successfully
|
|
||||||
case <-lineToSendTimeout.C:
|
|
||||||
// timed out send
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetFinalData sets the final data to send when the SocketWriter closes.
|
// SetFinalData sets the final data to send when the SocketWriter closes.
|
||||||
func (socket *Socket) SetFinalData(data string) {
|
func (socket *Socket) SetFinalData(data string) {
|
||||||
socket.finalDataMutex.Lock()
|
socket.Lock()
|
||||||
|
defer socket.Unlock()
|
||||||
socket.finalData = data
|
socket.finalData = data
|
||||||
socket.finalDataMutex.Unlock()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsClosed returns whether the socket is closed.
|
// IsClosed returns whether the socket is closed.
|
||||||
func (socket *Socket) IsClosed() bool {
|
func (socket *Socket) IsClosed() bool {
|
||||||
socket.closedMutex.Lock()
|
socket.Lock()
|
||||||
defer socket.closedMutex.Unlock()
|
defer socket.Unlock()
|
||||||
return socket.closed
|
return socket.closed
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunSocketWriter starts writing messages to the outgoing socket.
|
// RunSocketWriter starts writing messages to the outgoing socket.
|
||||||
func (socket *Socket) RunSocketWriter() {
|
func (socket *Socket) RunSocketWriter() {
|
||||||
for {
|
localBuffer := make([]byte, 0)
|
||||||
|
shouldStop := false
|
||||||
|
for !shouldStop {
|
||||||
// wait for new lines
|
// wait for new lines
|
||||||
select {
|
select {
|
||||||
case <-socket.lineToSendExists:
|
case <-socket.lineToSendExists:
|
||||||
socket.linesToSendMutex.Lock()
|
// retrieve the buffered data, clear the buffer
|
||||||
|
socket.Lock()
|
||||||
|
localBuffer = append(localBuffer, socket.buffer...)
|
||||||
|
socket.buffer = socket.buffer[:0]
|
||||||
|
socket.Unlock()
|
||||||
|
|
||||||
// check if we're closed
|
_, err := socket.conn.Write(localBuffer)
|
||||||
if socket.IsClosed() {
|
localBuffer = localBuffer[:0]
|
||||||
socket.linesToSendMutex.Unlock()
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
// check whether new lines actually exist or not
|
socket.Lock()
|
||||||
if len(socket.linesToSend) < 1 {
|
shouldStop = (err != nil) || socket.closed || socket.sendQExceeded
|
||||||
socket.linesToSendMutex.Unlock()
|
socket.Unlock()
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
// check sendq
|
|
||||||
var sendQBytes uint64
|
|
||||||
for _, line := range socket.linesToSend {
|
|
||||||
sendQBytes += uint64(len(line))
|
|
||||||
if socket.MaxSendQBytes < sendQBytes {
|
|
||||||
// don't unlock mutex because this break is just to escape this for loop
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if socket.MaxSendQBytes < sendQBytes {
|
|
||||||
socket.SetFinalData("\r\nERROR :SendQ Exceeded\r\n")
|
|
||||||
socket.linesToSendMutex.Unlock()
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
// get all existing data
|
|
||||||
data := strings.Join(socket.linesToSend, "")
|
|
||||||
socket.linesToSend = []string{}
|
|
||||||
|
|
||||||
socket.linesToSendMutex.Unlock()
|
|
||||||
|
|
||||||
// write data
|
|
||||||
if 0 < len(data) {
|
|
||||||
_, err := socket.conn.Write([]byte(data))
|
|
||||||
if err != nil {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if socket.IsClosed() {
|
|
||||||
// error out or we've been closed
|
|
||||||
break
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// force closure of socket
|
|
||||||
socket.closedMutex.Lock()
|
|
||||||
if !socket.closed {
|
|
||||||
socket.closed = true
|
|
||||||
}
|
|
||||||
socket.closedMutex.Unlock()
|
|
||||||
|
|
||||||
// write error lines
|
// mark the socket closed (if someone hasn't already), then write error lines
|
||||||
socket.finalDataMutex.Lock()
|
socket.Lock()
|
||||||
if 0 < len(socket.finalData) {
|
socket.closed = true
|
||||||
socket.conn.Write([]byte(socket.finalData))
|
finalData := socket.finalData
|
||||||
|
if socket.sendQExceeded {
|
||||||
|
finalData = "\r\nERROR :SendQ Exceeded\r\n"
|
||||||
|
}
|
||||||
|
socket.Unlock()
|
||||||
|
if finalData != "" {
|
||||||
|
socket.conn.Write([]byte(finalData))
|
||||||
}
|
}
|
||||||
socket.finalDataMutex.Unlock()
|
|
||||||
|
|
||||||
// close the connection
|
// close the connection
|
||||||
socket.conn.Close()
|
socket.conn.Close()
|
||||||
|
|
||||||
// empty the lineToSendExists channel
|
|
||||||
for 0 < len(socket.lineToSendExists) {
|
|
||||||
<-socket.lineToSendExists
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// WriteLine writes the given line out of Socket.
|
|
||||||
func (socket *Socket) WriteLine(line string) error {
|
|
||||||
return socket.Write(line + "\r\n")
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user