2018-02-05 16:05:59 -05:00
|
|
|
package archive // import "github.com/docker/docker/pkg/archive"
|
2015-05-07 18:14:11 -04:00
|
|
|
|
|
|
|
import (
|
2015-10-12 15:11:22 -04:00
|
|
|
"os"
|
|
|
|
|
2015-05-07 18:14:11 -04:00
|
|
|
"github.com/docker/docker/pkg/system"
|
|
|
|
)
|
|
|
|
|
2015-07-28 12:13:12 -04:00
|
|
|
func statDifferent(oldStat *system.StatT, newStat *system.StatT) bool {
|
2018-10-05 18:46:59 -04:00
|
|
|
// Note there is slight difference between the Linux and Windows
|
|
|
|
// implementations here. Due to https://github.com/moby/moby/issues/9874,
|
|
|
|
// and the fix at https://github.com/moby/moby/pull/11422, Linux does not
|
|
|
|
// consider a change to the directory time as a change. Windows on NTFS
|
|
|
|
// does. See https://github.com/moby/moby/pull/37982 for more information.
|
2015-05-07 18:14:11 -04:00
|
|
|
|
2018-10-05 18:46:59 -04:00
|
|
|
if !sameFsTime(oldStat.Mtim(), newStat.Mtim()) ||
|
2015-05-07 18:14:11 -04:00
|
|
|
oldStat.Mode() != newStat.Mode() ||
|
2017-04-05 18:35:43 -04:00
|
|
|
oldStat.Size() != newStat.Size() && !oldStat.Mode().IsDir() {
|
2015-05-07 18:14:11 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (info *FileInfo) isDir() bool {
|
2017-04-05 18:35:43 -04:00
|
|
|
return info.parent == nil || info.stat.Mode().IsDir()
|
2015-05-07 18:14:11 -04:00
|
|
|
}
|
2015-10-12 15:11:22 -04:00
|
|
|
|
|
|
|
func getIno(fi os.FileInfo) (inode uint64) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func hasHardlinks(fi os.FileInfo) bool {
|
|
|
|
return false
|
|
|
|
}
|