mirror of
https://github.com/safing/portbase
synced 2025-09-01 10:09:50 +00:00
90 lines
2.4 KiB
Go
90 lines
2.4 KiB
Go
package modules
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime/debug"
|
|
)
|
|
|
|
var (
|
|
errorReportingChannel chan *ModuleError
|
|
)
|
|
|
|
// ModuleError wraps a panic, error or message into an error that can be reported.
|
|
type ModuleError struct {
|
|
Message string
|
|
|
|
ModuleName string
|
|
TaskName string
|
|
TaskType string // one of "worker", "task", "microtask" or custom
|
|
Severity string // one of "info", "error", "panic" or custom
|
|
|
|
PanicValue interface{}
|
|
StackTrace string
|
|
}
|
|
|
|
// NewInfoMessage creates a new, reportable, info message (including a stack trace).
|
|
func (m *Module) NewInfoMessage(message string) *ModuleError {
|
|
return &ModuleError{
|
|
Message: message,
|
|
ModuleName: m.Name,
|
|
Severity: "info",
|
|
StackTrace: string(debug.Stack()),
|
|
}
|
|
}
|
|
|
|
// NewErrorMessage creates a new, reportable, error message (including a stack trace).
|
|
func (m *Module) NewErrorMessage(taskName string, err error) *ModuleError {
|
|
return &ModuleError{
|
|
Message: err.Error(),
|
|
ModuleName: m.Name,
|
|
Severity: "error",
|
|
StackTrace: string(debug.Stack()),
|
|
}
|
|
}
|
|
|
|
// NewPanicError creates a new, reportable, panic error message (including a stack trace).
|
|
func (m *Module) NewPanicError(taskName, taskType string, panicValue interface{}) *ModuleError {
|
|
me := &ModuleError{
|
|
Message: fmt.Sprintf("panic: %s", panicValue),
|
|
ModuleName: m.Name,
|
|
TaskName: taskName,
|
|
TaskType: taskType,
|
|
Severity: "panic",
|
|
PanicValue: panicValue,
|
|
StackTrace: string(debug.Stack()),
|
|
}
|
|
me.Message = me.Error()
|
|
return me
|
|
}
|
|
|
|
// Error returns the string representation of the error.
|
|
func (me *ModuleError) Error() string {
|
|
return me.Message
|
|
}
|
|
|
|
// Report reports the error through the configured reporting channel.
|
|
func (me *ModuleError) Report() {
|
|
if errorReportingChannel != nil {
|
|
select {
|
|
case errorReportingChannel <- me:
|
|
default:
|
|
}
|
|
}
|
|
}
|
|
|
|
// IsPanic returns whether the given error is a wrapped panic by the modules package and additionally returns it, if true.
|
|
func IsPanic(err error) (bool, *ModuleError) {
|
|
switch val := err.(type) {
|
|
case *ModuleError:
|
|
return true, val
|
|
default:
|
|
return false, nil
|
|
}
|
|
}
|
|
|
|
// SetErrorReportingChannel sets the channel to report module errors through. By default only panics are reported, all other errors need to be manually wrapped into a *ModuleError and reported.
|
|
func SetErrorReportingChannel(reportingChannel chan *ModuleError) {
|
|
if errorReportingChannel == nil {
|
|
errorReportingChannel = reportingChannel
|
|
}
|
|
}
|