ledisdb/store/writebatch.go

137 lines
2.2 KiB
Go
Raw Normal View History

2014-07-25 13:58:00 +04:00
package store
import (
2015-05-04 17:42:28 +03:00
"time"
2014-07-25 13:58:00 +04:00
"github.com/siddontang/ledisdb/store/driver"
2014-11-20 17:52:29 +03:00
"github.com/syndtr/goleveldb/leveldb"
2014-07-25 13:58:00 +04:00
)
2014-10-15 06:18:20 +04:00
type WriteBatch struct {
2014-10-30 11:06:44 +03:00
wb driver.IWriteBatch
st *Stat
2014-10-16 05:35:35 +04:00
2014-10-31 15:33:13 +03:00
putNum int64
deleteNum int64
db *DB
2014-11-19 04:30:28 +03:00
data *BatchData
2014-10-15 06:18:20 +04:00
}
2014-11-10 10:31:36 +03:00
func (wb *WriteBatch) Close() {
wb.wb.Close()
}
2014-10-15 06:18:20 +04:00
func (wb *WriteBatch) Put(key []byte, value []byte) {
2014-10-31 15:33:13 +03:00
wb.putNum++
2014-10-16 05:35:35 +04:00
wb.wb.Put(key, value)
2014-10-15 06:18:20 +04:00
}
func (wb *WriteBatch) Delete(key []byte) {
2014-10-31 15:33:13 +03:00
wb.deleteNum++
2014-10-16 05:35:35 +04:00
wb.wb.Delete(key)
2014-10-15 06:18:20 +04:00
}
func (wb *WriteBatch) Commit() error {
wb.st.BatchCommitNum.Add(1)
2014-10-31 15:33:13 +03:00
wb.st.PutNum.Add(wb.putNum)
wb.st.DeleteNum.Add(wb.deleteNum)
wb.putNum = 0
wb.deleteNum = 0
2014-10-30 11:06:44 +03:00
var err error
t := time.Now()
2014-10-16 05:35:35 +04:00
if wb.db == nil || !wb.db.needSyncCommit() {
2014-10-30 11:06:44 +03:00
err = wb.wb.Commit()
2014-10-16 05:35:35 +04:00
} else {
2014-10-30 11:06:44 +03:00
err = wb.wb.SyncCommit()
2014-10-16 05:35:35 +04:00
}
2014-10-30 11:06:44 +03:00
wb.st.BatchCommitTotalTime.Add(time.Now().Sub(t))
return err
2014-10-15 06:18:20 +04:00
}
func (wb *WriteBatch) Rollback() error {
2014-10-31 15:33:13 +03:00
wb.putNum = 0
wb.deleteNum = 0
2014-10-16 05:35:35 +04:00
return wb.wb.Rollback()
2014-07-25 13:58:00 +04:00
}
2014-11-10 06:07:33 +03:00
// the data will be undefined after commit or rollback
func (wb *WriteBatch) BatchData() *BatchData {
2014-11-10 06:07:33 +03:00
data := wb.wb.Data()
2014-11-19 04:30:28 +03:00
if wb.data == nil {
wb.data = new(BatchData)
}
2014-11-19 04:30:28 +03:00
wb.data.Load(data)
return wb.data
}
func (wb *WriteBatch) Data() []byte {
b := wb.BatchData()
return b.Data()
2014-11-10 06:07:33 +03:00
}
/*
see leveldb batch data format for more information
*/
type BatchData struct {
leveldb.Batch
}
func NewBatchData(data []byte) (*BatchData, error) {
b := new(BatchData)
if err := b.Load(data); err != nil {
return nil, err
}
return b, nil
}
func (d *BatchData) Data() []byte {
return d.Dump()
}
func (d *BatchData) Reset() {
d.Batch.Reset()
}
2014-11-10 06:07:33 +03:00
type BatchDataReplay interface {
Put(key, value []byte)
Delete(key []byte)
}
type BatchItem struct {
Key []byte
Value []byte
}
type batchItems []BatchItem
func (bs *batchItems) Put(key, value []byte) {
*bs = append(*bs, BatchItem{key, value})
}
func (bs *batchItems) Delete(key []byte) {
*bs = append(*bs, BatchItem{key, nil})
}
func (d *BatchData) Replay(r BatchDataReplay) error {
return d.Batch.Replay(r)
}
func (d *BatchData) Items() ([]BatchItem, error) {
is := make(batchItems, 0, d.Len())
if err := d.Replay(&is); err != nil {
return nil, err
}
return []BatchItem(is), nil
}