mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-20 13:44:31 +00:00
* add error catching skeleton * add debug logs * change to Warn level log * change to Warn level 2 * verbose logging
128 lines
3.8 KiB
Go
128 lines
3.8 KiB
Go
// Copyright 2016 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package tradingstate
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/XinFinOrg/XDPoSChain/common"
|
|
"github.com/XinFinOrg/XDPoSChain/log"
|
|
)
|
|
|
|
type journalEntry interface {
|
|
undo(db *TradingStateDB)
|
|
}
|
|
|
|
type journal []journalEntry
|
|
|
|
type (
|
|
// Changes to the account trie.
|
|
insertOrder struct {
|
|
orderBook common.Hash
|
|
orderId common.Hash
|
|
order *OrderItem
|
|
}
|
|
cancelOrder struct {
|
|
orderBook common.Hash
|
|
orderId common.Hash
|
|
order OrderItem
|
|
}
|
|
subAmountOrder struct {
|
|
orderBook common.Hash
|
|
orderId common.Hash
|
|
order OrderItem
|
|
amount *big.Int
|
|
}
|
|
nonceChange struct {
|
|
hash common.Hash
|
|
prev uint64
|
|
}
|
|
lastPriceChange struct {
|
|
hash common.Hash
|
|
prev *big.Int
|
|
}
|
|
mediumPriceChange struct {
|
|
hash common.Hash
|
|
prevPrice *big.Int
|
|
prevQuantity *big.Int
|
|
}
|
|
mediumPriceBeforeEpochChange struct {
|
|
hash common.Hash
|
|
prevPrice *big.Int
|
|
}
|
|
insertLiquidationPrice struct {
|
|
orderBook common.Hash
|
|
price *big.Int
|
|
lendingBook common.Hash
|
|
tradeId uint64
|
|
}
|
|
removeLiquidationPrice struct {
|
|
orderBook common.Hash
|
|
price *big.Int
|
|
lendingBook common.Hash
|
|
tradeId uint64
|
|
}
|
|
)
|
|
|
|
func (ch insertOrder) undo(s *TradingStateDB) {
|
|
err := s.CancelOrder(ch.orderBook, ch.order)
|
|
if err != nil {
|
|
log.Warn("undo CancelOrder", "err", err, "ch.orderBook", ch.orderBook, "ch.order", ch.order)
|
|
}
|
|
}
|
|
func (ch cancelOrder) undo(s *TradingStateDB) {
|
|
s.InsertOrderItem(ch.orderBook, ch.orderId, ch.order)
|
|
}
|
|
func (ch insertLiquidationPrice) undo(s *TradingStateDB) {
|
|
err := s.RemoveLiquidationPrice(ch.orderBook, ch.price, ch.lendingBook, ch.tradeId)
|
|
if err != nil {
|
|
log.Warn("undo RemoveLiquidationPrice", "err", err, "ch.orderBook", ch.orderBook, "ch.price", ch.price, "ch.lendingBook", ch.lendingBook, "ch.tradeId", ch.tradeId)
|
|
}
|
|
}
|
|
func (ch removeLiquidationPrice) undo(s *TradingStateDB) {
|
|
s.InsertLiquidationPrice(ch.orderBook, ch.price, ch.lendingBook, ch.tradeId)
|
|
}
|
|
func (ch subAmountOrder) undo(s *TradingStateDB) {
|
|
priceHash := common.BigToHash(ch.order.Price)
|
|
stateOrderBook := s.getStateExchangeObject(ch.orderBook)
|
|
var stateOrderList *stateOrderList
|
|
switch ch.order.Side {
|
|
case Ask:
|
|
stateOrderList = stateOrderBook.getStateOrderListAskObject(s.db, priceHash)
|
|
case Bid:
|
|
stateOrderList = stateOrderBook.getStateBidOrderListObject(s.db, priceHash)
|
|
default:
|
|
return
|
|
}
|
|
stateOrderItem := stateOrderBook.getStateOrderObject(s.db, ch.orderId)
|
|
newAmount := new(big.Int).Add(stateOrderItem.Quantity(), ch.amount)
|
|
stateOrderItem.setVolume(newAmount)
|
|
stateOrderList.insertOrderItem(s.db, ch.orderId, common.BigToHash(newAmount))
|
|
stateOrderList.AddVolume(ch.amount)
|
|
}
|
|
func (ch nonceChange) undo(s *TradingStateDB) {
|
|
s.SetNonce(ch.hash, ch.prev)
|
|
}
|
|
func (ch lastPriceChange) undo(s *TradingStateDB) {
|
|
s.SetLastPrice(ch.hash, ch.prev)
|
|
}
|
|
func (ch mediumPriceChange) undo(s *TradingStateDB) {
|
|
s.SetMediumPrice(ch.hash, ch.prevPrice, ch.prevQuantity)
|
|
}
|
|
func (ch mediumPriceBeforeEpochChange) undo(s *TradingStateDB) {
|
|
s.SetMediumPriceBeforeEpoch(ch.hash, ch.prevPrice)
|
|
}
|