-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,740 additions
and
1,543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,239 @@ | ||
package cli | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
"os" | ||
"strconv" | ||
"time" | ||
|
||
tm "github.com/buger/goterm" | ||
|
||
datatransfer "github.com/filecoin-project/go-data-transfer" | ||
"github.com/libp2p/go-libp2p-core/peer" | ||
"github.com/urfave/cli/v2" | ||
) | ||
|
||
var DataTransfersCmd = &cli.Command{ | ||
Name: "data-transfers", | ||
Usage: "Manage data transfers", | ||
Subcommands: []*cli.Command{ | ||
transfersListCmd, | ||
marketRestartTransfer, | ||
marketCancelTransfer, | ||
}, | ||
} | ||
|
||
var marketRestartTransfer = &cli.Command{ | ||
Name: "restart", | ||
Usage: "Force restart a stalled data transfer", | ||
Flags: []cli.Flag{ | ||
&cli.StringFlag{ | ||
Name: "peerid", | ||
Usage: "narrow to transfer with specific peer", | ||
}, | ||
&cli.BoolFlag{ | ||
Name: "initiator", | ||
Usage: "specify only transfers where peer is/is not initiator", | ||
Value: false, | ||
}, | ||
}, | ||
Action: func(cctx *cli.Context) error { | ||
if !cctx.Args().Present() { | ||
return cli.ShowCommandHelp(cctx, cctx.Command.Name) | ||
} | ||
nodeApi, closer, err := NewMarketNode(cctx) | ||
if err != nil { | ||
return err | ||
} | ||
defer closer() | ||
ctx := ReqContext(cctx) | ||
|
||
transferUint, err := strconv.ParseUint(cctx.Args().First(), 10, 64) | ||
if err != nil { | ||
return fmt.Errorf("Error reading transfer ID: %w", err) | ||
} | ||
transferID := datatransfer.TransferID(transferUint) | ||
initiator := cctx.Bool("initiator") | ||
var other peer.ID | ||
if pidstr := cctx.String("peerid"); pidstr != "" { | ||
p, err := peer.Decode(pidstr) | ||
if err != nil { | ||
return err | ||
} | ||
other = p | ||
} else { | ||
channels, err := nodeApi.MarketListDataTransfers(ctx) | ||
if err != nil { | ||
return err | ||
} | ||
found := false | ||
for _, channel := range channels { | ||
if channel.IsInitiator == initiator && channel.TransferID == transferID { | ||
other = channel.OtherPeer | ||
found = true | ||
break | ||
} | ||
} | ||
if !found { | ||
return errors.New("unable to find matching data transfer") | ||
} | ||
} | ||
|
||
return nodeApi.MarketRestartDataTransfer(ctx, transferID, other, initiator) | ||
}, | ||
} | ||
|
||
var marketCancelTransfer = &cli.Command{ | ||
Name: "cancel", | ||
Usage: "Force cancel a data transfer", | ||
Flags: []cli.Flag{ | ||
&cli.StringFlag{ | ||
Name: "peerid", | ||
Usage: "narrow to transfer with specific peer", | ||
}, | ||
&cli.BoolFlag{ | ||
Name: "initiator", | ||
Usage: "specify only transfers where peer is/is not initiator", | ||
Value: false, | ||
}, | ||
&cli.DurationFlag{ | ||
Name: "cancel-timeout", | ||
Usage: "time to wait for cancel to be sent to client", | ||
Value: 5 * time.Second, | ||
}, | ||
}, | ||
Action: func(cctx *cli.Context) error { | ||
if !cctx.Args().Present() { | ||
return cli.ShowCommandHelp(cctx, cctx.Command.Name) | ||
} | ||
nodeApi, closer, err := NewMarketNode(cctx) | ||
if err != nil { | ||
return err | ||
} | ||
defer closer() | ||
ctx := ReqContext(cctx) | ||
|
||
transferUint, err := strconv.ParseUint(cctx.Args().First(), 10, 64) | ||
if err != nil { | ||
return fmt.Errorf("Error reading transfer ID: %w", err) | ||
} | ||
transferID := datatransfer.TransferID(transferUint) | ||
initiator := cctx.Bool("initiator") | ||
var other peer.ID | ||
if pidstr := cctx.String("peerid"); pidstr != "" { | ||
p, err := peer.Decode(pidstr) | ||
if err != nil { | ||
return err | ||
} | ||
other = p | ||
} else { | ||
channels, err := nodeApi.MarketListDataTransfers(ctx) | ||
if err != nil { | ||
return err | ||
} | ||
found := false | ||
for _, channel := range channels { | ||
if channel.IsInitiator == initiator && channel.TransferID == transferID { | ||
other = channel.OtherPeer | ||
found = true | ||
break | ||
} | ||
} | ||
if !found { | ||
return errors.New("unable to find matching data transfer") | ||
} | ||
} | ||
|
||
timeoutCtx, cancel := context.WithTimeout(ctx, cctx.Duration("cancel-timeout")) | ||
defer cancel() | ||
return nodeApi.MarketCancelDataTransfer(timeoutCtx, transferID, other, initiator) | ||
}, | ||
} | ||
|
||
var transfersListCmd = &cli.Command{ | ||
Name: "list", | ||
Usage: "List ongoing data transfers for this miner", | ||
Flags: []cli.Flag{ | ||
&cli.BoolFlag{ | ||
Name: "verbose", | ||
Aliases: []string{"v"}, | ||
Usage: "print verbose transfer details", | ||
}, | ||
&cli.BoolFlag{ | ||
Name: "color", | ||
Usage: "use color in display output", | ||
Value: true, | ||
}, | ||
&cli.BoolFlag{ | ||
Name: "completed", | ||
Usage: "show completed data transfers", | ||
}, | ||
&cli.BoolFlag{ | ||
Name: "watch", | ||
Usage: "watch deal updates in real-time, rather than a one time list", | ||
}, | ||
&cli.BoolFlag{ | ||
Name: "show-failed", | ||
Usage: "show failed/cancelled transfers", | ||
}, | ||
}, | ||
Action: func(cctx *cli.Context) error { | ||
api, closer, err := NewMarketNode(cctx) | ||
if err != nil { | ||
return err | ||
} | ||
defer closer() | ||
ctx := ReqContext(cctx) | ||
|
||
channels, err := api.MarketListDataTransfers(ctx) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
verbose := cctx.Bool("verbose") | ||
completed := cctx.Bool("completed") | ||
color := cctx.Bool("color") | ||
watch := cctx.Bool("watch") | ||
showFailed := cctx.Bool("show-failed") | ||
if watch { | ||
channelUpdates, err := api.MarketDataTransferUpdates(ctx) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
for { | ||
tm.Clear() // Clear current screen | ||
|
||
tm.MoveCursor(1, 1) | ||
|
||
OutputDataTransferChannels(tm.Screen, channels, verbose, completed, color, showFailed) | ||
|
||
tm.Flush() | ||
|
||
select { | ||
case <-ctx.Done(): | ||
return nil | ||
case channelUpdate := <-channelUpdates: | ||
var found bool | ||
for i, existing := range channels { | ||
if existing.TransferID == channelUpdate.TransferID && | ||
existing.OtherPeer == channelUpdate.OtherPeer && | ||
existing.IsSender == channelUpdate.IsSender && | ||
existing.IsInitiator == channelUpdate.IsInitiator { | ||
channels[i] = channelUpdate | ||
found = true | ||
break | ||
} | ||
} | ||
if !found { | ||
channels = append(channels, channelUpdate) | ||
} | ||
} | ||
} | ||
} | ||
OutputDataTransferChannels(os.Stdout, channels, verbose, completed, color, showFailed) | ||
return nil | ||
}, | ||
} |
Oops, something went wrong.