2018-05-22 06:26:16 +03:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
// Copyright (c) 2018 Andy Pan
|
|
|
|
|
|
|
|
// 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
|
|
|
|
// 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:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package ants
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
2018-07-06 09:39:24 +03:00
|
|
|
"time"
|
2019-10-04 06:24:13 +03:00
|
|
|
|
|
|
|
"github.com/panjf2000/ants/v2/internal"
|
2018-05-22 06:26:16 +03:00
|
|
|
)
|
|
|
|
|
2020-04-08 08:16:14 +03:00
|
|
|
// PoolWithFunc accepts the tasks from client,
|
|
|
|
// it limits the total of goroutines to a given number by recycling goroutines.
|
2018-05-22 06:26:16 +03:00
|
|
|
type PoolWithFunc struct {
|
|
|
|
// capacity of the pool.
|
|
|
|
capacity int32
|
|
|
|
|
|
|
|
// running is the number of the currently running goroutines.
|
|
|
|
running int32
|
|
|
|
|
|
|
|
// workers is a slice that store the available workers.
|
2019-08-21 17:07:19 +03:00
|
|
|
workers []*goWorkerWithFunc
|
2018-05-22 06:26:16 +03:00
|
|
|
|
2020-01-16 07:30:35 +03:00
|
|
|
// state is used to notice the pool to closed itself.
|
|
|
|
state int32
|
2018-05-22 06:26:16 +03:00
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// lock for synchronous operation.
|
2019-09-27 15:51:46 +03:00
|
|
|
lock sync.Locker
|
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-29 05:19:17 +03:00
|
|
|
cond *sync.Cond
|
2018-09-30 04:41:47 +03:00
|
|
|
|
2019-02-02 05:32:51 +03:00
|
|
|
// poolFunc is the function for processing tasks.
|
|
|
|
poolFunc func(interface{})
|
2018-05-24 13:30:58 +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-10-10 17:05:42 +03:00
|
|
|
// blockingNum is the number of the goroutines already been blocked on pool.Submit, protected by pool.lock
|
|
|
|
blockingNum int
|
2019-08-20 06:22:00 +03:00
|
|
|
|
2019-10-10 17:05:42 +03:00
|
|
|
options *Options
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
|
|
|
|
2020-08-12 07:11:51 +03:00
|
|
|
// purgePeriodically clears expired workers periodically which runs in an individual goroutine, as a scavenger.
|
|
|
|
func (p *PoolWithFunc) purgePeriodically() {
|
2019-10-10 17:05:42 +03:00
|
|
|
heartbeat := time.NewTicker(p.options.ExpiryDuration)
|
2018-11-19 05:57:53 +03:00
|
|
|
defer heartbeat.Stop()
|
|
|
|
|
2019-08-21 17:07:19 +03:00
|
|
|
var expiredWorkers []*goWorkerWithFunc
|
2018-07-24 17:30:37 +03:00
|
|
|
for range heartbeat.C {
|
2020-01-16 07:30:35 +03:00
|
|
|
if atomic.LoadInt32(&p.state) == 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-26 09:14:58 +03:00
|
|
|
n := len(idleWorkers)
|
2019-08-25 09:48:03 +03:00
|
|
|
var i int
|
2019-10-10 17:05:42 +03:00
|
|
|
for i = 0; i < n && currentTime.Sub(idleWorkers[i].recycleTime) > p.options.ExpiryDuration; i++ {
|
2018-07-06 09:39:24 +03:00
|
|
|
}
|
2019-07-26 09:14:58 +03:00
|
|
|
expiredWorkers = append(expiredWorkers[:0], idleWorkers[:i]...)
|
|
|
|
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-26 09:14:58 +03:00
|
|
|
p.workers = idleWorkers[:m]
|
2018-07-24 17:30:37 +03:00
|
|
|
}
|
|
|
|
p.lock.Unlock()
|
2019-07-26 09:14:58 +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.
|
|
|
|
for i, w := range expiredWorkers {
|
|
|
|
w.args <- nil
|
|
|
|
expiredWorkers[i] = nil
|
|
|
|
}
|
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:39:24 +03:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// NewPoolWithFunc generates an instance of ants pool with a specific function.
|
2019-08-21 17:07:19 +03:00
|
|
|
func NewPoolWithFunc(size int, pf func(interface{}), options ...Option) (*PoolWithFunc, error) {
|
2018-05-22 06:26:16 +03:00
|
|
|
if size <= 0 {
|
2018-07-12 19:11:42 +03:00
|
|
|
return nil, ErrInvalidPoolSize
|
|
|
|
}
|
2019-08-21 17:07:19 +03:00
|
|
|
|
|
|
|
if pf == nil {
|
|
|
|
return nil, ErrLackPoolFunc
|
|
|
|
}
|
|
|
|
|
2020-03-12 19:02:19 +03:00
|
|
|
opts := loadOptions(options...)
|
2019-08-21 17:07:19 +03:00
|
|
|
|
|
|
|
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 {
|
2019-10-04 06:24:13 +03:00
|
|
|
opts.ExpiryDuration = DefaultCleanIntervalTime
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
2019-08-21 17:07:19 +03:00
|
|
|
|
2020-03-12 19:02:19 +03:00
|
|
|
if opts.Logger == nil {
|
|
|
|
opts.Logger = defaultLogger
|
|
|
|
}
|
|
|
|
|
2019-10-04 06:24:13 +03:00
|
|
|
p := &PoolWithFunc{
|
2019-10-10 17:05:42 +03:00
|
|
|
capacity: int32(size),
|
|
|
|
poolFunc: pf,
|
|
|
|
lock: internal.NewSpinLock(),
|
|
|
|
options: opts,
|
2019-10-04 06:24:13 +03:00
|
|
|
}
|
2019-10-24 17:32:12 +03:00
|
|
|
p.workerCache.New = func() interface{} {
|
|
|
|
return &goWorkerWithFunc{
|
|
|
|
pool: p,
|
|
|
|
args: make(chan interface{}, workerChanCap),
|
|
|
|
}
|
2019-10-05 21:02:40 +03:00
|
|
|
}
|
2019-10-10 17:05:42 +03:00
|
|
|
if p.options.PreAlloc {
|
2019-10-04 06:24:13 +03:00
|
|
|
p.workers = make([]*goWorkerWithFunc, 0, size)
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
2019-09-27 15:51:46 +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.
|
2020-08-12 07:11:51 +03:00
|
|
|
go p.purgePeriodically()
|
2019-08-21 17:07:19 +03:00
|
|
|
|
2018-05-22 06:26:16 +03:00
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
2019-01-25 17:01:25 +03:00
|
|
|
//---------------------------------------------------------------------------
|
2018-05-22 06:26:16 +03:00
|
|
|
|
2019-02-19 15:16:14 +03:00
|
|
|
// Invoke submits a task to pool.
|
|
|
|
func (p *PoolWithFunc) Invoke(args interface{}) error {
|
2020-01-16 07:30:35 +03:00
|
|
|
if atomic.LoadInt32(&p.state) == CLOSED {
|
2018-05-22 06:26:16 +03:00
|
|
|
return ErrPoolClosed
|
|
|
|
}
|
2019-10-04 06:24:13 +03:00
|
|
|
var w *goWorkerWithFunc
|
|
|
|
if w = p.retrieveWorker(); w == nil {
|
2019-08-20 06:22:00 +03:00
|
|
|
return ErrPoolOverload
|
|
|
|
}
|
2019-10-04 06:24:13 +03:00
|
|
|
w.args <- args
|
2019-01-26 10:29:05 +03:00
|
|
|
return nil
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Running returns the number of the currently running goroutines.
|
2018-05-22 07:01:00 +03:00
|
|
|
func (p *PoolWithFunc) Running() int {
|
2018-05-22 06:26:16 +03:00
|
|
|
return int(atomic.LoadInt32(&p.running))
|
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Free returns a available goroutines to work.
|
2018-05-22 07:01:00 +03:00
|
|
|
func (p *PoolWithFunc) Free() int {
|
2019-10-04 06:24:13 +03:00
|
|
|
return p.Cap() - p.Running()
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
|
|
|
|
2018-08-04 06:12:06 +03:00
|
|
|
// Cap returns the capacity of this pool.
|
2018-05-22 07:01:00 +03:00
|
|
|
func (p *PoolWithFunc) Cap() int {
|
2018-05-22 06:26:16 +03:00
|
|
|
return int(atomic.LoadInt32(&p.capacity))
|
|
|
|
}
|
|
|
|
|
2019-10-15 09:50:38 +03:00
|
|
|
// Tune changes the capacity of this pool.
|
2019-01-26 19:26:24 +03:00
|
|
|
func (p *PoolWithFunc) Tune(size int) {
|
2020-05-27 17:19:53 +03:00
|
|
|
if size <= 0 || size == p.Cap() || p.options.PreAlloc {
|
2018-07-15 21:33:43 +03:00
|
|
|
return
|
2018-07-15 21:43:38 +03:00
|
|
|
}
|
|
|
|
atomic.StoreInt32(&p.capacity, int32(size))
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
|
|
|
|
2019-10-15 09:50:38 +03:00
|
|
|
// Release Closes this pool.
|
2019-08-19 11:35:58 +03:00
|
|
|
func (p *PoolWithFunc) Release() {
|
2020-01-16 07:30:35 +03:00
|
|
|
atomic.StoreInt32(&p.state, CLOSED)
|
|
|
|
p.lock.Lock()
|
|
|
|
idleWorkers := p.workers
|
|
|
|
for _, w := range idleWorkers {
|
|
|
|
w.args <- nil
|
|
|
|
}
|
|
|
|
p.workers = nil
|
|
|
|
p.lock.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reboot reboots a released pool.
|
|
|
|
func (p *PoolWithFunc) Reboot() {
|
|
|
|
if atomic.CompareAndSwapInt32(&p.state, CLOSED, OPENED) {
|
2020-08-12 07:11:51 +03:00
|
|
|
go p.purgePeriodically()
|
2020-01-16 07:30:35 +03:00
|
|
|
}
|
2018-07-15 20:21:23 +03:00
|
|
|
}
|
|
|
|
|
2019-01-25 17:01:25 +03:00
|
|
|
//---------------------------------------------------------------------------
|
2018-05-22 06:26:16 +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 *PoolWithFunc) 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 *PoolWithFunc) 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.
|
2020-05-08 15:13:35 +03:00
|
|
|
func (p *PoolWithFunc) retrieveWorker() (w *goWorkerWithFunc) {
|
2019-08-17 21:45:32 +03:00
|
|
|
spawnWorker := func() {
|
2019-10-05 21:02:40 +03:00
|
|
|
w = p.workerCache.Get().(*goWorkerWithFunc)
|
2019-08-17 21:45:32 +03:00
|
|
|
w.run()
|
|
|
|
}
|
2018-05-22 06:26:16 +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-10-10 17:05:42 +03:00
|
|
|
if p.options.Nonblocking {
|
2019-08-20 06:22:00 +03:00
|
|
|
p.lock.Unlock()
|
2020-05-08 15:13:35 +03:00
|
|
|
return
|
2019-08-20 06:22:00 +03:00
|
|
|
}
|
2019-07-27 08:08:09 +03:00
|
|
|
Reentry:
|
2019-10-10 17:05:42 +03:00
|
|
|
if p.options.MaxBlockingTasks != 0 && p.blockingNum >= p.options.MaxBlockingTasks {
|
2019-08-20 06:22:00 +03:00
|
|
|
p.lock.Unlock()
|
2020-05-08 15:13:35 +03:00
|
|
|
return
|
2019-08-20 06:22:00 +03:00
|
|
|
}
|
|
|
|
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()
|
2020-05-08 15:13:35 +03:00
|
|
|
return
|
2019-08-17 21:45:32 +03:00
|
|
|
}
|
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-22 06:26:16 +03:00
|
|
|
}
|
2020-05-08 15:13:35 +03:00
|
|
|
return
|
2018-05-22 06:26:16 +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 *PoolWithFunc) revertWorker(worker *goWorkerWithFunc) bool {
|
2020-01-16 07:30:35 +03:00
|
|
|
if atomic.LoadInt32(&p.state) == CLOSED || p.Running() > p.Cap() {
|
2019-04-13 05:35:39 +03:00
|
|
|
return false
|
|
|
|
}
|
2018-07-06 09:39:24 +03:00
|
|
|
worker.recycleTime = time.Now()
|
2018-05-22 06:26:16 +03:00
|
|
|
p.lock.Lock()
|
2020-10-15 06:35:55 +03:00
|
|
|
|
|
|
|
// To avoid memory leaks, add a double check in the lock scope.
|
|
|
|
// Issue: https://github.com/panjf2000/ants/issues/113
|
|
|
|
if atomic.LoadInt32(&p.state) == CLOSED {
|
|
|
|
p.lock.Unlock()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-05-22 06:26:16 +03:00
|
|
|
p.workers = append(p.workers, worker)
|
2019-08-25 09:25:09 +03:00
|
|
|
|
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-29 05:19:17 +03:00
|
|
|
p.cond.Signal()
|
2018-05-22 06:26:16 +03:00
|
|
|
p.lock.Unlock()
|
2019-04-13 05:35:39 +03:00
|
|
|
return true
|
2019-01-26 07:26:26 +03:00
|
|
|
}
|