restic/node_linux.go

74 lines
1.5 KiB
Go
Raw Normal View History

package restic
import (
"fmt"
"os"
"os/user"
"strconv"
"syscall"
"time"
)
2015-04-25 00:36:54 +00:00
func (node *Node) OpenForReading() (*os.File, error) {
2015-04-26 00:54:33 +00:00
file, err := os.OpenFile(node.path, os.O_RDONLY|syscall.O_NOATIME, 0)
if os.IsPermission(err) {
return os.OpenFile(node.path, os.O_RDONLY, 0)
}
return file, err
2015-04-25 00:36:54 +00:00
}
2015-04-24 23:39:32 +00:00
func (node *Node) fillExtra(path string, fi os.FileInfo) error {
stat, ok := fi.Sys().(*syscall.Stat_t)
if !ok {
2015-03-21 13:43:33 +00:00
return nil
}
node.ChangeTime = time.Unix(stat.Ctim.Unix())
node.AccessTime = time.Unix(stat.Atim.Unix())
node.UID = stat.Uid
node.GID = stat.Gid
2015-03-21 13:43:33 +00:00
if u, err := user.LookupId(strconv.Itoa(int(stat.Uid))); err == nil {
node.User = u.Username
}
node.Inode = stat.Ino
2015-03-21 13:43:33 +00:00
var err error
switch node.Type {
case "file":
node.Size = uint64(stat.Size)
2015-02-03 21:06:06 +00:00
node.Links = uint64(stat.Nlink)
case "dir":
case "symlink":
node.LinkTarget, err = os.Readlink(path)
case "dev":
node.Device = stat.Rdev
case "chardev":
node.Device = stat.Rdev
case "fifo":
case "socket":
default:
2015-04-29 01:24:43 +00:00
err = fmt.Errorf("invalid node type %q", node.Type)
}
return err
}
func (node *Node) createDevAt(path string) error {
return syscall.Mknod(path, syscall.S_IFBLK|0600, int(node.Device))
}
func (node *Node) createCharDevAt(path string) error {
return syscall.Mknod(path, syscall.S_IFCHR|0600, int(node.Device))
}
func (node *Node) createFifoAt(path string) error {
return syscall.Mkfifo(path, 0600)
}
2015-03-07 10:53:32 +00:00
2015-04-29 03:31:07 +00:00
func changeTime(stat *syscall.Stat_t) time.Time {
return time.Unix(stat.Ctim.Unix())
2015-03-07 10:53:32 +00:00
}