filehandle_read.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package mount
  2. import (
  3. "context"
  4. "fmt"
  5. "github.com/chrislusf/seaweedfs/weed/filer"
  6. "github.com/chrislusf/seaweedfs/weed/glog"
  7. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  8. "io"
  9. )
  10. func (fh *FileHandle) lockForRead(startOffset int64, size int) {
  11. fh.dirtyPages.LockForRead(startOffset, startOffset+int64(size))
  12. }
  13. func (fh *FileHandle) unlockForRead(startOffset int64, size int) {
  14. fh.dirtyPages.UnlockForRead(startOffset, startOffset+int64(size))
  15. }
  16. func (fh *FileHandle) readFromDirtyPages(buff []byte, startOffset int64) (maxStop int64) {
  17. maxStop = fh.dirtyPages.ReadDirtyDataAt(buff, startOffset)
  18. return
  19. }
  20. func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) {
  21. fileFullPath := fh.FullPath()
  22. entry := fh.entry
  23. if entry == nil {
  24. return 0, io.EOF
  25. }
  26. if entry.IsInRemoteOnly() {
  27. glog.V(4).Infof("download remote entry %s", fileFullPath)
  28. newEntry, err := fh.downloadRemoteEntry(entry)
  29. if err != nil {
  30. glog.V(1).Infof("download remote entry %s: %v", fileFullPath, err)
  31. return 0, err
  32. }
  33. entry = newEntry
  34. }
  35. fileSize := int64(filer.FileSize(entry))
  36. if fileSize == 0 {
  37. glog.V(1).Infof("empty fh %v", fileFullPath)
  38. return 0, io.EOF
  39. }
  40. if offset+int64(len(buff)) <= int64(len(entry.Content)) {
  41. totalRead := copy(buff, entry.Content[offset:])
  42. glog.V(4).Infof("file handle read cached %s [%d,%d] %d", fileFullPath, offset, offset+int64(totalRead), totalRead)
  43. return int64(totalRead), nil
  44. }
  45. var chunkResolveErr error
  46. if fh.entryViewCache == nil {
  47. fh.entryViewCache, chunkResolveErr = filer.NonOverlappingVisibleIntervals(fh.wfs.LookupFn(), entry.Chunks, 0, fileSize)
  48. if chunkResolveErr != nil {
  49. return 0, fmt.Errorf("fail to resolve chunk manifest: %v", chunkResolveErr)
  50. }
  51. fh.reader = nil
  52. }
  53. reader := fh.reader
  54. if reader == nil {
  55. chunkViews := filer.ViewFromVisibleIntervals(fh.entryViewCache, 0, fileSize)
  56. glog.V(4).Infof("file handle read %s [%d,%d) from %d views", fileFullPath, offset, offset+int64(len(buff)), len(chunkViews))
  57. for _, chunkView := range chunkViews {
  58. glog.V(4).Infof(" read %s [%d,%d) from chunk %+v", fileFullPath, chunkView.LogicOffset, chunkView.LogicOffset+int64(chunkView.Size), chunkView.FileId)
  59. }
  60. reader = filer.NewChunkReaderAtFromClient(fh.wfs.LookupFn(), chunkViews, fh.wfs.chunkCache, fileSize)
  61. }
  62. fh.reader = reader
  63. totalRead, err := reader.ReadAt(buff, offset)
  64. if err != nil && err != io.EOF {
  65. glog.Errorf("file handle read %s: %v", fileFullPath, err)
  66. }
  67. // glog.V(4).Infof("file handle read %s [%d,%d] %d : %v", fileFullPath, offset, offset+int64(totalRead), totalRead, err)
  68. return int64(totalRead), err
  69. }
  70. func (fh *FileHandle) downloadRemoteEntry(entry *filer_pb.Entry) (*filer_pb.Entry, error) {
  71. fileFullPath := fh.FullPath()
  72. dir, _ := fileFullPath.DirAndName()
  73. err := fh.wfs.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
  74. request := &filer_pb.CacheRemoteObjectToLocalClusterRequest{
  75. Directory: string(dir),
  76. Name: entry.Name,
  77. }
  78. glog.V(4).Infof("download entry: %v", request)
  79. resp, err := client.CacheRemoteObjectToLocalCluster(context.Background(), request)
  80. if err != nil {
  81. return fmt.Errorf("CacheRemoteObjectToLocalCluster file %s: %v", fileFullPath, err)
  82. }
  83. entry = resp.Entry
  84. fh.wfs.metaCache.InsertEntry(context.Background(), filer.FromPbEntry(request.Directory, resp.Entry))
  85. return nil
  86. })
  87. return entry, err
  88. }