diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-05-23 15:38:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-23 15:38:54 +0200 |
commit | f663a9384619965ed8df7a7224e6f15ad18ed4af (patch) | |
tree | 337a4615e7a3ef24f46cbe008944a687c6a964ac /utils/binary/read.go | |
parent | 2ff77a8d93529cefdca922dbed89d4b1cd0ee8e5 (diff) | |
parent | 65416cf6c0e8264cc7938fe0611998d52780e089 (diff) | |
download | go-git-f663a9384619965ed8df7a7224e6f15ad18ed4af.tar.gz |
Merge pull request #388 from ajnavarro/feature/commit-diff
format/diff: unified diff encoder and public API
Diffstat (limited to 'utils/binary/read.go')
-rw-r--r-- | utils/binary/read.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/utils/binary/read.go b/utils/binary/read.go index 0bcf11a..c256ffe 100644 --- a/utils/binary/read.go +++ b/utils/binary/read.go @@ -3,6 +3,7 @@ package binary import ( + "bufio" "encoding/binary" "io" @@ -122,3 +123,33 @@ func ReadHash(r io.Reader) (plumbing.Hash, error) { return h, nil } + +const sniffLen = 8000 + +// IsBinary detects if data is a binary value based on: +// http://git.kernel.org/cgit/git/git.git/tree/xdiff-interface.c?id=HEAD#n198 +func IsBinary(r io.Reader) (bool, error) { + reader := bufio.NewReader(r) + c := 0 + for { + if c == sniffLen { + break + } + + b, err := reader.ReadByte() + if err == io.EOF { + break + } + if err != nil { + return false, err + } + + if b == byte(0) { + return true, nil + } + + c++ + } + + return false, nil +} |