2015-02-03 15:18:19 -05:00
|
|
|
package restic
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
"syscall"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
2015-04-24 20:36:54 -04:00
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
2015-04-25 20:54:33 -04: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-24 20:36:54 -04:00
|
|
|
}
|
|
|
|
|
|
2015-04-28 23:53:49 -04:00
|
|
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
|
|
|
|
node.ChangeTime = time.Unix(stat.Ctim.Unix())
|
|
|
|
|
node.AccessTime = time.Unix(stat.Atim.Unix())
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-28 23:31:07 -04:00
|
|
|
func changeTime(stat *syscall.Stat_t) time.Time {
|
|
|
|
|
return time.Unix(stat.Ctim.Unix())
|
2015-03-07 05:53:32 -05:00
|
|
|
}
|