123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- package filesys
- import (
- "context"
- "fmt"
- "io"
- "math"
- "net/http"
- "sync"
- "time"
- "github.com/seaweedfs/fuse"
- "github.com/seaweedfs/fuse/fs"
- "github.com/chrislusf/seaweedfs/weed/filer"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
- )
- type FileHandle struct {
- // cache file has been written to
- dirtyPages *ContinuousDirtyPages
- contentType string
- handle uint64
- sync.RWMutex
- f *File
- RequestId fuse.RequestID // unique ID for request
- NodeId fuse.NodeID // file or directory the request is about
- Uid uint32 // user ID of process making request
- Gid uint32 // group ID of process making request
- }
- func newFileHandle(file *File, uid, gid uint32) *FileHandle {
- fh := &FileHandle{
- f: file,
- dirtyPages: newDirtyPages(file),
- Uid: uid,
- Gid: gid,
- }
- entry := fh.f.getEntry()
- if entry != nil {
- entry.Attr.FileSize = filer.FileSize2(entry)
- }
- return fh
- }
- var _ = fs.Handle(&FileHandle{})
- // var _ = fs.HandleReadAller(&FileHandle{})
- var _ = fs.HandleReader(&FileHandle{})
- var _ = fs.HandleFlusher(&FileHandle{})
- var _ = fs.HandleWriter(&FileHandle{})
- var _ = fs.HandleReleaser(&FileHandle{})
- func (fh *FileHandle) Read(ctx context.Context, req *fuse.ReadRequest, resp *fuse.ReadResponse) error {
- 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))
- fh.RLock()
- defer fh.RUnlock()
- if req.Size <= 0 {
- return nil
- }
- buff := resp.Data[:cap(resp.Data)]
- if req.Size > cap(resp.Data) {
- // should not happen
- buff = make([]byte, req.Size)
- }
- totalRead, err := fh.readFromChunks(buff, req.Offset)
- if err == nil || err == io.EOF {
- maxStop := fh.readFromDirtyPages(buff, req.Offset)
- totalRead = max(maxStop-req.Offset, totalRead)
- }
- if err == io.EOF {
- err = nil
- }
- if err != nil {
- glog.Warningf("file handle read %s %d: %v", fh.f.fullpath(), totalRead, err)
- return fuse.EIO
- }
- if totalRead > int64(len(buff)) {
- 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)
- totalRead = min(int64(len(buff)), totalRead)
- }
- if err == nil {
- resp.Data = buff[:totalRead]
- }
- return err
- }
- func (fh *FileHandle) readFromDirtyPages(buff []byte, startOffset int64) (maxStop int64) {
- maxStop = fh.dirtyPages.ReadDirtyDataAt(buff, startOffset)
- return
- }
- func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) {
- entry := fh.f.getEntry()
- if entry == nil {
- return 0, io.EOF
- }
- fileSize := int64(filer.FileSize2(entry))
- fileFullPath := fh.f.fullpath()
- if fileSize == 0 {
- glog.V(1).Infof("empty fh %v", fileFullPath)
- return 0, io.EOF
- }
- if offset+int64(len(buff)) <= int64(len(entry.Content)) {
- totalRead := copy(buff, entry.Content[offset:])
- glog.V(4).Infof("file handle read cached %s [%d,%d] %d", fileFullPath, offset, offset+int64(totalRead), totalRead)
- return int64(totalRead), nil
- }
- var chunkResolveErr error
- if fh.f.entryViewCache == nil {
- fh.f.entryViewCache, chunkResolveErr = filer.NonOverlappingVisibleIntervals(fh.f.wfs.LookupFn(), entry.Chunks)
- if chunkResolveErr != nil {
- return 0, fmt.Errorf("fail to resolve chunk manifest: %v", chunkResolveErr)
- }
- fh.f.reader = nil
- }
- reader := fh.f.reader
- if reader == nil {
- chunkViews := filer.ViewFromVisibleIntervals(fh.f.entryViewCache, 0, math.MaxInt64)
- reader = filer.NewChunkReaderAtFromClient(fh.f.wfs.LookupFn(), chunkViews, fh.f.wfs.chunkCache, fileSize)
- }
- fh.f.reader = reader
- totalRead, err := reader.ReadAt(buff, offset)
- if err != nil && err != io.EOF {
- glog.Errorf("file handle read %s: %v", fileFullPath, err)
- }
- glog.V(4).Infof("file handle read %s [%d,%d] %d : %v", fileFullPath, offset, offset+int64(totalRead), totalRead, err)
- return int64(totalRead), err
- }
- // Write to the file handle
- func (fh *FileHandle) Write(ctx context.Context, req *fuse.WriteRequest, resp *fuse.WriteResponse) error {
- fh.Lock()
- defer fh.Unlock()
- // write the request to volume servers
- data := req.Data
- if len(data) <= 512 {
- // fuse message cacheable size
- data = make([]byte, len(req.Data))
- copy(data, req.Data)
- }
- entry := fh.f.getEntry()
- if entry == nil {
- return fuse.EIO
- }
- entry.Content = nil
- entry.Attr.FileSize = uint64(max(req.Offset+int64(len(data)), int64(entry.Attr.FileSize)))
- glog.V(4).Infof("%v write [%d,%d) %d", fh.f.fullpath(), req.Offset, req.Offset+int64(len(req.Data)), len(req.Data))
- fh.dirtyPages.AddPage(req.Offset, data)
- resp.Size = len(data)
- if req.Offset == 0 {
- // detect mime type
- fh.contentType = http.DetectContentType(data)
- fh.f.dirtyMetadata = true
- }
- fh.f.dirtyMetadata = true
- return nil
- }
- func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) error {
- glog.V(4).Infof("Release %v fh %d", fh.f.fullpath(), fh.handle)
- fh.Lock()
- defer fh.Unlock()
- if fh.f.isOpen <= 0 {
- glog.V(0).Infof("Release reset %s open count %d => %d", fh.f.Name, fh.f.isOpen, 0)
- fh.f.isOpen = 0
- return nil
- }
- if fh.f.isOpen == 1 {
- fh.f.isOpen--
- fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle))
- if closer, ok := fh.f.reader.(io.Closer); ok {
- if closer != nil {
- closer.Close()
- }
- }
- fh.f.reader = nil
- }
- return nil
- }
- func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
- glog.V(4).Infof("Flush %v fh %d", fh.f.fullpath(), fh.handle)
- fh.Lock()
- defer fh.Unlock()
- if err := fh.doFlush(ctx, req.Header); err != nil {
- glog.Errorf("Flush doFlush %s: %v", fh.f.Name, err)
- return err
- }
- glog.V(4).Infof("Flush %v fh %d success", fh.f.fullpath(), fh.handle)
- return nil
- }
- func (fh *FileHandle) doFlush(ctx context.Context, header fuse.Header) error {
- // flush works at fh level
- // send the data to the OS
- glog.V(4).Infof("doFlush %s fh %d", fh.f.fullpath(), fh.handle)
- fh.dirtyPages.saveExistingPagesToStorage()
- fh.dirtyPages.writeWaitGroup.Wait()
- if fh.dirtyPages.lastErr != nil {
- glog.Errorf("%v doFlush last err: %v", fh.f.fullpath(), fh.dirtyPages.lastErr)
- return fuse.EIO
- }
- if !fh.f.dirtyMetadata {
- return nil
- }
- err := fh.f.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
- entry := fh.f.getEntry()
- if entry == nil {
- return nil
- }
- entry.Attr.Mime = fh.contentType
- if entry.Attr.Uid == 0 {
- entry.Attr.Uid = header.Uid
- }
- if entry.Attr.Gid == 0 {
- entry.Attr.Gid = header.Gid
- }
- if entry.Attr.Crtime.IsZero() {
- entry.Attr.Crtime = time.Now()
- }
- entry.Attr.Mtime = time.Now()
- entry.Attr.Mode = entry.Attr.Mode &^ fh.f.wfs.option.Umask
- entry.Attr.Collection = fh.dirtyPages.collection
- entry.Attr.Replication = fh.dirtyPages.replication
- request := &filer_pb.CreateEntryRequest{
- Directory: fh.f.dir.FullPath(),
- Entry: entry.ToProtoEntry(),
- Signatures: []int32{fh.f.wfs.signature},
- }
- glog.V(4).Infof("%s set chunks: %v", fh.f.fullpath(), len(entry.Chunks))
- for i, chunk := range entry.Chunks {
- glog.V(4).Infof("%s chunks %d: %v [%d,%d)", fh.f.fullpath(), i, chunk.GetFileIdString(), chunk.Offset, chunk.Offset+int64(chunk.Size))
- }
- manifestChunks, nonManifestChunks := filer.SeparateManifestChunks(entry.Chunks)
- chunks, _ := filer.CompactFileChunks(fh.f.wfs.LookupFn(), nonManifestChunks)
- chunks, manifestErr := filer.MaybeManifestize(fh.f.wfs.saveDataAsChunk(fh.f.fullpath()), chunks)
- if manifestErr != nil {
- // not good, but should be ok
- glog.V(0).Infof("MaybeManifestize: %v", manifestErr)
- }
- entry.Chunks = append(chunks, manifestChunks...)
- fh.f.wfs.mapPbIdFromLocalToFiler(request.Entry)
- defer fh.f.wfs.mapPbIdFromFilerToLocal(request.Entry)
- if err := filer_pb.CreateEntry(client, request); err != nil {
- glog.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
- return fmt.Errorf("fh flush create %s: %v", fh.f.fullpath(), err)
- }
- fh.f.wfs.metaCache.InsertEntry(context.Background(), filer.FromPbEntry(request.Directory, request.Entry))
- return nil
- })
- if err == nil {
- fh.f.dirtyMetadata = false
- }
- if err != nil {
- glog.Errorf("%v fh %d flush: %v", fh.f.fullpath(), fh.handle, err)
- return fuse.EIO
- }
- return nil
- }
|