2018-05-20 18:57:48 +03:00
|
|
|
// MIT License
|
|
|
|
|
2018-05-20 11:37:17 +03:00
|
|
|
// Copyright (c) 2018 Andy Pan
|
2018-05-20 18:57:48 +03:00
|
|
|
|
2018-05-20 11:37:17 +03:00
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
2018-05-20 18:57:48 +03:00
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
2018-05-20 11:37:17 +03:00
|
|
|
//
|
2018-05-20 18:57:48 +03:00
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
2018-05-20 11:37:17 +03:00
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
2018-05-20 18:57:48 +03:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
2018-05-20 16:41:32 +03:00
|
|
|
|
2018-05-19 07:28:03 +03:00
|
|
|
package ants
|
|
|
|
|
|
|
|
import (
|
2018-05-20 16:29:38 +03:00
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
2018-07-06 09:33:07 +03:00
|
|
|
"time"
|
2018-05-19 07:28:03 +03:00
|
|
|
)
|
|
|
|
|
2019-08-17 21:45:32 +03:00
|
|
|
// Pool accept the tasks from client, it limits the total of goroutines to a given number by recycling goroutines.
|
2018-05-19 07:28:03 +03:00
|
|
|
type Pool struct {
|
2018-05-21 05:37:03 +03:00
|
|
|
// capacity of the pool.
|
2018-05-20 16:29:38 +03:00
|
|
|
capacity int32
|
2018-05-20 16:09:45 +03:00
|
|
|
|
2018-05-21 05:37:03 +03:00
|
|
|
// running is the number of the currently running goroutines.
|
2018-05-20 16:29:38 +03:00
|
|
|
running int32
|
2018-05-20 16:09:45 +03:00
|
|
|
|
2018-07-06 09:33:07 +03:00
|
|
|
// expiryDuration set the expired time (second) of every worker.
|
|
|
|
expiryDuration time.Duration
|
|
|
|
|
2018-05-21 05:37:03 +03:00
|
|
|
// workers is a slice that store the available workers.
|
2019-08-21 17:07:19 +03:00
|
|
|
workers []*goWorker
|
2018-05-20 16:09:45 +03:00
|
|
|
|
2018-05-21 05:37:03 +03:00
|
|
|
// release is used to notice the pool to closed itself.
|
2019-01-26 10:29:05 +03:00
|
|
|
release int32
|
2018-05-20 16:09:45 +03:00
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// lock for synchronous operation.
|
2018-05-20 16:29:38 +03:00
|
|
|
lock sync.Mutex
|
2018-09-30 04:41:47 +03:00
|
|
|
|
2019-01-26 19:26:24 +03:00
|
|
|
// cond for waiting to get a idle worker.
|
2018-09-28 14:28:09 +03:00
|
|
|
cond *sync.Cond
|
2018-09-30 04:41:47 +03:00
|
|
|
|
2019-01-26 19:26:24 +03:00
|
|
|
// once makes sure releasing this pool will just be done for one time.
|
2018-05-24 13:35:26 +03:00
|
|
|
once sync.Once
|
2019-01-21 13:57:23 +03:00
|
|
|
|
2019-01-26 19:26:24 +03:00
|
|
|
// workerCache speeds up the obtainment of the an usable worker in function:retrieveWorker.
|
|
|
|
workerCache sync.Pool
|
2019-01-26 16:45:49 +03:00
|
|
|
|
2019-08-21 17:07:19 +03:00
|
|
|
// panicHandler is used to handle panics from each worker goroutine.
|
2019-01-21 13:57:23 +03:00
|
|
|
// if nil, panics will be thrown out again from worker goroutines.
|
2019-08-21 17:07:19 +03:00
|
|
|
panicHandler func(interface{})
|
2019-08-20 06:22:00 +03:00
|
|
|
|
|
|
|
// Max number of goroutine blocking on pool.Submit.
|
|
|
|
// 0 (default value) means no such limit.
|
2019-08-21 17:07:19 +03:00
|
|
|
maxBlockingTasks int32
|
2019-08-20 06:22:00 +03:00
|
|
|
|
|
|
|
// goroutine already been blocked on pool.Submit
|
|
|
|
// protected by pool.lock
|
|
|
|
blockingNum int32
|
|
|
|
|
2019-08-21 17:07:19 +03:00
|
|
|
// When nonblocking is true, Pool.Submit will never be blocked.
|
2019-08-20 06:22:00 +03:00
|
|
|
// ErrPoolOverload will be returned when Pool.Submit cannot be done at once.
|
2019-08-21 17:07:19 +03:00
|
|
|
// When nonblocking is true, MaxBlockingTasks is inoperative.
|
|
|
|
nonblocking bool
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
2018-08-08 13:08:06 +03:00
|
|
|
|
2019-04-14 06:05:01 +03:00
|
|
|
// Clear expired workers periodically.
|
2018-07-21 13:50:18 +03:00
|
|
|
func (p *Pool) periodicallyPurge() {
|
2018-07-08 05:29:12 +03:00
|
|
|
heartbeat := time.NewTicker(p.expiryDuration)
|
2018-11-19 05:57:53 +03:00
|
|
|
defer heartbeat.Stop()
|
|
|
|
|
2019-08-21 17:07:19 +03:00
|
|
|
var expiredWorkers []*goWorker
|
2018-07-24 17:30:37 +03:00
|
|
|
for range heartbeat.C {
|
2019-07-27 07:05:44 +03:00
|
|
|
if atomic.LoadInt32(&p.release) == CLOSED {
|
2019-04-14 06:29:25 +03:00
|
|
|
break
|
|
|
|
}
|
2018-07-24 17:30:37 +03:00
|
|
|
currentTime := time.Now()
|
|
|
|
p.lock.Lock()
|
|
|
|
idleWorkers := p.workers
|
2019-07-24 10:39:18 +03:00
|
|
|
n := len(idleWorkers)
|
|
|
|
i := 0
|
|
|
|
for i < n && currentTime.Sub(idleWorkers[i].recycleTime) > p.expiryDuration {
|
|
|
|
i++
|
2018-07-06 09:33:07 +03:00
|
|
|
}
|
2019-07-26 09:14:58 +03:00
|
|
|
expiredWorkers = append(expiredWorkers[:0], idleWorkers[:i]...)
|
2019-07-24 10:39:18 +03:00
|
|
|
if i > 0 {
|
|
|
|
m := copy(idleWorkers, idleWorkers[i:])
|
|
|
|
for i = m; i < n; i++ {
|
|
|
|
idleWorkers[i] = nil
|
2018-08-08 13:08:06 +03:00
|
|
|
}
|
2019-07-24 10:39:18 +03:00
|
|
|
p.workers = idleWorkers[:m]
|
2018-07-24 17:30:37 +03:00
|
|
|
}
|
|
|
|
p.lock.Unlock()
|
2019-07-24 10:39:18 +03:00
|
|
|
|
|
|
|
// Notify obsolete workers to stop.
|
|
|
|
// This notification must be outside the p.lock, since w.task
|
|
|
|
// may be blocking and may consume a lot of time if many workers
|
|
|
|
// are located on non-local CPUs.
|
2019-07-26 09:14:58 +03:00
|
|
|
for i, w := range expiredWorkers {
|
2019-07-24 10:39:18 +03:00
|
|
|
w.task <- nil
|
2019-07-26 09:14:58 +03:00
|
|
|
expiredWorkers[i] = nil
|
2019-07-24 10:39:18 +03:00
|
|
|
}
|
2019-08-17 23:15:21 +03:00
|
|
|
|
|
|
|
// There might be a situation that all workers have been cleaned up(no any worker is running)
|
|
|
|
// while some invokers still get stuck in "p.cond.Wait()",
|
|
|
|
// then it ought to wakes all those invokers.
|
|
|
|
if p.Running() == 0 {
|
|
|
|
p.cond.Broadcast()
|
|
|
|
}
|
2018-07-24 17:30:37 +03:00
|
|
|
}
|
2018-07-06 09:33:07 +03:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// NewPool generates an instance of ants pool.
|
2019-08-21 17:07:19 +03:00
|
|
|
func NewPool(size int, options ...Option) (*Pool, error) {
|
2018-05-20 13:57:11 +03:00
|
|
|
if size <= 0 {
|
2018-07-12 19:11:42 +03:00
|
|
|
return nil, ErrInvalidPoolSize
|
|
|
|
}
|
2019-08-21 17:07:19 +03:00
|
|
|
|
|
|
|
opts := new(Options)
|
|
|
|
for _, option := range options {
|
|
|
|
option(opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
if expiry := opts.ExpiryDuration; expiry < 0 {
|
2018-07-12 19:11:42 +03:00
|
|
|
return nil, ErrInvalidPoolExpiry
|
2019-08-21 17:07:19 +03:00
|
|
|
} else if expiry == 0 {
|
|
|
|
opts.ExpiryDuration = time.Duration(DEFAULT_CLEAN_INTERVAL_TIME) * time.Second
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|
2019-08-21 17:07:19 +03:00
|
|
|
|
2019-07-26 09:25:16 +03:00
|
|
|
var p *Pool
|
2019-08-21 17:07:19 +03:00
|
|
|
if opts.PreAlloc {
|
2019-07-26 09:25:16 +03:00
|
|
|
p = &Pool{
|
2019-08-21 17:07:19 +03:00
|
|
|
capacity: int32(size),
|
|
|
|
expiryDuration: opts.ExpiryDuration,
|
|
|
|
workers: make([]*goWorker, 0, size),
|
|
|
|
nonblocking: opts.Nonblocking,
|
|
|
|
maxBlockingTasks: int32(opts.MaxBlockingTasks),
|
|
|
|
panicHandler: opts.PanicHandler,
|
2019-07-26 09:25:16 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
p = &Pool{
|
2019-08-21 17:07:19 +03:00
|
|
|
capacity: int32(size),
|
|
|
|
expiryDuration: opts.ExpiryDuration,
|
|
|
|
nonblocking: opts.Nonblocking,
|
|
|
|
maxBlockingTasks: int32(opts.MaxBlockingTasks),
|
|
|
|
panicHandler: opts.PanicHandler,
|
2019-07-26 09:25:16 +03:00
|
|
|
}
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
2018-09-28 14:28:09 +03:00
|
|
|
p.cond = sync.NewCond(&p.lock)
|
2019-08-21 17:07:19 +03:00
|
|
|
|
|
|
|
// Start a goroutine to clean up expired workers periodically.
|
2018-07-24 17:30:37 +03:00
|
|
|
go p.periodicallyPurge()
|
2019-08-21 17:07:19 +03:00
|
|
|
|
2018-05-20 13:57:11 +03:00
|
|
|
return p, nil
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
|
|
|
|
2019-01-25 17:01:11 +03:00
|
|
|
//---------------------------------------------------------------------------
|
2018-05-19 07:28:03 +03:00
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Submit submits a task to this pool.
|
2019-02-02 05:24:01 +03:00
|
|
|
func (p *Pool) Submit(task func()) error {
|
2019-07-27 07:05:44 +03:00
|
|
|
if atomic.LoadInt32(&p.release) == CLOSED {
|
2018-05-20 16:41:32 +03:00
|
|
|
return ErrPoolClosed
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
2019-08-20 06:22:00 +03:00
|
|
|
if w := p.retrieveWorker(); w == nil {
|
|
|
|
return ErrPoolOverload
|
|
|
|
} else {
|
|
|
|
w.task <- task
|
|
|
|
}
|
2019-01-26 10:29:05 +03:00
|
|
|
return nil
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
2018-05-19 21:52:39 +03:00
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Running returns the number of the currently running goroutines.
|
2018-05-19 10:22:14 +03:00
|
|
|
func (p *Pool) Running() int {
|
|
|
|
return int(atomic.LoadInt32(&p.running))
|
2018-05-19 07:57:01 +03:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Free returns the available goroutines to work.
|
2018-05-19 10:22:14 +03:00
|
|
|
func (p *Pool) Free() int {
|
|
|
|
return int(atomic.LoadInt32(&p.capacity) - atomic.LoadInt32(&p.running))
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Cap returns the capacity of this pool.
|
2018-05-19 10:22:14 +03:00
|
|
|
func (p *Pool) Cap() int {
|
|
|
|
return int(atomic.LoadInt32(&p.capacity))
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
|
|
|
|
2019-01-26 19:26:24 +03:00
|
|
|
// Tune changes the capacity of this pool.
|
2019-08-21 17:07:19 +03:00
|
|
|
func (p *Pool) Tune(size uint) {
|
|
|
|
if p.Cap() == int(size) {
|
2018-07-15 21:33:43 +03:00
|
|
|
return
|
2018-07-15 21:43:38 +03:00
|
|
|
}
|
|
|
|
atomic.StoreInt32(&p.capacity, int32(size))
|
2019-08-21 17:07:19 +03:00
|
|
|
diff := p.Running() - int(size)
|
2018-10-01 15:45:21 +03:00
|
|
|
for i := 0; i < diff; i++ {
|
2019-01-26 19:26:24 +03:00
|
|
|
p.retrieveWorker().task <- nil
|
2018-05-30 07:57:20 +03:00
|
|
|
}
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Release Closes this pool.
|
2019-08-19 11:35:58 +03:00
|
|
|
func (p *Pool) Release() {
|
2018-07-15 20:21:23 +03:00
|
|
|
p.once.Do(func() {
|
2019-01-26 10:29:05 +03:00
|
|
|
atomic.StoreInt32(&p.release, 1)
|
2018-07-15 20:21:23 +03:00
|
|
|
p.lock.Lock()
|
|
|
|
idleWorkers := p.workers
|
|
|
|
for i, w := range idleWorkers {
|
|
|
|
w.task <- nil
|
|
|
|
idleWorkers[i] = nil
|
|
|
|
}
|
|
|
|
p.workers = nil
|
|
|
|
p.lock.Unlock()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-01-25 17:01:11 +03:00
|
|
|
//---------------------------------------------------------------------------
|
2018-05-19 07:28:03 +03:00
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// incRunning increases the number of the currently running goroutines.
|
2018-08-03 14:28:46 +03:00
|
|
|
func (p *Pool) incRunning() {
|
2018-07-31 06:05:05 +03:00
|
|
|
atomic.AddInt32(&p.running, 1)
|
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// decRunning decreases the number of the currently running goroutines.
|
2018-08-03 14:28:46 +03:00
|
|
|
func (p *Pool) decRunning() {
|
2018-07-31 06:05:05 +03:00
|
|
|
atomic.AddInt32(&p.running, -1)
|
|
|
|
}
|
|
|
|
|
2019-01-26 19:26:24 +03:00
|
|
|
// retrieveWorker returns a available worker to run the tasks.
|
2019-08-21 17:07:19 +03:00
|
|
|
func (p *Pool) retrieveWorker() *goWorker {
|
|
|
|
var w *goWorker
|
2019-08-17 21:45:32 +03:00
|
|
|
spawnWorker := func() {
|
|
|
|
if cacheWorker := p.workerCache.Get(); cacheWorker != nil {
|
2019-08-21 17:07:19 +03:00
|
|
|
w = cacheWorker.(*goWorker)
|
2019-08-17 21:45:32 +03:00
|
|
|
} else {
|
2019-08-21 17:07:19 +03:00
|
|
|
w = &goWorker{
|
2019-08-17 21:45:32 +03:00
|
|
|
pool: p,
|
|
|
|
task: make(chan func(), workerChanCap),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
w.run()
|
|
|
|
}
|
2018-05-20 10:28:27 +03:00
|
|
|
|
|
|
|
p.lock.Lock()
|
2018-07-15 20:21:23 +03:00
|
|
|
idleWorkers := p.workers
|
|
|
|
n := len(idleWorkers) - 1
|
2019-01-26 23:25:36 +03:00
|
|
|
if n >= 0 {
|
2018-07-15 20:21:23 +03:00
|
|
|
w = idleWorkers[n]
|
|
|
|
idleWorkers[n] = nil
|
|
|
|
p.workers = idleWorkers[:n]
|
2019-01-26 23:05:58 +03:00
|
|
|
p.lock.Unlock()
|
2019-01-26 23:25:36 +03:00
|
|
|
} else if p.Running() < p.Cap() {
|
|
|
|
p.lock.Unlock()
|
2019-08-17 21:45:32 +03:00
|
|
|
spawnWorker()
|
2019-01-26 23:25:36 +03:00
|
|
|
} else {
|
2019-08-21 17:07:19 +03:00
|
|
|
if p.nonblocking {
|
2019-08-20 06:22:00 +03:00
|
|
|
p.lock.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
2019-07-27 08:08:09 +03:00
|
|
|
Reentry:
|
2019-08-21 17:07:19 +03:00
|
|
|
if p.maxBlockingTasks != 0 && p.blockingNum >= p.maxBlockingTasks {
|
2019-08-20 06:22:00 +03:00
|
|
|
p.lock.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
p.blockingNum++
|
2019-07-27 08:08:09 +03:00
|
|
|
p.cond.Wait()
|
2019-08-20 06:22:00 +03:00
|
|
|
p.blockingNum--
|
2019-08-17 21:45:32 +03:00
|
|
|
if p.Running() == 0 {
|
2019-08-17 23:15:21 +03:00
|
|
|
p.lock.Unlock()
|
2019-08-17 21:45:32 +03:00
|
|
|
spawnWorker()
|
|
|
|
return w
|
|
|
|
}
|
2019-07-27 08:08:09 +03:00
|
|
|
l := len(p.workers) - 1
|
|
|
|
if l < 0 {
|
|
|
|
goto Reentry
|
2018-09-29 09:58:58 +03:00
|
|
|
}
|
2019-07-27 08:08:09 +03:00
|
|
|
w = p.workers[l]
|
|
|
|
p.workers[l] = nil
|
|
|
|
p.workers = p.workers[:l]
|
2019-08-17 21:45:32 +03:00
|
|
|
p.lock.Unlock()
|
2018-05-19 13:24:36 +03:00
|
|
|
}
|
2018-05-19 22:35:31 +03:00
|
|
|
return w
|
2018-05-19 13:24:36 +03:00
|
|
|
}
|
|
|
|
|
2019-01-26 19:26:24 +03:00
|
|
|
// revertWorker puts a worker back into free pool, recycling the goroutines.
|
2019-08-21 17:07:19 +03:00
|
|
|
func (p *Pool) revertWorker(worker *goWorker) bool {
|
2019-07-27 07:05:44 +03:00
|
|
|
if atomic.LoadInt32(&p.release) == CLOSED {
|
2019-04-13 05:35:39 +03:00
|
|
|
return false
|
|
|
|
}
|
2018-07-06 09:33:07 +03:00
|
|
|
worker.recycleTime = time.Now()
|
2018-05-20 10:28:27 +03:00
|
|
|
p.lock.Lock()
|
2018-05-19 21:52:39 +03:00
|
|
|
p.workers = append(p.workers, worker)
|
2019-01-26 19:26:24 +03:00
|
|
|
// Notify the invoker stuck in 'retrieveWorker()' of there is an available worker in the worker queue.
|
2018-09-28 14:28:09 +03:00
|
|
|
p.cond.Signal()
|
2018-09-29 05:19:17 +03:00
|
|
|
p.lock.Unlock()
|
2019-04-13 05:35:39 +03:00
|
|
|
return true
|
2019-01-26 07:26:26 +03:00
|
|
|
}
|