1
0
Fork 0
forked from External/ergo

fix race conditions

This commit is contained in:
Jeremy Latt 2014-02-13 23:16:07 -08:00
parent 7051627fb2
commit 6ea3c8f4d1
3 changed files with 31 additions and 7 deletions

View file

@ -6,15 +6,17 @@ import (
"log"
"net"
"strings"
"sync"
)
type Socket struct {
closed bool
conn net.Conn
mutex *sync.Mutex
reader *bufio.Reader
writer *bufio.Writer
send chan string
receive chan string
send chan string
writer *bufio.Writer
}
func NewSocket(conn net.Conn) *Socket {
@ -23,6 +25,7 @@ func NewSocket(conn net.Conn) *Socket {
reader: bufio.NewReader(conn),
receive: make(chan string),
send: make(chan string),
mutex: &sync.Mutex{},
writer: bufio.NewWriter(conn),
}
@ -36,8 +39,14 @@ func (socket *Socket) String() string {
return socket.conn.RemoteAddr().String()
}
func (socket *Socket) IsClosed() bool {
socket.mutex.Lock()
defer socket.mutex.Unlock()
return socket.closed
}
func (socket *Socket) Close() {
if socket.closed {
if socket.IsClosed() {
return
}
@ -45,10 +54,12 @@ func (socket *Socket) Close() {
log.Printf("%s closed", socket)
}
socket.mutex.Lock()
socket.closed = true
socket.conn.Close()
close(socket.send)
close(socket.receive)
socket.mutex.Unlock()
}
func (socket *Socket) Read() <-chan string {
@ -57,7 +68,7 @@ func (socket *Socket) Read() <-chan string {
func (socket *Socket) Write(lines []string) error {
for _, line := range lines {
if socket.closed {
if socket.IsClosed() {
return io.EOF
}
socket.send <- line