2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2013-08-27 15:48:58 +00:00
|
|
|
package logs
|
|
|
|
|
|
|
|
import (
|
2014-11-21 10:12:39 +00:00
|
|
|
"bytes"
|
2013-08-27 15:48:58 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2014-11-21 10:12:39 +00:00
|
|
|
"io"
|
2013-08-27 15:48:58 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
// fileLogWriter implements LoggerInterface.
|
2013-12-30 15:32:57 +00:00
|
|
|
// It writes messages by lines limit, file size limit, or time frequency.
|
2015-09-11 15:08:24 +00:00
|
|
|
type fileLogWriter struct {
|
2016-01-13 01:21:55 +00:00
|
|
|
sync.Mutex // write log order by order and atomic incr maxLinesCurLines and maxSizeCurSize
|
2013-08-27 15:48:58 +00:00
|
|
|
// The opened file
|
2016-01-13 01:21:55 +00:00
|
|
|
Filename string `json:"filename"`
|
|
|
|
fileWriter *os.File
|
2013-08-27 15:48:58 +00:00
|
|
|
|
2016-01-13 01:21:55 +00:00
|
|
|
// Rotate at line
|
2016-01-12 11:10:08 +00:00
|
|
|
MaxLines int `json:"maxlines"`
|
|
|
|
maxLinesCurLines int
|
2013-08-27 15:48:58 +00:00
|
|
|
|
|
|
|
// Rotate at size
|
2016-01-12 11:25:33 +00:00
|
|
|
MaxSize int `json:"maxsize"`
|
|
|
|
maxSizeCurSize int
|
2013-08-27 15:48:58 +00:00
|
|
|
|
|
|
|
// Rotate daily
|
2016-01-12 11:25:33 +00:00
|
|
|
Daily bool `json:"daily"`
|
|
|
|
MaxDays int64 `json:"maxdays"`
|
|
|
|
dailyOpenDate int
|
2013-08-27 15:48:58 +00:00
|
|
|
|
2016-01-12 11:25:33 +00:00
|
|
|
Rotate bool `json:"rotate"`
|
2013-08-27 15:48:58 +00:00
|
|
|
|
2016-01-12 11:25:33 +00:00
|
|
|
Level int `json:"level"`
|
2015-09-18 04:12:02 +00:00
|
|
|
|
2016-01-12 11:25:33 +00:00
|
|
|
Perm os.FileMode `json:"perm"`
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
// NewFileWriter create a FileLogWriter returning as LoggerInterface.
|
|
|
|
func newFileWriter() Logger {
|
|
|
|
w := &fileLogWriter{
|
2016-01-13 01:21:55 +00:00
|
|
|
Filename: "",
|
|
|
|
MaxLines: 1000000,
|
|
|
|
MaxSize: 1 << 28, //256 MB
|
|
|
|
Daily: true,
|
|
|
|
MaxDays: 7,
|
|
|
|
Rotate: true,
|
|
|
|
Level: LevelTrace,
|
|
|
|
Perm: 0660,
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
return w
|
|
|
|
}
|
|
|
|
|
2013-12-30 15:32:57 +00:00
|
|
|
// Init file logger with json config.
|
2016-01-12 11:10:08 +00:00
|
|
|
// jsonConfig like:
|
2013-12-30 15:32:57 +00:00
|
|
|
// {
|
2013-08-27 15:48:58 +00:00
|
|
|
// "filename":"logs/beego.log",
|
2016-01-12 11:10:08 +00:00
|
|
|
// "maxLines":10000,
|
2013-08-27 15:48:58 +00:00
|
|
|
// "maxsize":1<<30,
|
|
|
|
// "daily":true,
|
2016-01-12 11:10:08 +00:00
|
|
|
// "maxDays":15,
|
2015-09-18 04:12:02 +00:00
|
|
|
// "rotate":true,
|
2016-01-12 11:10:08 +00:00
|
|
|
// "perm":0600
|
2013-12-30 15:32:57 +00:00
|
|
|
// }
|
2016-01-12 11:10:08 +00:00
|
|
|
func (w *fileLogWriter) Init(jsonConfig string) error {
|
|
|
|
err := json.Unmarshal([]byte(jsonConfig), w)
|
2013-08-27 15:48:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-12-19 10:15:46 +00:00
|
|
|
if len(w.Filename) == 0 {
|
2013-08-27 15:48:58 +00:00
|
|
|
return errors.New("jsonconfig must have filename")
|
|
|
|
}
|
2014-04-02 15:43:37 +00:00
|
|
|
err = w.startLogger()
|
2013-08-27 15:48:58 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-12-30 15:32:57 +00:00
|
|
|
// start file logger. create log file and set to locker-inside file writer.
|
2015-09-11 15:08:24 +00:00
|
|
|
func (w *fileLogWriter) startLogger() error {
|
2016-01-13 00:21:44 +00:00
|
|
|
file, err := w.createLogFile()
|
2013-08-27 15:48:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-01-13 01:21:55 +00:00
|
|
|
if w.fileWriter != nil {
|
|
|
|
w.fileWriter.Close()
|
|
|
|
}
|
|
|
|
w.fileWriter = file
|
2015-02-23 03:42:46 +00:00
|
|
|
return w.initFd()
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
2016-01-13 01:21:55 +00:00
|
|
|
func (w *fileLogWriter) needRotate(size int, day int) bool {
|
|
|
|
return (w.MaxLines > 0 && w.maxLinesCurLines >= w.MaxLines) ||
|
|
|
|
(w.MaxSize > 0 && w.maxSizeCurSize >= w.MaxSize) ||
|
|
|
|
(w.Daily && day != w.dailyOpenDate)
|
|
|
|
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
// WriteMsg write logger message into file.
|
|
|
|
func (w *fileLogWriter) WriteMsg(msg string, level int) error {
|
2014-07-11 09:15:34 +00:00
|
|
|
if level > w.Level {
|
2013-08-27 15:48:58 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-01-12 14:32:36 +00:00
|
|
|
//2016/01/12 21:34:33
|
|
|
|
now := time.Now()
|
|
|
|
y, mo, d := now.Date()
|
|
|
|
h, mi, s := now.Clock()
|
|
|
|
//len(2006/01/02 15:03:04)==19
|
2016-01-13 00:21:44 +00:00
|
|
|
var buf [20]byte
|
2016-01-12 14:32:36 +00:00
|
|
|
t := 3
|
|
|
|
for y >= 10 {
|
|
|
|
p := y / 10
|
|
|
|
buf[t] = byte('0' + y - p*10)
|
|
|
|
y = p
|
|
|
|
t--
|
|
|
|
}
|
|
|
|
buf[0] = byte('0' + y)
|
|
|
|
buf[4] = '/'
|
|
|
|
if mo > 9 {
|
|
|
|
buf[5] = '1'
|
|
|
|
buf[6] = byte('0' + mo - 9)
|
|
|
|
} else {
|
|
|
|
buf[5] = '0'
|
|
|
|
buf[6] = byte('0' + mo)
|
|
|
|
}
|
|
|
|
buf[7] = '/'
|
|
|
|
t = d / 10
|
|
|
|
buf[8] = byte('0' + t)
|
|
|
|
buf[9] = byte('0' + d - t*10)
|
|
|
|
buf[10] = ' '
|
|
|
|
t = h / 10
|
|
|
|
buf[11] = byte('0' + t)
|
|
|
|
buf[12] = byte('0' + h - t*10)
|
|
|
|
buf[13] = ':'
|
|
|
|
t = mi / 10
|
|
|
|
buf[14] = byte('0' + t)
|
|
|
|
buf[15] = byte('0' + mi - t*10)
|
|
|
|
buf[16] = ':'
|
|
|
|
t = s / 10
|
|
|
|
buf[17] = byte('0' + t)
|
|
|
|
buf[18] = byte('0' + s - t*10)
|
2016-01-13 01:21:55 +00:00
|
|
|
buf[19] = ' '
|
2016-01-12 14:32:36 +00:00
|
|
|
msg = string(buf[0:]) + msg + "\n"
|
2016-01-12 14:33:52 +00:00
|
|
|
|
2016-01-13 01:21:55 +00:00
|
|
|
if w.Rotate {
|
|
|
|
if w.needRotate(len(msg), d) {
|
|
|
|
w.Lock()
|
|
|
|
if w.needRotate(len(msg), d) {
|
|
|
|
if err := w.doRotate(); err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "FileLogWriter(%q): %s\n", w.Filename, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
w.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
w.Lock()
|
|
|
|
_, err := w.fileWriter.Write([]byte(msg))
|
|
|
|
if err == nil {
|
|
|
|
w.maxLinesCurLines++
|
|
|
|
w.maxSizeCurSize += len(msg)
|
|
|
|
}
|
|
|
|
w.Unlock()
|
2016-01-12 14:33:52 +00:00
|
|
|
return err
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
func (w *fileLogWriter) createLogFile() (*os.File, error) {
|
2013-08-27 15:48:58 +00:00
|
|
|
// Open the log file
|
2015-09-18 04:12:02 +00:00
|
|
|
fd, err := os.OpenFile(w.Filename, os.O_WRONLY|os.O_APPEND|os.O_CREATE, w.Perm)
|
2013-08-27 15:48:58 +00:00
|
|
|
return fd, err
|
|
|
|
}
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
func (w *fileLogWriter) initFd() error {
|
2016-01-13 00:21:44 +00:00
|
|
|
fd := w.fileWriter
|
2016-01-12 11:44:28 +00:00
|
|
|
fInfo, err := fd.Stat()
|
2013-08-27 15:48:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get stat err: %s\n", err)
|
|
|
|
}
|
2016-01-12 11:44:28 +00:00
|
|
|
w.maxSizeCurSize = int(fInfo.Size())
|
2016-01-12 11:10:08 +00:00
|
|
|
w.dailyOpenDate = time.Now().Day()
|
|
|
|
w.maxLinesCurLines = 0
|
2016-01-12 11:44:28 +00:00
|
|
|
if fInfo.Size() > 0 {
|
2014-11-21 10:12:39 +00:00
|
|
|
count, err := w.lines()
|
2013-08-27 15:48:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-01-12 11:10:08 +00:00
|
|
|
w.maxLinesCurLines = count
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
func (w *fileLogWriter) lines() (int, error) {
|
2014-11-21 10:12:39 +00:00
|
|
|
fd, err := os.Open(w.Filename)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer fd.Close()
|
|
|
|
|
|
|
|
buf := make([]byte, 32768) // 32k
|
|
|
|
count := 0
|
|
|
|
lineSep := []byte{'\n'}
|
|
|
|
|
|
|
|
for {
|
|
|
|
c, err := fd.Read(buf)
|
|
|
|
if err != nil && err != io.EOF {
|
|
|
|
return count, err
|
|
|
|
}
|
|
|
|
|
|
|
|
count += bytes.Count(buf[:c], lineSep)
|
|
|
|
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return count, nil
|
|
|
|
}
|
|
|
|
|
2013-12-30 15:32:57 +00:00
|
|
|
// DoRotate means it need to write file in new file.
|
2015-07-15 09:00:48 +00:00
|
|
|
// new file name like xx.2013-01-01.2.log
|
2016-01-13 01:21:55 +00:00
|
|
|
func (w *fileLogWriter) doRotate() error {
|
2013-12-19 10:15:46 +00:00
|
|
|
_, err := os.Lstat(w.Filename)
|
2016-01-13 01:24:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// file exists
|
|
|
|
// Find the next available number
|
|
|
|
num := 1
|
|
|
|
fName := ""
|
|
|
|
suffix := filepath.Ext(w.Filename)
|
|
|
|
filenameOnly := strings.TrimSuffix(w.Filename, suffix)
|
|
|
|
if suffix == "" {
|
|
|
|
suffix = ".log"
|
|
|
|
}
|
|
|
|
for ; err == nil && num <= 999; num++ {
|
|
|
|
fName = filenameOnly + fmt.Sprintf(".%s.%03d%s", time.Now().Format("2006-01-02"), num, suffix)
|
|
|
|
_, err = os.Lstat(fName)
|
|
|
|
}
|
|
|
|
// return error if the last file checked still existed
|
2016-01-12 11:44:28 +00:00
|
|
|
if err == nil {
|
2016-01-13 01:24:27 +00:00
|
|
|
return fmt.Errorf("Rotate: Cannot find free log number to rename %s\n", w.Filename)
|
|
|
|
}
|
2013-08-27 15:48:58 +00:00
|
|
|
|
2016-01-13 01:24:27 +00:00
|
|
|
// close fileWriter before rename
|
|
|
|
w.fileWriter.Close()
|
2013-08-27 15:48:58 +00:00
|
|
|
|
2016-01-13 01:24:27 +00:00
|
|
|
// Rename the file to its new found name
|
|
|
|
// even if occurs error,we MUST guarantee to restart new logger
|
|
|
|
renameErr := os.Rename(w.Filename, fName)
|
|
|
|
// re-start logger
|
|
|
|
startLoggerErr := w.startLogger()
|
|
|
|
go w.deleteOldLog()
|
2016-01-13 01:21:55 +00:00
|
|
|
|
2016-01-13 01:24:27 +00:00
|
|
|
if startLoggerErr != nil {
|
|
|
|
return fmt.Errorf("Rotate StartLogger: %s\n", startLoggerErr)
|
|
|
|
}
|
|
|
|
if renameErr != nil {
|
|
|
|
return fmt.Errorf("Rotate: %s\n", renameErr)
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
return nil
|
2016-01-13 01:24:27 +00:00
|
|
|
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
func (w *fileLogWriter) deleteOldLog() {
|
2013-12-19 11:04:57 +00:00
|
|
|
dir := filepath.Dir(w.Filename)
|
2014-08-26 04:25:59 +00:00
|
|
|
filepath.Walk(dir, func(path string, info os.FileInfo, err error) (returnErr error) {
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
2016-01-12 14:32:36 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "Unable to delete old log '%s', error: %v\n", path, r)
|
2014-08-26 04:25:59 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2016-01-12 11:10:08 +00:00
|
|
|
if !info.IsDir() && info.ModTime().Unix() < (time.Now().Unix()-60*60*24*w.MaxDays) {
|
2013-12-19 10:15:46 +00:00
|
|
|
if strings.HasPrefix(filepath.Base(path), filepath.Base(w.Filename)) {
|
2013-08-27 15:48:58 +00:00
|
|
|
os.Remove(path)
|
|
|
|
}
|
|
|
|
}
|
2014-08-26 04:25:59 +00:00
|
|
|
return
|
2013-08-27 15:48:58 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-01-12 11:10:08 +00:00
|
|
|
// Destroy close the file description, close file writer.
|
2015-09-11 15:08:24 +00:00
|
|
|
func (w *fileLogWriter) Destroy() {
|
2016-01-13 00:21:44 +00:00
|
|
|
w.fileWriter.Close()
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|
|
|
|
|
2015-09-11 15:08:24 +00:00
|
|
|
// Flush flush file logger.
|
2013-12-30 15:32:57 +00:00
|
|
|
// there are no buffering messages in file logger in memory.
|
|
|
|
// flush file means sync file from disk.
|
2015-09-11 15:08:24 +00:00
|
|
|
func (w *fileLogWriter) Flush() {
|
2016-01-13 00:21:44 +00:00
|
|
|
w.fileWriter.Sync()
|
2013-11-27 09:50:10 +00:00
|
|
|
}
|
|
|
|
|
2013-08-27 15:48:58 +00:00
|
|
|
func init() {
|
2015-09-11 15:08:24 +00:00
|
|
|
Register("file", newFileWriter)
|
2013-08-27 15:48:58 +00:00
|
|
|
}
|