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.

298 lines
8.0 KiB

7 years ago
7 years ago
7 years ago
7 years ago
4 years ago
4 years ago
5 years ago
4 years ago
4 years ago
6 years ago
4 years ago
4 years ago
4 years ago
4 years ago
6 years ago
6 years ago
4 years ago
6 years ago
  1. package filesys
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "math"
  7. "net/http"
  8. "os"
  9. "sync"
  10. "time"
  11. "github.com/seaweedfs/fuse"
  12. "github.com/seaweedfs/fuse/fs"
  13. "github.com/chrislusf/seaweedfs/weed/filer"
  14. "github.com/chrislusf/seaweedfs/weed/glog"
  15. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  16. )
  17. type FileHandle struct {
  18. // cache file has been written to
  19. dirtyPages *ContinuousDirtyPages
  20. contentType string
  21. handle uint64
  22. sync.RWMutex
  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. fh := &FileHandle{
  31. f: file,
  32. dirtyPages: newDirtyPages(file),
  33. Uid: uid,
  34. Gid: gid,
  35. }
  36. if fh.f.entry != nil {
  37. fh.f.entry.Attributes.FileSize = filer.FileSize(fh.f.entry)
  38. }
  39. return fh
  40. }
  41. var _ = fs.Handle(&FileHandle{})
  42. // var _ = fs.HandleReadAller(&FileHandle{})
  43. var _ = fs.HandleReader(&FileHandle{})
  44. var _ = fs.HandleFlusher(&FileHandle{})
  45. var _ = fs.HandleWriter(&FileHandle{})
  46. var _ = fs.HandleReleaser(&FileHandle{})
  47. func (fh *FileHandle) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error {
  48. glog.V(4).Infof("%s read fh %d: [%d,%d) size %d resp.Data cap=%d", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(req.Size), req.Size, cap(resp.Data))
  49. fh.RLock()
  50. defer fh.RUnlock()
  51. if req.Size <= 0 {
  52. return nil
  53. }
  54. buff := resp.Data[:cap(resp.Data)]
  55. if req.Size > cap(resp.Data) {
  56. // should not happen
  57. buff = make([]byte, req.Size)
  58. }
  59. totalRead, err := fh.readFromChunks(buff, req.Offset)
  60. if err == nil {
  61. maxStop := fh.readFromDirtyPages(buff, req.Offset)
  62. totalRead = max(maxStop-req.Offset, totalRead)
  63. }
  64. if err == io.EOF {
  65. err = nil
  66. }
  67. if err != nil {
  68. glog.Warningf("file handle read %s %d: %v", fh.f.fullpath(), totalRead, err)
  69. return fuse.EIO
  70. }
  71. if totalRead > int64(len(buff)) {
  72. glog.Warningf("%s FileHandle Read %d: [%d,%d) size %d totalRead %d", fh.f.fullpath(), fh.handle, req.Offset, req.Offset+int64(req.Size), req.Size, totalRead)
  73. totalRead = min(int64(len(buff)), totalRead)
  74. }
  75. // resp.Data = buff[:totalRead]
  76. resp.Data = buff
  77. return err
  78. }
  79. func (fh *FileHandle) readFromDirtyPages(buff []byte, startOffset int64) (maxStop int64) {
  80. maxStop = fh.dirtyPages.ReadDirtyDataAt(buff, startOffset)
  81. return
  82. }
  83. func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) {
  84. fileSize := int64(filer.FileSize(fh.f.entry))
  85. if fileSize == 0 {
  86. glog.V(1).Infof("empty fh %v", fh.f.fullpath())
  87. return 0, io.EOF
  88. }
  89. if offset+int64(len(buff)) <= int64(len(fh.f.entry.Content)) {
  90. totalRead := copy(buff, fh.f.entry.Content[offset:])
  91. glog.V(4).Infof("file handle read cached %s [%d,%d] %d", fh.f.fullpath(), offset, offset+int64(totalRead), totalRead)
  92. return int64(totalRead), nil
  93. }
  94. var chunkResolveErr error
  95. if fh.f.entryViewCache == nil {
  96. fh.f.entryViewCache, chunkResolveErr = filer.NonOverlappingVisibleIntervals(filer.LookupFn(fh.f.wfs), fh.f.entry.Chunks)
  97. if chunkResolveErr != nil {
  98. return 0, fmt.Errorf("fail to resolve chunk manifest: %v", chunkResolveErr)
  99. }
  100. fh.f.reader = nil
  101. }
  102. if fh.f.reader == nil {
  103. chunkViews := filer.ViewFromVisibleIntervals(fh.f.entryViewCache, 0, math.MaxInt64)
  104. fh.f.reader = filer.NewChunkReaderAtFromClient(fh.f.wfs, chunkViews, fh.f.wfs.chunkCache, fileSize)
  105. }
  106. totalRead, err := fh.f.reader.ReadAt(buff, offset)
  107. if err != nil && err != io.EOF {
  108. glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err)
  109. }
  110. glog.V(4).Infof("file handle read %s [%d,%d] %d : %v", fh.f.fullpath(), offset, offset+int64(totalRead), totalRead, err)
  111. return int64(totalRead), err
  112. }
  113. // Write to the file handle
  114. func (fh *FileHandle) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error {
  115. fh.Lock()
  116. defer fh.Unlock()
  117. // write the request to volume servers
  118. data := req.Data
  119. if len(data) <= 512 {
  120. // fuse message cacheable size
  121. data = make([]byte, len(req.Data))
  122. copy(data, req.Data)
  123. }
  124. fh.f.entry.Content = nil
  125. fh.f.entry.Attributes.FileSize = uint64(max(req.Offset+int64(len(data)), int64(fh.f.entry.Attributes.FileSize)))
  126. glog.V(4).Infof("%v write [%d,%d) %d", fh.f.fullpath(), req.Offset, req.Offset+int64(len(req.Data)), len(req.Data))
  127. fh.dirtyPages.AddPage(req.Offset, data)
  128. resp.Size = len(data)
  129. if req.Offset == 0 {
  130. // detect mime type
  131. fh.contentType = http.DetectContentType(data)
  132. fh.f.dirtyMetadata = true
  133. }
  134. fh.f.dirtyMetadata = true
  135. return nil
  136. }
  137. func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) error {
  138. glog.V(4).Infof("Release %v fh %d", fh.f.fullpath(), fh.handle)
  139. fh.Lock()
  140. defer fh.Unlock()
  141. fh.f.isOpen--
  142. if fh.f.isOpen < 0 {
  143. glog.V(0).Infof("Release reset %s open count %d => %d", fh.f.Name, fh.f.isOpen, 0)
  144. fh.f.isOpen = 0
  145. return nil
  146. }
  147. if fh.f.isOpen == 0 {
  148. if err := fh.doFlush(ctx, req.Header); err != nil {
  149. glog.Errorf("Release doFlush %s: %v", fh.f.Name, err)
  150. }
  151. // stop the goroutine
  152. if !fh.dirtyPages.chunkSaveErrChanClosed {
  153. fh.dirtyPages.chunkSaveErrChanClosed = true
  154. close(fh.dirtyPages.chunkSaveErrChan)
  155. }
  156. fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle))
  157. }
  158. return nil
  159. }
  160. func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
  161. fh.Lock()
  162. defer fh.Unlock()
  163. return fh.doFlush(ctx, req.Header)
  164. }
  165. func (fh *FileHandle) doFlush(ctx context.Context, header fuse.Header) error {
  166. // flush works at fh level
  167. // send the data to the OS
  168. glog.V(4).Infof("doFlush %s fh %d", fh.f.fullpath(), fh.handle)
  169. fh.dirtyPages.saveExistingPagesToStorage()
  170. fh.dirtyPages.writeWaitGroup.Wait()
  171. if fh.dirtyPages.lastErr != nil {
  172. return fh.dirtyPages.lastErr
  173. }
  174. if !fh.f.dirtyMetadata {
  175. return nil
  176. }
  177. err := fh.f.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  178. if fh.f.entry.Attributes != nil {
  179. fh.f.entry.Attributes.Mime = fh.contentType
  180. if fh.f.entry.Attributes.Uid == 0 {
  181. fh.f.entry.Attributes.Uid = header.Uid
  182. }
  183. if fh.f.entry.Attributes.Gid == 0 {
  184. fh.f.entry.Attributes.Gid = header.Gid
  185. }
  186. if fh.f.entry.Attributes.Crtime == 0 {
  187. fh.f.entry.Attributes.Crtime = time.Now().Unix()
  188. }
  189. fh.f.entry.Attributes.Mtime = time.Now().Unix()
  190. fh.f.entry.Attributes.FileMode = uint32(os.FileMode(fh.f.entry.Attributes.FileMode) &^ fh.f.wfs.option.Umask)
  191. fh.f.entry.Attributes.Collection = fh.dirtyPages.collection
  192. fh.f.entry.Attributes.Replication = fh.dirtyPages.replication
  193. }
  194. request := &filer_pb.CreateEntryRequest{
  195. Directory: fh.f.dir.FullPath(),
  196. Entry: fh.f.entry,
  197. Signatures: []int32{fh.f.wfs.signature},
  198. }
  199. glog.V(4).Infof("%s set chunks: %v", fh.f.fullpath(), len(fh.f.entry.Chunks))
  200. for i, chunk := range fh.f.entry.Chunks {
  201. glog.V(4).Infof("%s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.GetFileIdString(), chunk.Offset, chunk.Offset+int64(chunk.Size))
  202. }
  203. manifestChunks, nonManifestChunks := filer.SeparateManifestChunks(fh.f.entry.Chunks)
  204. chunks, _ := filer.CompactFileChunks(filer.LookupFn(fh.f.wfs), nonManifestChunks)
  205. chunks, manifestErr := filer.MaybeManifestize(fh.f.wfs.saveDataAsChunk(fh.f.fullpath()), chunks)
  206. if manifestErr != nil {
  207. // not good, but should be ok
  208. glog.V(0).Infof("MaybeManifestize: %v", manifestErr)
  209. }
  210. fh.f.entry.Chunks = append(chunks, manifestChunks...)
  211. fh.f.wfs.mapPbIdFromLocalToFiler(request.Entry)
  212. defer fh.f.wfs.mapPbIdFromFilerToLocal(request.Entry)
  213. if err := filer_pb.CreateEntry(client, request); err != nil {
  214. glog.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  215. return fmt.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
  216. }
  217. fh.f.wfs.metaCache.InsertEntry(context.Background(), filer.FromPbEntry(request.Directory, request.Entry))
  218. return nil
  219. })
  220. if err == nil {
  221. fh.f.dirtyMetadata = false
  222. }
  223. if err != nil {
  224. glog.Errorf("%v fh %d flush: %v", fh.f.fullpath(), fh.handle, err)
  225. return fuse.EIO
  226. }
  227. return nil
  228. }