blob: 1523736b7538830ef39fa21b356b5f9d002bf61d [file] [log] [blame]
package vc
import (
"net"
"veyron.io/veyron/veyron2/ipc/stream"
"veyron.io/veyron/veyron2/naming"
"veyron.io/veyron/veyron2/security"
)
type flow struct {
idHolder
*reader
*writer
localEndpoint, remoteEndpoint naming.Endpoint
}
var _ stream.Flow = (*flow)(nil)
type idHolder interface {
LocalID() security.PublicID
RemoteID() security.PublicID
LocalPrincipal() security.Principal
LocalBlessings() security.Blessings
RemoteBlessings() security.Blessings
}
func (f *flow) LocalEndpoint() naming.Endpoint { return f.localEndpoint }
func (f *flow) RemoteEndpoint() naming.Endpoint { return f.remoteEndpoint }
// implement net.Conn
func (f *flow) LocalAddr() net.Addr { return f.localEndpoint }
func (f *flow) RemoteAddr() net.Addr { return f.remoteEndpoint }
func (f *flow) Close() error {
f.reader.Close()
f.writer.Close()
return nil
}
// SetDeadline sets a deadline channel on the flow. Reads and writes
// will be cancelled if the channel is closed.
func (f *flow) SetDeadline(deadline <-chan struct{}) {
f.reader.SetDeadline(deadline)
f.writer.SetDeadline(deadline)
}
// Shutdown closes the flow and discards any queued up write buffers.
// This is appropriate when the flow has been closed by the remote end.
func (f *flow) Shutdown() {
f.reader.Close()
f.writer.Shutdown(true)
}
// Cancel closes the flow and discards any queued up write buffers.
// This is appropriate when the flow is being cancelled locally.
func (f *flow) Cancel() {
f.reader.Close()
f.writer.Shutdown(false)
}