mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
e93da4bd02
* Increase some tls test timeout * Fix TestUserValidator * Change all tests to VMessAEAD Old VMess MD5 tests will be rejected and fail in 2022 * Chore: auto format code
60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
package log
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/common/log"
|
|
)
|
|
|
|
type HandlerCreatorOptions struct {
|
|
Path string
|
|
}
|
|
|
|
type HandlerCreator func(LogType, HandlerCreatorOptions) (log.Handler, error)
|
|
|
|
var handlerCreatorMap = make(map[LogType]HandlerCreator)
|
|
|
|
var handlerCreatorMapLock = &sync.RWMutex{}
|
|
|
|
func RegisterHandlerCreator(logType LogType, f HandlerCreator) error {
|
|
if f == nil {
|
|
return newError("nil HandlerCreator")
|
|
}
|
|
|
|
handlerCreatorMapLock.Lock()
|
|
defer handlerCreatorMapLock.Unlock()
|
|
|
|
handlerCreatorMap[logType] = f
|
|
return nil
|
|
}
|
|
|
|
func createHandler(logType LogType, options HandlerCreatorOptions) (log.Handler, error) {
|
|
handlerCreatorMapLock.RLock()
|
|
defer handlerCreatorMapLock.RUnlock()
|
|
|
|
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
|
|
}))
|
|
}
|