You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
2.6 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. package mount
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "github.com/seaweedfs/seaweedfs/weed/filer"
  7. "github.com/seaweedfs/seaweedfs/weed/glog"
  8. "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
  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, tsNs int64) (maxStop int64) {
  17. maxStop = fh.dirtyPages.ReadDirtyDataAt(buff, startOffset, tsNs)
  18. return
  19. }
  20. func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, int64, error) {
  21. fh.entryLock.Lock()
  22. defer fh.entryLock.Unlock()
  23. fileFullPath := fh.FullPath()
  24. entry := fh.GetEntry()
  25. if entry == nil {
  26. return 0, 0, io.EOF
  27. }
  28. if entry.IsInRemoteOnly() {
  29. glog.V(4).Infof("download remote entry %s", fileFullPath)
  30. newEntry, err := fh.downloadRemoteEntry(entry)
  31. if err != nil {
  32. glog.V(1).Infof("download remote entry %s: %v", fileFullPath, err)
  33. return 0, 0, err
  34. }
  35. entry = newEntry
  36. }
  37. fileSize := int64(filer.FileSize(entry))
  38. if fileSize == 0 {
  39. glog.V(1).Infof("empty fh %v", fileFullPath)
  40. return 0, 0, io.EOF
  41. }
  42. if offset+int64(len(buff)) <= int64(len(entry.Content)) {
  43. totalRead := copy(buff, entry.Content[offset:])
  44. glog.V(4).Infof("file handle read cached %s [%d,%d] %d", fileFullPath, offset, offset+int64(totalRead), totalRead)
  45. return int64(totalRead), 0, nil
  46. }
  47. totalRead, ts, err := fh.entryChunkGroup.ReadDataAt(fileSize, buff, offset)
  48. if err != nil && err != io.EOF {
  49. glog.Errorf("file handle read %s: %v", fileFullPath, err)
  50. }
  51. // glog.V(4).Infof("file handle read %s [%d,%d] %d : %v", fileFullPath, offset, offset+int64(totalRead), totalRead, err)
  52. return int64(totalRead), ts, err
  53. }
  54. func (fh *FileHandle) downloadRemoteEntry(entry *filer_pb.Entry) (*filer_pb.Entry, error) {
  55. fileFullPath := fh.FullPath()
  56. dir, _ := fileFullPath.DirAndName()
  57. err := fh.wfs.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
  58. request := &filer_pb.CacheRemoteObjectToLocalClusterRequest{
  59. Directory: string(dir),
  60. Name: entry.Name,
  61. }
  62. glog.V(4).Infof("download entry: %v", request)
  63. resp, err := client.CacheRemoteObjectToLocalCluster(context.Background(), request)
  64. if err != nil {
  65. return fmt.Errorf("CacheRemoteObjectToLocalCluster file %s: %v", fileFullPath, err)
  66. }
  67. entry = resp.Entry
  68. fh.wfs.metaCache.InsertEntry(context.Background(), filer.FromPbEntry(request.Directory, resp.Entry))
  69. return nil
  70. })
  71. return entry, err
  72. }