mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
472bf5184f
The parameters are required by the implemented function signature or interface.
43 lines
821 B
Go
43 lines
821 B
Go
//go:build darwin || freebsd || linux
|
|
// +build darwin freebsd linux
|
|
|
|
package fuse
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/anacrolix/fuse"
|
|
"github.com/restic/restic/internal/restic"
|
|
)
|
|
|
|
type other struct {
|
|
root *Root
|
|
node *restic.Node
|
|
inode uint64
|
|
}
|
|
|
|
func newOther(root *Root, inode uint64, node *restic.Node) (*other, error) {
|
|
return &other{root: root, inode: inode, node: node}, nil
|
|
}
|
|
|
|
func (l *other) Readlink(_ context.Context, _ *fuse.ReadlinkRequest) (string, error) {
|
|
return l.node.LinkTarget, nil
|
|
}
|
|
|
|
func (l *other) Attr(_ context.Context, a *fuse.Attr) error {
|
|
a.Inode = l.inode
|
|
a.Mode = l.node.Mode
|
|
|
|
if !l.root.cfg.OwnerIsRoot {
|
|
a.Uid = l.node.UID
|
|
a.Gid = l.node.GID
|
|
}
|
|
a.Atime = l.node.AccessTime
|
|
a.Ctime = l.node.ChangeTime
|
|
a.Mtime = l.node.ModTime
|
|
|
|
a.Nlink = uint32(l.node.Links)
|
|
|
|
return nil
|
|
}
|