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.

236 lines
6.3 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. "math"
  6. "mime"
  7. "path"
  8. "time"
  9. "github.com/gabriel-vasile/mimetype"
  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 != nil {
  82. glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err)
  83. }
  84. // glog.V(0).Infof("file handle read %s [%d,%d] %d : %v", fh.f.fullpath(), offset, offset+int64(totalRead), totalRead, err)
  85. return int64(totalRead), err
  86. }
  87. // Write to the file handle
  88. func (fh *FileHandle) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error {
  89. // write the request to volume servers
  90. fh.f.entry.Attributes.FileSize = uint64(max(req.Offset+int64(len(req.Data)), int64(fh.f.entry.Attributes.FileSize)))
  91. // glog.V(0).Infof("%v write [%d,%d)", fh.f.fullpath(), req.Offset, req.Offset+int64(len(req.Data)))
  92. chunks, err := fh.dirtyPages.AddPage(req.Offset, req.Data)
  93. if err != nil {
  94. glog.Errorf("%v write fh %d: [%d,%d): %v", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(len(req.Data)), err)
  95. return fuse.EIO
  96. }
  97. resp.Size = len(req.Data)
  98. if req.Offset == 0 {
  99. // detect mime type
  100. detectedMIME := mimetype.Detect(req.Data)
  101. fh.contentType = detectedMIME.String()
  102. if ext := path.Ext(fh.f.Name); ext != detectedMIME.Extension() {
  103. fh.contentType = mime.TypeByExtension(ext)
  104. }
  105. fh.dirtyMetadata = true
  106. }
  107. if len(chunks) > 0 {
  108. fh.f.addChunks(chunks)
  109. fh.dirtyMetadata = true
  110. }
  111. return nil
  112. }
  113. func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) error {
  114. glog.V(4).Infof("%v release fh %d", fh.f.fullpath(), fh.handle)
  115. fh.f.isOpen--
  116. if fh.f.isOpen <= 0 {
  117. fh.dirtyPages.releaseResource()
  118. fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle))
  119. }
  120. fh.f.entryViewCache = nil
  121. fh.f.reader = nil
  122. return nil
  123. }
  124. func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
  125. // fflush works at fh level
  126. // send the data to the OS
  127. glog.V(4).Infof("%s fh %d flush %v", fh.f.fullpath(), fh.handle, req)
  128. chunks, err := fh.dirtyPages.FlushToStorage()
  129. if err != nil {
  130. glog.Errorf("flush %s: %v", fh.f.fullpath(), err)
  131. return fuse.EIO
  132. }
  133. if len(chunks) > 0 {
  134. fh.f.addChunks(chunks)
  135. fh.dirtyMetadata = true
  136. }
  137. if !fh.dirtyMetadata {
  138. return nil
  139. }
  140. err = fh.f.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  141. if fh.f.entry.Attributes != nil {
  142. fh.f.entry.Attributes.Mime = fh.contentType
  143. fh.f.entry.Attributes.Uid = req.Uid
  144. fh.f.entry.Attributes.Gid = req.Gid
  145. fh.f.entry.Attributes.Mtime = time.Now().Unix()
  146. fh.f.entry.Attributes.Crtime = time.Now().Unix()
  147. fh.f.entry.Attributes.FileMode = uint32(0777 &^ fh.f.wfs.option.Umask)
  148. fh.f.entry.Attributes.Collection = fh.dirtyPages.collection
  149. fh.f.entry.Attributes.Replication = fh.dirtyPages.replication
  150. }
  151. request := &filer_pb.CreateEntryRequest{
  152. Directory: fh.f.dir.FullPath(),
  153. Entry: fh.f.entry,
  154. }
  155. glog.V(3).Infof("%s set chunks: %v", fh.f.fullpath(), len(fh.f.entry.Chunks))
  156. for i, chunk := range fh.f.entry.Chunks {
  157. glog.V(3).Infof("%s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.FileId, chunk.Offset, chunk.Offset+int64(chunk.Size))
  158. }
  159. chunks, garbages := filer2.CompactFileChunks(fh.f.entry.Chunks)
  160. fh.f.entry.Chunks = chunks
  161. // fh.f.entryViewCache = nil
  162. if err := filer_pb.CreateEntry(client, request); err != nil {
  163. glog.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  164. return fmt.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  165. }
  166. fh.f.wfs.deleteFileChunks(garbages)
  167. for i, chunk := range garbages {
  168. glog.V(3).Infof("garbage %s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.FileId, chunk.Offset, chunk.Offset+int64(chunk.Size))
  169. }
  170. return nil
  171. })
  172. if err == nil {
  173. fh.dirtyMetadata = false
  174. }
  175. if err != nil {
  176. glog.Errorf("%v fh %d flush: %v", fh.f.fullpath(), fh.handle, err)
  177. return fuse.EIO
  178. }
  179. return nil
  180. }