mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
4 years ago
|
// +build !confonly
|
||
|
|
||
|
package log
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/v1/common"
|
||
|
"github.com/xtls/xray-core/v1/common/log"
|
||
|
)
|
||
|
|
||
|
type HandlerCreatorOptions struct {
|
||
|
Path string
|
||
|
}
|
||
|
|
||
|
type HandlerCreator func(LogType, HandlerCreatorOptions) (log.Handler, error)
|
||
|
|
||
|
var (
|
||
|
handlerCreatorMap = make(map[LogType]HandlerCreator)
|
||
|
)
|
||
|
|
||
|
func RegisterHandlerCreator(logType LogType, f HandlerCreator) error {
|
||
|
if f == nil {
|
||
|
return newError("nil HandlerCreator")
|
||
|
}
|
||
|
|
||
|
handlerCreatorMap[logType] = f
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func createHandler(logType LogType, options HandlerCreatorOptions) (log.Handler, error) {
|
||
|
creator, found := handlerCreatorMap[logType]
|
||
|
if !found {
|
||
|
return nil, newError("unable to create log handler for ", logType)
|
||
|
}
|
||
|
return creator(logType, options)
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
common.Must(RegisterHandlerCreator(LogType_Console, func(lt LogType, options HandlerCreatorOptions) (log.Handler, error) {
|
||
|
return log.NewLogger(log.CreateStdoutLogWriter()), nil
|
||
|
}))
|
||
|
|
||
|
common.Must(RegisterHandlerCreator(LogType_File, func(lt LogType, options HandlerCreatorOptions) (log.Handler, error) {
|
||
|
creator, err := log.CreateFileLogWriter(options.Path)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return log.NewLogger(creator), nil
|
||
|
}))
|
||
|
|
||
|
common.Must(RegisterHandlerCreator(LogType_None, func(lt LogType, options HandlerCreatorOptions) (log.Handler, error) {
|
||
|
return nil, nil
|
||
|
}))
|
||
|
}
|