mirror of
https://github.com/octoleo/restic.git
synced 2024-12-02 01:48:30 +00:00
move fillExtra to node.go
This commit is contained in:
parent
91a2a5f90a
commit
6ba11d8fb7
47
node.go
47
node.go
@ -4,6 +4,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"os/user"
|
||||||
"strconv"
|
"strconv"
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
@ -337,3 +338,49 @@ func (node *Node) isNewer(path string, fi os.FileInfo) bool {
|
|||||||
debug.Log("node.isNewer", "node %v is not newer", path)
|
debug.Log("node.isNewer", "node %v is not newer", path)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (node *Node) fillUser(stat *syscall.Stat_t) error {
|
||||||
|
node.UID = stat.Uid
|
||||||
|
node.GID = stat.Gid
|
||||||
|
|
||||||
|
u, err := user.LookupId(strconv.Itoa(int(stat.Uid)))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
node.User = u.Username
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (node *Node) fillExtra(path string, fi os.FileInfo) error {
|
||||||
|
stat, ok := fi.Sys().(*syscall.Stat_t)
|
||||||
|
if !ok {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
node.Inode = stat.Ino
|
||||||
|
|
||||||
|
node.fillUser(stat)
|
||||||
|
node.fillTimes(stat)
|
||||||
|
|
||||||
|
var err error
|
||||||
|
|
||||||
|
switch node.Type {
|
||||||
|
case "file":
|
||||||
|
node.Size = uint64(stat.Size)
|
||||||
|
node.Links = uint64(stat.Nlink)
|
||||||
|
case "dir":
|
||||||
|
case "symlink":
|
||||||
|
node.LinkTarget, err = os.Readlink(path)
|
||||||
|
case "dev":
|
||||||
|
node.fillDevice(stat)
|
||||||
|
case "chardev":
|
||||||
|
node.fillDevice(stat)
|
||||||
|
case "fifo":
|
||||||
|
case "socket":
|
||||||
|
default:
|
||||||
|
err = fmt.Errorf("invalid node type %q", node.Type)
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
@ -15,43 +15,13 @@ func (node *Node) OpenForReading() (*os.File, error) {
|
|||||||
return os.Open(node.path)
|
return os.Open(node.path)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (node *Node) fillExtra(path string, fi os.FileInfo) error {
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
||||||
stat, ok := fi.Sys().(*syscall.Stat_t)
|
|
||||||
if !ok {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
node.ChangeTime = time.Unix(stat.Ctimespec.Unix())
|
node.ChangeTime = time.Unix(stat.Ctimespec.Unix())
|
||||||
node.AccessTime = time.Unix(stat.Atimespec.Unix())
|
node.AccessTime = time.Unix(stat.Atimespec.Unix())
|
||||||
node.UID = stat.Uid
|
}
|
||||||
node.GID = stat.Gid
|
|
||||||
|
|
||||||
if u, err := user.LookupId(strconv.Itoa(int(stat.Uid))); err == nil {
|
func (node *Node) fillDevice(stat *syscall.Stat_t) {
|
||||||
node.User = u.Username
|
node.Device = uint64(stat.Rdev)
|
||||||
}
|
|
||||||
|
|
||||||
node.Inode = stat.Ino
|
|
||||||
|
|
||||||
var err error
|
|
||||||
|
|
||||||
switch node.Type {
|
|
||||||
case "file":
|
|
||||||
node.Size = uint64(stat.Size)
|
|
||||||
node.Links = uint64(stat.Nlink)
|
|
||||||
case "dir":
|
|
||||||
case "symlink":
|
|
||||||
node.LinkTarget, err = os.Readlink(path)
|
|
||||||
case "dev":
|
|
||||||
node.Device = uint64(stat.Rdev)
|
|
||||||
case "chardev":
|
|
||||||
node.Device = uint64(stat.Rdev)
|
|
||||||
case "fifo":
|
|
||||||
case "socket":
|
|
||||||
default:
|
|
||||||
err = fmt.Errorf("invalid node type %q", node.Type)
|
|
||||||
}
|
|
||||||
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (node *Node) createDevAt(path string) error {
|
func (node *Node) createDevAt(path string) error {
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
package restic
|
package restic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
|
||||||
"strconv"
|
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
@ -17,43 +14,13 @@ func (node *Node) OpenForReading() (*os.File, error) {
|
|||||||
return file, err
|
return file, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (node *Node) fillExtra(path string, fi os.FileInfo) error {
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
||||||
stat, ok := fi.Sys().(*syscall.Stat_t)
|
|
||||||
if !ok {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
node.ChangeTime = time.Unix(stat.Ctim.Unix())
|
node.ChangeTime = time.Unix(stat.Ctim.Unix())
|
||||||
node.AccessTime = time.Unix(stat.Atim.Unix())
|
node.AccessTime = time.Unix(stat.Atim.Unix())
|
||||||
node.UID = stat.Uid
|
}
|
||||||
node.GID = stat.Gid
|
|
||||||
|
|
||||||
if u, err := user.LookupId(strconv.Itoa(int(stat.Uid))); err == nil {
|
func (node *Node) fillDevice(stat *syscall.Stat_t) {
|
||||||
node.User = u.Username
|
node.Device = stat.Rdev
|
||||||
}
|
|
||||||
|
|
||||||
node.Inode = stat.Ino
|
|
||||||
|
|
||||||
var err error
|
|
||||||
|
|
||||||
switch node.Type {
|
|
||||||
case "file":
|
|
||||||
node.Size = uint64(stat.Size)
|
|
||||||
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:
|
|
||||||
err = fmt.Errorf("invalid node type %q", node.Type)
|
|
||||||
}
|
|
||||||
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (node *Node) createDevAt(path string) error {
|
func (node *Node) createDevAt(path string) error {
|
||||||
|
Loading…
Reference in New Issue
Block a user