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.

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