-
Notifications
You must be signed in to change notification settings - Fork 14
/
net_other.go
83 lines (76 loc) · 2.41 KB
/
net_other.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright (c) 2020 Meng Huang ([email protected])
// This package is licensed under a MIT license that can be found in the LICENSE file.
//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!openbsd
package netpoll
import (
ctx "context"
"net"
"sync/atomic"
)
// Server defines parameters for running a server.
type Server struct {
Network string
Address string
// Handler responds to a single request.
Handler Handler
// NoAsync do not work for consisted with other system.
NoAsync bool
// UnsharedWorkers do not work for consisted with other system.
UnsharedWorkers int
// SharedWorkers do not work for consisted with other system.
SharedWorkers int
// If Control is not nil, it is called after creating the network
// connection but before binding it to the operating system.
//
// Network and address parameters passed to Control method are not
// necessarily the ones passed to Listen. For example, passing "tcp" to
// Listen will cause the Control function to be called with "tcp4" or "tcp6".
Control func(network, address strng, c syscall.RawConn) error
netServer *netServer
closed int32
}
// ListenAndServe listens on the network address and then calls
// Serve with handler to handle requests on incoming connections.
//
// ListenAndServe always returns a non-nil error.
// After Close the returned error is ErrServerClosed.
func (s *Server) ListenAndServe() error {
if atomic.LoadInt32(&s.closed) != 0 {
return ErrServerClosed
}
var listenConfig = net.ListenConfig{
Control: s.Control,
}
ln, err := listenConfig.Listen(ctx.Background(), s.Network, s.Address)
if err != nil {
return err
}
return s.Serve(ln)
}
// Serve accepts incoming connections on the listener l,
// and registers the conn fd to poll. The poll will trigger the fd to
// read requests and then call handler to reply to them.
//
// Serve always returns a non-nil error.
// After Close the returned error is ErrServerClosed.
func (s *Server) Serve(l net.Listener) (err error) {
if l == nil {
return ErrListener
}
if s.Handler == nil {
return ErrHandler
}
if atomic.LoadInt32(&s.closed) != 0 {
return ErrServerClosed
}
s.netServer = &netServer{Handler: s.Handler}
return s.netServer.Serve(l)
}
// Close closes the server.
func (s *Server) Close() error {
if !atomic.CompareAndSwapInt32(&s.closed, 0, 1) {
return nil
}
return s.netServer.Close()
}