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