leveldb batch support data

optimize later
This commit is contained in:
siddontang 2014-11-10 11:07:21 +08:00
parent c0f8a436a1
commit 38e5d7262c
2 changed files with 34 additions and 8 deletions

View File

@ -7,22 +7,45 @@ package leveldb
import "C"
import (
"github.com/siddontang/goleveldb/leveldb"
"unsafe"
)
/*
It's not easy to let leveldb support Data() function like rocksdb,
so here, we will use goleveldb batch instead
later optimize
*/
type WriteBatch struct {
db *DB
wbatch *C.leveldb_writebatch_t
gbatch *leveldb.Batch
}
func newWriteBatch(db *DB) *WriteBatch {
w := new(WriteBatch)
w.db = db
w.wbatch = C.leveldb_writebatch_create()
w.gbatch = new(leveldb.Batch)
return w
}
func (w *WriteBatch) Close() error {
C.leveldb_writebatch_destroy(w.wbatch)
w.wbatch = nil
w.gbatch = nil
return nil
}
func (w *WriteBatch) Put(key, value []byte) {
w.gbatch.Put(key, value)
var k, v *C.char
if len(key) != 0 {
k = (*C.char)(unsafe.Pointer(&key[0]))
@ -38,20 +61,29 @@ func (w *WriteBatch) Put(key, value []byte) {
}
func (w *WriteBatch) Delete(key []byte) {
w.gbatch.Delete(key)
C.leveldb_writebatch_delete(w.wbatch,
(*C.char)(unsafe.Pointer(&key[0])), C.size_t(len(key)))
}
func (w *WriteBatch) Commit() error {
w.gbatch.Reset()
return w.commit(w.db.writeOpts)
}
func (w *WriteBatch) SyncCommit() error {
w.gbatch.Reset()
return w.commit(w.db.syncOpts)
}
func (w *WriteBatch) Rollback() error {
C.leveldb_writebatch_clear(w.wbatch)
w.gbatch.Reset()
return nil
}
@ -65,6 +97,5 @@ func (w *WriteBatch) commit(wb *WriteOptions) error {
}
func (w *WriteBatch) Data() []byte {
//todo later
return nil
return w.gbatch.Dump()
}

View File

@ -182,12 +182,7 @@ func (db *DB) SyncDelete(key []byte) error {
}
func (db *DB) NewWriteBatch() driver.IWriteBatch {
wb := &WriteBatch{
db: db,
wbatch: C.leveldb_writebatch_create(),
}
return wb
return newWriteBatch(db)
}
func (db *DB) NewIterator() driver.IIterator {