2015-02-03 20:18:19 +00:00
|
|
|
package restic
|
|
|
|
|
2015-02-03 20:32:01 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/user"
|
|
|
|
"strconv"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
2015-03-08 13:32:49 +00:00
|
|
|
|
|
|
|
"github.com/restic/restic/debug"
|
2015-02-03 20:32:01 +00:00
|
|
|
)
|
2015-02-03 20:18:19 +00:00
|
|
|
|
2015-04-25 00:36:54 +00:00
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
2015-04-25 17:02:19 +00:00
|
|
|
return os.Open(node.path)
|
2015-04-25 00:36:54 +00:00
|
|
|
}
|
|
|
|
|
2015-04-29 03:45:24 +00:00
|
|
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
2015-02-03 20:32:01 +00:00
|
|
|
node.ChangeTime = time.Unix(stat.Ctimespec.Unix())
|
|
|
|
node.AccessTime = time.Unix(stat.Atimespec.Unix())
|
2015-04-29 03:45:24 +00:00
|
|
|
}
|
2015-02-03 20:32:01 +00:00
|
|
|
|
2015-04-29 03:45:24 +00:00
|
|
|
func (node *Node) fillDevice(stat *syscall.Stat_t) {
|
|
|
|
node.Device = uint64(stat.Rdev)
|
2015-02-03 20:18:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (node *Node) createDevAt(path string) error {
|
2015-02-03 20:32:01 +00:00
|
|
|
return syscall.Mknod(path, syscall.S_IFBLK|0600, int(node.Device))
|
2015-02-03 20:18:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (node *Node) createCharDevAt(path string) error {
|
2015-02-03 20:32:01 +00:00
|
|
|
return syscall.Mknod(path, syscall.S_IFCHR|0600, int(node.Device))
|
2015-02-03 20:18:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (node *Node) createFifoAt(path string) error {
|
2015-02-03 20:32:01 +00:00
|
|
|
return syscall.Mkfifo(path, 0600)
|
2015-02-03 20:18:19 +00:00
|
|
|
}
|
2015-03-08 13:32:49 +00:00
|
|
|
|
2015-04-29 03:31:07 +00:00
|
|
|
func changeTime(stat *syscall.Stat_t) time.Unix {
|
|
|
|
return time.Unix(stat.Ctimespec.Unix())
|
2015-03-08 13:32:49 +00:00
|
|
|
}
|