mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 08:32:24 +00:00
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package utils
|
|
|
|
import (
|
|
"log"
|
|
"runtime"
|
|
"strings"
|
|
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// temportary solution, pls dont judge
|
|
func trimStackPaths(stack []byte, folderName string) []byte {
|
|
lines := strings.Split(string(stack), "\n")
|
|
for i, line := range lines {
|
|
idx := strings.Index(line, folderName)
|
|
if idx != -1 {
|
|
indentEnd := strings.LastIndex(line[:idx], "\t")
|
|
if indentEnd == -1 {
|
|
indentEnd = 0
|
|
} else {
|
|
indentEnd++
|
|
}
|
|
start := idx + len(folderName) + 1
|
|
if start > len(line) {
|
|
start = len(line)
|
|
}
|
|
lines[i] = line[:indentEnd] + line[start:]
|
|
}
|
|
}
|
|
return []byte(strings.Join(lines, "\n"))
|
|
}
|
|
|
|
func CatchPanic() {
|
|
if err := recover(); err != nil {
|
|
stack := make([]byte, 8096)
|
|
stack = stack[:runtime.Stack(stack, false)]
|
|
stack = trimStackPaths(stack, "GoSally-mvp")
|
|
log.Printf("recovered panic:\n%s", stack)
|
|
}
|
|
}
|
|
|
|
func CatchPanicWithCancel(cancel context.CancelFunc) {
|
|
if err := recover(); err != nil {
|
|
stack := make([]byte, 8096)
|
|
stack = stack[:runtime.Stack(stack, false)]
|
|
stack = trimStackPaths(stack, "GoSally-mvp")
|
|
log.Printf("recovered panic:\n%s", stack)
|
|
cancel()
|
|
}
|
|
}
|
|
|
|
func CatchPanicWithFallback(onPanic func(any)) {
|
|
if err := recover(); err != nil {
|
|
stack := make([]byte, 8096)
|
|
stack = stack[:runtime.Stack(stack, false)]
|
|
stack = trimStackPaths(stack, "GoSally-mvp")
|
|
log.Printf("recovered panic:\n%s", stack)
|
|
onPanic(err)
|
|
}
|
|
}
|