|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package ops
-
- import (
- "context"
- "fmt"
- "io"
-
- "gitlink.org.cn/cloudream/common/pkgs/future"
- "gitlink.org.cn/cloudream/common/pkgs/ipfs"
- "gitlink.org.cn/cloudream/common/pkgs/logger"
- "gitlink.org.cn/cloudream/common/utils/io2"
- stgglb "gitlink.org.cn/cloudream/storage/common/globals"
- "gitlink.org.cn/cloudream/storage/common/pkgs/ioswitch"
- )
-
- type IPFSRead struct {
- Output ioswitch.StreamID `json:"output"`
- FileHash string `json:"fileHash"`
- Option ipfs.ReadOption `json:"option"`
- }
-
- func (o *IPFSRead) Execute(sw *ioswitch.Switch, planID ioswitch.PlanID) error {
- logger.
- WithField("FileHash", o.FileHash).
- WithField("Output", o.Output).
- Debugf("ipfs read op")
- defer logger.Debugf("ipfs read op finished")
-
- ipfsCli, err := stgglb.IPFSPool.Acquire()
- if err != nil {
- return fmt.Errorf("new ipfs client: %w", err)
- }
- defer stgglb.IPFSPool.Release(ipfsCli)
-
- file, err := ipfsCli.OpenRead(o.FileHash, o.Option)
- if err != nil {
- return fmt.Errorf("reading ipfs: %w", err)
- }
-
- fut := future.NewSetVoid()
- file = io2.AfterReadClosedOnce(file, func(closer io.ReadCloser) {
- fut.SetVoid()
- })
-
- sw.StreamReady(planID, ioswitch.NewStream(o.Output, file))
-
- // TODO context
- fut.Wait(context.TODO())
- return nil
- }
-
- type IPFSWrite struct {
- Input ioswitch.StreamID `json:"input"`
- ResultKey string `json:"resultKey"`
- }
-
- func (o *IPFSWrite) Execute(sw *ioswitch.Switch, planID ioswitch.PlanID) error {
- logger.
- WithField("ResultKey", o.ResultKey).
- WithField("Input", o.Input).
- Debugf("ipfs write op")
-
- ipfsCli, err := stgglb.IPFSPool.Acquire()
- if err != nil {
- return fmt.Errorf("new ipfs client: %w", err)
- }
- defer stgglb.IPFSPool.Release(ipfsCli)
-
- strs, err := sw.WaitStreams(planID, o.Input)
- if err != nil {
- return err
- }
- defer strs[0].Stream.Close()
-
- fileHash, err := ipfsCli.CreateFile(strs[0].Stream)
- if err != nil {
- return fmt.Errorf("creating ipfs file: %w", err)
- }
-
- if o.ResultKey != "" {
- sw.AddResultValue(planID, ioswitch.ResultKV{
- Key: o.ResultKey,
- Value: fileHash,
- })
- }
-
- return nil
- }
-
- func init() {
- OpUnion.AddT((*IPFSRead)(nil))
- OpUnion.AddT((*IPFSWrite)(nil))
- }
|