2019-07-12 10:43:15 +00:00
package types
import (
2019-08-21 17:15:28 +00:00
"bytes"
2019-07-12 10:43:15 +00:00
"fmt"
2020-02-11 01:43:26 +00:00
"github.com/filecoin-project/specs-actors/actors/abi"
2019-07-12 10:43:15 +00:00
block "github.com/ipfs/go-block-format"
"github.com/ipfs/go-cid"
"github.com/multiformats/go-multihash"
2019-12-19 20:13:17 +00:00
"github.com/filecoin-project/go-address"
2019-07-12 10:43:15 +00:00
)
type Message struct {
To address . Address
From address . Address
Nonce uint64
Value BigInt
GasPrice BigInt
GasLimit BigInt
2020-02-11 01:43:26 +00:00
Method abi . MethodNum
2019-07-12 10:43:15 +00:00
Params [ ] byte
}
2020-02-16 22:15:01 +00:00
func ( t * Message ) BlockMiner ( ) address . Address {
panic ( "implement me" )
}
func ( t * Message ) Caller ( ) address . Address {
return t . From
}
func ( t * Message ) Receiver ( ) address . Address {
return t . To
}
func ( t * Message ) ValueReceived ( ) abi . TokenAmount {
return t . Value
}
2019-07-12 10:43:15 +00:00
func DecodeMessage ( b [ ] byte ) ( * Message , error ) {
var msg Message
2019-08-21 17:15:28 +00:00
if err := msg . UnmarshalCBOR ( bytes . NewReader ( b ) ) ; err != nil {
2019-07-12 10:43:15 +00:00
return nil , err
}
return & msg , nil
}
func ( m * Message ) Serialize ( ) ( [ ] byte , error ) {
2019-08-21 17:15:28 +00:00
buf := new ( bytes . Buffer )
if err := m . MarshalCBOR ( buf ) ; err != nil {
return nil , err
}
return buf . Bytes ( ) , nil
2019-07-12 10:43:15 +00:00
}
func ( m * Message ) ToStorageBlock ( ) ( block . Block , error ) {
data , err := m . Serialize ( )
if err != nil {
return nil , err
}
2019-08-21 17:15:28 +00:00
pref := cid . NewPrefixV1 ( cid . DagCBOR , multihash . BLAKE2B_MIN + 31 )
2019-07-12 10:43:15 +00:00
c , err := pref . Sum ( data )
if err != nil {
return nil , err
}
return block . NewBlockWithCid ( data , c )
}
2019-08-01 20:40:47 +00:00
func ( m * Message ) Cid ( ) cid . Cid {
b , err := m . ToStorageBlock ( )
if err != nil {
2019-11-16 23:41:14 +00:00
panic ( fmt . Sprintf ( "failed to marshal message: %s" , err ) ) // I think this is maybe sketchy, what happens if we try to serialize a message with an undefined address in it?
2019-08-01 20:40:47 +00:00
}
return b . Cid ( )
}
2019-09-26 03:48:53 +00:00
func ( m * Message ) RequiredFunds ( ) BigInt {
return BigAdd (
m . Value ,
BigMul ( m . GasPrice , m . GasLimit ) ,
)
}
2019-09-27 23:55:15 +00:00
func ( m * Message ) VMMessage ( ) * Message {
return m
}
2019-11-19 21:27:25 +00:00
func ( m * Message ) Equals ( o * Message ) bool {
return m . Cid ( ) == o . Cid ( )
}