2020-09-09 07:42:03 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-09-14 23:36:36 +00:00
|
|
|
"fmt"
|
2021-07-13 10:19:55 +00:00
|
|
|
"os"
|
2020-09-14 23:36:36 +00:00
|
|
|
"time"
|
|
|
|
|
2021-07-13 10:19:55 +00:00
|
|
|
"github.com/fatih/color"
|
2020-09-30 11:33:42 +00:00
|
|
|
"github.com/hako/durafmt"
|
2020-09-14 23:36:36 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2021-07-13 10:19:55 +00:00
|
|
|
"github.com/mattn/go-isatty"
|
2020-09-14 23:36:36 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-09-09 07:42:03 +00:00
|
|
|
|
2021-04-03 10:55:29 +00:00
|
|
|
"github.com/filecoin-project/lotus/api/v0api"
|
2020-09-14 23:36:36 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2020-09-09 07:42:03 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
)
|
|
|
|
|
2021-07-13 10:19:55 +00:00
|
|
|
// Set the global default, to be overridden by individual cli flags in order
|
|
|
|
func init() {
|
|
|
|
color.NoColor = os.Getenv("GOLOG_LOG_FMT") != "color" &&
|
|
|
|
!isatty.IsTerminal(os.Stdout.Fd()) &&
|
|
|
|
!isatty.IsCygwinTerminal(os.Stdout.Fd())
|
|
|
|
}
|
|
|
|
|
2021-04-03 10:55:29 +00:00
|
|
|
func parseTipSet(ctx context.Context, api v0api.FullNode, vals []string) (*types.TipSet, error) {
|
2020-09-09 07:42:03 +00:00
|
|
|
var headers []*types.BlockHeader
|
|
|
|
for _, c := range vals {
|
|
|
|
blkc, err := cid.Decode(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
bh, err := api.ChainGetBlock(ctx, blkc)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
headers = append(headers, bh)
|
|
|
|
}
|
|
|
|
|
|
|
|
return types.NewTipSet(headers)
|
|
|
|
}
|
2020-09-14 23:36:36 +00:00
|
|
|
|
|
|
|
func EpochTime(curr, e abi.ChainEpoch) string {
|
|
|
|
switch {
|
|
|
|
case curr > e:
|
2020-09-30 11:33:42 +00:00
|
|
|
return fmt.Sprintf("%d (%s ago)", e, durafmt.Parse(time.Second*time.Duration(int64(build.BlockDelaySecs)*int64(curr-e))).LimitFirstN(2))
|
2020-09-14 23:36:36 +00:00
|
|
|
case curr == e:
|
|
|
|
return fmt.Sprintf("%d (now)", e)
|
|
|
|
case curr < e:
|
2020-09-30 11:33:42 +00:00
|
|
|
return fmt.Sprintf("%d (in %s)", e, durafmt.Parse(time.Second*time.Duration(int64(build.BlockDelaySecs)*int64(e-curr))).LimitFirstN(2))
|
2020-09-14 23:36:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
panic("math broke")
|
|
|
|
}
|
2022-07-01 16:45:29 +00:00
|
|
|
|
|
|
|
// EpochTimeTs is like EpochTime, but also outputs absolute time. `ts` is only
|
|
|
|
// used to provide a timestamp at some epoch to calculate time from. It can be
|
|
|
|
// a genesis tipset.
|
|
|
|
//
|
|
|
|
// Example output: `1944975 (01 Jul 22 08:07 CEST, 10 hours 29 minutes ago)`
|
|
|
|
func EpochTimeTs(curr, e abi.ChainEpoch, ts *types.TipSet) string {
|
|
|
|
timeStr := time.Unix(int64(ts.MinTimestamp()+(uint64(e-ts.Height())*build.BlockDelaySecs)), 0).Format(time.RFC822)
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case curr > e:
|
|
|
|
return fmt.Sprintf("%d (%s, %s ago)", e, timeStr, durafmt.Parse(time.Second*time.Duration(int64(build.BlockDelaySecs)*int64(curr-e))).LimitFirstN(2))
|
|
|
|
case curr == e:
|
|
|
|
return fmt.Sprintf("%d (%s, now)", e, timeStr)
|
|
|
|
case curr < e:
|
|
|
|
return fmt.Sprintf("%d (%s, in %s)", e, timeStr, durafmt.Parse(time.Second*time.Duration(int64(build.BlockDelaySecs)*int64(e-curr))).LimitFirstN(2))
|
|
|
|
}
|
|
|
|
|
|
|
|
panic("math broke")
|
|
|
|
}
|