mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-22 08:25:38 +00:00
Vincent Batts
455edf6d21
For the most part, all the keywords for a standard mtree spec now have a function to produce the contents for a creator. These are used in the "walk" function, and will be used next in the "check" logic. This is still a WIP, as the DirectoryHierarchy produced from the current Walk() is not all-together a valid document. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
33 lines
834 B
Go
33 lines
834 B
Go
// +build linux
|
|
|
|
package mtree
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/user"
|
|
"syscall"
|
|
)
|
|
|
|
var (
|
|
unameKeywordFunc = func(path string, info os.FileInfo) (string, error) {
|
|
stat := info.Sys().(*syscall.Stat_t)
|
|
u, err := user.LookupId(fmt.Sprintf("%d", stat.Uid))
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return fmt.Sprintf("uname=%s", u.Username), nil
|
|
}
|
|
uidKeywordFunc = func(path string, info os.FileInfo) (string, error) {
|
|
stat := info.Sys().(*syscall.Stat_t)
|
|
return fmt.Sprintf("uid=%d", stat.Uid), nil
|
|
}
|
|
gidKeywordFunc = func(path string, info os.FileInfo) (string, error) {
|
|
stat := info.Sys().(*syscall.Stat_t)
|
|
return fmt.Sprintf("gid=%d", stat.Gid), nil
|
|
}
|
|
nlinkKeywordFunc = func(path string, info os.FileInfo) (string, error) {
|
|
stat := info.Sys().(*syscall.Stat_t)
|
|
return fmt.Sprintf("nlink=%d", stat.Nlink), nil
|
|
}
|
|
)
|