lotus/chain/deals/client.go

181 lines
3.5 KiB
Go
Raw Normal View History

2019-08-01 17:12:41 +00:00
package deals
import (
"context"
2019-08-02 14:09:54 +00:00
"io/ioutil"
"os"
2019-08-01 17:12:41 +00:00
"sync/atomic"
2019-08-02 16:25:10 +00:00
sectorbuilder "github.com/filecoin-project/go-sectorbuilder"
2019-08-01 17:12:41 +00:00
"github.com/ipfs/go-cid"
2019-08-02 16:25:10 +00:00
cbor "github.com/ipfs/go-ipld-cbor"
2019-08-01 17:12:41 +00:00
logging "github.com/ipfs/go-log"
2019-08-02 14:09:54 +00:00
"github.com/libp2p/go-libp2p-core/host"
2019-08-01 17:12:41 +00:00
"github.com/libp2p/go-libp2p-core/peer"
"github.com/filecoin-project/go-lotus/chain/address"
"github.com/filecoin-project/go-lotus/chain/store"
"github.com/filecoin-project/go-lotus/chain/types"
2019-08-02 16:25:10 +00:00
"github.com/filecoin-project/go-lotus/chain/wallet"
2019-08-02 14:09:54 +00:00
"github.com/filecoin-project/go-lotus/lib/cborrpc"
2019-08-01 17:12:41 +00:00
)
var log = logging.Logger("deals")
2019-08-02 14:09:54 +00:00
const ProtocolID = "/fil/storage/mk/1.0.0"
2019-08-01 17:12:41 +00:00
type DealStatus int
const (
DealResolvingMiner = DealStatus(iota)
)
type Deal struct {
ID uint64
Status DealStatus
2019-08-02 14:09:54 +00:00
Miner peer.ID
2019-08-01 17:12:41 +00:00
}
type Client struct {
cs *store.ChainStore
2019-08-02 14:09:54 +00:00
h host.Host
2019-08-02 16:25:10 +00:00
w *wallet.Wallet
2019-08-01 17:12:41 +00:00
next uint64
deals map[uint64]Deal
incoming chan Deal
stop chan struct{}
stopped chan struct{}
}
2019-08-02 16:25:10 +00:00
func NewClient(cs *store.ChainStore, h host.Host, w *wallet.Wallet) *Client {
2019-08-01 17:12:41 +00:00
c := &Client{
cs: cs,
2019-08-02 16:25:10 +00:00
h: h,
w: w,
2019-08-01 17:12:41 +00:00
deals: map[uint64]Deal{},
incoming: make(chan Deal, 16),
stop: make(chan struct{}),
stopped: make(chan struct{}),
}
return c
}
func (c *Client) Run() {
go func() {
defer close(c.stopped)
for {
select {
case deal := <-c.incoming:
log.Info("incoming deal")
2019-08-02 14:09:54 +00:00
// TODO: track in datastore
2019-08-01 17:12:41 +00:00
c.deals[deal.ID] = deal
case <-c.stop:
return
}
}
}()
}
2019-08-02 14:09:54 +00:00
func (c *Client) Start(ctx context.Context, data cid.Cid, totalPrice types.BigInt, from address.Address, miner address.Address, minerID peer.ID, blocksDuration uint64) (uint64, error) {
// TODO: Eww
f, err := ioutil.TempFile(os.TempDir(), "commP-temp-")
2019-08-01 17:12:41 +00:00
if err != nil {
return 0, err
}
2019-08-02 14:09:54 +00:00
_, err = f.Write([]byte("hello\n"))
2019-08-01 17:12:41 +00:00
if err != nil {
2019-08-02 14:09:54 +00:00
return 0, err
}
if err := f.Close(); err != nil {
return 0, err
}
2019-08-02 16:25:10 +00:00
commP, err := sectorbuilder.GeneratePieceCommitment(f.Name(), 6)
2019-08-02 14:09:54 +00:00
if err != nil {
return 0, err
}
if err := os.Remove(f.Name()); err != nil {
return 0, err
2019-08-01 17:12:41 +00:00
}
2019-08-02 16:25:10 +00:00
dummyCid, _ := cid.Parse("bafkqaaa")
2019-08-02 14:09:54 +00:00
// TODO: use data
proposal := StorageDealProposal{
PieceRef: "bafkqabtimvwgy3yk", // identity 'hello\n'
SerializationMode: SerializationRaw,
CommP: commP[:],
Size: 6,
TotalPrice: totalPrice,
Duration: blocksDuration,
2019-08-02 16:25:10 +00:00
Payment: PaymentInfo{
PayChActor: address.Address{},
Payer: address.Address{},
ChannelMessage: dummyCid,
Vouchers: nil,
},
MinerAddress: miner,
ClientAddress: from,
2019-08-01 17:12:41 +00:00
}
2019-08-02 14:09:54 +00:00
s, err := c.h.NewStream(ctx, minerID, ProtocolID)
2019-08-01 17:12:41 +00:00
if err != nil {
return 0, err
}
2019-08-02 14:09:54 +00:00
defer s.Close() // TODO: not too soon?
log.Info("Sending deal proposal")
2019-08-02 16:25:10 +00:00
msg, err := cbor.DumpObject(proposal)
if err != nil {
return 0, err
}
sig, err := c.w.Sign(from, msg)
if err != nil {
return 0, err
}
2019-08-02 14:09:54 +00:00
signedProposal := &SignedStorageDealProposal{
Proposal: proposal,
2019-08-02 16:25:10 +00:00
Signature: sig,
2019-08-01 17:12:41 +00:00
}
2019-08-02 14:09:54 +00:00
if err := cborrpc.WriteCborRPC(s, signedProposal); err != nil {
2019-08-01 17:12:41 +00:00
return 0, err
}
2019-08-02 16:25:10 +00:00
log.Info("Reading response")
2019-08-02 14:09:54 +00:00
var resp SignedStorageDealResponse
if err := cborrpc.ReadCborRPC(s, &resp); err != nil {
log.Errorw("failed to read StorageDealResponse message", "error", err)
return 0, err
}
2019-08-01 17:12:41 +00:00
2019-08-02 16:25:10 +00:00
log.Info("Registering deal")
2019-08-01 17:12:41 +00:00
id := atomic.AddUint64(&c.next, 1)
deal := Deal{
ID: id,
Status: DealResolvingMiner,
2019-08-02 14:09:54 +00:00
Miner: minerID,
2019-08-01 17:12:41 +00:00
}
c.incoming <- deal
return id, nil
}
func (c *Client) Stop() {
close(c.stop)
<-c.stopped
}