websocket/examples/chat/hub.go

54 lines
1.1 KiB
Go
Raw Permalink Normal View History

// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved.
2013-10-16 20:41:47 +04:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
// Hub maintains the set of active clients and broadcasts messages to the
// clients.
type Hub struct {
// Registered clients.
clients map[*Client]bool
2013-10-16 20:41:47 +04:00
// Inbound messages from the clients.
2013-10-16 20:41:47 +04:00
broadcast chan []byte
// Register requests from the clients.
register chan *Client
2013-10-16 20:41:47 +04:00
// Unregister requests from clients.
unregister chan *Client
2013-10-16 20:41:47 +04:00
}
func newHub() *Hub {
return &Hub{
broadcast: make(chan []byte),
register: make(chan *Client),
unregister: make(chan *Client),
clients: make(map[*Client]bool),
}
2013-10-16 20:41:47 +04:00
}
func (h *Hub) run() {
2013-10-16 20:41:47 +04:00
for {
select {
case client := <-h.register:
h.clients[client] = true
case client := <-h.unregister:
if _, ok := h.clients[client]; ok {
delete(h.clients, client)
close(client.send)
}
case message := <-h.broadcast:
for client := range h.clients {
2013-10-16 20:41:47 +04:00
select {
case client.send <- message:
2013-10-16 20:41:47 +04:00
default:
close(client.send)
delete(h.clients, client)
2013-10-16 20:41:47 +04:00
}
}
}
}
}