0g-chain/x/pricefeed/keeper/keeper.go

207 lines
5.9 KiB
Go
Raw Normal View History

2019-11-27 14:45:59 +00:00
package keeper
import (
"fmt"
2019-11-27 14:45:59 +00:00
"sort"
"time"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/params/subspace"
2019-11-27 14:45:59 +00:00
"github.com/kava-labs/kava/x/pricefeed/types"
)
// Keeper struct for pricefeed module
type Keeper struct {
// key used to access the stores from Context
key sdk.StoreKey
2019-11-27 14:45:59 +00:00
// Codec for binary encoding/decoding
cdc *codec.Codec
// The reference to the Paramstore to get and set pricefeed specific params
paramSubspace subspace.Subspace
2019-11-27 14:45:59 +00:00
// Reserved codespace
codespace sdk.CodespaceType
}
// NewKeeper returns a new keeper for the pricefeed module.
2019-11-27 14:45:59 +00:00
func NewKeeper(
cdc *codec.Codec, key sdk.StoreKey, paramSubspace subspace.Subspace, codespace sdk.CodespaceType,
2019-11-27 14:45:59 +00:00
) Keeper {
return Keeper{
paramSubspace: paramSubspace.WithKeyTable(types.ParamKeyTable()),
key: key,
cdc: cdc,
codespace: codespace,
2019-11-27 14:45:59 +00:00
}
}
// SetPrice updates the posted price for a specific oracle
func (k Keeper) SetPrice(
ctx sdk.Context,
oracle sdk.AccAddress,
2019-12-04 16:32:08 +00:00
marketID string,
2019-11-27 14:45:59 +00:00
price sdk.Dec,
expiry time.Time) (types.PostedPrice, sdk.Error) {
// If the expiry is less than or equal to the current blockheight, we consider the price valid
if expiry.After(ctx.BlockTime()) {
store := ctx.KVStore(k.key)
2019-12-04 16:32:08 +00:00
prices := k.GetRawPrices(ctx, marketID)
2019-11-27 14:45:59 +00:00
var index int
found := false
for i := range prices {
if prices[i].OracleAddress.Equals(oracle) {
index = i
found = true
break
}
}
// set the price for that particular oracle
if found {
prices[index] = types.PostedPrice{
2019-12-04 16:32:08 +00:00
MarketID: marketID, OracleAddress: oracle,
2019-11-27 14:45:59 +00:00
Price: price, Expiry: expiry}
} else {
prices = append(prices, types.PostedPrice{
2019-12-04 16:32:08 +00:00
MarketID: marketID, OracleAddress: oracle,
2019-11-27 14:45:59 +00:00
Price: price, Expiry: expiry})
index = len(prices) - 1
}
// Emit an event containing the oracle's new price
ctx.EventManager().EmitEvent(
sdk.NewEvent(
types.EventTypeOracleUpdatedPrice,
sdk.NewAttribute(types.AttributeMarketID, marketID),
sdk.NewAttribute(types.AttributeOracle, oracle.String()),
sdk.NewAttribute(types.AttributeMarketPrice, price.String()),
sdk.NewAttribute(types.AttributeExpiry, fmt.Sprintf("%d", expiry.Unix())),
),
)
2019-11-27 14:45:59 +00:00
store.Set(
2019-12-04 16:32:08 +00:00
[]byte(types.RawPriceFeedPrefix+marketID), k.cdc.MustMarshalBinaryBare(prices),
2019-11-27 14:45:59 +00:00
)
return prices[index], nil
}
return types.PostedPrice{}, types.ErrExpired(k.codespace)
}
// SetCurrentPrices updates the price of an asset to the median of all valid oracle inputs
2019-12-04 16:32:08 +00:00
func (k Keeper) SetCurrentPrices(ctx sdk.Context, marketID string) sdk.Error {
_, ok := k.GetMarket(ctx, marketID)
2019-11-27 14:45:59 +00:00
if !ok {
return types.ErrInvalidMarket(k.codespace, marketID)
2019-11-27 14:45:59 +00:00
}
// store current price
validPrevPrice := true
prevPrice, err := k.GetCurrentPrice(ctx, marketID)
if err != nil {
validPrevPrice = false
}
2019-12-04 16:32:08 +00:00
prices := k.GetRawPrices(ctx, marketID)
2019-11-27 14:45:59 +00:00
var notExpiredPrices []types.CurrentPrice
// filter out expired prices
for _, v := range prices {
if v.Expiry.After(ctx.BlockTime()) {
notExpiredPrices = append(notExpiredPrices, types.CurrentPrice{
2019-12-04 16:32:08 +00:00
MarketID: v.MarketID,
Price: v.Price,
2019-11-27 14:45:59 +00:00
})
}
}
if len(notExpiredPrices) == 0 {
store := ctx.KVStore(k.key)
store.Set(
[]byte(types.CurrentPricePrefix+marketID), k.cdc.MustMarshalBinaryBare(types.CurrentPrice{}),
)
return types.ErrNoValidPrice(k.codespace)
2019-12-04 16:32:08 +00:00
}
medianPrice := k.CalculateMedianPrice(ctx, notExpiredPrices)
2019-12-04 16:32:08 +00:00
// check case that market price was not set in genesis
if validPrevPrice {
// only emit event if price has changed
if !medianPrice.Equal(prevPrice.Price) {
ctx.EventManager().EmitEvent(
sdk.NewEvent(
types.EventTypeMarketPriceUpdated,
sdk.NewAttribute(types.AttributeMarketID, fmt.Sprintf("%s", marketID)),
sdk.NewAttribute(types.AttributeMarketPrice, fmt.Sprintf("%s", medianPrice.String())),
),
)
}
}
store := ctx.KVStore(k.key)
2019-12-04 16:32:08 +00:00
currentPrice := types.CurrentPrice{
MarketID: marketID,
Price: medianPrice,
}
2019-12-04 16:32:08 +00:00
store.Set(
[]byte(types.CurrentPricePrefix+marketID), k.cdc.MustMarshalBinaryBare(currentPrice),
)
return nil
}
// CalculateMedianPrice calculates the median prices for the input prices.
func (k Keeper) CalculateMedianPrice(ctx sdk.Context, prices []types.CurrentPrice) sdk.Dec {
2019-12-04 16:32:08 +00:00
l := len(prices)
if l == 1 {
2019-11-27 14:45:59 +00:00
// Return immediately if there's only one price
return prices[0].Price
}
// sort the prices
sort.Slice(prices, func(i, j int) bool {
return prices[i].Price.LT(prices[j].Price)
})
// for even numbers of prices, the median is calculated as the mean of the two middle prices
if l%2 == 0 {
median := k.calculateMeanPrice(ctx, prices[l/2-1:l/2+1])
return median
2019-11-27 14:45:59 +00:00
}
// for odd numbers of prices, return the middle element
return prices[l/2].Price
2019-12-04 16:32:08 +00:00
}
2019-11-27 14:45:59 +00:00
2019-12-04 16:32:08 +00:00
func (k Keeper) calculateMeanPrice(ctx sdk.Context, prices []types.CurrentPrice) sdk.Dec {
sum := prices[0].Price.Add(prices[1].Price)
mean := sum.Quo(sdk.NewDec(2))
return mean
2019-11-27 14:45:59 +00:00
}
// GetCurrentPrice fetches the current median price of all oracles for a specific market
func (k Keeper) GetCurrentPrice(ctx sdk.Context, marketID string) (types.CurrentPrice, sdk.Error) {
store := ctx.KVStore(k.key)
2019-12-04 16:32:08 +00:00
bz := store.Get([]byte(types.CurrentPricePrefix + marketID))
if bz == nil {
return types.CurrentPrice{}, types.ErrNoValidPrice(k.codespace)
}
2019-11-27 14:45:59 +00:00
var price types.CurrentPrice
k.cdc.MustUnmarshalBinaryBare(bz, &price)
if price.Price.Equal(sdk.ZeroDec()) {
return types.CurrentPrice{}, types.ErrNoValidPrice(k.codespace)
}
return price, nil
2019-11-27 14:45:59 +00:00
}
// GetRawPrices fetches the set of all prices posted by oracles for an asset
2019-12-04 16:32:08 +00:00
func (k Keeper) GetRawPrices(ctx sdk.Context, marketID string) []types.PostedPrice {
store := ctx.KVStore(k.key)
2019-12-04 16:32:08 +00:00
bz := store.Get([]byte(types.RawPriceFeedPrefix + marketID))
2019-11-27 14:45:59 +00:00
var prices []types.PostedPrice
k.cdc.MustUnmarshalBinaryBare(bz, &prices)
return prices
}
2019-12-04 16:32:08 +00:00
// Codespace return the codespace for the keeper
2019-11-27 14:45:59 +00:00
func (k Keeper) Codespace() sdk.CodespaceType {
return k.codespace
}