mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
357 lines
6.7 KiB
Go
357 lines
6.7 KiB
Go
package rpc
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/ipfs/boxo/files"
|
|
unixfs "github.com/ipfs/boxo/ipld/unixfs"
|
|
"github.com/ipfs/boxo/path"
|
|
"github.com/ipfs/go-cid"
|
|
)
|
|
|
|
const forwardSeekLimit = 1 << 14 // 16k
|
|
|
|
func (api *UnixfsAPI) Get(ctx context.Context, p path.Path) (files.Node, error) {
|
|
if p.Mutable() { // use resolved path in case we are dealing with IPNS / MFS
|
|
var err error
|
|
p, _, err = api.core().ResolvePath(ctx, p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
var stat struct {
|
|
Hash string
|
|
Type string
|
|
Size int64 // unixfs size
|
|
Mode string
|
|
Mtime int64
|
|
MtimeNsecs int
|
|
}
|
|
err := api.core().Request("files/stat", p.String()).Exec(ctx, &stat)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
mode, err := stringToFileMode(stat.Mode)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var modTime time.Time
|
|
if stat.Mtime != 0 {
|
|
modTime = time.Unix(stat.Mtime, int64(stat.MtimeNsecs)).UTC()
|
|
}
|
|
|
|
switch stat.Type {
|
|
case "file":
|
|
return api.getFile(ctx, p, stat.Size, mode, modTime)
|
|
case "directory":
|
|
return api.getDir(ctx, p, stat.Size, mode, modTime)
|
|
case "symlink":
|
|
return api.getSymlink(ctx, p, modTime)
|
|
default:
|
|
return nil, fmt.Errorf("unsupported file type '%s'", stat.Type)
|
|
}
|
|
}
|
|
|
|
type apiFile struct {
|
|
ctx context.Context
|
|
core *HttpApi
|
|
size int64
|
|
path path.Path
|
|
|
|
mode os.FileMode
|
|
mtime time.Time
|
|
|
|
r *Response
|
|
at int64
|
|
}
|
|
|
|
func (f *apiFile) reset() error {
|
|
if f.r != nil {
|
|
_ = f.r.Cancel()
|
|
f.r = nil
|
|
}
|
|
req := f.core.Request("cat", f.path.String())
|
|
if f.at != 0 {
|
|
req.Option("offset", f.at)
|
|
}
|
|
resp, err := req.Send(f.ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if resp.Error != nil {
|
|
return resp.Error
|
|
}
|
|
f.r = resp
|
|
return nil
|
|
}
|
|
|
|
func (f *apiFile) Read(p []byte) (int, error) {
|
|
n, err := f.r.Output.Read(p)
|
|
if n > 0 {
|
|
f.at += int64(n)
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
func (f *apiFile) ReadAt(p []byte, off int64) (int, error) {
|
|
// Always make a new request. This method should be parallel-safe.
|
|
resp, err := f.core.Request("cat", f.path.String()).
|
|
Option("offset", off).Option("length", len(p)).Send(f.ctx)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if resp.Error != nil {
|
|
return 0, resp.Error
|
|
}
|
|
defer resp.Output.Close()
|
|
|
|
n, err := io.ReadFull(resp.Output, p)
|
|
if err == io.ErrUnexpectedEOF {
|
|
err = io.EOF
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
func (f *apiFile) Seek(offset int64, whence int) (int64, error) {
|
|
switch whence {
|
|
case io.SeekEnd:
|
|
offset = f.size + offset
|
|
case io.SeekCurrent:
|
|
offset = f.at + offset
|
|
}
|
|
if f.at == offset { // noop
|
|
return offset, nil
|
|
}
|
|
|
|
if f.at < offset && offset-f.at < forwardSeekLimit { // forward skip
|
|
r, err := io.CopyN(io.Discard, f.r.Output, offset-f.at)
|
|
|
|
f.at += r
|
|
return f.at, err
|
|
}
|
|
f.at = offset
|
|
return f.at, f.reset()
|
|
}
|
|
|
|
func (f *apiFile) Close() error {
|
|
if f.r != nil {
|
|
return f.r.Cancel()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (f *apiFile) Mode() os.FileMode {
|
|
return f.mode
|
|
}
|
|
|
|
func (f *apiFile) ModTime() time.Time {
|
|
return f.mtime
|
|
}
|
|
|
|
func (f *apiFile) Size() (int64, error) {
|
|
return f.size, nil
|
|
}
|
|
|
|
func stringToFileMode(mode string) (os.FileMode, error) {
|
|
if mode == "" {
|
|
return 0, nil
|
|
}
|
|
mode64, err := strconv.ParseUint(mode, 8, 32)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("cannot parse mode %s: %s", mode, err)
|
|
}
|
|
return os.FileMode(uint32(mode64)), nil
|
|
}
|
|
|
|
func (api *UnixfsAPI) getFile(ctx context.Context, p path.Path, size int64, mode os.FileMode, mtime time.Time) (files.Node, error) {
|
|
f := &apiFile{
|
|
ctx: ctx,
|
|
core: api.core(),
|
|
size: size,
|
|
path: p,
|
|
mode: mode,
|
|
mtime: mtime,
|
|
}
|
|
|
|
return f, f.reset()
|
|
}
|
|
|
|
type apiIter struct {
|
|
ctx context.Context
|
|
core *UnixfsAPI
|
|
|
|
err error
|
|
|
|
dec *json.Decoder
|
|
curFile files.Node
|
|
cur lsLink
|
|
}
|
|
|
|
func (it *apiIter) Err() error {
|
|
return it.err
|
|
}
|
|
|
|
func (it *apiIter) Name() string {
|
|
return it.cur.Name
|
|
}
|
|
|
|
func (it *apiIter) Next() bool {
|
|
if it.ctx.Err() != nil {
|
|
it.err = it.ctx.Err()
|
|
return false
|
|
}
|
|
|
|
var out lsOutput
|
|
if err := it.dec.Decode(&out); err != nil {
|
|
if err != io.EOF {
|
|
it.err = err
|
|
}
|
|
return false
|
|
}
|
|
|
|
if len(out.Objects) != 1 {
|
|
it.err = fmt.Errorf("ls returned more objects than expected (%d)", len(out.Objects))
|
|
return false
|
|
}
|
|
|
|
if len(out.Objects[0].Links) != 1 {
|
|
it.err = fmt.Errorf("ls returned more links than expected (%d)", len(out.Objects[0].Links))
|
|
return false
|
|
}
|
|
|
|
it.cur = out.Objects[0].Links[0]
|
|
c, err := cid.Parse(it.cur.Hash)
|
|
if err != nil {
|
|
it.err = err
|
|
return false
|
|
}
|
|
|
|
switch it.cur.Type {
|
|
case unixfs.THAMTShard, unixfs.TMetadata, unixfs.TDirectory:
|
|
it.curFile, err = it.core.getDir(it.ctx, path.FromCid(c), int64(it.cur.Size), it.cur.Mode, it.cur.ModTime)
|
|
if err != nil {
|
|
it.err = err
|
|
return false
|
|
}
|
|
case unixfs.TFile:
|
|
it.curFile, err = it.core.getFile(it.ctx, path.FromCid(c), int64(it.cur.Size), it.cur.Mode, it.cur.ModTime)
|
|
if err != nil {
|
|
it.err = err
|
|
return false
|
|
}
|
|
case unixfs.TSymlink:
|
|
it.curFile, err = it.core.getSymlink(it.ctx, path.FromCid(c), it.cur.ModTime)
|
|
if err != nil {
|
|
it.err = err
|
|
return false
|
|
}
|
|
default:
|
|
it.err = fmt.Errorf("file type %d not supported", it.cur.Type)
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (it *apiIter) Node() files.Node {
|
|
return it.curFile
|
|
}
|
|
|
|
type apiDir struct {
|
|
ctx context.Context
|
|
core *UnixfsAPI
|
|
size int64
|
|
path path.Path
|
|
|
|
mode os.FileMode
|
|
mtime time.Time
|
|
|
|
dec *json.Decoder
|
|
}
|
|
|
|
func (d *apiDir) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (d *apiDir) Mode() os.FileMode {
|
|
return d.mode
|
|
}
|
|
|
|
func (d *apiDir) ModTime() time.Time {
|
|
return d.mtime
|
|
}
|
|
|
|
func (d *apiDir) Size() (int64, error) {
|
|
return d.size, nil
|
|
}
|
|
|
|
func (d *apiDir) Entries() files.DirIterator {
|
|
return &apiIter{
|
|
ctx: d.ctx,
|
|
core: d.core,
|
|
dec: d.dec,
|
|
}
|
|
}
|
|
|
|
func (api *UnixfsAPI) getDir(ctx context.Context, p path.Path, size int64, mode os.FileMode, modTime time.Time) (files.Node, error) {
|
|
resp, err := api.core().Request("ls", p.String()).
|
|
Option("resolve-size", true).
|
|
Option("stream", true).Send(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Error != nil {
|
|
return nil, resp.Error
|
|
}
|
|
|
|
data, _ := io.ReadAll(resp.Output)
|
|
rdr := bytes.NewReader(data)
|
|
|
|
d := &apiDir{
|
|
ctx: ctx,
|
|
core: api,
|
|
size: size,
|
|
path: p,
|
|
mode: mode,
|
|
mtime: modTime,
|
|
|
|
//dec: json.NewDecoder(resp.Output),
|
|
dec: json.NewDecoder(rdr),
|
|
}
|
|
|
|
return d, nil
|
|
}
|
|
|
|
func (api *UnixfsAPI) getSymlink(ctx context.Context, p path.Path, modTime time.Time) (files.Node, error) {
|
|
resp, err := api.core().Request("cat", p.String()).
|
|
Option("resolve-size", true).
|
|
Option("stream", true).Send(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.Error != nil {
|
|
return nil, resp.Error
|
|
}
|
|
|
|
target, err := io.ReadAll(resp.Output)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return files.NewSymlinkFile(string(target), modTime), nil
|
|
}
|
|
|
|
var (
|
|
_ files.File = &apiFile{}
|
|
_ files.Directory = &apiDir{}
|
|
)
|