Dmitry eeca435064 Add rendezvous implementation for discovery interface
Update vendor

Integrate rendezvous into status node

Add a test with failover using rendezvous

Use multiple servers in client

Use discovery V5 by default and test that node can be started with rendezvous discovet

Fix linter

Update rendezvous client to one with instrumented stream

Address feedback

Fix test with updated topic limits

Apply several suggestions

Change log to debug for request errors because we continue execution

Remove web3js after rebase

Update rendezvous package
2018-07-25 15:10:57 +03:00

221 lines
3.7 KiB
Go

package multiplex
import (
"context"
"fmt"
"io"
"sync"
"time"
mpool "github.com/libp2p/go-msgio/mpool"
)
// streamID is a convenience type for operating on stream IDs
type streamID struct {
id uint64
initiator bool
}
// header computes the header for the given tag
func (id *streamID) header(tag uint64) uint64 {
header := id.id<<3 | tag
if !id.initiator {
header--
}
return header
}
type Stream struct {
id streamID
name string
dataIn chan []byte
mp *Multiplex
extra []byte
// exbuf is for holding the reference to the beginning of the extra slice
// for later memory pool freeing
exbuf []byte
wDeadline time.Time
rDeadline time.Time
clLock sync.Mutex
closedLocal bool
closedRemote bool
// Closed when the connection is reset.
reset chan struct{}
}
func (s *Stream) Name() string {
return s.name
}
func (s *Stream) waitForData(ctx context.Context) error {
if !s.rDeadline.IsZero() {
dctx, cancel := context.WithDeadline(ctx, s.rDeadline)
defer cancel()
ctx = dctx
}
select {
case <-s.reset:
// This is the only place where it's safe to return these.
s.returnBuffers()
return fmt.Errorf("stream reset")
case read, ok := <-s.dataIn:
if !ok {
return io.EOF
}
s.extra = read
s.exbuf = read
return nil
case <-ctx.Done():
return ctx.Err()
}
}
func (s *Stream) returnBuffers() {
if s.exbuf != nil {
mpool.ByteSlicePool.Put(uint32(cap(s.exbuf)), s.exbuf)
s.exbuf = nil
s.extra = nil
}
for {
select {
case read, ok := <-s.dataIn:
if !ok {
return
}
if read == nil {
continue
}
mpool.ByteSlicePool.Put(uint32(cap(read)), read)
default:
return
}
}
}
func (s *Stream) Read(b []byte) (int, error) {
if s.extra == nil {
err := s.waitForData(context.Background())
if err != nil {
return 0, err
}
}
n := copy(b, s.extra)
if n < len(s.extra) {
s.extra = s.extra[n:]
} else {
if s.exbuf != nil {
mpool.ByteSlicePool.Put(uint32(cap(s.exbuf)), s.exbuf)
}
s.extra = nil
s.exbuf = nil
}
return n, nil
}
func (s *Stream) Write(b []byte) (int, error) {
var written int
for written < len(b) {
wl := len(b) - written
if wl > MaxMessageSize {
wl = MaxMessageSize
}
n, err := s.write(b[written : written+wl])
if err != nil {
return written, err
}
written += n
}
return written, nil
}
func (s *Stream) write(b []byte) (int, error) {
if s.isClosed() {
return 0, fmt.Errorf("cannot write to closed stream")
}
err := s.mp.sendMsg(s.id.header(messageTag), b, s.wDeadline)
if err != nil {
return 0, err
}
return len(b), nil
}
func (s *Stream) isClosed() bool {
s.clLock.Lock()
defer s.clLock.Unlock()
return s.closedLocal
}
func (s *Stream) Close() error {
err := s.mp.sendMsg(s.id.header(closeTag), nil, time.Time{})
s.clLock.Lock()
if s.closedLocal {
s.clLock.Unlock()
return nil
}
remote := s.closedRemote
s.closedLocal = true
s.clLock.Unlock()
if remote {
s.mp.chLock.Lock()
delete(s.mp.channels, s.id)
s.mp.chLock.Unlock()
}
return err
}
func (s *Stream) Reset() error {
s.clLock.Lock()
if s.closedRemote && s.closedLocal {
s.clLock.Unlock()
return nil
}
if !s.closedRemote {
close(s.reset)
// We generally call this to tell the other side to go away. No point in waiting around.
go s.mp.sendMsg(s.id.header(resetTag), nil, time.Time{})
}
s.closedLocal = true
s.closedRemote = true
s.clLock.Unlock()
s.mp.chLock.Lock()
delete(s.mp.channels, s.id)
s.mp.chLock.Unlock()
return nil
}
func (s *Stream) SetDeadline(t time.Time) error {
s.rDeadline = t
s.wDeadline = t
return nil
}
func (s *Stream) SetReadDeadline(t time.Time) error {
s.rDeadline = t
return nil
}
func (s *Stream) SetWriteDeadline(t time.Time) error {
s.wDeadline = t
return nil
}