2019-08-21 17:15:28 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2019-10-22 10:20:43 +00:00
|
|
|
gen "github.com/whyrusleeping/cbor-gen"
|
|
|
|
|
2019-11-05 03:42:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
2019-11-09 23:00:22 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/blocksync"
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-02-21 19:25:57 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/hello"
|
2020-02-13 00:28:23 +00:00
|
|
|
"github.com/filecoin-project/lotus/paychmgr"
|
2019-08-21 17:15:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-09-10 02:05:24 +00:00
|
|
|
err := gen.WriteTupleEncodersToFile("./chain/types/cbor_gen.go", "types",
|
|
|
|
types.BlockHeader{},
|
|
|
|
types.Ticket{},
|
2020-04-08 19:06:41 +00:00
|
|
|
types.ElectionProof{},
|
2019-09-10 02:05:24 +00:00
|
|
|
types.Message{},
|
|
|
|
types.SignedMessage{},
|
|
|
|
types.MsgMeta{},
|
2019-09-17 01:56:37 +00:00
|
|
|
types.Actor{},
|
|
|
|
types.MessageReceipt{},
|
2019-09-18 02:50:03 +00:00
|
|
|
types.BlockMsg{},
|
2019-11-01 13:58:48 +00:00
|
|
|
types.ExpTipSet{},
|
2020-03-25 23:16:17 +00:00
|
|
|
types.BeaconEntry{},
|
2019-09-10 02:05:24 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
2019-08-21 17:15:28 +00:00
|
|
|
}
|
|
|
|
|
2020-02-13 00:28:23 +00:00
|
|
|
err = gen.WriteMapEncodersToFile("./paychmgr/cbor_gen.go", "paychmgr",
|
|
|
|
paychmgr.VoucherInfo{},
|
|
|
|
paychmgr.ChannelInfo{},
|
2019-11-04 19:03:11 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
2019-11-05 03:42:13 +00:00
|
|
|
}
|
|
|
|
|
2019-12-09 16:40:15 +00:00
|
|
|
err = gen.WriteMapEncodersToFile("./api/cbor_gen.go", "api",
|
2019-11-05 03:42:13 +00:00
|
|
|
api.PaymentInfo{},
|
2019-11-06 12:22:08 +00:00
|
|
|
api.SealedRef{},
|
|
|
|
api.SealedRefs{},
|
2020-02-27 23:34:48 +00:00
|
|
|
api.SealTicket{},
|
|
|
|
api.SealSeed{},
|
2019-11-05 03:42:13 +00:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2020-02-12 18:23:15 +00:00
|
|
|
err = gen.WriteTupleEncodersToFile("./node/hello/cbor_gen.go", "hello",
|
2020-02-12 18:08:49 +00:00
|
|
|
hello.HelloMessage{},
|
|
|
|
hello.LatencyMessage{},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2019-11-09 23:00:22 +00:00
|
|
|
err = gen.WriteTupleEncodersToFile("./chain/blocksync/cbor_gen.go", "blocksync",
|
|
|
|
blocksync.BlockSyncRequest{},
|
|
|
|
blocksync.BlockSyncResponse{},
|
|
|
|
blocksync.BSTipSet{},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2019-09-09 17:22:40 +00:00
|
|
|
|
2019-08-21 17:15:28 +00:00
|
|
|
}
|