ants/worker.go

75 lines
2.2 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
// 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 18:57:48 +03:00
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
2018-05-20 11:37:17 +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,
2018-05-20 18:57:48 +03:00
// 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 07:28:03 +03:00
package ants
import (
"runtime"
2018-07-06 09:33:07 +03:00
"time"
)
2018-05-19 07:28:03 +03:00
// goWorker 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.
type goWorker struct {
2018-05-21 05:37:03 +03:00
// pool who owns this worker.
2018-05-19 07:28:03 +03:00
pool *Pool
2018-05-20 16:09:45 +03:00
2018-05-21 05:37:03 +03:00
// task is a job should be done.
task chan func()
2018-07-06 09:33:07 +03:00
// recycleTime will be update when putting a worker back into queue.
recycleTime time.Time
2018-05-19 07:28:03 +03:00
}
2018-05-24 19:43:53 +03:00
// run starts a goroutine to repeat the process
// that performs the function calls.
func (w *goWorker) run() {
w.pool.incRunning()
2018-05-19 07:28:03 +03:00
go func() {
defer func() {
w.pool.decRunning()
w.pool.workerCache.Put(w)
if p := recover(); p != nil {
if ph := w.pool.options.PanicHandler; ph != nil {
ph(p)
} else {
2020-03-12 19:02:19 +03:00
w.pool.options.Logger.Printf("worker exits from a panic: %v\n", p)
var buf [4096]byte
n := runtime.Stack(buf[:], false)
2020-03-12 19:02:19 +03:00
w.pool.options.Logger.Printf("worker exits from panic: %s\n", string(buf[:n]))
}
}
}()
2019-01-26 16:45:49 +03:00
2018-05-19 21:52:39 +03:00
for f := range w.task {
2019-07-27 07:02:21 +03:00
if f == nil {
2018-05-19 07:28:03 +03:00
return
}
2018-05-19 21:52:39 +03:00
f()
2019-04-13 05:35:39 +03:00
if ok := w.pool.revertWorker(w); !ok {
return
2019-04-13 05:35:39 +03:00
}
2018-05-19 07:28:03 +03:00
}
}()
2019-01-26 16:45:49 +03:00
}