fs: more idiomatic dirCache struct naming

This commit is contained in:
Jakob Unterwurzacher 2021-04-04 13:05:47 +02:00
parent dc8501f6b2
commit 043f81dd01
2 changed files with 11 additions and 11 deletions

View File

@ -23,7 +23,7 @@ const (
enableStats = false enableStats = false
) )
type dirCacheEntryStruct struct { type dirCacheEntry struct {
// pointer to the Node this entry belongs to // pointer to the Node this entry belongs to
node *Node node *Node
// fd to the directory (opened with O_PATH!) // fd to the directory (opened with O_PATH!)
@ -32,7 +32,7 @@ type dirCacheEntryStruct struct {
iv []byte iv []byte
} }
func (e *dirCacheEntryStruct) Clear() { func (e *dirCacheEntry) Clear() {
// An earlier clear may have already closed the fd, or the cache // An earlier clear may have already closed the fd, or the cache
// has never been filled (fd is 0 in that case). // has never been filled (fd is 0 in that case).
// Note: package ensurefds012, imported from main, guarantees that dirCache // Note: package ensurefds012, imported from main, guarantees that dirCache
@ -48,10 +48,10 @@ func (e *dirCacheEntryStruct) Clear() {
e.iv = nil e.iv = nil
} }
type dirCacheStruct struct { type dirCache struct {
sync.Mutex sync.Mutex
// Cache entries // Cache entries
entries [dirCacheSize]dirCacheEntryStruct entries [dirCacheSize]dirCacheEntry
// Where to store the next entry (index into entries) // Where to store the next entry (index into entries)
nextIndex int nextIndex int
// On the first Lookup(), the expire thread is started, and this flag is set // On the first Lookup(), the expire thread is started, and this flag is set
@ -63,7 +63,7 @@ type dirCacheStruct struct {
} }
// Clear clears the cache contents. // Clear clears the cache contents.
func (d *dirCacheStruct) Clear() { func (d *dirCache) Clear() {
d.dbg("Clear\n") d.dbg("Clear\n")
d.Lock() d.Lock()
defer d.Unlock() defer d.Unlock()
@ -74,7 +74,7 @@ func (d *dirCacheStruct) Clear() {
// Store the entry in the cache. The passed "fd" will be Dup()ed, and the caller // Store the entry in the cache. The passed "fd" will be Dup()ed, and the caller
// can close their copy at will. // can close their copy at will.
func (d *dirCacheStruct) Store(node *Node, fd int, iv []byte) { func (d *dirCache) Store(node *Node, fd int, iv []byte) {
// Note: package ensurefds012, imported from main, guarantees that dirCache // Note: package ensurefds012, imported from main, guarantees that dirCache
// can never get fds 0,1,2. // can never get fds 0,1,2.
if fd <= 0 || len(iv) != nametransform.DirIVLen { if fd <= 0 || len(iv) != nametransform.DirIVLen {
@ -106,13 +106,13 @@ func (d *dirCacheStruct) Store(node *Node, fd int, iv []byte) {
// Lookup checks if relPath is in the cache, and returns an (fd, iv) pair. // Lookup checks if relPath is in the cache, and returns an (fd, iv) pair.
// It returns (-1, nil) if not found. The fd is internally Dup()ed and the // It returns (-1, nil) if not found. The fd is internally Dup()ed and the
// caller must close it when done. // caller must close it when done.
func (d *dirCacheStruct) Lookup(node *Node) (fd int, iv []byte) { func (d *dirCache) Lookup(node *Node) (fd int, iv []byte) {
d.Lock() d.Lock()
defer d.Unlock() defer d.Unlock()
if enableStats { if enableStats {
d.lookups++ d.lookups++
} }
var e *dirCacheEntryStruct var e *dirCacheEntry
for i := range d.entries { for i := range d.entries {
e = &d.entries[i] e = &d.entries[i]
if e.fd <= 0 { if e.fd <= 0 {
@ -147,7 +147,7 @@ func (d *dirCacheStruct) Lookup(node *Node) (fd int, iv []byte) {
} }
// expireThread is started on the first Lookup() // expireThread is started on the first Lookup()
func (d *dirCacheStruct) expireThread() { func (d *dirCache) expireThread() {
for { for {
time.Sleep(60 * time.Second) time.Sleep(60 * time.Second)
d.Clear() d.Clear()
@ -166,7 +166,7 @@ func (d *dirCacheStruct) expireThread() {
} }
// dbg prints a debug message. Usually disabled. // dbg prints a debug message. Usually disabled.
func (d *dirCacheStruct) dbg(format string, a ...interface{}) { func (d *dirCache) dbg(format string, a ...interface{}) {
if enableDebugMessages { if enableDebugMessages {
fmt.Printf(format, a...) fmt.Printf(format, a...)
} }

View File

@ -49,7 +49,7 @@ type RootNode struct {
// periodically. // periodically.
IsIdle uint32 IsIdle uint32
// dirCache caches directory fds // dirCache caches directory fds
dirCache dirCacheStruct dirCache dirCache
// inoMap translates inode numbers from different devices to unique inode // inoMap translates inode numbers from different devices to unique inode
// numbers. // numbers.
inoMap inomap.TranslateStater inoMap inomap.TranslateStater