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.

208 lines
5.3 KiB

7 years ago
5 years ago
5 years ago
6 years ago
4 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
  1. package filesys
  2. import (
  3. "context"
  4. "fmt"
  5. "math"
  6. "os"
  7. "path"
  8. "sync"
  9. "time"
  10. "google.golang.org/grpc"
  11. "github.com/chrislusf/seaweedfs/weed/util/grace"
  12. "github.com/seaweedfs/fuse"
  13. "github.com/seaweedfs/fuse/fs"
  14. "github.com/chrislusf/seaweedfs/weed/filesys/meta_cache"
  15. "github.com/chrislusf/seaweedfs/weed/glog"
  16. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  17. "github.com/chrislusf/seaweedfs/weed/util"
  18. "github.com/chrislusf/seaweedfs/weed/util/chunk_cache"
  19. )
  20. type Option struct {
  21. FilerGrpcAddress string
  22. GrpcDialOption grpc.DialOption
  23. FilerMountRootPath string
  24. Collection string
  25. Replication string
  26. TtlSec int32
  27. ChunkSizeLimit int64
  28. CacheDir string
  29. CacheSizeMB int64
  30. DataCenter string
  31. EntryCacheTtl time.Duration
  32. Umask os.FileMode
  33. MountUid uint32
  34. MountGid uint32
  35. MountMode os.FileMode
  36. MountCtime time.Time
  37. MountMtime time.Time
  38. OutsideContainerClusterMode bool // whether the mount runs outside SeaweedFS containers
  39. Cipher bool // whether encrypt data on volume server
  40. }
  41. var _ = fs.FS(&WFS{})
  42. var _ = fs.FSStatfser(&WFS{})
  43. type WFS struct {
  44. option *Option
  45. // contains all open handles, protected by handlesLock
  46. handlesLock sync.Mutex
  47. handles map[uint64]*FileHandle
  48. bufPool sync.Pool
  49. stats statsCache
  50. root fs.Node
  51. fsNodeCache *FsCache
  52. chunkCache *chunk_cache.TieredChunkCache
  53. metaCache *meta_cache.MetaCache
  54. signature int32
  55. }
  56. type statsCache struct {
  57. filer_pb.StatisticsResponse
  58. lastChecked int64 // unix time in seconds
  59. }
  60. func NewSeaweedFileSystem(option *Option) *WFS {
  61. wfs := &WFS{
  62. option: option,
  63. handles: make(map[uint64]*FileHandle),
  64. bufPool: sync.Pool{
  65. New: func() interface{} {
  66. return make([]byte, option.ChunkSizeLimit)
  67. },
  68. },
  69. signature: util.RandomInt32(),
  70. }
  71. cacheUniqueId := util.Md5String([]byte(option.FilerGrpcAddress + option.FilerMountRootPath + util.Version()))[0:4]
  72. cacheDir := path.Join(option.CacheDir, cacheUniqueId)
  73. if option.CacheSizeMB > 0 {
  74. os.MkdirAll(cacheDir, 0755)
  75. wfs.chunkCache = chunk_cache.NewTieredChunkCache(256, cacheDir, option.CacheSizeMB)
  76. }
  77. wfs.metaCache = meta_cache.NewMetaCache(path.Join(cacheDir, "meta"))
  78. startTime := time.Now()
  79. go meta_cache.SubscribeMetaEvents(wfs.metaCache, wfs.signature, wfs, wfs.option.FilerMountRootPath, startTime.UnixNano())
  80. grace.OnInterrupt(func() {
  81. wfs.metaCache.Shutdown()
  82. })
  83. wfs.root = &Dir{name: wfs.option.FilerMountRootPath, wfs: wfs}
  84. wfs.fsNodeCache = newFsCache(wfs.root)
  85. return wfs
  86. }
  87. func (wfs *WFS) Root() (fs.Node, error) {
  88. return wfs.root, nil
  89. }
  90. func (wfs *WFS) AcquireHandle(file *File, uid, gid uint32) (fileHandle *FileHandle) {
  91. fullpath := file.fullpath()
  92. glog.V(4).Infof("AcquireHandle %s uid=%d gid=%d", fullpath, uid, gid)
  93. wfs.handlesLock.Lock()
  94. defer wfs.handlesLock.Unlock()
  95. inodeId := file.fullpath().AsInode()
  96. existingHandle, found := wfs.handles[inodeId]
  97. if found && existingHandle != nil {
  98. file.isOpen++
  99. return existingHandle
  100. }
  101. fileHandle = newFileHandle(file, uid, gid)
  102. file.maybeLoadEntry(context.Background())
  103. file.isOpen++
  104. wfs.handles[inodeId] = fileHandle
  105. fileHandle.handle = inodeId
  106. return
  107. }
  108. func (wfs *WFS) ReleaseHandle(fullpath util.FullPath, handleId fuse.HandleID) {
  109. wfs.handlesLock.Lock()
  110. defer wfs.handlesLock.Unlock()
  111. glog.V(4).Infof("%s ReleaseHandle id %d current handles length %d", fullpath, handleId, len(wfs.handles))
  112. delete(wfs.handles, fullpath.AsInode())
  113. return
  114. }
  115. // Statfs is called to obtain file system metadata. Implements fuse.FSStatfser
  116. func (wfs *WFS) Statfs(ctx context.Context, req *fuse.StatfsRequest, resp *fuse.StatfsResponse) error {
  117. glog.V(4).Infof("reading fs stats: %+v", req)
  118. if wfs.stats.lastChecked < time.Now().Unix()-20 {
  119. err := wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
  120. request := &filer_pb.StatisticsRequest{
  121. Collection: wfs.option.Collection,
  122. Replication: wfs.option.Replication,
  123. Ttl: fmt.Sprintf("%ds", wfs.option.TtlSec),
  124. }
  125. glog.V(4).Infof("reading filer stats: %+v", request)
  126. resp, err := client.Statistics(context.Background(), request)
  127. if err != nil {
  128. glog.V(0).Infof("reading filer stats %v: %v", request, err)
  129. return err
  130. }
  131. glog.V(4).Infof("read filer stats: %+v", resp)
  132. wfs.stats.TotalSize = resp.TotalSize
  133. wfs.stats.UsedSize = resp.UsedSize
  134. wfs.stats.FileCount = resp.FileCount
  135. wfs.stats.lastChecked = time.Now().Unix()
  136. return nil
  137. })
  138. if err != nil {
  139. glog.V(0).Infof("filer Statistics: %v", err)
  140. return err
  141. }
  142. }
  143. totalDiskSize := wfs.stats.TotalSize
  144. usedDiskSize := wfs.stats.UsedSize
  145. actualFileCount := wfs.stats.FileCount
  146. // Compute the total number of available blocks
  147. resp.Blocks = totalDiskSize / blockSize
  148. // Compute the number of used blocks
  149. numBlocks := uint64(usedDiskSize / blockSize)
  150. // Report the number of free and available blocks for the block size
  151. resp.Bfree = resp.Blocks - numBlocks
  152. resp.Bavail = resp.Blocks - numBlocks
  153. resp.Bsize = uint32(blockSize)
  154. // Report the total number of possible files in the file system (and those free)
  155. resp.Files = math.MaxInt64
  156. resp.Ffree = math.MaxInt64 - actualFileCount
  157. // Report the maximum length of a name and the minimum fragment size
  158. resp.Namelen = 1024
  159. resp.Frsize = uint32(blockSize)
  160. return nil
  161. }