seaweedfs/weed/mount/filehandle_map.go

88 lines
1.7 KiB
Go
Raw Normal View History

2022-02-14 03:14:34 +00:00
package mount
import (
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"sync"
)
type FileHandleToInode struct {
sync.RWMutex
nextFh FileHandleId
inode2fh map[uint64]*FileHandle
fh2inode map[FileHandleId]uint64
}
func NewFileHandleToInode() *FileHandleToInode {
return &FileHandleToInode{
inode2fh: make(map[uint64]*FileHandle),
fh2inode: make(map[FileHandleId]uint64),
nextFh: 0,
}
}
2022-02-14 06:50:44 +00:00
func (i *FileHandleToInode) GetFileHandle(fh FileHandleId) *FileHandle {
i.RLock()
defer i.RUnlock()
inode, found := i.fh2inode[fh]
if found {
return i.inode2fh[inode]
}
return nil
}
2022-02-14 09:36:10 +00:00
func (i *FileHandleToInode) FindFileHandle(inode uint64) (fh *FileHandle, found bool) {
i.RLock()
defer i.RUnlock()
fh, found = i.inode2fh[inode]
return
}
2022-02-14 06:50:44 +00:00
func (i *FileHandleToInode) AcquireFileHandle(wfs *WFS, inode uint64, entry *filer_pb.Entry) *FileHandle {
2022-02-14 03:14:34 +00:00
i.Lock()
defer i.Unlock()
fh, found := i.inode2fh[inode]
if !found {
2022-02-14 06:50:44 +00:00
fh = newFileHandle(wfs, i.nextFh, inode, entry)
2022-02-14 03:14:34 +00:00
i.nextFh++
i.inode2fh[inode] = fh
i.fh2inode[fh.fh] = inode
} else {
fh.counter++
}
2022-04-10 05:52:59 +00:00
fh.entry = entry
2022-02-14 03:14:34 +00:00
return fh
}
func (i *FileHandleToInode) ReleaseByInode(inode uint64) {
i.Lock()
defer i.Unlock()
fh, found := i.inode2fh[inode]
if found {
fh.counter--
if fh.counter <= 0 {
delete(i.inode2fh, inode)
delete(i.fh2inode, fh.fh)
2022-03-07 22:01:24 +00:00
fh.Release()
2022-02-14 03:14:34 +00:00
}
}
}
func (i *FileHandleToInode) ReleaseByHandle(fh FileHandleId) {
i.Lock()
defer i.Unlock()
inode, found := i.fh2inode[fh]
if found {
fhHandle, fhFound := i.inode2fh[inode]
if !fhFound {
delete(i.fh2inode, fh)
} else {
fhHandle.counter--
if fhHandle.counter <= 0 {
delete(i.inode2fh, inode)
delete(i.fh2inode, fhHandle.fh)
2022-03-07 22:01:24 +00:00
fhHandle.Release()
2022-02-14 03:14:34 +00:00
}
}
}
}