-
Notifications
You must be signed in to change notification settings - Fork 471
/
poll.go
66 lines (53 loc) · 2.31 KB
/
poll.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
// Copyright 2022 CloudWeGo Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package netpoll
// Poll monitors fd(file descriptor), calls the FDOperator to perform specific actions,
// and shields underlying differences. On linux systems, poll uses epoll by default,
// and kevent by default on bsd systems.
type Poll interface {
// Wait will poll all registered fds, and schedule processing based on the triggered event.
// The call will block, so the usage can be like:
//
// go wait()
//
Wait() error
// Close the poll and shutdown Wait().
Close() error
// Trigger can be used to actively refresh the loop where Wait is located when no event is triggered.
// On linux systems, eventfd is used by default, and kevent by default on bsd systems.
Trigger() error
// Control the event of file descriptor and the operations is defined by PollEvent.
Control(operator *FDOperator, event PollEvent) error
// Alloc the operator from cache.
Alloc() (operator *FDOperator)
// Free the operator from cache.
Free(operator *FDOperator)
}
// PollEvent defines the operation of poll.Control.
type PollEvent int
const (
// PollReadable is used to monitor whether the FDOperator registered by
// listener and connection is readable or closed.
PollReadable PollEvent = 0x1
// PollWritable is used to monitor whether the FDOperator created by the dialer is writable or closed.
// ET mode must be used (still need to poll hup after being writable)
PollWritable PollEvent = 0x2
// PollDetach is used to remove the FDOperator from poll.
PollDetach PollEvent = 0x3
// PollR2RW is used to monitor writable for FDOperator,
// which is only called when the socket write buffer is full.
PollR2RW PollEvent = 0x5
// PollRW2R is used to remove the writable monitor of FDOperator, generally used with PollR2RW.
PollRW2R PollEvent = 0x6
)