Added channel reader
This commit is contained in:
parent
d2dbcd8713
commit
4333b83ca2
9
fuse.go
9
fuse.go
@ -246,6 +246,15 @@ func (fh *bytesFileReadHandle) Read(ctx context.Context, dest []byte, off int64)
|
|||||||
return fuse.ReadResultData(fh.content[off:end]), 0
|
return fuse.ReadResultData(fh.content[off:end]), 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type sensorFileReadHandle struct {
|
||||||
|
ch <-chan uint8
|
||||||
|
}
|
||||||
|
var _ = (fs.FileReader)((*sensorFileReadHandle)(nil))
|
||||||
|
func (fh *sensorFileReadHandle) Read(ctx context.Context, dest []byte, off int64) (fuse.ReadResult, syscall.Errno) {
|
||||||
|
return nil, 0
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
type bytesFileWriteHandle struct {
|
type bytesFileWriteHandle struct {
|
||||||
content []byte
|
content []byte
|
||||||
path string
|
path string
|
||||||
|
Loading…
Reference in New Issue
Block a user