aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Schmidt <patrick.schmidt@innogames.com>2022-08-22 17:24:06 +0200
committerGitHub <noreply@github.com>2022-08-22 08:24:06 -0700
commitf875031f0630e1c054c1b44ae9769db1a11362a1 (patch)
treedd572af854973e9e1ea889028c0bf749483392ed
parentbdba3da2e4c1c498dc26b811fe5a1bc9e1e8f925 (diff)
downloadseaweedfs-f875031f0630e1c054c1b44ae9769db1a11362a1.tar.xz
seaweedfs-f875031f0630e1c054c1b44ae9769db1a11362a1.zip
Reuse readDataByFileHandle in Read call (#3482)
-rw-r--r--weed/mount/weedfs_file_copy_range.go26
-rw-r--r--weed/mount/weedfs_file_read.go30
2 files changed, 23 insertions, 33 deletions
diff --git a/weed/mount/weedfs_file_copy_range.go b/weed/mount/weedfs_file_copy_range.go
index 0620b7dab..412869abc 100644
--- a/weed/mount/weedfs_file_copy_range.go
+++ b/weed/mount/weedfs_file_copy_range.go
@@ -1,7 +1,6 @@
package mount
import (
- "io"
"net/http"
"github.com/hanwen/go-fuse/v2/fuse"
@@ -73,11 +72,13 @@ func (wfs *WFS) CopyFileRange(cancel <-chan struct{}, in *fuse.CopyFileRangeIn)
in.OffOut, in.OffOut+in.Len,
)
- data, totalRead, err := readDataByFileHandle(fhIn, in)
+ data := make([]byte, in.Len)
+ totalRead, err := readDataByFileHandle(data, fhIn, int64(in.OffIn))
if err != nil {
glog.Warningf("file handle read %s %d: %v", fhIn.FullPath(), totalRead, err)
return 0, fuse.EIO
}
+ data = data[:totalRead]
if totalRead == 0 {
return 0, fuse.OK
@@ -86,32 +87,15 @@ func (wfs *WFS) CopyFileRange(cancel <-chan struct{}, in *fuse.CopyFileRangeIn)
// put data at the specified offset in target file
fhOut.dirtyPages.writerPattern.MonitorWriteAt(int64(in.OffOut), int(in.Len))
fhOut.entry.Content = nil
- fhOut.dirtyPages.AddPage(int64(in.OffOut), data[:totalRead], fhOut.dirtyPages.writerPattern.IsSequentialMode())
+ fhOut.dirtyPages.AddPage(int64(in.OffOut), data, fhOut.dirtyPages.writerPattern.IsSequentialMode())
fhOut.entry.Attributes.FileSize = uint64(max(int64(in.OffOut)+totalRead, int64(fhOut.entry.Attributes.FileSize)))
fhOut.dirtyMetadata = true
written = uint32(totalRead)
// detect mime type
if written > 0 && in.OffOut <= 512 {
- fhOut.contentType = http.DetectContentType(data[:min(totalRead, 512)-1])
+ fhOut.contentType = http.DetectContentType(data)
}
return written, fuse.OK
}
-
-func readDataByFileHandle(fhIn *FileHandle, in *fuse.CopyFileRangeIn) ([]byte, int64, error) {
- // read data from source file
- fhIn.lockForRead(int64(in.OffIn), int(in.Len))
- defer fhIn.unlockForRead(int64(in.OffIn), int(in.Len))
-
- data := make([]byte, int(in.Len))
- totalRead, err := fhIn.readFromChunks(data, int64(in.OffIn))
- if err == nil || err == io.EOF {
- maxStop := fhIn.readFromDirtyPages(data, int64(in.OffIn))
- totalRead = max(maxStop-int64(in.OffIn), totalRead)
- }
- if err == io.EOF {
- err = nil
- }
- return data, totalRead, err
-}
diff --git a/weed/mount/weedfs_file_read.go b/weed/mount/weedfs_file_read.go
index 22b87fdad..0375bc206 100644
--- a/weed/mount/weedfs_file_read.go
+++ b/weed/mount/weedfs_file_read.go
@@ -43,18 +43,7 @@ func (wfs *WFS) Read(cancel <-chan struct{}, in *fuse.ReadIn, buff []byte) (fuse
defer fh.entryLock.Unlock()
offset := int64(in.Offset)
- fh.lockForRead(offset, len(buff))
- defer fh.unlockForRead(offset, len(buff))
-
- totalRead, err := fh.readFromChunks(buff, offset)
- if err == nil || err == io.EOF {
- maxStop := fh.readFromDirtyPages(buff, offset)
- totalRead = max(maxStop-offset, totalRead)
- }
- if err == io.EOF {
- err = nil
- }
-
+ totalRead, err := readDataByFileHandle(buff, fh, offset)
if err != nil {
glog.Warningf("file handle read %s %d: %v", fh.FullPath(), totalRead, err)
return nil, fuse.EIO
@@ -62,3 +51,20 @@ func (wfs *WFS) Read(cancel <-chan struct{}, in *fuse.ReadIn, buff []byte) (fuse
return fuse.ReadResultData(buff[:totalRead]), fuse.OK
}
+
+func readDataByFileHandle(buff []byte, fhIn *FileHandle, offset int64) (int64, error) {
+ // read data from source file
+ size := len(buff)
+ fhIn.lockForRead(offset, size)
+ defer fhIn.unlockForRead(offset, size)
+
+ n, err := fhIn.readFromChunks(buff, offset)
+ if err == nil || err == io.EOF {
+ maxStop := fhIn.readFromDirtyPages(buff, offset)
+ n = max(maxStop-offset, n)
+ }
+ if err == io.EOF {
+ err = nil
+ }
+ return n, err
+}