1
0
mirror of https://github.com/restic/restic.git synced 2024-07-01 08:30:53 +02:00
restic/node_darwin.go

33 lines
728 B
Go
Raw Normal View History

package restic
2015-02-03 21:32:01 +01:00
import (
"os"
"syscall"
"time"
)
2015-04-25 02:36:54 +02:00
func (node *Node) OpenForReading() (*os.File, error) {
2015-04-25 19:02:19 +02:00
return os.Open(node.path)
2015-04-25 02:36:54 +02:00
}
func (node *Node) createDevAt(path string) error {
2015-02-03 21:32:01 +01:00
return syscall.Mknod(path, syscall.S_IFBLK|0600, int(node.Device))
}
func (node *Node) createCharDevAt(path string) error {
2015-02-03 21:32:01 +01:00
return syscall.Mknod(path, syscall.S_IFCHR|0600, int(node.Device))
}
func (node *Node) createFifoAt(path string) error {
2015-02-03 21:32:01 +01:00
return syscall.Mkfifo(path, 0600)
}
2015-03-08 14:32:49 +01:00
func changeTime(stat *syscall.Stat_t) time.Time {
2015-04-29 05:31:07 +02:00
return time.Unix(stat.Ctimespec.Unix())
2015-03-08 14:32:49 +01:00
}
func (node *Node) fillTimes(stat *syscall.Stat_t) {
node.ChangeTime = time.Unix(stat.Ctimespec.Unix())
node.AccessTime = time.Unix(stat.Atimespec.Unix())
}