You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
starlog/starlog.go

490 lines
10 KiB
Go

5 years ago
package starlog
import (
"fmt"
4 years ago
"io"
5 years ago
"os"
"path/filepath"
5 years ago
"runtime"
5 years ago
"strconv"
5 years ago
"sync"
5 years ago
"time"
5 years ago
"github.com/mattn/go-colorable"
5 years ago
)
5 years ago
5 years ago
const (
LvDebug = iota
LvInfo
LvNotice
LvWarning
LvError
LvCritical
LvPanic
LvFatal
)
5 years ago
5 years ago
var (
levels = map[int]string{
LvDebug: "DEBUG",
LvInfo: "INFO",
LvNotice: "NOTICE",
LvWarning: "WARNING",
LvError: "ERROR",
LvCritical: "CRITICAL",
LvPanic: "PANIC",
LvFatal: "FATAL",
5 years ago
}
4 years ago
Colors = map[int][]Attr{
LvDebug: []Attr{FgWhite},
LvInfo: []Attr{FgGreen},
LvNotice: []Attr{FgBlue},
LvWarning: []Attr{FgYellow},
LvError: []Attr{FgMagenta},
LvCritical: []Attr{FgRed, Bold},
LvPanic: []Attr{FgRed, Bold},
LvFatal: []Attr{FgRed},
5 years ago
}
5 years ago
)
4 years ago
type StarLogger struct {
mu sync.Mutex
lock sync.Mutex
out io.Writer
ShowLine bool
ShowLevel bool
DoWrite bool
DoShow bool
switching bool
//HandleFunc
waiting chan int
outshow io.Writer
LogLevel int
HandleFunc func([]Attr, string)
StdFuncColor bool
}
var Std = New(nil)
func init() {
Std.DoShow = true
}
func New(out io.Writer) *StarLogger {
logger := new(StarLogger)
logger.DoShow = false
logger.ShowLevel = true
logger.ShowLine = true
logger.DoWrite = true
logger.out = out
logger.outshow = colorable.NewColorableStdout()
logger.StdFuncColor = true
return logger
}
func (logger *StarLogger) write(logstr string) {
if (!logger.DoWrite) || (logger.out == nil) {
return
}
i := 0
for logger.switching {
5 years ago
time.Sleep(time.Millisecond * 100)
5 years ago
i++
if i > 20 {
return
}
5 years ago
}
4 years ago
if &(logger.out) == nil {
5 years ago
return
5 years ago
}
4 years ago
logger.out.Write([]byte(logstr))
}
func (logger *StarLogger) OutPut(logstr string) {
logger.out.Write([]byte(logstr))
5 years ago
}
5 years ago
4 years ago
func (logger *StarLogger) output(level int, logstr string) {
5 years ago
var logs string
4 years ago
logger.mu.Lock()
defer logger.mu.Unlock()
if level < logger.LogLevel {
5 years ago
return
}
4 years ago
_, fname, line, _ := runtime.Caller(3)
5 years ago
fname = filepath.Base(fname)
4 years ago
date := time.Now().Format("2006-01-02 15:04:05.000 Mon")
if logger.ShowLine && logger.ShowLevel {
logs = fmt.Sprintf("%s %s %s %s", date, fname+":"+strconv.Itoa(line), `[`+levels[level]+`]`, logstr)
} else if logger.ShowLine && !logger.ShowLevel {
logs = fmt.Sprintf("%s %s %s", date, fname+":"+strconv.Itoa(line), logstr)
} else if !logger.ShowLine && logger.ShowLevel {
logs = fmt.Sprintf("%s %s %s", date, `[`+levels[level]+`]`, logstr)
5 years ago
} else {
4 years ago
logs = fmt.Sprintf("%s %s", date, logstr)
5 years ago
}
4 years ago
if logger.DoShow {
logcolor := NewColor(Colors[level]...)
logcolor.Fprint(logger.outshow, logs)
5 years ago
}
4 years ago
if logger.HandleFunc != nil {
go logger.HandleFunc(Colors[level], logs)
5 years ago
}
4 years ago
if logger.DoWrite {
logger.write(logs)
5 years ago
}
5 years ago
}
4 years ago
func (logger *StarLogger) Debug(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprint(str...)
logger.output(LvDebug, strs)
5 years ago
}
5 years ago
4 years ago
func Debug(str ...interface{}) {
Std.Debug(str...)
5 years ago
}
5 years ago
4 years ago
func (logger *StarLogger) Debugf(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprintf(format, str...)
logger.output(LvDebug, strs)
5 years ago
}
4 years ago
func Debugf(format string, str ...interface{}) {
Std.Debugf(format, str...)
5 years ago
}
5 years ago
4 years ago
func (logger *StarLogger) Debugln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprintln(str...)
logger.output(LvDebug, strs)
5 years ago
}
4 years ago
func Debugln(str ...interface{}) {
Std.Debugln(str...)
5 years ago
}
4 years ago
func (logger *StarLogger) Info(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprint(str...)
4 years ago
logger.output(LvInfo, strs)
5 years ago
}
4 years ago
func Info(str ...interface{}) {
Std.Info(str...)
5 years ago
}
4 years ago
func (logger *StarLogger) Infof(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprintf(format, str...)
logger.output(LvInfo, strs)
5 years ago
}
4 years ago
func Infof(format string, str ...interface{}) {
Std.Infof(format, str...)
5 years ago
}
4 years ago
func (logger *StarLogger) Infoln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprintln(str...)
logger.output(LvInfo, strs)
5 years ago
}
func Infoln(str ...interface{}) {
4 years ago
Std.Infoln(str...)
5 years ago
}
4 years ago
func (logger *StarLogger) Notice(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprint(str...)
4 years ago
logger.output(LvNotice, strs)
5 years ago
}
4 years ago
func Notice(str ...interface{}) {
Std.Notice(str...)
}
func (logger *StarLogger) Noticef(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintf(format, str...)
4 years ago
logger.output(LvNotice, strs)
5 years ago
}
4 years ago
func Noticef(format string, str ...interface{}) {
Std.Noticef(format, str...)
}
func (logger *StarLogger) Noticeln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintln(str...)
4 years ago
logger.output(LvNotice, strs)
5 years ago
}
4 years ago
func Noticeln(str ...interface{}) {
Std.Noticeln(str...)
}
func (logger *StarLogger) Warning(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprint(str...)
4 years ago
logger.output(LvWarning, strs)
5 years ago
}
4 years ago
func Warning(str ...interface{}) {
Std.Warning(str...)
}
func (logger *StarLogger) Warningf(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintf(format, str...)
4 years ago
logger.output(LvWarning, strs)
5 years ago
}
4 years ago
func Warningf(format string, str ...interface{}) {
Std.Warningf(format, str...)
}
func (logger *StarLogger) Warningln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintln(str...)
4 years ago
logger.output(LvWarning, strs)
5 years ago
}
4 years ago
func Warningln(str ...interface{}) {
Std.Warningln(str...)
}
func (logger *StarLogger) Error(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprint(str...)
4 years ago
logger.output(LvError, strs)
5 years ago
}
4 years ago
func Error(str ...interface{}) {
Std.Error(str...)
}
func (logger *StarLogger) Errorf(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintf(format, str...)
4 years ago
logger.output(LvError, strs)
5 years ago
}
4 years ago
func Errorf(format string, str ...interface{}) {
Std.Errorf(format, str...)
}
func (logger *StarLogger) Errorln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintln(str...)
4 years ago
logger.output(LvError, strs)
5 years ago
}
4 years ago
func Errorln(str ...interface{}) {
Std.Errorln(str...)
}
func (logger *StarLogger) Critical(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprint(str...)
4 years ago
logger.output(LvCritical, strs)
5 years ago
}
4 years ago
func Critical(str ...interface{}) {
Std.Critical(str...)
}
func (logger *StarLogger) Criticalf(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintf(format, str...)
4 years ago
logger.output(LvCritical, strs)
5 years ago
}
4 years ago
func Criticalf(format string, str ...interface{}) {
Std.Criticalf(format, str...)
}
func (logger *StarLogger) Criticalln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintln(str...)
4 years ago
logger.output(LvCritical, strs)
5 years ago
}
4 years ago
func Criticalln(str ...interface{}) {
Std.Criticalln(str...)
}
func (logger *StarLogger) Fatal(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprint(str...)
4 years ago
logger.output(LvFatal, strs)
5 years ago
os.Exit(9)
}
4 years ago
func Fatal(str ...interface{}) {
Std.Fatal(str...)
}
func (logger *StarLogger) Fatalf(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintf(format, str...)
4 years ago
logger.output(LvFatal, strs)
5 years ago
os.Exit(9)
}
4 years ago
func Fatalf(format string, str ...interface{}) {
Std.Fatalf(format, str...)
}
func (logger *StarLogger) Fatalln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintln(str...)
4 years ago
logger.output(LvFatal, strs)
5 years ago
os.Exit(9)
}
4 years ago
func Fatalln(str ...interface{}) {
Std.Fatalln(str...)
}
func (logger *StarLogger) Panic(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprint(str...)
4 years ago
logger.output(LvPanic, strs)
5 years ago
panic(str)
}
4 years ago
func Panic(str ...interface{}) {
Std.Panic(str...)
}
func (logger *StarLogger) Panicf(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintf(format, str...)
4 years ago
logger.output(LvPanic, strs)
panic(fmt.Sprintf(format, str...))
}
func Panicf(format string, str ...interface{}) {
Std.Panicf(format, str...)
}
func (logger *StarLogger) Panicln(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprintln(str...)
logger.output(LvPanic, strs)
panic(fmt.Sprintln(str...))
5 years ago
}
func Panicln(str ...interface{}) {
4 years ago
Std.Panicln(str...)
}
func (logger *StarLogger) Print(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprint(str...)
logger.OutPut(strs)
}
func Print(str ...interface{}) {
Std.Print(str...)
}
func (logger *StarLogger) Printf(format string, str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
strs := fmt.Sprintf(format, str...)
logger.OutPut(strs)
}
func Printf(format string, str ...interface{}) {
Std.Printf(format, str...)
}
func (logger *StarLogger) Println(str ...interface{}) {
logger.lock.Lock()
defer logger.lock.Unlock()
5 years ago
strs := fmt.Sprintln(str...)
4 years ago
logger.OutPut(strs)
}
func Println(str ...interface{}) {
Std.Println(str...)
}
func StdPrint(c []Attr, str ...interface{}) {
Std.lock.Lock()
defer Std.lock.Unlock()
colorstr := NewColor(c...)
colorstr.Print(str...)
if Std.StdFuncColor && Std.HandleFunc != nil {
go Std.HandleFunc(c, fmt.Sprint(str...))
}
}
func StdPrintf(c []Attr, format string, str ...interface{}) {
Std.lock.Lock()
defer Std.lock.Unlock()
colorstr := NewColor(c...)
colorstr.Printf(format, str...)
if Std.StdFuncColor && Std.HandleFunc != nil {
go Std.HandleFunc(c, fmt.Sprintf(format, str...))
}
}
func StdPrintln(c []Attr, str ...interface{}) {
Std.lock.Lock()
defer Std.lock.Unlock()
colorstr := NewColor(c...)
colorstr.Println(str...)
if Std.StdFuncColor && Std.HandleFunc != nil {
go Std.HandleFunc(c, fmt.Sprintln(str...))
}
}
func (logger *StarLogger) SwitchOut(out io.Writer) {
logger.lock.Lock()
defer logger.lock.Unlock()
logger.switching = true
logger.out = out
logger.switching = false
5 years ago
}
func SetLogFile(path string) error {
var err error
4 years ago
Std.out, err = os.Create(path)
Std.switching = false
5 years ago
return err
}
func SwitchFile(path string) error {
4 years ago
Std.switching = true
5 years ago
return SetLogFile(path)
5 years ago
}