-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
- Loading branch information
Showing
3 changed files
with
217 additions
and
0 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
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,200 @@ | ||
package coreapi | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"errors" | ||
"io" | ||
"io/ioutil" | ||
"os" | ||
gopath "path" | ||
"time" | ||
|
||
files "gx/ipfs/QmSP88ryZkHSRn1fnngAaV2Vcn63WUJzAavnRM9CVdU1Ky/go-ipfs-cmdkit/files" | ||
ft "gx/ipfs/QmU4x3742bvgfxJsByEDpBnifJqjJdV6x528co4hwKCn46/go-unixfs" | ||
uio "gx/ipfs/QmU4x3742bvgfxJsByEDpBnifJqjJdV6x528co4hwKCn46/go-unixfs/io" | ||
dag "gx/ipfs/QmcBoNcAP6qDjgRBew7yjvCqHq7p5jMstE44jPUBWBxzsV/go-merkledag" | ||
ipld "gx/ipfs/QmdDXJs4axxefSPgK6Y1QhpJWKuDPnGJiqgq4uncb4rFHL/go-ipld-format" | ||
) | ||
|
||
// Number to file to prefetch in directories | ||
// TODO: should we allow setting this via context hint? | ||
const prefetchFiles = 4 | ||
|
||
// TODO: this probably belongs in go-unixfs (and could probably replace a chunk of it's interface in the long run) | ||
|
||
type sizeInfo struct { | ||
size int64 | ||
name string | ||
modTime time.Time | ||
} | ||
|
||
func (s *sizeInfo) Name() string { | ||
return s.name | ||
} | ||
|
||
func (s *sizeInfo) Size() int64 { | ||
return s.size | ||
} | ||
|
||
func (s *sizeInfo) Mode() os.FileMode { | ||
return 0444 // all read | ||
} | ||
|
||
func (s *sizeInfo) ModTime() time.Time { | ||
return s.modTime | ||
} | ||
|
||
func (s *sizeInfo) IsDir() bool { | ||
return false | ||
} | ||
|
||
func (s *sizeInfo) Sys() interface{} { | ||
return nil | ||
} | ||
|
||
type ufsDirectory struct { | ||
ctx context.Context | ||
dserv ipld.DAGService | ||
|
||
files chan *ipld.Link | ||
|
||
name string | ||
path string | ||
} | ||
|
||
func (d *ufsDirectory) Close() error { | ||
return files.ErrNotReader | ||
} | ||
|
||
func (d *ufsDirectory) Read(_ []byte) (int, error) { | ||
return 0, files.ErrNotReader | ||
} | ||
|
||
func (d *ufsDirectory) FileName() string { | ||
return d.name | ||
} | ||
|
||
func (d *ufsDirectory) FullPath() string { | ||
return d.path | ||
} | ||
|
||
func (d *ufsDirectory) IsDirectory() bool { | ||
return true | ||
} | ||
|
||
func (d *ufsDirectory) NextFile() (files.File, error) { | ||
l, ok := <-d.files | ||
if !ok { | ||
return nil, io.EOF | ||
} | ||
|
||
nd, err := l.GetNode(d.ctx, d.dserv) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return newUnixfsFile(d.ctx, d.dserv, nd, l.Name, d) | ||
} | ||
|
||
type ufsFile struct { | ||
uio.DagReader | ||
|
||
name string | ||
path string | ||
} | ||
|
||
func (f *ufsFile) IsDirectory() bool { | ||
return false | ||
} | ||
|
||
func (f *ufsFile) NextFile() (files.File, error) { | ||
return nil, files.ErrNotDirectory | ||
} | ||
|
||
func (f *ufsFile) FileName() string { | ||
return f.name | ||
} | ||
|
||
func (f *ufsFile) FullPath() string { | ||
return f.path | ||
} | ||
|
||
func (f *ufsFile) Size() (int64, error) { | ||
return int64(f.DagReader.Size()), nil | ||
} | ||
|
||
func newUnixfsDir(ctx context.Context, dserv ipld.DAGService, nd ipld.Node, name string, path string) (files.File, error) { | ||
dir, err := uio.NewDirectoryFromNode(dserv, nd) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
fileCh := make(chan *ipld.Link, prefetchFiles) | ||
go func() { | ||
dir.ForEachLink(ctx, func(link *ipld.Link) error { | ||
select { | ||
case fileCh <- link: | ||
case <-ctx.Done(): | ||
return ctx.Err() | ||
} | ||
return nil | ||
}) | ||
|
||
close(fileCh) | ||
}() | ||
|
||
return &ufsDirectory{ | ||
ctx: ctx, | ||
dserv: dserv, | ||
|
||
files: fileCh, | ||
|
||
name: name, | ||
path: path, | ||
}, nil | ||
} | ||
|
||
func newUnixfsFile(ctx context.Context, dserv ipld.DAGService, nd ipld.Node, name string, parent files.File) (files.File, error) { | ||
path := name | ||
if parent != nil { | ||
path = gopath.Join(parent.FullPath(), name) | ||
} | ||
|
||
switch dn := nd.(type) { | ||
case *dag.ProtoNode: | ||
fsn, err := ft.FSNodeFromBytes(nd.RawData()) | ||
if err != nil { | ||
return nil, err | ||
} | ||
if fsn.IsDir() { | ||
return newUnixfsDir(ctx, dserv, nd, name, path) | ||
} | ||
|
||
case *dag.RawNode: | ||
|
||
r := ioutil.NopCloser(bytes.NewReader(dn.RawData())) | ||
fi := &sizeInfo{ | ||
size: int64(len(dn.RawData())), | ||
} | ||
|
||
return files.NewReaderFile("", "", r, fi), nil | ||
default: | ||
return nil, errors.New("unknown node type") | ||
} | ||
|
||
dr, err := uio.NewDagReader(ctx, nd, dserv) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &ufsFile{ | ||
DagReader: dr, | ||
|
||
name: name, | ||
path: path, | ||
}, nil | ||
} | ||
|
||
|
||
var _ os.FileInfo = &sizeInfo{} |
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