ledisdb/ledis/binlog.go

295 lines
5.4 KiB
Go
Raw Normal View History

package ledis
2014-06-03 10:08:57 +04:00
import (
"bufio"
"encoding/binary"
2014-06-03 10:08:57 +04:00
"fmt"
"github.com/siddontang/go-log/log"
"github.com/siddontang/ledisdb/config"
2014-06-03 10:08:57 +04:00
"io/ioutil"
"os"
"path"
"strconv"
"strings"
"time"
2014-06-03 10:08:57 +04:00
)
/*
index file format:
ledis-bin.00001
ledis-bin.00002
ledis-bin.00003
log file format
timestamp(bigendian uint32, seconds)|PayloadLen(bigendian uint32)|PayloadData
2014-06-03 10:08:57 +04:00
*/
type BinLog struct {
path string
cfg *config.BinLogConfig
2014-06-03 10:08:57 +04:00
logFile *os.File
logWb *bufio.Writer
indexName string
logNames []string
2014-06-09 13:23:32 +04:00
lastLogIndex int64
}
func NewBinLog(cfg *config.Config) (*BinLog, error) {
l := new(BinLog)
2014-06-03 10:08:57 +04:00
l.cfg = &cfg.BinLog
l.cfg.Adjust()
l.path = path.Join(cfg.DataDir, "bin_log")
if err := os.MkdirAll(l.path, os.ModePerm); err != nil {
2014-06-03 10:08:57 +04:00
return nil, err
}
l.logNames = make([]string, 0, 16)
if err := l.loadIndex(); err != nil {
return nil, err
}
return l, nil
}
func (l *BinLog) flushIndex() error {
2014-06-03 10:08:57 +04:00
data := strings.Join(l.logNames, "\n")
bakName := fmt.Sprintf("%s.bak", l.indexName)
f, err := os.OpenFile(bakName, os.O_WRONLY|os.O_CREATE, 0666)
if err != nil {
log.Error("create binlog bak index error %s", err.Error())
return err
}
if _, err := f.WriteString(data); err != nil {
log.Error("write binlog index error %s", err.Error())
f.Close()
return err
}
f.Close()
if err := os.Rename(bakName, l.indexName); err != nil {
log.Error("rename binlog bak index error %s", err.Error())
return err
}
return nil
}
func (l *BinLog) loadIndex() error {
l.indexName = path.Join(l.path, fmt.Sprintf("ledis-bin.index"))
2014-06-03 10:08:57 +04:00
if _, err := os.Stat(l.indexName); os.IsNotExist(err) {
//no index file, nothing to do
} else {
indexData, err := ioutil.ReadFile(l.indexName)
if err != nil {
return err
}
lines := strings.Split(string(indexData), "\n")
for _, line := range lines {
line = strings.Trim(line, "\r\n ")
if len(line) == 0 {
continue
}
if _, err := os.Stat(path.Join(l.path, line)); err != nil {
2014-06-03 10:08:57 +04:00
log.Error("load index line %s error %s", line, err.Error())
return err
} else {
l.logNames = append(l.logNames, line)
}
}
}
if l.cfg.MaxFileNum > 0 && len(l.logNames) > l.cfg.MaxFileNum {
//remove oldest logfile
if err := l.Purge(len(l.logNames) - l.cfg.MaxFileNum); err != nil {
return err
}
}
var err error
if len(l.logNames) == 0 {
l.lastLogIndex = 1
} else {
lastName := l.logNames[len(l.logNames)-1]
2014-06-09 13:23:32 +04:00
if l.lastLogIndex, err = strconv.ParseInt(path.Ext(lastName)[1:], 10, 64); err != nil {
2014-06-03 10:08:57 +04:00
log.Error("invalid logfile name %s", err.Error())
return err
}
//like mysql, if server restart, a new binlog will create
l.lastLogIndex++
}
return nil
}
func (l *BinLog) getLogFile() string {
2014-06-09 13:23:32 +04:00
return l.FormatLogFileName(l.lastLogIndex)
2014-06-03 10:08:57 +04:00
}
func (l *BinLog) openNewLogFile() error {
2014-06-03 10:08:57 +04:00
var err error
lastName := l.getLogFile()
logPath := path.Join(l.path, lastName)
2014-06-03 10:08:57 +04:00
if l.logFile, err = os.OpenFile(logPath, os.O_CREATE|os.O_WRONLY, 0666); err != nil {
log.Error("open new logfile error %s", err.Error())
return err
}
if l.cfg.MaxFileNum > 0 && len(l.logNames) == l.cfg.MaxFileNum {
l.purge(1)
}
l.logNames = append(l.logNames, lastName)
if l.logWb == nil {
l.logWb = bufio.NewWriterSize(l.logFile, 1024)
} else {
l.logWb.Reset(l.logFile)
}
if err = l.flushIndex(); err != nil {
return err
}
return nil
}
func (l *BinLog) checkLogFileSize() bool {
2014-06-03 10:08:57 +04:00
if l.logFile == nil {
return false
}
st, _ := l.logFile.Stat()
if st.Size() >= int64(l.cfg.MaxFileSize) {
l.lastLogIndex++
l.logFile.Close()
l.logFile = nil
return true
}
return false
}
func (l *BinLog) purge(n int) {
2014-06-03 10:08:57 +04:00
for i := 0; i < n; i++ {
logPath := path.Join(l.path, l.logNames[i])
2014-06-03 10:08:57 +04:00
os.Remove(logPath)
}
copy(l.logNames[0:], l.logNames[n:])
l.logNames = l.logNames[0 : len(l.logNames)-n]
}
func (l *BinLog) Close() {
2014-06-03 10:08:57 +04:00
if l.logFile != nil {
l.logFile.Close()
l.logFile = nil
}
}
func (l *BinLog) LogNames() []string {
2014-06-06 04:30:17 +04:00
return l.logNames
}
func (l *BinLog) LogFileName() string {
2014-06-03 10:08:57 +04:00
return l.getLogFile()
}
func (l *BinLog) LogFilePos() int64 {
2014-06-03 10:08:57 +04:00
if l.logFile == nil {
return 0
} else {
st, _ := l.logFile.Stat()
return st.Size()
}
}
2014-06-09 13:23:32 +04:00
func (l *BinLog) LogFileIndex() int64 {
return l.lastLogIndex
}
func (l *BinLog) FormatLogFileName(index int64) string {
return fmt.Sprintf("ledis-bin.%07d", index)
}
func (l *BinLog) FormatLogFilePath(index int64) string {
return path.Join(l.path, l.FormatLogFileName(index))
2014-06-09 13:23:32 +04:00
}
func (l *BinLog) LogPath() string {
return l.path
2014-06-09 13:23:32 +04:00
}
func (l *BinLog) Purge(n int) error {
2014-06-03 10:08:57 +04:00
if len(l.logNames) == 0 {
return nil
}
if n >= len(l.logNames) {
n = len(l.logNames)
//can not purge current log file
if l.logNames[n-1] == l.getLogFile() {
n = n - 1
}
}
l.purge(n)
return l.flushIndex()
}
func (l *BinLog) Log(args ...[]byte) error {
2014-06-03 10:08:57 +04:00
var err error
if l.logFile == nil {
if err = l.openNewLogFile(); err != nil {
return err
}
}
//we treat log many args as a batch, so use same createTime
createTime := uint32(time.Now().Unix())
2014-06-03 10:08:57 +04:00
for _, data := range args {
payLoadLen := uint32(len(data))
if err := binary.Write(l.logWb, binary.BigEndian, createTime); err != nil {
return err
}
if err := binary.Write(l.logWb, binary.BigEndian, payLoadLen); err != nil {
2014-06-03 10:08:57 +04:00
return err
}
if _, err := l.logWb.Write(data); err != nil {
return err
}
2014-06-03 10:08:57 +04:00
}
if err = l.logWb.Flush(); err != nil {
log.Error("write log error %s", err.Error())
return err
}
l.checkLogFileSize()
return nil
}