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.

238 lines
6.4 KiB

7 years ago
7 years ago
7 years ago
7 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
5 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
6 years ago
6 years ago
5 years ago
6 years ago
  1. package filesys
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "math"
  7. "net/http"
  8. "os"
  9. "time"
  10. "github.com/chrislusf/seaweedfs/weed/filer2"
  11. "github.com/chrislusf/seaweedfs/weed/glog"
  12. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  13. "github.com/seaweedfs/fuse"
  14. "github.com/seaweedfs/fuse/fs"
  15. )
  16. type FileHandle struct {
  17. // cache file has been written to
  18. dirtyPages *ContinuousDirtyPages
  19. contentType string
  20. dirtyMetadata bool
  21. handle uint64
  22. f *File
  23. RequestId fuse.RequestID // unique ID for request
  24. NodeId fuse.NodeID // file or directory the request is about
  25. Uid uint32 // user ID of process making request
  26. Gid uint32 // group ID of process making request
  27. }
  28. func newFileHandle(file *File, uid, gid uint32) *FileHandle {
  29. fh := &FileHandle{
  30. f: file,
  31. dirtyPages: newDirtyPages(file),
  32. Uid: uid,
  33. Gid: gid,
  34. }
  35. if fh.f.entry != nil {
  36. fh.f.entry.Attributes.FileSize = filer2.TotalSize(fh.f.entry.Chunks)
  37. }
  38. return fh
  39. }
  40. var _ = fs.Handle(&FileHandle{})
  41. // var _ = fs.HandleReadAller(&FileHandle{})
  42. var _ = fs.HandleReader(&FileHandle{})
  43. var _ = fs.HandleFlusher(&FileHandle{})
  44. var _ = fs.HandleWriter(&FileHandle{})
  45. var _ = fs.HandleReleaser(&FileHandle{})
  46. func (fh *FileHandle) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error {
  47. glog.V(4).Infof("%s read fh %d: [%d,%d)", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(req.Size))
  48. buff := make([]byte, req.Size)
  49. totalRead, err := fh.readFromChunks(buff, req.Offset)
  50. if err == nil {
  51. dirtyOffset, dirtySize := fh.readFromDirtyPages(buff, req.Offset)
  52. if totalRead+req.Offset < dirtyOffset+int64(dirtySize) {
  53. totalRead = dirtyOffset + int64(dirtySize) - req.Offset
  54. }
  55. }
  56. resp.Data = buff[:totalRead]
  57. if err != nil {
  58. glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err)
  59. return fuse.EIO
  60. }
  61. return err
  62. }
  63. func (fh *FileHandle) readFromDirtyPages(buff []byte, startOffset int64) (offset int64, size int) {
  64. return fh.dirtyPages.ReadDirtyData(buff, startOffset)
  65. }
  66. func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) {
  67. // this value should come from the filer instead of the old f
  68. if len(fh.f.entry.Chunks) == 0 {
  69. glog.V(1).Infof("empty fh %v", fh.f.fullpath())
  70. return 0, nil
  71. }
  72. if fh.f.entryViewCache == nil {
  73. fh.f.entryViewCache = filer2.NonOverlappingVisibleIntervals(fh.f.entry.Chunks)
  74. fh.f.reader = nil
  75. }
  76. if fh.f.reader == nil {
  77. chunkViews := filer2.ViewFromVisibleIntervals(fh.f.entryViewCache, 0, math.MaxInt32)
  78. fh.f.reader = filer2.NewChunkReaderAtFromClient(fh.f.wfs, chunkViews, fh.f.wfs.chunkCache)
  79. }
  80. totalRead, err := fh.f.reader.ReadAt(buff, offset)
  81. if err == io.EOF {
  82. err = nil
  83. }
  84. if err != nil {
  85. glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err)
  86. }
  87. // glog.V(0).Infof("file handle read %s [%d,%d] %d : %v", fh.f.fullpath(), offset, offset+int64(totalRead), totalRead, err)
  88. return int64(totalRead), err
  89. }
  90. // Write to the file handle
  91. func (fh *FileHandle) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error {
  92. // write the request to volume servers
  93. data := make([]byte, len(req.Data))
  94. copy(data, req.Data)
  95. fh.f.entry.Attributes.FileSize = uint64(max(req.Offset+int64(len(data)), int64(fh.f.entry.Attributes.FileSize)))
  96. // glog.V(0).Infof("%v write [%d,%d)", fh.f.fullpath(), req.Offset, req.Offset+int64(len(req.Data)))
  97. chunks, err := fh.dirtyPages.AddPage(req.Offset, data)
  98. if err != nil {
  99. glog.Errorf("%v write fh %d: [%d,%d): %v", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(len(data)), err)
  100. return fuse.EIO
  101. }
  102. resp.Size = len(data)
  103. if req.Offset == 0 {
  104. // detect mime type
  105. fh.contentType = http.DetectContentType(data)
  106. fh.dirtyMetadata = true
  107. }
  108. if len(chunks) > 0 {
  109. fh.f.addChunks(chunks)
  110. fh.dirtyMetadata = true
  111. }
  112. return nil
  113. }
  114. func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) error {
  115. glog.V(4).Infof("%v release fh %d", fh.f.fullpath(), fh.handle)
  116. fh.f.isOpen--
  117. if fh.f.isOpen <= 0 {
  118. fh.dirtyPages.releaseResource()
  119. fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle))
  120. }
  121. fh.f.entryViewCache = nil
  122. fh.f.reader = nil
  123. return nil
  124. }
  125. func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
  126. // fflush works at fh level
  127. // send the data to the OS
  128. glog.V(4).Infof("%s fh %d flush %v", fh.f.fullpath(), fh.handle, req)
  129. chunks, err := fh.dirtyPages.FlushToStorage()
  130. if err != nil {
  131. glog.Errorf("flush %s: %v", fh.f.fullpath(), err)
  132. return fuse.EIO
  133. }
  134. if len(chunks) > 0 {
  135. fh.f.addChunks(chunks)
  136. fh.dirtyMetadata = true
  137. }
  138. if !fh.dirtyMetadata {
  139. return nil
  140. }
  141. err = fh.f.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  142. if fh.f.entry.Attributes != nil {
  143. fh.f.entry.Attributes.Mime = fh.contentType
  144. fh.f.entry.Attributes.Uid = req.Uid
  145. fh.f.entry.Attributes.Gid = req.Gid
  146. fh.f.entry.Attributes.Mtime = time.Now().Unix()
  147. fh.f.entry.Attributes.Crtime = time.Now().Unix()
  148. fh.f.entry.Attributes.FileMode = uint32(os.FileMode(fh.f.entry.Attributes.FileMode) &^ fh.f.wfs.option.Umask)
  149. fh.f.entry.Attributes.Collection = fh.dirtyPages.collection
  150. fh.f.entry.Attributes.Replication = fh.dirtyPages.replication
  151. }
  152. request := &filer_pb.CreateEntryRequest{
  153. Directory: fh.f.dir.FullPath(),
  154. Entry: fh.f.entry,
  155. }
  156. glog.V(3).Infof("%s set chunks: %v", fh.f.fullpath(), len(fh.f.entry.Chunks))
  157. for i, chunk := range fh.f.entry.Chunks {
  158. glog.V(3).Infof("%s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.FileId, chunk.Offset, chunk.Offset+int64(chunk.Size))
  159. }
  160. chunks, garbages := filer2.CompactFileChunks(fh.f.entry.Chunks)
  161. fh.f.entry.Chunks = chunks
  162. // fh.f.entryViewCache = nil
  163. if err := filer_pb.CreateEntry(client, request); err != nil {
  164. glog.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  165. return fmt.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  166. }
  167. fh.f.wfs.metaCache.InsertEntry(context.Background(), filer2.FromPbEntry(request.Directory, request.Entry))
  168. fh.f.wfs.deleteFileChunks(garbages)
  169. for i, chunk := range garbages {
  170. glog.V(3).Infof("garbage %s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.FileId, chunk.Offset, chunk.Offset+int64(chunk.Size))
  171. }
  172. return nil
  173. })
  174. if err == nil {
  175. fh.dirtyMetadata = false
  176. }
  177. if err != nil {
  178. glog.Errorf("%v fh %d flush: %v", fh.f.fullpath(), fh.handle, err)
  179. return fuse.EIO
  180. }
  181. return nil
  182. }