move account back to types
This commit is contained in:
parent
f6a875d476
commit
e908cfbb6f
|
@ -1,66 +1 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"path"
|
||||
|
||||
crypto "github.com/tendermint/go-crypto"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
acm "github.com/cosmos/cosmos-sdk/x/account"
|
||||
"github.com/cosmos/cosmos-sdk/x/sendtx"
|
||||
"github.com/cosmos/cosmos-sdk/x/store"
|
||||
)
|
||||
|
||||
func txParser(txBytes []byte) (types.Tx, error) {
|
||||
var tx sendtx.SendTx
|
||||
err := json.Unmarshal(txBytes, &tx)
|
||||
return tx, err
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
type AccountStore struct {
|
||||
kvStore types.KVStore
|
||||
}
|
||||
|
||||
func newAccountStore(kvStore types.KVStore) store.AccountStore {
|
||||
return AccountStore{kvStore}
|
||||
}
|
||||
|
||||
func (accStore AccountStore) NewAccountWithAddress(addr crypto.Address) store.Account {
|
||||
return acm.NewBaseAccountWithAddress(addr)
|
||||
}
|
||||
|
||||
func (accStore AccountStore) GetAccount(addr crypto.Address) store.Account {
|
||||
v := accStore.kvStore.Get(keyAccount(addr))
|
||||
|
||||
if len(v) == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
acc := new(acm.BaseAccount)
|
||||
if err := json.Unmarshal(v, acc); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
return acc
|
||||
}
|
||||
|
||||
func (accStore AccountStore) SetAccount(acc store.Account) {
|
||||
b, err := json.Marshal(acc)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
appAcc, ok := acc.(*acm.BaseAccount)
|
||||
if !ok {
|
||||
panic("acc is not *acm.BaseAccount") // XXX
|
||||
}
|
||||
|
||||
accStore.kvStore.Set(keyAccount(appAcc.Address()), b)
|
||||
}
|
||||
|
||||
func keyAccount(addr crypto.Address) []byte {
|
||||
return []byte(path.Join("account", string(addr)))
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
|
@ -11,6 +12,7 @@ import (
|
|||
"github.com/cosmos/cosmos-sdk/app"
|
||||
"github.com/cosmos/cosmos-sdk/store"
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
acm "github.com/cosmos/cosmos-sdk/x/account"
|
||||
"github.com/cosmos/cosmos-sdk/x/auth"
|
||||
"github.com/cosmos/cosmos-sdk/x/sendtx"
|
||||
)
|
||||
|
@ -38,14 +40,14 @@ func main() {
|
|||
handler := types.ChainDecorators(
|
||||
// recover.Decorator(),
|
||||
// logger.Decorator(),
|
||||
auth.DecoratorFn(newAccountStore),
|
||||
auth.DecoratorFn(acm.NewAccountStore),
|
||||
).WithHandler(
|
||||
sendtx.TransferHandlerFn(newAccountStore),
|
||||
sendtx.TransferHandlerFn(acm.NewAccountStore),
|
||||
)
|
||||
|
||||
// TODO: load genesis
|
||||
// TODO: InitChain with validators
|
||||
// accounts := newAccountStore(multiStore.GetKVStore("main"))
|
||||
// accounts := acm.NewAccountStore(multiStore.GetKVStore("main"))
|
||||
// TODO: set the genesis accounts
|
||||
|
||||
// Set everything on the app and load latest
|
||||
|
@ -72,3 +74,11 @@ func main() {
|
|||
})
|
||||
return
|
||||
}
|
||||
|
||||
func txParser(txBytes []byte) (types.Tx, error) {
|
||||
var tx sendtx.SendTx
|
||||
err := json.Unmarshal(txBytes, &tx)
|
||||
return tx, err
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
package store
|
||||
package types
|
||||
|
||||
import (
|
||||
crypto "github.com/tendermint/go-crypto"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/x/coin"
|
||||
)
|
||||
|
||||
// AccountStore indexes accounts by address.
|
||||
|
@ -13,19 +11,14 @@ type AccountStore interface {
|
|||
SetAccount(acc Account)
|
||||
}
|
||||
|
||||
// Account is a standard balance account
|
||||
// using a sequence number for replay protection
|
||||
// and a single pubkey for authentication.
|
||||
// TODO: multisig accounts?
|
||||
// Account is a standard account using a sequence number for replay protection
|
||||
// and a pubkey for authentication.
|
||||
type Account interface {
|
||||
Address() crypto.Address
|
||||
|
||||
GetPubKey() crypto.PubKey
|
||||
SetPubKey(crypto.PubKey) error
|
||||
|
||||
GetCoins() coin.Coins
|
||||
SetCoins(coin.Coins) error
|
||||
|
||||
GetSequence() int64
|
||||
SetSequence(int64) error
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
package types
|
||||
|
||||
import crypto "github.com/tendermint/go-crypto"
|
||||
|
||||
type Model interface {
|
||||
Address() crypto.Address
|
||||
|
||||
Get(key interface{}) interface{}
|
||||
Set(key interface{}, value interface{})
|
||||
}
|
||||
|
||||
type ModelStore interface {
|
||||
Load(addr crypto.Address) Model
|
||||
Store(m Model)
|
||||
}
|
|
@ -0,0 +1,54 @@
|
|||
package account
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"path"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
crypto "github.com/tendermint/go-crypto"
|
||||
)
|
||||
|
||||
type AccountStore struct {
|
||||
kvStore types.KVStore
|
||||
}
|
||||
|
||||
func NewAccountStore(kvStore types.KVStore) types.AccountStore {
|
||||
return AccountStore{kvStore}
|
||||
}
|
||||
|
||||
func (accStore AccountStore) NewAccountWithAddress(addr crypto.Address) types.Account {
|
||||
return NewBaseAccountWithAddress(addr)
|
||||
}
|
||||
|
||||
func (accStore AccountStore) GetAccount(addr crypto.Address) types.Account {
|
||||
v := accStore.kvStore.Get(keyAccount(addr))
|
||||
|
||||
if len(v) == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
acc := new(BaseAccount)
|
||||
if err := json.Unmarshal(v, acc); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
return acc
|
||||
}
|
||||
|
||||
func (accStore AccountStore) SetAccount(acc types.Account) {
|
||||
b, err := json.Marshal(acc)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
appAcc, ok := acc.(*BaseAccount)
|
||||
if !ok {
|
||||
panic("acc is not *BaseAccount") // XXX
|
||||
}
|
||||
|
||||
accStore.kvStore.Set(keyAccount(appAcc.Address()), b)
|
||||
}
|
||||
|
||||
func keyAccount(addr crypto.Address) []byte {
|
||||
return []byte(path.Join("account", string(addr)))
|
||||
}
|
|
@ -2,7 +2,6 @@ package auth
|
|||
|
||||
import (
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/store"
|
||||
)
|
||||
|
||||
/*
|
||||
|
@ -25,10 +24,10 @@ const (
|
|||
contextKeyAccount contextKey = iota
|
||||
)
|
||||
|
||||
func SetAccount(ctx types.Context, account store.Account) types.Context {
|
||||
func SetAccount(ctx types.Context, account types.Account) types.Context {
|
||||
return ctx.WithValueUnsafe(contextKeyAccount, account)
|
||||
}
|
||||
|
||||
func GetAccount(ctx types.Context) store.Account {
|
||||
return ctx.Value(contextKeyAccount).(store.Account)
|
||||
func GetAccount(ctx types.Context) types.Account {
|
||||
return ctx.Value(contextKeyAccount).(types.Account)
|
||||
}
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
package auth
|
||||
|
||||
import (
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/store"
|
||||
)
|
||||
import "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
func DecoratorFn(newAccountStore func(types.KVStore) store.AccountStore) types.Decorator {
|
||||
func DecoratorFn(newAccountStore func(types.KVStore) types.AccountStore) types.Decorator {
|
||||
return func(ctx types.Context, ms types.MultiStore, tx types.Tx, next types.Handler) types.Result {
|
||||
|
||||
accountStore := newAccountStore(ms.GetKVStore("main"))
|
||||
|
@ -29,15 +26,7 @@ func DecoratorFn(newAccountStore func(types.KVStore) store.AccountStore) types.D
|
|||
for i, sig := range signatures {
|
||||
|
||||
// get account
|
||||
_acc := accountStore.GetAccount(signers[i])
|
||||
|
||||
// assert it has the right methods
|
||||
acc, ok := _acc.(Auther)
|
||||
if !ok {
|
||||
return types.Result{
|
||||
Code: 1, // TODO
|
||||
}
|
||||
}
|
||||
acc := accountStore.GetAccount(signers[i])
|
||||
|
||||
// if no pubkey, set pubkey
|
||||
if acc.GetPubKey().Empty() {
|
||||
|
@ -49,13 +38,14 @@ func DecoratorFn(newAccountStore func(types.KVStore) store.AccountStore) types.D
|
|||
}
|
||||
}
|
||||
|
||||
// check sequence number
|
||||
// check and incremenet sequence number
|
||||
seq := acc.GetSequence()
|
||||
if seq != sig.Sequence {
|
||||
return types.Result{
|
||||
Code: 1, // TODO
|
||||
}
|
||||
}
|
||||
acc.SetSequence(seq + 1)
|
||||
|
||||
// check sig
|
||||
if !sig.PubKey.VerifyBytes(tx.SignBytes(), sig.Signature) {
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
package auth
|
||||
|
||||
import (
|
||||
"github.com/cosmos/cosmos-sdk/x/store"
|
||||
crypto "github.com/tendermint/go-crypto"
|
||||
)
|
||||
|
||||
var _ Auther = (store.Account)(nil)
|
||||
|
||||
type Auther interface {
|
||||
GetPubKey() crypto.PubKey
|
||||
SetPubKey(crypto.PubKey) error
|
||||
|
||||
GetSequence() int64
|
||||
SetSequence(int64) error
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
//nolint
|
||||
package store
|
||||
package coinstore
|
||||
|
||||
import (
|
||||
"github.com/cosmos/cosmos-sdk/errors"
|
|
@ -1,8 +1,9 @@
|
|||
package store
|
||||
package coinstore
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/coin"
|
||||
crypto "github.com/tendermint/go-crypto"
|
||||
)
|
||||
|
@ -17,7 +18,7 @@ type Coinser interface {
|
|||
|
||||
// CoinStore manages transfers between accounts
|
||||
type CoinStore struct {
|
||||
AccountStore
|
||||
types.AccountStore
|
||||
}
|
||||
|
||||
// SubtractCoins subtracts amt from the coins at the addr.
|
||||
|
@ -36,7 +37,7 @@ func (cs CoinStore) SubtractCoins(addr crypto.Address, amt Coins) (Coins, error)
|
|||
}
|
||||
|
||||
acc.SetCoins(newCoins)
|
||||
cs.SetAccount(acc.(Account))
|
||||
cs.SetAccount(acc.(types.Account))
|
||||
return newCoins, nil
|
||||
}
|
||||
|
||||
|
@ -53,7 +54,7 @@ func (cs CoinStore) AddCoins(addr crypto.Address, amt Coins) (Coins, error) {
|
|||
newCoins := coins.Plus(amt)
|
||||
|
||||
acc.SetCoins(newCoins)
|
||||
cs.SetAccount(acc.(Account))
|
||||
cs.SetAccount(acc.(types.Account))
|
||||
return newCoins, nil
|
||||
}
|
||||
|
|
@ -2,14 +2,14 @@ package sendtx
|
|||
|
||||
import (
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/store"
|
||||
"github.com/cosmos/cosmos-sdk/x/coinstore"
|
||||
)
|
||||
|
||||
func TransferHandlerFn(newAccStore func(types.KVStore) store.AccountStore) types.Handler {
|
||||
func TransferHandlerFn(newAccStore func(types.KVStore) types.AccountStore) types.Handler {
|
||||
return func(ctx types.Context, ms types.MultiStore, tx types.Tx) types.Result {
|
||||
|
||||
accStore := newAccStore(ms.GetKVStore("main"))
|
||||
cs := store.CoinStore{accStore}
|
||||
cs := coinstore.CoinStore{accStore}
|
||||
|
||||
sendTx, ok := tx.(SendTx)
|
||||
if !ok {
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
|
||||
"github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/coin"
|
||||
"github.com/cosmos/cosmos-sdk/x/store"
|
||||
"github.com/cosmos/cosmos-sdk/x/coinstore"
|
||||
)
|
||||
|
||||
type (
|
||||
|
@ -30,16 +30,16 @@ type TxInput struct {
|
|||
// ValidateBasic - validate transaction input
|
||||
func (txIn TxInput) ValidateBasic() error {
|
||||
if len(txIn.Address) == 0 {
|
||||
return store.ErrInvalidAddress(txIn.Address.String())
|
||||
return coinstore.ErrInvalidAddress(txIn.Address.String())
|
||||
}
|
||||
if txIn.Sequence < 0 {
|
||||
return ErrInvalidSequence(txIn.Sequence)
|
||||
}
|
||||
if !txIn.Coins.IsValid() {
|
||||
return store.ErrInvalidCoins(txIn.Coins.String())
|
||||
return coinstore.ErrInvalidCoins(txIn.Coins.String())
|
||||
}
|
||||
if !txIn.Coins.IsPositive() {
|
||||
return store.ErrInvalidCoins(txIn.Coins.String())
|
||||
return coinstore.ErrInvalidCoins(txIn.Coins.String())
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -75,13 +75,13 @@ type TxOutput struct {
|
|||
// ValidateBasic - validate transaction output
|
||||
func (txOut TxOutput) ValidateBasic() error {
|
||||
if len(txOut.Address) == 0 {
|
||||
return store.ErrInvalidAddress(txOut.Address.String())
|
||||
return coinstore.ErrInvalidAddress(txOut.Address.String())
|
||||
}
|
||||
if !txOut.Coins.IsValid() {
|
||||
return store.ErrInvalidCoins(txOut.Coins.String())
|
||||
return coinstore.ErrInvalidCoins(txOut.Coins.String())
|
||||
}
|
||||
if !txOut.Coins.IsPositive() {
|
||||
return store.ErrInvalidCoins(txOut.Coins.String())
|
||||
return coinstore.ErrInvalidCoins(txOut.Coins.String())
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -135,7 +135,7 @@ func (tx SendTx) ValidateBasic() error {
|
|||
}
|
||||
// make sure inputs and outputs match
|
||||
if !totalIn.IsEqual(totalOut) {
|
||||
return store.ErrInvalidCoins(totalIn.String()) // TODO
|
||||
return coinstore.ErrInvalidCoins(totalIn.String()) // TODO
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue