2020-07-26 17:09:05 +08:00
|
|
|
package threading
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"runtime"
|
|
|
|
"strconv"
|
|
|
|
|
2020-08-08 16:40:10 +08:00
|
|
|
"github.com/tal-tech/go-zero/core/rescue"
|
2020-07-26 17:09:05 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func GoSafe(fn func()) {
|
|
|
|
go RunSafe(fn)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only for debug, never use it in production
|
|
|
|
func RoutineId() uint64 {
|
|
|
|
b := make([]byte, 64)
|
|
|
|
b = b[:runtime.Stack(b, false)]
|
|
|
|
b = bytes.TrimPrefix(b, []byte("goroutine "))
|
|
|
|
b = b[:bytes.IndexByte(b, ' ')]
|
|
|
|
// if error, just return 0
|
|
|
|
n, _ := strconv.ParseUint(string(b), 10, 64)
|
|
|
|
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func RunSafe(fn func()) {
|
|
|
|
defer rescue.Recover()
|
|
|
|
|
|
|
|
fn()
|
|
|
|
}
|