Remove LevelDBSnapshot from LevelDBTransaction (#1334)

* Remove leveldb snapshot from LevelDBTransaction

* Update transactions_test.go to represent the new Transaction logic
This commit is contained in:
Elichai Turkel 2020-12-31 17:58:01 +02:00 committed by GitHub
parent 6fa3aa1dca
commit 51625e7967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 44 deletions

View File

@ -8,37 +8,25 @@ import (
)
// LevelDBTransaction is a thin wrapper around native leveldb
// batches and snapshots. It supports both get and put.
// batches. It supports both get and put.
//
// Snapshots provide a frozen view of the database at the moment
// the transaction begins. On the other hand, batches provide a
// mechanism to combine several database writes into one write,
// which seamlessly rolls back the database in case any individual
// write fails. Together the two forms a logic unit similar
// to what one might expect from a classic database transaction.
// Note that reads are done from the Database directly, so if another transaction changed the data,
// you will read the new data, and not the one from the time the transaction was opened/
//
// Note: Transactions provide data consistency over the state of
// the database as it was when the transaction started. As it's
// currently implemented, if one puts data into the transaction
// Note: As it's currently implemented, if one puts data into the transaction
// then it will not be available to get within the same transaction.
type LevelDBTransaction struct {
db *LevelDB
snapshot *leveldb.Snapshot
batch *leveldb.Batch
isClosed bool
}
// Begin begins a new transaction.
func (db *LevelDB) Begin() (database.Transaction, error) {
snapshot, err := db.ldb.GetSnapshot()
if err != nil {
return nil, errors.WithStack(err)
}
batch := new(leveldb.Batch)
transaction := &LevelDBTransaction{
db: db,
snapshot: snapshot,
batch: batch,
isClosed: false,
}
@ -53,7 +41,6 @@ func (tx *LevelDBTransaction) Commit() error {
}
tx.isClosed = true
tx.snapshot.Release()
return errors.WithStack(tx.db.ldb.Write(tx.batch, &opt.WriteOptions{Sync: true}))
}
@ -65,7 +52,6 @@ func (tx *LevelDBTransaction) Rollback() error {
}
tx.isClosed = true
tx.snapshot.Release()
tx.batch.Reset()
return nil
}
@ -97,16 +83,7 @@ func (tx *LevelDBTransaction) Get(key *database.Key) ([]byte, error) {
if tx.isClosed {
return nil, errors.New("cannot get from a closed transaction")
}
data, err := tx.snapshot.Get(key.Bytes(), nil)
if err != nil {
if errors.Is(err, leveldb.ErrNotFound) {
return nil, errors.Wrapf(database.ErrNotFound,
"key %s not found", key)
}
return nil, errors.WithStack(err)
}
return data, nil
return tx.db.Get(key)
}
// Has returns true if the database does contains the
@ -115,9 +92,7 @@ func (tx *LevelDBTransaction) Has(key *database.Key) (bool, error) {
if tx.isClosed {
return false, errors.New("cannot has from a closed transaction")
}
res, err := tx.snapshot.Has(key.Bytes(), nil)
return res, errors.WithStack(err)
return tx.db.Has(key)
}
// Delete deletes the value for the given key. Will not

View File

@ -130,15 +130,14 @@ func testTransactionGet(t *testing.T, db database.Database, testName string) {
"unexpectedly failed: %s", testName, err)
}
// Make sure that the new value doesn't exist inside the transaction
_, err = dbTx.Get(key2)
if err == nil {
// Make sure that the new value exists inside the transaction
newValue2, err := dbTx.Get(key2)
if err != nil {
t.Fatalf("%s: Get "+
"unexpectedly succeeded", testName)
"unexpectedly failed: %v", testName, err)
}
if !database.IsNotFoundError(err) {
t.Fatalf("%s: Get "+
"returned wrong error: %s", testName, err)
if !bytes.Equal(value2, newValue2) {
t.Fatalf("Expected %x and %x to be the same", value2, newValue2)
}
// Put a new value into the transaction
@ -221,15 +220,15 @@ func testTransactionHas(t *testing.T, db database.Database, testName string) {
"unexpectedly failed: %s", testName, err)
}
// Make sure that the new value doesn't exist inside the transaction
// Make sure that the new value exists inside the transaction
exists, err = dbTx.Has(key2)
if err != nil {
t.Fatalf("%s: Has "+
"unexpectedly failed: %s", testName, err)
}
if exists {
if !exists {
t.Fatalf("%s: Has "+
"unexpectedly returned that the value exists", testName)
"unexpectedly returned that the value doesn't exists", testName)
}
}
@ -296,15 +295,15 @@ func testTransactionDelete(t *testing.T, db database.Database, testName string)
"unexpectedly returned that the value exists", testName)
}
// Make sure that the second transaction was no affected
// Make sure that the second transaction is also affected
exists, err = dbTx2.Has(key)
if err != nil {
t.Fatalf("%s: Has "+
"unexpectedly failed: %s", testName, err)
}
if !exists {
if exists {
t.Fatalf("%s: Has "+
"unexpectedly returned that the value does not exist", testName)
"unexpectedly returned that the value exists", testName)
}
}