2018-08-23 01:21:53 +02:00
package circolog
2018-08-22 23:51:59 +02:00
import (
2018-08-23 00:56:27 +02:00
"container/ring"
2018-08-23 02:05:50 +02:00
"time"
2018-08-22 23:51:59 +02:00
"gopkg.in/mcuadros/go-syslog.v2/format"
)
// Client represent a client connected via websocket. Its most important field is the messages channel, where
2018-08-23 00:56:27 +02:00
// new messages are sent.
2018-08-22 23:51:59 +02:00
type Client struct {
2018-08-23 00:56:27 +02:00
Messages chan format . LogParts // only hub should write/close this
2018-11-08 19:25:40 +01:00
Options ClientOptions
}
type ClientOptions struct {
BacklogLength int // how many past messages the client wants to receive upon connection
Nofollow bool // if Nofollow is true, the hub will not keep this client permanently. Rather, it will send every message to "Messages" and close the channel. Use this if you want to get the messages one-shot
2018-08-22 23:51:59 +02:00
}
2018-08-23 00:56:27 +02:00
// The Hub is the central "registry"; it keeps both the data storage and clients notifications
//
// The channel "register" and "unregister" can be seen as "command"
// keep in mind that "registering" is what you do also to get messages in a one-time fashion. In fact, Client
// has "options", such as Nofollow, to explain the Hub what should be given
2018-11-10 18:21:42 +01:00
// An HubCommand is an "enum" of different commands
type HubCommand int
const (
CommandClear = iota
CommandPauseToggle = iota
)
// An HubFullCommand is a Command, complete with arguments
type HubFullCommand struct {
Command HubCommand
}
2018-11-11 19:10:53 +01:00
type CommandResponse struct {
Value interface { }
}
2018-11-10 18:21:42 +01:00
2018-08-22 23:51:59 +02:00
type Hub struct {
Register chan Client
Unregister chan Client
2018-08-23 00:56:27 +02:00
LogMessages chan format . LogParts
2018-11-10 18:21:42 +01:00
Commands chan HubFullCommand
2018-11-11 19:10:53 +01:00
Responses chan CommandResponse
2018-08-23 00:56:27 +02:00
clients map [ Client ] bool
circbuf * ring . Ring
2018-08-22 23:51:59 +02:00
}
// NewHub creates an empty hub
2018-08-23 00:56:27 +02:00
func NewHub ( ringBufSize int ) Hub {
2018-08-22 23:51:59 +02:00
return Hub { clients : make ( map [ Client ] bool ) ,
Register : make ( chan Client ) ,
Unregister : make ( chan Client ) ,
2018-08-23 00:56:27 +02:00
LogMessages : make ( chan format . LogParts ) ,
2018-11-10 18:21:42 +01:00
Commands : make ( chan HubFullCommand ) ,
2018-11-11 19:10:53 +01:00
Responses : make ( chan CommandResponse ) ,
2018-08-23 00:56:27 +02:00
circbuf : ring . New ( ringBufSize ) ,
2018-08-22 23:51:59 +02:00
}
}
2018-08-23 12:25:07 +02:00
func ( h * Hub ) register ( cl Client ) {
if _ , ok := h . clients [ cl ] ; ! ok {
2018-11-08 19:25:40 +01:00
if ! cl . Options . Nofollow { // we won't need it in future
2018-08-23 12:25:07 +02:00
h . clients [ cl ] = true
}
2018-11-08 19:37:03 +01:00
howmany := cl . Options . BacklogLength
if howmany > h . circbuf . Len ( ) || howmany == - 1 {
howmany = h . circbuf . Len ( )
}
buf := h . circbuf . Move ( - howmany )
for i := 0 ; i < howmany ; i ++ {
item := buf . Value
if item != nil {
2018-08-23 12:25:07 +02:00
select { // send with short timeout
2018-11-08 19:37:03 +01:00
case cl . Messages <- item . ( format . LogParts ) :
2018-08-23 12:25:07 +02:00
break
case <- time . After ( 500 * time . Millisecond ) :
2018-11-08 19:37:03 +01:00
close ( cl . Messages )
return
2018-08-23 12:25:07 +02:00
}
}
2018-11-08 19:37:03 +01:00
buf = buf . Next ( )
}
2018-11-08 19:25:40 +01:00
if cl . Options . Nofollow {
2018-08-23 12:25:07 +02:00
close ( cl . Messages )
}
}
}
2018-08-23 00:56:27 +02:00
// Run is hub main loop; keeps everything going
2018-08-22 23:51:59 +02:00
func ( h * Hub ) Run ( ) {
2018-11-10 18:21:42 +01:00
active := true
2018-08-22 23:51:59 +02:00
for {
select {
case cl := <- h . Register :
2018-08-23 12:25:07 +02:00
h . register ( cl )
2018-08-22 23:51:59 +02:00
case cl := <- h . Unregister :
_ , ok := h . clients [ cl ]
if ok {
2018-08-23 00:56:27 +02:00
close ( cl . Messages )
2018-08-22 23:51:59 +02:00
delete ( h . clients , cl )
}
2018-08-23 00:56:27 +02:00
case msg := <- h . LogMessages :
2018-11-10 18:21:42 +01:00
if active == true {
h . circbuf . Value = msg
h . circbuf = h . circbuf . Next ( )
for client := range h . clients {
select { // send without blocking
case client . Messages <- msg :
break
default :
break
}
2018-08-23 01:14:08 +02:00
}
2018-08-22 23:51:59 +02:00
}
2018-11-10 18:21:42 +01:00
case cmd := <- h . Commands :
if cmd . Command == CommandClear {
h . clear ( )
2018-11-11 19:10:53 +01:00
h . Responses <- CommandResponse { Value : true }
2018-11-10 18:21:42 +01:00
}
if cmd . Command == CommandPauseToggle {
active = ! active
2018-11-11 19:10:53 +01:00
h . Responses <- CommandResponse { Value : active }
2018-11-10 18:21:42 +01:00
}
2018-08-22 23:51:59 +02:00
}
}
}
2018-11-10 18:00:35 +01:00
2018-12-19 17:30:04 +01:00
// Clear removes all elements from the buffer
2018-11-10 18:21:42 +01:00
func ( h * Hub ) clear ( ) {
2018-11-10 18:00:35 +01:00
buf := h . circbuf
for i := 0 ; i < buf . Len ( ) ; i ++ {
buf . Value = nil
buf = buf . Next ( )
}
}