mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-05 08:25:58 +00:00
Vincent Batts
73be830998
Fixes #16 In attempt to close https://github.com/vbatts/go-mtree/issues/16 I've uncovered that the update was missing a function for symlink. Additionally the update was not even opperating on the correct directory hierarchy. I've uncovered that os.Chtimes follows the symlink, and presumably only Linux has an obscure way to set the mtime/atime on a symlink itself. So I've made a custom lchtimes(). Also Mode follows through the symlink, and symlinks only ever have a mode of 0777, so don't set them. Lastly, directories need to have their mtime/atime set in a reverse order after all other updates have been done. This is going to require something like a `container/heap` to be unwound. Also, each updateFunc will _only_ perform the update if it is needed. Much less invasive this way. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
18 lines
311 B
Go
18 lines
311 B
Go
// +build !windows
|
|
|
|
package mtree
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func statIsUID(stat os.FileInfo, uid int) bool {
|
|
statT := stat.Sys().(*syscall.Stat_t)
|
|
return statT.Uid == uint32(uid)
|
|
}
|
|
|
|
func statIsGID(stat os.FileInfo, gid int) bool {
|
|
statT := stat.Sys().(*syscall.Stat_t)
|
|
return statT.Gid == uint32(gid)
|
|
}
|