fusego/samples/cachingfs/caching_fs.go

164 lines
3.9 KiB
Go
Raw Normal View History

// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cachingfs
import (
2015-03-17 05:25:27 +03:00
"fmt"
"time"
"github.com/jacobsa/fuse"
"github.com/jacobsa/fuse/fuseutil"
2015-03-17 05:22:33 +03:00
"github.com/jacobsa/gcloud/syncutil"
2015-03-17 04:55:24 +03:00
"golang.org/x/net/context"
)
2015-03-17 05:22:33 +03:00
const (
// Sizes of the files according to the file system.
FooSize = 123
BarSize = 456
)
// A file system with a fixed structure that looks like this:
//
// foo
// dir/
// bar
//
// The file system is configured with durations that specify how long to allow
// inode entries and attributes to be cached, used when responding to fuse
// requests. It also exposes methods for renumbering inodes and updating mtimes
// that are useful in testing that these durations are honored.
type CachingFS interface {
fuse.FileSystem
2015-03-17 04:40:51 +03:00
2015-03-17 05:14:19 +03:00
// Return the current inode ID of the file/directory with the given name.
FooID() fuse.InodeID
DirID() fuse.InodeID
BarID() fuse.InodeID
// Cause the inode IDs to change to values that have never before been used.
RenumberInodes()
2015-03-17 04:40:51 +03:00
// Cause further queries for the attributes of inodes to use the supplied
// time as the inode's mtime.
SetMtime(mtime time.Time)
}
// Create a file system that issues cacheable responses according to the
// following rules:
//
// * LookUpInodeResponse.Entry.EntryExpiration is set according to
// lookupEntryTimeout.
//
// * GetInodeAttributesResponse.AttributesExpiration is set according to
// getattrTimeout.
//
// * Nothing else is marked cacheable. (In particular, the attributes
// returned by LookUpInode are not cacheable.)
//
func NewCachingFS(
lookupEntryTimeout time.Duration,
getattrTimeout time.Duration) (fs CachingFS, err error) {
2015-03-17 05:22:33 +03:00
cfs := &cachingFS{
2015-03-17 05:23:30 +03:00
baseID: (fuse.RootInodeID + 1 + numInodes - 1) / numInodes,
mtime: time.Now(),
2015-03-17 04:40:51 +03:00
}
2015-03-17 05:22:33 +03:00
cfs.mu = syncutil.NewInvariantMutex(cfs.checkInvariants)
fs = cfs
2015-03-17 04:40:51 +03:00
return
}
2015-03-17 05:22:33 +03:00
const (
// Inode IDs are issued such that "foo" always receives an ID that is
// congruent to fooOffset modulo numInodes, etc.
fooOffset = iota
dirOffset
barOffset
numInodes
)
type cachingFS struct {
fuseutil.NotImplementedFileSystem
2015-03-17 05:22:33 +03:00
mu syncutil.InvariantMutex
2015-03-17 05:23:30 +03:00
// The current ID of the lowest numbered non-root inode.
2015-03-17 05:22:33 +03:00
//
2015-03-17 05:25:27 +03:00
// INVARIANT: baseID > fuse.RootInodeID
// INVARIANT: baseID % numInodes == 0
2015-03-17 05:22:33 +03:00
//
// GUARDED_BY(mu)
2015-03-17 05:23:30 +03:00
baseID fuse.InodeID
// GUARDED_BY(mu)
mtime time.Time
}
2015-03-17 05:25:27 +03:00
func (fs *cachingFS) checkInvariants() {
// INVARIANT: baseID > fuse.RootInodeID
// INVARIANT: baseID % numInodes == 0
if fs.baseID <= fuse.RootInodeID || fs.baseID%numInodes != 0 {
panic(fmt.Sprintf("Bad baseID: %v", fs.baseID))
}
}
2015-03-17 05:22:33 +03:00
2015-03-17 04:55:24 +03:00
// LOCKS_EXCLUDED(fs.mu)
2015-03-17 05:23:30 +03:00
func (fs *cachingFS) FooID() fuse.InodeID {
fs.mu.Lock()
defer fs.mu.Unlock()
return fs.baseID + fooOffset
}
2015-03-17 04:40:51 +03:00
2015-03-17 05:22:33 +03:00
// LOCKS_EXCLUDED(fs.mu)
2015-03-17 05:23:58 +03:00
func (fs *cachingFS) DirID() fuse.InodeID {
fs.mu.Lock()
defer fs.mu.Unlock()
return fs.baseID + dirOffset
}
2015-03-17 05:22:33 +03:00
// LOCKS_EXCLUDED(fs.mu)
2015-03-17 05:23:58 +03:00
func (fs *cachingFS) BarID() fuse.InodeID {
fs.mu.Lock()
defer fs.mu.Unlock()
return fs.baseID + barOffset
}
2015-03-17 05:22:33 +03:00
// LOCKS_EXCLUDED(fs.mu)
2015-03-17 05:25:46 +03:00
func (fs *cachingFS) RenumberInodes() {
fs.mu.Lock()
defer fs.mu.Unlock()
fs.baseID += numInodes
}
2015-03-17 04:55:24 +03:00
// LOCKS_EXCLUDED(fs.mu)
func (fs *cachingFS) SetMtime(mtime time.Time) {
2015-03-17 04:40:51 +03:00
fs.mu.Lock()
defer fs.mu.Unlock()
fs.mtime = mtime
}
2015-03-17 04:55:24 +03:00
func (fs *cachingFS) Init(
ctx context.Context,
req *fuse.InitRequest) (resp *fuse.InitResponse, err error) {
resp = &fuse.InitResponse{}
return
}