Golang log库 源码阅读与分析

Golang的log库。。。还是太简单,简单瞄了一下实现,差不多就是这样:

package main

import (
	"fmt"
	"io"
	"os"
	"sync"
)

type Logger struct {
	mu  sync.Mutex
	out io.Writer
}

func New(out io.Writer) *Logger {
	return &Logger{out: out}
}

func (l *Logger) output(format string, v ...interface{}) {
	l.mu.Lock()
	defer l.mu.Unlock()

	l.out.Write([]byte(fmt.Sprintf(format, v...)))
}

func (l *Logger) Printf(format string, v ...interface{}) {
	l.output(format, v...)
}

func (l *Logger) Panicf(format string, v ...interface{}) {
	l.output(format, v...)
	panic("traceback:\n")
}

func (l *Logger) Fatalf(format string, v ...interface{}) {
	l.output(format, v...)
	os.Exit(1)
}

var std = New(os.Stderr)

func Printf(format string, v ...interface{}) {
	std.Printf(format, v...)
}

func Panicf(format string, v ...interface{}) {
	std.Panicf(format, v...)
}

func Fatalf(format string, v ...interface{}) {
	std.Fatalf(format, v...)
}

测试用例:

package main

func main() {
    std.Printf("this is: %d\n", 1)

    std.Panicf("bye\n")
}

运行结果:

root@arch test: ./main          
this is: 1                      
bye                             
panic: traceback:               


goroutine 1 [running]:          
main.(*Logger).Panicf(0xc42006a060, 0x4a7115, 0x4, 0x0, 0x0, 0x0)                                                                
        /root/test/mylog.go:32 +0xa8                            
main.main()                     
        /root/test/main.go:6 +0xeb                              
root@arch test:                 


更多文章
  • SEO学习笔记
  • 密码技术简明教程(一):对称加密和非对称加密
  • Kubernetes 笔记
  • go mod 和 logrus 路径大小写的问题
  • Flask自动加载Blueprint
  • 在KVM里安装Minikube
  • 搞定面试中的系统设计题
  • Crontab + Sendmail实现定时任务并且通知
  • Nginx设置Referer来防止盗图
  • Graphviz dot简明教程
  • jQuery简明教程
  • Python RQ(Redis Queue)添加gevent支持
  • 读《超级运营术》- 如何做社区?
  • 技术人,光有技术是不行的
  • 搭建aria2服务器