ants/ants.go

90 lines
2.8 KiB
Go
Raw Normal View History

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 11:37:17 +03:00
2018-05-19 04:15:54 +03:00
package ants
2018-05-19 07:28:03 +03:00
2018-05-22 06:17:19 +03:00
import (
"errors"
"math"
2019-01-26 09:32:12 +03:00
"runtime"
2018-05-22 06:17:19 +03:00
)
2018-05-19 07:28:03 +03:00
const (
2018-08-04 06:12:06 +03:00
// DefaultAntsPoolSize is the default capacity for a default goroutine pool.
2018-08-04 04:17:21 +03:00
DefaultAntsPoolSize = math.MaxInt32
2018-05-20 16:09:45 +03:00
2018-08-04 06:12:06 +03:00
// DefaultCleanIntervalTime is the interval time to clean up goroutines.
DefaultCleanIntervalTime = 5
)
2019-01-26 09:32:12 +03:00
var (
// Error types for the Ants API.
ErrInvalidPoolSize = errors.New("invalid size for pool")
ErrInvalidPoolExpiry = errors.New("invalid expiry for pool")
ErrPoolClosed = errors.New("this pool has been closed")
// workerChanCap determines whether the channel of a worker should be a buffered channel
// to get the best performance, inspired by fasthttp.
// https://github.com/valyala/fasthttp/blob/master/workerpool.go#L139
workerChanCap = func() int {
// Use blocking workerChan if GOMAXPROCS=1.
// This immediately switches Serve to WorkerFunc, which results
// in higher performance (under go1.5 at least).
if runtime.GOMAXPROCS(0) == 1 {
return 0
}
// Use non-blocking workerChan if GOMAXPROCS>1,
// since otherwise the Serve caller (Acceptor) may lag accepting
// new connections if WorkerFunc is CPU-bound.
return 1
}()
)
2018-08-04 06:12:06 +03:00
// Init a instance pool when importing ants.
2018-08-04 05:49:07 +03:00
var defaultAntsPool, _ = NewPool(DefaultAntsPoolSize)
2018-08-04 04:29:53 +03:00
2018-08-04 06:12:06 +03:00
// Submit submits a task to pool.
func Submit(task f) error {
2018-08-04 04:17:21 +03:00
return defaultAntsPool.Submit(task)
2018-05-19 07:28:03 +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 Running() int {
2018-08-04 04:17:21 +03:00
return defaultAntsPool.Running()
2018-05-19 07:28:03 +03:00
}
2018-08-04 06:12:06 +03:00
// Cap returns the capacity of this default pool.
2018-05-19 07:28:03 +03:00
func Cap() int {
2018-08-04 04:17:21 +03:00
return defaultAntsPool.Cap()
2018-05-19 07:28:03 +03:00
}
2018-05-19 10:22:14 +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 Free() int {
2018-08-04 04:17:21 +03:00
return defaultAntsPool.Free()
2018-05-19 10:22:14 +03:00
}
2018-08-04 06:12:06 +03:00
// Release Closes the default pool.
2018-08-04 04:42:25 +03:00
func Release() {
_ = defaultAntsPool.Release()
2018-08-04 04:42:25 +03:00
}