keywords: add mode= (only octal first)

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-03-17 16:29:24 -04:00
parent 211687bcc4
commit ecdf381dd9
2 changed files with 10 additions and 1 deletions

View File

@ -27,10 +27,16 @@ var (
"type",
"uid",
"gid",
"mode",
"link",
"nlink",
"time",
}
SetKeywords = []string{
"uid",
"gid",
"mode",
}
// KeywordFuncs is the map of all keywords (and the functions to produce them)
KeywordFuncs = map[string]KeywordFunc{
"size": sizeKeywordFunc, // The size, in bytes, of the file
@ -41,6 +47,7 @@ var (
"gid": gidKeywordFunc, // The file group as a numeric value
"nlink": nlinkKeywordFunc, // The number of hard links the file is expected to have
"uname": unameKeywordFunc, // The file owner as a symbolic name
"mode": modeKeywordFunc, // The current file's permissions as a numeric (octal) or symbolic value
"cksum": cksumKeywordFunc, // The checksum of the file using the default algorithm specified by the cksum(1) utility
"md5": hasherKeywordFunc("md5", md5.New), // The MD5 message digest of the file
"md5digest": hasherKeywordFunc("md5digest", md5.New), // A synonym for `md5`
@ -65,6 +72,9 @@ var (
)
var (
modeKeywordFunc = func(path string, info os.FileInfo) (string, error) {
return fmt.Sprintf("mode=%#o", info.Mode()), nil
}
sizeKeywordFunc = func(path string, info os.FileInfo) (string, error) {
return fmt.Sprintf("size=%d", info.Size()), nil
}

View File

@ -45,7 +45,6 @@ var (
if err != nil {
return "", err
}
println(string(data))
klist[i] = fmt.Sprintf("xattr.%s=%x", xlist[i], sha1.Sum(data))
}
return strings.Join(klist, " "), nil