restic/internal/fuse/root.go

79 lines
1.7 KiB
Go
Raw Permalink Normal View History

//go:build darwin || freebsd || linux
// +build darwin freebsd linux
2017-06-18 12:59:44 +00:00
package fuse
import (
"os"
"github.com/restic/restic/internal/bloblru"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/debug"
2017-07-24 15:42:25 +00:00
"github.com/restic/restic/internal/restic"
2017-06-18 12:59:44 +00:00
"github.com/anacrolix/fuse/fs"
2017-06-18 12:59:44 +00:00
)
// Config holds settings for the fuse mount.
type Config struct {
OwnerIsRoot bool
Filter restic.SnapshotFilter
TimeTemplate string
PathTemplates []string
2017-06-18 12:59:44 +00:00
}
// Root is the root node of the fuse mount of a repository.
type Root struct {
repo restic.Repository
cfg Config
blobCache *bloblru.Cache
*SnapshotsDir
uid, gid uint32
2017-06-18 12:59:44 +00:00
}
// ensure that *Root implements these interfaces
var _ = fs.HandleReadDirAller(&Root{})
var _ = fs.NodeStringLookuper(&Root{})
const rootInode = 1
// Size of the blob cache. TODO: make this configurable.
const blobCacheSize = 64 << 20
2017-06-18 12:59:44 +00:00
// NewRoot initializes a new root node from a repository.
func NewRoot(repo restic.Repository, cfg Config) *Root {
2017-06-18 12:59:44 +00:00
debug.Log("NewRoot(), config %v", cfg)
root := &Root{
repo: repo,
cfg: cfg,
blobCache: bloblru.New(blobCacheSize),
}
if !cfg.OwnerIsRoot {
root.uid = uint32(os.Getuid())
root.gid = uint32(os.Getgid())
}
// set defaults, if PathTemplates is not set
if len(cfg.PathTemplates) == 0 {
cfg.PathTemplates = []string{
"ids/%i",
"snapshots/%T",
"hosts/%h/%T",
"tags/%t/%T",
}
2017-06-18 12:59:44 +00:00
}
root.SnapshotsDir = NewSnapshotsDir(root, rootInode, rootInode, NewSnapshotsDirStructure(root, cfg.PathTemplates, cfg.TimeTemplate), "")
2017-06-18 12:59:44 +00:00
return root
2017-06-18 12:59:44 +00:00
}
// Root is just there to satisfy fs.Root, it returns itself.
func (r *Root) Root() (fs.Node, error) {
debug.Log("Root()")
return r, nil
2017-06-18 12:59:44 +00:00
}