mirror of
https://github.com/containers/podman.git
synced 2025-09-28 09:15:26 +08:00

Vendor some changes to parsing code that we need for Podman. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
32 lines
686 B
Go
32 lines
686 B
Go
// +build linux darwin
|
|
|
|
package util
|
|
|
|
import (
|
|
"os"
|
|
"sync"
|
|
"syscall"
|
|
)
|
|
|
|
type hardlinkDeviceAndInode struct {
|
|
device, inode uint64
|
|
}
|
|
|
|
type HardlinkChecker struct {
|
|
hardlinks sync.Map
|
|
}
|
|
|
|
func (h *HardlinkChecker) Check(fi os.FileInfo) string {
|
|
if st, ok := fi.Sys().(*syscall.Stat_t); ok && fi.Mode().IsRegular() && st.Nlink > 1 {
|
|
if name, ok := h.hardlinks.Load(makeHardlinkDeviceAndInode(st)); ok && name.(string) != "" {
|
|
return name.(string)
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
func (h *HardlinkChecker) Add(fi os.FileInfo, name string) {
|
|
if st, ok := fi.Sys().(*syscall.Stat_t); ok && fi.Mode().IsRegular() && st.Nlink > 1 {
|
|
h.hardlinks.Store(makeHardlinkDeviceAndInode(st), name)
|
|
}
|
|
}
|