2011-11-15 14:59:08 -07:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2010-04-26 11:36:05 -06:00
|
|
|
package net
|
|
|
|
|
|
|
|
import (
|
2011-11-01 20:05:34 -06:00
|
|
|
"errors"
|
2010-04-26 11:36:05 -06:00
|
|
|
"io"
|
2012-01-18 17:24:06 -07:00
|
|
|
"time"
|
2010-04-26 11:36:05 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// Pipe creates a synchronous, in-memory, full duplex
|
|
|
|
// network connection; both ends implement the Conn interface.
|
|
|
|
// Reads on one end are matched with writes on the other,
|
|
|
|
// copying data directly between the two; there is no internal
|
|
|
|
// buffering.
|
|
|
|
func Pipe() (Conn, Conn) {
|
|
|
|
r1, w1 := io.Pipe()
|
|
|
|
r2, w2 := io.Pipe()
|
|
|
|
|
|
|
|
return &pipe{r1, w2}, &pipe{r2, w1}
|
|
|
|
}
|
|
|
|
|
|
|
|
type pipe struct {
|
|
|
|
*io.PipeReader
|
|
|
|
*io.PipeWriter
|
|
|
|
}
|
|
|
|
|
|
|
|
type pipeAddr int
|
|
|
|
|
|
|
|
func (pipeAddr) Network() string {
|
|
|
|
return "pipe"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pipeAddr) String() string {
|
|
|
|
return "pipe"
|
|
|
|
}
|
|
|
|
|
2011-11-01 20:05:34 -06:00
|
|
|
func (p *pipe) Close() error {
|
2010-04-26 11:36:05 -06:00
|
|
|
err := p.PipeReader.Close()
|
|
|
|
err1 := p.PipeWriter.Close()
|
|
|
|
if err == nil {
|
|
|
|
err = err1
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pipe) LocalAddr() Addr {
|
|
|
|
return pipeAddr(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pipe) RemoteAddr() Addr {
|
|
|
|
return pipeAddr(0)
|
|
|
|
}
|
|
|
|
|
2012-01-18 17:24:06 -07:00
|
|
|
func (p *pipe) SetDeadline(t time.Time) error {
|
|
|
|
return errors.New("net.Pipe does not support deadlines")
|
2010-04-26 11:36:05 -06:00
|
|
|
}
|
|
|
|
|
2012-01-18 17:24:06 -07:00
|
|
|
func (p *pipe) SetReadDeadline(t time.Time) error {
|
|
|
|
return errors.New("net.Pipe does not support deadlines")
|
2010-04-26 11:36:05 -06:00
|
|
|
}
|
|
|
|
|
2012-01-18 17:24:06 -07:00
|
|
|
func (p *pipe) SetWriteDeadline(t time.Time) error {
|
|
|
|
return errors.New("net.Pipe does not support deadlines")
|
2010-04-26 11:36:05 -06:00
|
|
|
}
|