Add more net compatibility
Required for net/http.
Этот коммит содержится в:
родитель
15d77119c9
коммит
b092856238
5 изменённых файлов: 218 добавлений и 0 удалений
24
src/net/dial.go
Обычный файл
24
src/net/dial.go
Обычный файл
|
@ -0,0 +1,24 @@
|
||||||
|
package net
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Dialer struct {
|
||||||
|
Timeout time.Duration
|
||||||
|
Deadline time.Time
|
||||||
|
KeepAlive time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
|
func Dial(network, address string) (Conn, error) {
|
||||||
|
return nil, ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
|
func Listen(network, address string) (Listener, error) {
|
||||||
|
return nil, ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *Dialer) DialContext(ctx context.Context, network, address string) (Conn, error) {
|
||||||
|
return nil, ErrNotImplemented
|
||||||
|
}
|
10
src/net/errors.go
Обычный файл
10
src/net/errors.go
Обычный файл
|
@ -0,0 +1,10 @@
|
||||||
|
package net
|
||||||
|
|
||||||
|
import "errors"
|
||||||
|
|
||||||
|
var (
|
||||||
|
// copied from poll.ErrNetClosing
|
||||||
|
errClosed = errors.New("use of closed network connection")
|
||||||
|
|
||||||
|
ErrNotImplemented = errors.New("operation not implemented")
|
||||||
|
)
|
13
src/net/iprawsock.go
Обычный файл
13
src/net/iprawsock.go
Обычный файл
|
@ -0,0 +1,13 @@
|
||||||
|
// The following is copied from Go 1.16 official implementation.
|
||||||
|
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
package net
|
||||||
|
|
||||||
|
// IPAddr represents the address of an IP end point.
|
||||||
|
type IPAddr struct {
|
||||||
|
IP IP
|
||||||
|
Zone string // IPv6 scoped addressing zone
|
||||||
|
}
|
160
src/net/net.go
160
src/net/net.go
|
@ -6,6 +6,159 @@
|
||||||
|
|
||||||
package net
|
package net
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
|
// Addr represents a network end point address.
|
||||||
|
//
|
||||||
|
// The two methods Network and String conventionally return strings
|
||||||
|
// that can be passed as the arguments to Dial, but the exact form
|
||||||
|
// and meaning of the strings is up to the implementation.
|
||||||
|
type Addr interface {
|
||||||
|
Network() string // name of the network (for example, "tcp", "udp")
|
||||||
|
String() string // string form of address (for example, "192.0.2.1:25", "[2001:db8::1]:80")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Conn is a generic stream-oriented network connection.
|
||||||
|
//
|
||||||
|
// Multiple goroutines may invoke methods on a Conn simultaneously.
|
||||||
|
type Conn interface {
|
||||||
|
// Read reads data from the connection.
|
||||||
|
// Read can be made to time out and return an error after a fixed
|
||||||
|
// time limit; see SetDeadline and SetReadDeadline.
|
||||||
|
Read(b []byte) (n int, err error)
|
||||||
|
|
||||||
|
// Write writes data to the connection.
|
||||||
|
// Write can be made to time out and return an error after a fixed
|
||||||
|
// time limit; see SetDeadline and SetWriteDeadline.
|
||||||
|
Write(b []byte) (n int, err error)
|
||||||
|
|
||||||
|
// Close closes the connection.
|
||||||
|
// Any blocked Read or Write operations will be unblocked and return errors.
|
||||||
|
Close() error
|
||||||
|
|
||||||
|
// LocalAddr returns the local network address.
|
||||||
|
LocalAddr() Addr
|
||||||
|
|
||||||
|
// RemoteAddr returns the remote network address.
|
||||||
|
RemoteAddr() Addr
|
||||||
|
|
||||||
|
// SetDeadline sets the read and write deadlines associated
|
||||||
|
// with the connection. It is equivalent to calling both
|
||||||
|
// SetReadDeadline and SetWriteDeadline.
|
||||||
|
//
|
||||||
|
// A deadline is an absolute time after which I/O operations
|
||||||
|
// fail instead of blocking. The deadline applies to all future
|
||||||
|
// and pending I/O, not just the immediately following call to
|
||||||
|
// Read or Write. After a deadline has been exceeded, the
|
||||||
|
// connection can be refreshed by setting a deadline in the future.
|
||||||
|
//
|
||||||
|
// If the deadline is exceeded a call to Read or Write or to other
|
||||||
|
// I/O methods will return an error that wraps os.ErrDeadlineExceeded.
|
||||||
|
// This can be tested using errors.Is(err, os.ErrDeadlineExceeded).
|
||||||
|
// The error's Timeout method will return true, but note that there
|
||||||
|
// are other possible errors for which the Timeout method will
|
||||||
|
// return true even if the deadline has not been exceeded.
|
||||||
|
//
|
||||||
|
// An idle timeout can be implemented by repeatedly extending
|
||||||
|
// the deadline after successful Read or Write calls.
|
||||||
|
//
|
||||||
|
// A zero value for t means I/O operations will not time out.
|
||||||
|
SetDeadline(t time.Time) error
|
||||||
|
|
||||||
|
// SetReadDeadline sets the deadline for future Read calls
|
||||||
|
// and any currently-blocked Read call.
|
||||||
|
// A zero value for t means Read will not time out.
|
||||||
|
SetReadDeadline(t time.Time) error
|
||||||
|
|
||||||
|
// SetWriteDeadline sets the deadline for future Write calls
|
||||||
|
// and any currently-blocked Write call.
|
||||||
|
// Even if write times out, it may return n > 0, indicating that
|
||||||
|
// some of the data was successfully written.
|
||||||
|
// A zero value for t means Write will not time out.
|
||||||
|
SetWriteDeadline(t time.Time) error
|
||||||
|
}
|
||||||
|
|
||||||
|
type conn struct {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
// A Listener is a generic network listener for stream-oriented protocols.
|
||||||
|
//
|
||||||
|
// Multiple goroutines may invoke methods on a Listener simultaneously.
|
||||||
|
type Listener interface {
|
||||||
|
// Accept waits for and returns the next connection to the listener.
|
||||||
|
Accept() (Conn, error)
|
||||||
|
|
||||||
|
// Close closes the listener.
|
||||||
|
// Any blocked Accept operations will be unblocked and return errors.
|
||||||
|
Close() error
|
||||||
|
|
||||||
|
// Addr returns the listener's network address.
|
||||||
|
Addr() Addr
|
||||||
|
}
|
||||||
|
|
||||||
|
// An Error represents a network error.
|
||||||
|
type Error interface {
|
||||||
|
error
|
||||||
|
Timeout() bool // Is the error a timeout?
|
||||||
|
Temporary() bool // Is the error temporary?
|
||||||
|
}
|
||||||
|
|
||||||
|
// OpError is the error type usually returned by functions in the net
|
||||||
|
// package. It describes the operation, network type, and address of
|
||||||
|
// an error.
|
||||||
|
type OpError struct {
|
||||||
|
// Op is the operation which caused the error, such as
|
||||||
|
// "read" or "write".
|
||||||
|
Op string
|
||||||
|
|
||||||
|
// Net is the network type on which this error occurred,
|
||||||
|
// such as "tcp" or "udp6".
|
||||||
|
Net string
|
||||||
|
|
||||||
|
// For operations involving a remote network connection, like
|
||||||
|
// Dial, Read, or Write, Source is the corresponding local
|
||||||
|
// network address.
|
||||||
|
Source Addr
|
||||||
|
|
||||||
|
// Addr is the network address for which this error occurred.
|
||||||
|
// For local operations, like Listen or SetDeadline, Addr is
|
||||||
|
// the address of the local endpoint being manipulated.
|
||||||
|
// For operations involving a remote network connection, like
|
||||||
|
// Dial, Read, or Write, Addr is the remote address of that
|
||||||
|
// connection.
|
||||||
|
Addr Addr
|
||||||
|
|
||||||
|
// Err is the error that occurred during the operation.
|
||||||
|
// The Error method panics if the error is nil.
|
||||||
|
Err error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *OpError) Unwrap() error { return e.Err }
|
||||||
|
|
||||||
|
func (e *OpError) Error() string {
|
||||||
|
if e == nil {
|
||||||
|
return "<nil>"
|
||||||
|
}
|
||||||
|
s := e.Op
|
||||||
|
if e.Net != "" {
|
||||||
|
s += " " + e.Net
|
||||||
|
}
|
||||||
|
if e.Source != nil {
|
||||||
|
s += " " + e.Source.String()
|
||||||
|
}
|
||||||
|
if e.Addr != nil {
|
||||||
|
if e.Source != nil {
|
||||||
|
s += "->"
|
||||||
|
} else {
|
||||||
|
s += " "
|
||||||
|
}
|
||||||
|
s += e.Addr.String()
|
||||||
|
}
|
||||||
|
s += ": " + e.Err.Error()
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
// A ParseError is the error type of literal network address parsers.
|
// A ParseError is the error type of literal network address parsers.
|
||||||
type ParseError struct {
|
type ParseError struct {
|
||||||
// Type is the type of string that was expected, such as
|
// Type is the type of string that was expected, such as
|
||||||
|
@ -36,3 +189,10 @@ func (e *AddrError) Error() string {
|
||||||
|
|
||||||
func (e *AddrError) Timeout() bool { return false }
|
func (e *AddrError) Timeout() bool { return false }
|
||||||
func (e *AddrError) Temporary() bool { return false }
|
func (e *AddrError) Temporary() bool { return false }
|
||||||
|
|
||||||
|
// ErrClosed is the error returned by an I/O call on a network
|
||||||
|
// connection that has already been closed, or that is closed by
|
||||||
|
// another goroutine before the I/O is completed. This may be wrapped
|
||||||
|
// in another error, and should normally be tested using
|
||||||
|
// errors.Is(err, net.ErrClosed).
|
||||||
|
var ErrClosed = errClosed
|
||||||
|
|
11
src/net/tcpsock.go
Обычный файл
11
src/net/tcpsock.go
Обычный файл
|
@ -0,0 +1,11 @@
|
||||||
|
package net
|
||||||
|
|
||||||
|
// TCPConn is an implementation of the Conn interface for TCP network
|
||||||
|
// connections.
|
||||||
|
type TCPConn struct {
|
||||||
|
conn
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *TCPConn) CloseWrite() error {
|
||||||
|
return &OpError{"close", "", nil, nil, ErrNotImplemented}
|
||||||
|
}
|
Загрузка…
Создание таблицы
Сослаться в новой задаче