forked from TrueCloudLab/restic
fs: deduplicate placeholders for generic and xattrs
This commit is contained in:
parent
087f95a298
commit
d7f4b9db60
6 changed files with 30 additions and 82 deletions
|
@ -1,26 +0,0 @@
|
||||||
//go:build aix
|
|
||||||
// +build aix
|
|
||||||
|
|
||||||
package fs
|
|
||||||
|
|
||||||
import "github.com/restic/restic/internal/restic"
|
|
||||||
|
|
||||||
// nodeRestoreExtendedAttributes is a no-op on AIX.
|
|
||||||
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeFillExtendedAttributes is a no-op on AIX.
|
|
||||||
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeRestoreGenericAttributes is no-op on AIX.
|
|
||||||
func nodeRestoreGenericAttributes(node *restic.Node, _ string, warn func(msg string)) error {
|
|
||||||
return restic.HandleAllUnknownGenericAttributesFound(node.GenericAttributes, warn)
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeFillGenericAttributes is a no-op on AIX.
|
|
||||||
func nodeFillGenericAttributes(_ *restic.Node, _ string, _ *ExtendedFileInfo) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
package fs
|
|
||||||
|
|
||||||
import "github.com/restic/restic/internal/restic"
|
|
||||||
|
|
||||||
// nodeRestoreExtendedAttributes is a no-op on netbsd.
|
|
||||||
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeFillExtendedAttributes is a no-op on netbsd.
|
|
||||||
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeRestoreGenericAttributes is no-op on netbsd.
|
|
||||||
func nodeRestoreGenericAttributes(node *restic.Node, _ string, warn func(msg string)) error {
|
|
||||||
return restic.HandleAllUnknownGenericAttributesFound(node.GenericAttributes, warn)
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeFillGenericAttributes is a no-op on netbsd.
|
|
||||||
func nodeFillGenericAttributes(_ *restic.Node, _ string, _ *ExtendedFileInfo) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
18
internal/fs/node_noxattr.go
Normal file
18
internal/fs/node_noxattr.go
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
//go:build aix || netbsd || openbsd
|
||||||
|
// +build aix netbsd openbsd
|
||||||
|
|
||||||
|
package fs
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/restic/restic/internal/restic"
|
||||||
|
)
|
||||||
|
|
||||||
|
// nodeRestoreExtendedAttributes is a no-op
|
||||||
|
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// nodeFillExtendedAttributes is a no-op
|
||||||
|
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -1,23 +0,0 @@
|
||||||
package fs
|
|
||||||
|
|
||||||
import "github.com/restic/restic/internal/restic"
|
|
||||||
|
|
||||||
// nodeRestoreExtendedAttributes is a no-op on openbsd.
|
|
||||||
func nodeRestoreExtendedAttributes(_ *restic.Node, _ string) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeFillExtendedAttributes is a no-op on openbsd.
|
|
||||||
func nodeFillExtendedAttributes(_ *restic.Node, _ string, _ bool) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeRestoreGenericAttributes is no-op on openbsd.
|
|
||||||
func nodeRestoreGenericAttributes(node *restic.Node, _ string, warn func(msg string)) error {
|
|
||||||
return restic.HandleAllUnknownGenericAttributesFound(node.GenericAttributes, warn)
|
|
||||||
}
|
|
||||||
|
|
||||||
// fillGenericAttributes is a no-op on openbsd.
|
|
||||||
func nodeFillGenericAttributes(_ *restic.Node, _ string, _ *ExtendedFileInfo) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
|
@ -5,8 +5,20 @@ package fs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
"github.com/restic/restic/internal/restic"
|
||||||
)
|
)
|
||||||
|
|
||||||
func lchown(name string, uid, gid int) error {
|
func lchown(name string, uid, gid int) error {
|
||||||
return os.Lchown(name, uid, gid)
|
return os.Lchown(name, uid, gid)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// nodeRestoreGenericAttributes is no-op.
|
||||||
|
func nodeRestoreGenericAttributes(node *restic.Node, _ string, warn func(msg string)) error {
|
||||||
|
return restic.HandleAllUnknownGenericAttributesFound(node.GenericAttributes, warn)
|
||||||
|
}
|
||||||
|
|
||||||
|
// nodeFillGenericAttributes is a no-op.
|
||||||
|
func nodeFillGenericAttributes(_ *restic.Node, _ string, _ *ExtendedFileInfo) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -65,16 +65,6 @@ func handleXattrErr(err error) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// nodeRestoreGenericAttributes is no-op.
|
|
||||||
func nodeRestoreGenericAttributes(node *restic.Node, _ string, warn func(msg string)) error {
|
|
||||||
return restic.HandleAllUnknownGenericAttributesFound(node.GenericAttributes, warn)
|
|
||||||
}
|
|
||||||
|
|
||||||
// nodeFillGenericAttributes is a no-op.
|
|
||||||
func nodeFillGenericAttributes(_ *restic.Node, _ string, _ *ExtendedFileInfo) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func nodeRestoreExtendedAttributes(node *restic.Node, path string) error {
|
func nodeRestoreExtendedAttributes(node *restic.Node, path string) error {
|
||||||
expectedAttrs := map[string]struct{}{}
|
expectedAttrs := map[string]struct{}{}
|
||||||
for _, attr := range node.ExtendedAttributes {
|
for _, attr := range node.ExtendedAttributes {
|
||||||
|
|
Loading…
Reference in a new issue