dbbcf4b2ee
This is now "FVM" native. Changes include: 1. Don't treat "trace" messages like off-chain messages. E.g., don't include CIDs, versions, etc. 2. Include IPLD codecs where applicable. 3. Remove fields that aren't filled by the FVM (timing, some errors, code locations, etc.).
62 lines
1.3 KiB
Go
62 lines
1.3 KiB
Go
package types
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
"github.com/filecoin-project/go-state-types/exitcode"
|
|
)
|
|
|
|
type GasTrace struct {
|
|
Name string
|
|
TotalGas int64 `json:"tg"`
|
|
ComputeGas int64 `json:"cg"`
|
|
StorageGas int64 `json:"sg"`
|
|
TimeTaken time.Duration `json:"tt"`
|
|
}
|
|
|
|
type MessageTrace struct {
|
|
From address.Address
|
|
To address.Address
|
|
Value abi.TokenAmount
|
|
Method abi.MethodNum
|
|
Params []byte
|
|
ParamsCodec uint64
|
|
}
|
|
|
|
type ReturnTrace struct {
|
|
ExitCode exitcode.ExitCode
|
|
Return []byte
|
|
ReturnCodec uint64
|
|
}
|
|
|
|
type ExecutionTrace struct {
|
|
Msg MessageTrace
|
|
MsgRct ReturnTrace
|
|
GasCharges []*GasTrace `cborgen:"maxlen=1000000000"`
|
|
Subcalls []ExecutionTrace `cborgen:"maxlen=1000000000"`
|
|
}
|
|
|
|
func (et ExecutionTrace) SumGas() GasTrace {
|
|
return SumGas(et.GasCharges)
|
|
}
|
|
|
|
func SumGas(charges []*GasTrace) GasTrace {
|
|
var out GasTrace
|
|
for _, gc := range charges {
|
|
out.TotalGas += gc.TotalGas
|
|
out.ComputeGas += gc.ComputeGas
|
|
out.StorageGas += gc.StorageGas
|
|
}
|
|
|
|
return out
|
|
}
|
|
|
|
func (gt *GasTrace) MarshalJSON() ([]byte, error) {
|
|
type GasTraceCopy GasTrace
|
|
cpy := (*GasTraceCopy)(gt)
|
|
return json.Marshal(cpy)
|
|
}
|