OSDN Git Service

update
[bytom/vapor.git] / account / utxo_keeper.go
index cd9beea..57d5d68 100644 (file)
@@ -3,15 +3,11 @@ package account
 import (
        "bytes"
        "container/list"
-       "encoding/json"
        "sort"
        "sync"
        "sync/atomic"
        "time"
 
-       log "github.com/sirupsen/logrus"
-
-       dbm "github.com/vapor/database/leveldb"
        "github.com/vapor/errors"
        "github.com/vapor/protocol/bc"
 )
@@ -22,6 +18,7 @@ const desireUtxoCount = 5
 var (
        ErrInsufficient = errors.New("reservation found insufficient funds")
        ErrImmature     = errors.New("reservation found immature funds")
+       ErrVoteLock     = errors.New("Locked by the vote")
        ErrReserved     = errors.New("reservation found outputs already reserved")
        ErrMatchUTXO    = errors.New("can't find utxo with given hash")
        ErrReservation  = errors.New("couldn't find reservation")
@@ -55,7 +52,7 @@ type utxoKeeper struct {
        // `sync/atomic` expects the first word in an allocated struct to be 64-bit
        // aligned on both ARM and x86-32. See https://goo.gl/zW7dgq for more details.
        nextIndex     uint64
-       db            dbm.DB
+       store         AccountStorer
        mtx           sync.RWMutex
        currentHeight func() uint64
 
@@ -64,9 +61,9 @@ type utxoKeeper struct {
        reservations map[uint64]*reservation
 }
 
-func newUtxoKeeper(f func() uint64, walletdb dbm.DB) *utxoKeeper {
+func newUtxoKeeper(f func() uint64, store AccountStorer) *utxoKeeper {
        uk := &utxoKeeper{
-               db:            walletdb,
+               store:         store,
                currentHeight: f,
                unconfirmed:   make(map[bc.Hash]*UTXO),
                reserved:      make(map[bc.Hash]uint64),
@@ -124,6 +121,9 @@ func (uk *utxoKeeper) Reserve(accountID string, assetID *bc.AssetID, amount uint
        }
 
        if optAmount+reservedAmount < amount {
+               if vote != nil {
+                       return nil, ErrVoteLock
+               }
                return nil, ErrImmature
        }
 
@@ -219,16 +219,11 @@ func (uk *utxoKeeper) findUtxos(accountID string, assetID *bc.AssetID, useUnconf
                }
        }
 
-       utxoIter := uk.db.IteratorPrefix([]byte(UTXOPreFix))
-       defer utxoIter.Release()
-       for utxoIter.Next() {
-               u := &UTXO{}
-               if err := json.Unmarshal(utxoIter.Value(), u); err != nil {
-                       log.WithFields(log.Fields{"module": logModule, "err": err}).Error("utxoKeeper findUtxos fail on unmarshal utxo")
-                       continue
-               }
-               appendUtxo(u)
+       UTXOs := uk.store.GetUTXOs()
+       for _, UTXO := range UTXOs {
+               appendUtxo(UTXO)
        }
+
        if !useUnconfirmed {
                return utxos, immatureAmount
        }
@@ -243,15 +238,7 @@ func (uk *utxoKeeper) findUtxo(outHash bc.Hash, useUnconfirmed bool) (*UTXO, err
        if u, ok := uk.unconfirmed[outHash]; useUnconfirmed && ok {
                return u, nil
        }
-
-       u := &UTXO{}
-       if data := uk.db.Get(StandardUTXOKey(outHash)); data != nil {
-               return u, json.Unmarshal(data, u)
-       }
-       if data := uk.db.Get(ContractUTXOKey(outHash)); data != nil {
-               return u, json.Unmarshal(data, u)
-       }
-       return nil, ErrMatchUTXO
+       return uk.store.GetUTXO(outHash)
 }
 
 func (uk *utxoKeeper) optUTXOs(utxos []*UTXO, amount uint64) ([]*UTXO, uint64, uint64) {