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 (
|
2023-03-23 09:42:17 +03:00
|
|
|
"runtime/debug"
|
2018-07-06 09:39:24 +03:00
|
|
|
"time"
|
2018-05-22 06:26:16 +03:00
|
|
|
)
|
|
|
|
|
2019-08-21 17:07:19 +03:00
|
|
|
// goWorkerWithFunc is the actual executor who runs the tasks,
|
2018-05-24 19:43:53 +03:00
|
|
|
// it starts a goroutine that accepts tasks and
|
|
|
|
// performs function calls.
|
2019-08-21 17:07:19 +03:00
|
|
|
type goWorkerWithFunc struct {
|
2018-05-22 06:26:16 +03:00
|
|
|
// pool who owns this worker.
|
|
|
|
pool *PoolWithFunc
|
|
|
|
|
|
|
|
// args is a job should be done.
|
|
|
|
args chan interface{}
|
2018-07-06 09:39:24 +03:00
|
|
|
|
2023-03-23 10:02:00 +03:00
|
|
|
// lastUsed will be updated when putting a worker back into queue.
|
|
|
|
lastUsed time.Time
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
|
|
|
|
2018-05-24 19:43:53 +03:00
|
|
|
// run starts a goroutine to repeat the process
|
|
|
|
// that performs the function calls.
|
2019-08-21 17:07:19 +03:00
|
|
|
func (w *goWorkerWithFunc) run() {
|
2022-05-07 17:43:25 +03:00
|
|
|
w.pool.addRunning(1)
|
2018-05-22 06:26:16 +03:00
|
|
|
go func() {
|
2019-01-21 13:57:23 +03:00
|
|
|
defer func() {
|
2022-05-07 17:43:25 +03:00
|
|
|
w.pool.addRunning(-1)
|
2019-10-13 21:50:13 +03:00
|
|
|
w.pool.workerCache.Put(w)
|
2019-01-21 13:57:23 +03:00
|
|
|
if p := recover(); p != nil {
|
2019-10-10 17:05:42 +03:00
|
|
|
if ph := w.pool.options.PanicHandler; ph != nil {
|
|
|
|
ph(p)
|
2019-01-21 13:57:23 +03:00
|
|
|
} else {
|
2023-03-23 09:42:17 +03:00
|
|
|
w.pool.options.Logger.Printf("worker exits from panic: %v\n%s\n", p, debug.Stack())
|
2019-01-21 13:57:23 +03:00
|
|
|
}
|
|
|
|
}
|
2021-03-28 17:37:56 +03:00
|
|
|
// Call Signal() here in case there are goroutines waiting for available workers.
|
|
|
|
w.pool.cond.Signal()
|
2019-01-21 13:57:23 +03:00
|
|
|
}()
|
2019-01-26 16:45:49 +03:00
|
|
|
|
2018-05-22 06:26:16 +03:00
|
|
|
for args := range w.args {
|
2019-07-27 07:02:21 +03:00
|
|
|
if args == nil {
|
2018-05-22 06:26:16 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
w.pool.poolFunc(args)
|
2019-04-13 05:35:39 +03:00
|
|
|
if ok := w.pool.revertWorker(w); !ok {
|
2019-09-11 11:39:55 +03:00
|
|
|
return
|
2019-04-13 05:35:39 +03:00
|
|
|
}
|
2018-05-22 06:26:16 +03:00
|
|
|
}
|
|
|
|
}()
|
2019-01-26 16:45:49 +03:00
|
|
|
}
|
2023-03-23 06:40:06 +03:00
|
|
|
|
|
|
|
func (w *goWorkerWithFunc) finish() {
|
|
|
|
w.args <- nil
|
|
|
|
}
|
|
|
|
|
2023-03-23 10:16:21 +03:00
|
|
|
func (w *goWorkerWithFunc) lastUsedTime() time.Time {
|
2023-03-23 10:02:00 +03:00
|
|
|
return w.lastUsed
|
2023-03-23 06:40:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (w *goWorkerWithFunc) inputFunc(func()) {
|
|
|
|
panic("unreachable")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *goWorkerWithFunc) inputParam(arg interface{}) {
|
|
|
|
w.args <- arg
|
|
|
|
}
|