@@ -14,8 +14,6 @@ import (
14
14
"github.com/wabarc/wayback/errors"
15
15
)
16
16
17
- var maxTime = 5 * time .Minute
18
-
19
17
var (
20
18
ErrPoolNotExist = errors .New ("pool not exist" ) // ErrPoolNotExist pool not exist
21
19
ErrTimeout = errors .New ("process timeout" ) // ErrTimeout process timeout
@@ -28,33 +26,37 @@ type resource struct {
28
26
}
29
27
30
28
// Pool handles a pool of services.
31
- type Pool chan * resource
29
+ type Pool struct {
30
+ resource chan * resource
31
+ timeout time.Duration
32
+ }
32
33
33
34
func newResource (id int ) * resource {
34
35
return & resource {id : id }
35
36
}
36
37
37
38
// New a resource pool of the specified size
38
39
// Resources are created concurrently to save resource initialization time
39
- func New (size int ) Pool {
40
- p := make (Pool , size )
40
+ func New (size int ) * Pool {
41
+ p := new (Pool )
42
+ p .resource = make (chan * resource , size )
41
43
wg := new (sync.WaitGroup )
42
44
wg .Add (size )
43
45
for i := 0 ; i < size ; i ++ {
44
46
go func (resId int ) {
45
- p <- newResource (resId )
47
+ p . resource <- newResource (resId )
46
48
wg .Done ()
47
49
}(i )
48
50
}
49
51
wg .Wait ()
50
52
51
- maxTime = config .Opts .WaybackTimeout () + 3 * time .Second
53
+ p . timeout = config .Opts .WaybackTimeout () + 3 * time .Second
52
54
53
55
return p
54
56
}
55
57
56
58
// Roll wrapper service as function to the resource pool.
57
- func (p Pool ) Roll (service func ()) {
59
+ func (p * Pool ) Roll (service func ()) {
58
60
do := func (wg * sync.WaitGroup ) {
59
61
defer wg .Done ()
60
62
fn , ok := q .PopBack ().(func ())
@@ -79,7 +81,7 @@ func (p Pool) Roll(service func()) {
79
81
select {
80
82
case <- ch :
81
83
logger .Info ("roll service completed" )
82
- case <- time .After (maxTime ):
84
+ case <- time .After (p . timeout ):
83
85
logger .Warn ("roll service timeout" )
84
86
}
85
87
@@ -98,26 +100,26 @@ func (p Pool) Roll(service func()) {
98
100
wg .Wait ()
99
101
}
100
102
101
- func (p Pool ) pull () (r * resource , err error ) {
103
+ func (p * Pool ) pull () (r * resource , err error ) {
102
104
select {
103
- case r := <- p :
105
+ case r := <- p . resource :
104
106
return r , nil
105
- case <- time .After (maxTime ):
107
+ case <- time .After (p . timeout ):
106
108
return nil , ErrTimeout
107
109
}
108
110
}
109
111
110
- func (p Pool ) push (r * resource ) error {
112
+ func (p * Pool ) push (r * resource ) error {
111
113
if p == nil {
112
114
return ErrPoolNotExist
113
115
}
114
- p <- r
116
+ p . resource <- r
115
117
return nil
116
118
}
117
119
118
120
// Close closes worker pool
119
- func (p Pool ) Close () {
120
- if p != nil {
121
- close (p )
121
+ func (p * Pool ) Close () {
122
+ if p . resource != nil {
123
+ close (p . resource )
122
124
}
123
125
}
0 commit comments