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 10:28:27 +03:00
|
|
|
"math"
|
2018-05-20 16:29:38 +03:00
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
2018-05-19 07:28:03 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type sig struct{}
|
|
|
|
|
2018-05-24 18:43:34 +03:00
|
|
|
type f func() error
|
2018-05-19 07:28:03 +03:00
|
|
|
|
2018-05-24 18:43:34 +03:00
|
|
|
// Pool accept the tasks from client,it limits the total
|
2018-05-20 16:09:45 +03:00
|
|
|
// 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-05-23 12:21:39 +03:00
|
|
|
// freeSignal is used to notice pool there are available
|
2018-05-20 16:09:45 +03:00
|
|
|
// workers which can be sent to work.
|
2018-05-19 21:52:39 +03:00
|
|
|
freeSignal chan sig
|
2018-05-20 16:09:45 +03:00
|
|
|
|
2018-05-21 05:37:03 +03:00
|
|
|
// workers is a slice that store the available workers.
|
2018-05-20 16:29:38 +03:00
|
|
|
workers []*Worker
|
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.
|
2018-05-20 16:29:38 +03:00
|
|
|
release chan sig
|
2018-05-20 16:09:45 +03:00
|
|
|
|
2018-05-24 18:43:34 +03:00
|
|
|
// lock for synchronous operation
|
2018-05-20 16:29:38 +03:00
|
|
|
lock sync.Mutex
|
2018-05-20 16:09:45 +03:00
|
|
|
|
2018-05-24 13:35:26 +03:00
|
|
|
once sync.Once
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
|
|
|
|
2018-05-20 16:41:32 +03:00
|
|
|
// NewPool generates a instance of ants pool
|
2018-05-20 13:57:11 +03:00
|
|
|
func NewPool(size int) (*Pool, error) {
|
|
|
|
if size <= 0 {
|
2018-05-20 16:41:32 +03:00
|
|
|
return nil, ErrPoolSizeInvalid
|
2018-05-20 13:57:11 +03:00
|
|
|
}
|
2018-05-19 07:28:03 +03:00
|
|
|
p := &Pool{
|
2018-05-19 21:52:39 +03:00
|
|
|
capacity: int32(size),
|
2018-05-20 10:28:27 +03:00
|
|
|
freeSignal: make(chan sig, math.MaxInt32),
|
2018-05-24 13:35:26 +03:00
|
|
|
release: make(chan sig, 1),
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
2018-05-20 06:51:14 +03:00
|
|
|
|
2018-05-20 13:57:11 +03:00
|
|
|
return p, nil
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2018-05-24 18:43:34 +03:00
|
|
|
// Submit submit a task to pool
|
|
|
|
func (p *Pool) Submit(task f) error {
|
2018-05-24 13:35:26 +03:00
|
|
|
if len(p.release) > 0 {
|
2018-05-20 16:41:32 +03:00
|
|
|
return ErrPoolClosed
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|
2018-05-19 21:52:39 +03:00
|
|
|
w := p.getWorker()
|
|
|
|
w.sendTask(task)
|
2018-05-19 07:28:03 +03:00
|
|
|
return nil
|
|
|
|
}
|
2018-05-19 21:52:39 +03:00
|
|
|
|
2018-05-20 16:09:45 +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-05-20 16:09:45 +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-05-20 16:09:45 +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
|
|
|
}
|
|
|
|
|
2018-05-20 16:09:45 +03:00
|
|
|
// Release Closed this pool
|
2018-05-20 13:57:11 +03:00
|
|
|
func (p *Pool) Release() error {
|
2018-05-24 13:35:26 +03:00
|
|
|
p.once.Do(func() {
|
|
|
|
p.release <- sig{}
|
2018-05-30 07:57:20 +03:00
|
|
|
running := p.Running()
|
|
|
|
for i := 0; i < running; i++ {
|
|
|
|
p.getWorker().stop()
|
|
|
|
}
|
2018-05-24 13:35:26 +03:00
|
|
|
})
|
2018-05-19 07:28:03 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-20 16:41:32 +03:00
|
|
|
// ReSize change the capacity of this pool
|
2018-05-20 13:57:11 +03:00
|
|
|
func (p *Pool) ReSize(size int) {
|
2018-05-30 07:57:20 +03:00
|
|
|
if size < p.Cap() {
|
|
|
|
diff := p.Cap() - size
|
|
|
|
for i := 0; i < diff; i++ {
|
|
|
|
p.getWorker().stop()
|
|
|
|
}
|
2018-05-30 07:59:00 +03:00
|
|
|
} else if size == p.Cap() {
|
|
|
|
return
|
2018-05-30 07:57:20 +03:00
|
|
|
}
|
2018-05-20 13:57:11 +03:00
|
|
|
atomic.StoreInt32(&p.capacity, int32(size))
|
|
|
|
}
|
|
|
|
|
2018-05-19 07:28:03 +03:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2018-05-20 16:09:45 +03:00
|
|
|
// getWorker returns a available worker to run the tasks.
|
2018-05-19 07:28:03 +03:00
|
|
|
func (p *Pool) getWorker() *Worker {
|
2018-05-19 22:35:31 +03:00
|
|
|
var w *Worker
|
2018-05-20 10:28:27 +03:00
|
|
|
waiting := false
|
|
|
|
|
|
|
|
p.lock.Lock()
|
2018-05-19 22:35:31 +03:00
|
|
|
workers := p.workers
|
|
|
|
n := len(workers) - 1
|
|
|
|
if n < 0 {
|
2018-05-20 10:28:27 +03:00
|
|
|
if p.running >= p.capacity {
|
|
|
|
waiting = true
|
2018-05-24 14:30:18 +03:00
|
|
|
} else {
|
|
|
|
p.running++
|
2018-05-20 10:28:27 +03:00
|
|
|
}
|
2018-05-19 22:35:31 +03:00
|
|
|
} else {
|
2018-06-15 03:04:28 +03:00
|
|
|
<-p.freeSignal
|
2018-05-19 22:35:31 +03:00
|
|
|
w = workers[n]
|
|
|
|
workers[n] = nil
|
|
|
|
p.workers = workers[:n]
|
2018-05-20 10:28:27 +03:00
|
|
|
}
|
|
|
|
p.lock.Unlock()
|
|
|
|
|
|
|
|
if waiting {
|
|
|
|
<-p.freeSignal
|
2018-06-15 03:04:28 +03:00
|
|
|
p.lock.Lock()
|
|
|
|
workers = p.workers
|
|
|
|
l := len(workers) - 1
|
|
|
|
w = workers[l]
|
|
|
|
workers[l] = nil
|
|
|
|
p.workers = workers[:l]
|
|
|
|
p.lock.Unlock()
|
2018-05-22 11:10:29 +03:00
|
|
|
} else if w == nil {
|
2018-05-24 14:27:54 +03:00
|
|
|
w = &Worker{
|
|
|
|
pool: p,
|
2018-05-24 14:32:45 +03:00
|
|
|
task: make(chan f),
|
2018-05-20 10:28:27 +03:00
|
|
|
}
|
2018-05-22 19:46:43 +03:00
|
|
|
w.run()
|
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
|
|
|
}
|
|
|
|
|
2018-05-20 16:09:45 +03:00
|
|
|
// putWorker puts a worker back into free pool, recycling the goroutines.
|
2018-05-19 20:38:50 +03:00
|
|
|
func (p *Pool) putWorker(worker *Worker) {
|
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)
|
2018-05-20 10:28:27 +03:00
|
|
|
p.lock.Unlock()
|
|
|
|
p.freeSignal <- sig{}
|
2018-05-19 07:28:03 +03:00
|
|
|
}
|