You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.3 KiB
69 lines
1.3 KiB
6 years ago
|
package gotcp
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"sync"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
PacketSendChanLimit uint32 // the limit of packet send channel
|
||
|
PacketReceiveChanLimit uint32 // the limit of packet receive channel
|
||
|
}
|
||
|
|
||
|
type Server struct {
|
||
|
config *Config // server configuration
|
||
|
callback ConnCallback // message callbacks in connection
|
||
|
protocol Protocol // customize packet protocol
|
||
|
exitChan chan struct{} // notify all goroutines to shutdown
|
||
|
waitGroup *sync.WaitGroup // wait for all goroutines
|
||
|
}
|
||
|
|
||
|
// NewServer creates a server
|
||
|
func NewServer(config *Config, callback ConnCallback, protocol Protocol) *Server {
|
||
|
return &Server{
|
||
|
config: config,
|
||
|
callback: callback,
|
||
|
protocol: protocol,
|
||
|
exitChan: make(chan struct{}),
|
||
|
waitGroup: &sync.WaitGroup{},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Start starts service
|
||
|
func (s *Server) Start(listener *net.TCPListener, acceptTimeout time.Duration) {
|
||
|
s.waitGroup.Add(1)
|
||
|
defer func() {
|
||
|
listener.Close()
|
||
|
s.waitGroup.Done()
|
||
|
}()
|
||
|
|
||
|
for {
|
||
|
select {
|
||
|
case <-s.exitChan:
|
||
|
return
|
||
|
|
||
|
default:
|
||
|
}
|
||
|
|
||
|
listener.SetDeadline(time.Now().Add(acceptTimeout))
|
||
|
|
||
|
conn, err := listener.AcceptTCP()
|
||
|
if err != nil {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
s.waitGroup.Add(1)
|
||
|
go func() {
|
||
|
newConn(conn, s).Do()
|
||
|
s.waitGroup.Done()
|
||
|
}()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Stop stops service
|
||
|
func (s *Server) Stop() {
|
||
|
close(s.exitChan)
|
||
|
s.waitGroup.Wait()
|
||
|
}
|