deno/dispatch.go

127 lines
2.7 KiB
Go
Raw Normal View History

2018-05-29 01:50:44 +00:00
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
2018-05-29 08:28:32 +00:00
package deno
2018-05-22 02:07:40 +00:00
import (
"github.com/golang/protobuf/proto"
"sync"
)
2018-05-23 21:23:50 +00:00
var resChan = make(chan *BaseMsg, 10)
var doneChan = make(chan bool)
var wg sync.WaitGroup
2018-05-25 21:14:56 +00:00
var stats struct {
v8workerSend int
v8workerRespond int
v8workerRecv int
v8workerBytesSent int
v8workerBytesRecv int
}
2018-05-22 02:07:40 +00:00
var channels = make(map[string][]Subscriber)
type Subscriber func(payload []byte) []byte
func recv(buf []byte) (response []byte) {
2018-05-25 21:14:56 +00:00
stats.v8workerRecv++
stats.v8workerBytesRecv += len(buf)
2018-05-22 02:07:40 +00:00
msg := &BaseMsg{}
check(proto.Unmarshal(buf, msg))
assert(len(msg.Payload) > 0, "BaseMsg has empty payload.")
2018-05-25 19:30:09 +00:00
subscribers, ok := channels[msg.Channel]
2018-05-22 02:07:40 +00:00
if !ok {
2018-05-25 19:30:09 +00:00
panic("No subscribers for channel " + msg.Channel)
2018-05-22 02:07:40 +00:00
}
for i := 0; i < len(subscribers); i++ {
s := subscribers[i]
r := s(msg.Payload)
if r != nil {
response = r
}
}
2018-05-25 21:14:56 +00:00
if response != nil {
stats.v8workerRespond++
stats.v8workerBytesSent += len(response)
}
2018-05-22 02:07:40 +00:00
return response
}
func Sub(channel string, cb Subscriber) {
subscribers, ok := channels[channel]
if !ok {
subscribers = make([]Subscriber, 0)
}
subscribers = append(subscribers, cb)
channels[channel] = subscribers
}
func Pub(channel string, payload []byte) {
2018-05-27 07:46:18 +00:00
wg.Add(1)
2018-05-22 02:07:40 +00:00
resChan <- &BaseMsg{
2018-05-25 19:30:09 +00:00
Channel: channel,
2018-05-22 02:07:40 +00:00
Payload: payload,
}
}
2018-05-23 21:23:50 +00:00
func PubMsg(channel string, msg *Msg) {
payload, err := proto.Marshal(msg)
check(err)
Pub(channel, payload)
}
2018-05-22 02:07:40 +00:00
func DispatchLoop() {
wg.Add(1)
first := true
// In a goroutine, we wait on for all goroutines to complete (for example
// timers). We use this to signal to the main thread to exit.
2018-05-27 07:46:18 +00:00
// wg.Add(1) basically translates to uv_ref, if this was Node.
// wg.Done() basically translates to uv_unref
2018-05-22 02:07:40 +00:00
go func() {
wg.Wait()
doneChan <- true
}()
for {
select {
case msg := <-resChan:
out, err := proto.Marshal(msg)
2018-06-04 08:03:48 +00:00
check(err)
2018-05-22 02:07:40 +00:00
err = worker.SendBytes(out)
2018-05-25 21:14:56 +00:00
stats.v8workerSend++
stats.v8workerBytesSent += len(out)
2018-05-23 15:27:56 +00:00
exitOnError(err)
2018-05-28 18:56:13 +00:00
wg.Done() // Corresponds to the wg.Add(1) in Pub().
2018-05-22 02:07:40 +00:00
case <-doneChan:
// All goroutines have completed. Now we can exit main().
checkChanEmpty()
2018-05-22 02:07:40 +00:00
return
}
// We don't want to exit until we've received at least one message.
// This is so the program doesn't exit after sending the "start"
// message.
if first {
wg.Done()
}
first = false
}
}
func checkChanEmpty() {
// We've received a done event. As a sanity check, make sure that resChan is
// empty.
select {
case _, ok := <-resChan:
if ok {
panic("Read a message from resChan after doneChan closed.")
} else {
panic("resChan closed. Unexpected.")
}
default:
// No value ready, moving on.
}
}