package npipe
import "github.com/microsoft/go-mssqldb/internal/gopkg.in/natefinch/npipe.v2"
Package npipe provides a pure Go wrapper around Windows named pipes.
!! Note, this package is Windows-only. There is no code to compile on linux.
Windows named pipe documentation: http://msdn.microsoft.com/en-us/library/windows/desktop/aa365780
Note that the code lives at https://github.com/natefinch/npipe (v2 branch) but should be imported as gopkg.in/natefinch/npipe.v2 (the package name is still npipe).
npipe provides an interface based on stdlib's net package, with Dial, Listen, and Accept functions, as well as associated implementations of net.Conn and net.Listener. It supports rpc over the connection.
Notes
* Deadlines for reading/writing to the connection are only functional in Windows Vista/Server 2008 and above, due to limitations with the Windows API.
* The pipes support byte mode only (no support for message mode)
Examples
The Dial function connects a client to a named pipe:
conn, err := npipe.Dial(`\\.\pipe\mypipename`) if err != nil { <handle error> } fmt.Fprintf(conn, "Hi server!\n") msg, err := bufio.NewReader(conn).ReadString('\n') ...
The Listen function creates servers:
ln, err := npipe.Listen(`\\.\pipe\mypipename`) if err != nil { // handle error } for { conn, err := ln.Accept() if err != nil { // handle error continue } go handleConnection(conn) }
Index ¶
- Variables
- type PipeAddr
- type PipeConn
- func Dial(address string) (*PipeConn, error)
- func DialExisting(address string) (*PipeConn, error)
- func DialTimeout(address string, timeout time.Duration) (*PipeConn, error)
- func DialTimeoutExisting(address string, timeout time.Duration) (*PipeConn, error)
- func (c *PipeConn) Close() error
- func (c *PipeConn) LocalAddr() net.Addr
- func (c *PipeConn) Read(b []byte) (int, error)
- func (c *PipeConn) RemoteAddr() net.Addr
- func (c *PipeConn) SetDeadline(t time.Time) error
- func (c *PipeConn) SetReadDeadline(t time.Time) error
- func (c *PipeConn) SetWriteDeadline(t time.Time) error
- func (c *PipeConn) Write(b []byte) (int, error)
- type PipeError
- func (e PipeError) Error() string
- func (e PipeError) Temporary() bool
- func (e PipeError) Timeout() bool
- type PipeListener
Variables ¶
ErrClosed is the error returned by PipeListener.Accept when Close is called on the PipeListener.
Types ¶
type PipeAddr ¶
type PipeAddr string
PipeAddr represents the address of a named pipe.
func (PipeAddr) Network ¶
Network returns the address's network name, "pipe".
func (PipeAddr) String ¶
String returns the address of the pipe
type PipeConn ¶
type PipeConn struct {
// contains filtered or unexported fields
}
PipeConn is the implementation of the net.Conn interface for named pipe connections.
func Dial ¶
Dial connects to a named pipe with the given address. If the specified pipe is not available, it will wait indefinitely for the pipe to become available.
The address must be of the form \\.\\pipe\<name> for local pipes and \\<computer>\pipe\<name> for remote pipes.
Dial will return a PipeError if you pass in a badly formatted pipe name.
Examples:
// local pipe conn, err := Dial(`\\.\pipe\mypipename`) // remote pipe conn, err := Dial(`\\othercomp\pipe\mypipename`)
func DialExisting ¶
DialExisting acts like Dial but fails right away if the pipe doesn't exist
func DialTimeout ¶
DialTimeout acts like Dial, but will time out after the duration of timeout
func DialTimeoutExisting ¶
DialTimeoutExisting acts like DialTimeout but fails right away if the pipe doesn't exist
func (*PipeConn) Close ¶
Close closes the connection.
func (*PipeConn) LocalAddr ¶
LocalAddr returns the local network address.
func (*PipeConn) Read ¶
Read implements the net.Conn Read method.
func (*PipeConn) RemoteAddr ¶
RemoteAddr returns the remote network address.
func (*PipeConn) SetDeadline ¶
SetDeadline implements the net.Conn SetDeadline method. Note that timeouts are only supported on Windows Vista/Server 2008 and above
func (*PipeConn) SetReadDeadline ¶
SetReadDeadline implements the net.Conn SetReadDeadline method. Note that timeouts are only supported on Windows Vista/Server 2008 and above
func (*PipeConn) SetWriteDeadline ¶
SetWriteDeadline implements the net.Conn SetWriteDeadline method. Note that timeouts are only supported on Windows Vista/Server 2008 and above
func (*PipeConn) Write ¶
Write implements the net.Conn Write method.
type PipeError ¶
type PipeError struct {
// contains filtered or unexported fields
}
PipeError is an error related to a call to a pipe
func (PipeError) Error ¶
Error implements the error interface
func (PipeError) Temporary ¶
Temporary implements net.AddrError.Temporary()
func (PipeError) Timeout ¶
Timeout implements net.AddrError.Timeout()
type PipeListener ¶
type PipeListener struct {
// contains filtered or unexported fields
}
PipeListener is a named pipe listener. Clients should typically use variables of type net.Listener instead of assuming named pipe.
func Listen ¶
func Listen(address string) (*PipeListener, error)
Listen returns a new PipeListener that will listen on a pipe with the given address. The address must be of the form \\.\pipe\<name>
Listen will return a PipeError for an incorrectly formatted pipe name.
func (*PipeListener) Accept ¶
func (l *PipeListener) Accept() (net.Conn, error)
Accept implements the Accept method in the net.Listener interface; it waits for the next call and returns a generic net.Conn.
func (*PipeListener) AcceptPipe ¶
func (l *PipeListener) AcceptPipe() (*PipeConn, error)
AcceptPipe accepts the next incoming call and returns the new connection. It might return an error if a client connected and immediately cancelled the connection.
func (*PipeListener) Addr ¶
func (l *PipeListener) Addr() net.Addr
Addr returns the listener's network address, a PipeAddr.
func (*PipeListener) Close ¶
func (l *PipeListener) Close() error
Close stops listening on the address. Already Accepted connections are not closed.
Source Files ¶
doc.go npipe_windows.go znpipe_windows_amd64.go
- Version
- v1.5.0
- Published
- Jul 25, 2023
- Platform
- windows/amd64
- Imports
- 7 packages
- Last checked
- 6 hours ago –
Tools for package owners.