From af5a05f390b1e4f0f5466db576de32e3836b2661 Mon Sep 17 00:00:00 2001 From: Jeremy Latt Date: Sun, 16 Feb 2014 22:38:43 -0800 Subject: [PATCH] use a select in the server commands loop --- ergonomadic.go | 8 +----- irc/server.go | 76 ++++++++++++++++++++++++-------------------------- 2 files changed, 37 insertions(+), 47 deletions(-) diff --git a/ergonomadic.go b/ergonomadic.go index 88cebbe7..9cad6a70 100644 --- a/ergonomadic.go +++ b/ergonomadic.go @@ -3,7 +3,6 @@ package main import ( "github.com/jlatt/ergonomadic/irc" "log" - "sync" ) func main() { @@ -18,10 +17,5 @@ func main() { irc.DEBUG_CHANNEL = config.Debug["channel"] irc.DEBUG_SERVER = config.Debug["server"] - irc.NewServer(config) - - // never finishes - wg := sync.WaitGroup{} - wg.Add(1) - wg.Wait() + irc.NewServer(config).ReceiveCommands() } diff --git a/irc/server.go b/irc/server.go index 82e00481..df755c9a 100644 --- a/irc/server.go +++ b/irc/server.go @@ -16,6 +16,7 @@ type Server struct { channels ChannelNameMap clients ClientNameMap commands chan Command + conns chan net.Conn ctime time.Time motdFile string name string @@ -28,6 +29,7 @@ func NewServer(config *Config) *Server { channels: make(ChannelNameMap), clients: make(ClientNameMap), commands: make(chan Command), + conns: make(chan net.Conn), ctime: time.Now(), motdFile: config.MOTD, name: config.Name, @@ -39,7 +41,6 @@ func NewServer(config *Config) *Server { server.operators[opConf.Name] = opConf.Password } - go server.receiveCommands() for _, listenerConf := range config.Listeners { go server.listen(listenerConf) } @@ -47,38 +48,44 @@ func NewServer(config *Config) *Server { return server } -func (server *Server) receiveCommands() { - for command := range server.commands { - if DEBUG_SERVER { - log.Printf("%s → %s %+v", command.Client(), server, command) - } - client := command.Client() +func (server *Server) ReceiveCommands() { + for { + select { + case conn := <-server.conns: + NewClient(server, conn) - switch client.phase { - case Authorization: - authCommand, ok := command.(AuthServerCommand) - if !ok { - client.Destroy() - return + case command := <-server.commands: + if DEBUG_SERVER { + log.Printf("%s → %s %+v", command.Client(), server, command) } - authCommand.HandleAuthServer(server) + client := command.Client() - case Registration: - regCommand, ok := command.(RegServerCommand) - if !ok { - client.Destroy() - return - } - regCommand.HandleRegServer(server) + switch client.phase { + case Authorization: + authCommand, ok := command.(AuthServerCommand) + if !ok { + client.Destroy() + continue + } + authCommand.HandleAuthServer(server) - default: - serverCommand, ok := command.(ServerCommand) - if !ok { - client.Reply(ErrUnknownCommand(server, command.Name())) - return + case Registration: + regCommand, ok := command.(RegServerCommand) + if !ok { + client.Destroy() + continue + } + regCommand.HandleRegServer(server) + + default: + serverCommand, ok := command.(ServerCommand) + if !ok { + client.Reply(ErrUnknownCommand(server, command.Name())) + continue + } + client.Touch() + serverCommand.HandleServer(server) } - client.Touch() - serverCommand.HandleServer(server) } } } @@ -123,9 +130,7 @@ func (s *Server) listen(config ListenerConfig) { log.Print("Server.Accept: ", conn.RemoteAddr()) } - s.commands <- &NewClientCommand{ - conn: conn, - } + s.conns <- conn } } @@ -537,12 +542,3 @@ func (msg *NoticeCommand) HandleServer(server *Server) { } target.Reply(RplNotice(client, target, msg.message)) } - -type NewClientCommand struct { - BaseCommand - conn net.Conn -} - -func (msg *NewClientCommand) HandleServer(server *Server) { - NewClient(server, conn) -}