1 Star 0 Fork 1

mysnapcore / mysnapd

forked from tupelo-shen / mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cmp.go 2.39 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-06 23:46 . fix: osutil 1 commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2014-2015 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package osutil
import (
"bytes"
"io"
"os"
)
const defaultChunkSize = 16 * 1024
func filesAreEqualChunked(a, b string, chunkSize int) bool {
fa, err := os.Open(a)
if err != nil {
return false
}
defer fa.Close()
fb, err := os.Open(b)
if err != nil {
return false
}
defer fb.Close()
fia, err := fa.Stat()
if err != nil {
return false
}
fib, err := fb.Stat()
if err != nil {
return false
}
if fia.Size() != fib.Size() {
return false
}
return streamsEqualChunked(fa, fb, chunkSize)
}
// FilesAreEqual compares the two files' contents and returns whether
// they are the same.
func FilesAreEqual(a, b string) bool {
return filesAreEqualChunked(a, b, 0)
}
func streamsEqualChunked(a, b io.Reader, chunkSize int) bool {
if a == b {
return true
}
if chunkSize <= 0 {
chunkSize = defaultChunkSize
}
bufa := make([]byte, chunkSize)
bufb := make([]byte, chunkSize)
for {
ra, erra := io.ReadAtLeast(a, bufa, chunkSize)
rb, errb := io.ReadAtLeast(b, bufb, chunkSize)
if erra == io.EOF && errb == io.EOF {
return true
}
if erra != nil || errb != nil {
// if both files finished in the middle of a
// ReadAtLeast, (returning io.ErrUnexpectedEOF), then we
// still need to check what was read to know whether
// they're equal. Otherwise, we know they're not equal
// (because we count any read error as a being non-equal
// also).
tailMightBeEqual := erra == io.ErrUnexpectedEOF && errb == io.ErrUnexpectedEOF
if !tailMightBeEqual {
return false
}
}
if !bytes.Equal(bufa[:ra], bufb[:rb]) {
return false
}
}
}
// StreamsEqual compares two streams and returns true if both
// have the same content.
func StreamsEqual(a, b io.Reader) bool {
return streamsEqualChunked(a, b, 0)
}
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.1.0

搜索帮助