summaryrefslogtreecommitdiff
path: root/internal/fusefrontend_reverse/rpath_cache.go
blob: 221f578c6a7c3ec8bb81366de427cba0bf316893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package fusefrontend_reverse

import (
	"sync"
)

// rPathCacheContainer is a simple one entry path cache. Because the dirIV
// is generated deterministically from the directory path, there is no need
// to ever invalidate entries.
type rPathCacheContainer struct {
	sync.Mutex
	// Relative ciphertext path to the directory
	cPath string
	// Relative plaintext path
	pPath string
	// Directory IV of the directory
	dirIV []byte
}

// lookup relative ciphertext path "cPath". Returns dirIV, relative
// plaintext path.
func (c *rPathCacheContainer) lookup(cPath string) ([]byte, string) {
	c.Lock()
	defer c.Unlock()
	if cPath == c.cPath {
		// hit
		return c.dirIV, c.pPath
	}
	// miss
	return nil, ""
}

// store - write entry for the directory at relative ciphertext path "cPath"
// into the cache.
// "dirIV" = directory IV of the directory, "pPath" = relative plaintext path
func (c *rPathCacheContainer) store(cPath string, dirIV []byte, pPath string) {
	c.Lock()
	defer c.Unlock()
	c.cPath = cPath
	c.dirIV = dirIV
	c.pPath = pPath
}

// rPathCache: see rPathCacheContainer above for a detailed description
var rPathCache rPathCacheContainer