-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathlinks.go
124 lines (109 loc) · 2.55 KB
/
links.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package typegen
import (
"bufio"
"bytes"
"fmt"
"io"
"math"
cid "github.com/ipfs/go-cid"
)
func ScanForLinks(br io.Reader, cb func(cid.Cid)) (err error) {
hasReadOnce := false
defer func() {
if err == io.EOF && hasReadOnce {
err = io.ErrUnexpectedEOF
}
}()
scratch := make([]byte, maxCidLength)
for remaining := uint64(1); remaining > 0; remaining-- {
maj, extra, err := CborReadHeaderBuf(br, scratch)
if err != nil {
return err
}
hasReadOnce = true
switch maj {
case MajUnsignedInt, MajNegativeInt, MajOther:
case MajByteString, MajTextString:
if extra > math.MaxInt32 {
return fmt.Errorf("string in cbor input too long")
}
err := discard(br, int(extra))
if err != nil {
return err
}
case MajTag:
if extra == 42 {
maj, extra, err = CborReadHeaderBuf(br, scratch)
if err != nil {
return err
}
if maj != MajByteString {
return fmt.Errorf("expected cbor type 'byte string' in input")
}
if extra > maxCidLength {
return fmt.Errorf("string in cbor input too long")
}
if extra == 0 {
return fmt.Errorf("string in cbor input is empty")
}
if _, err := io.ReadAtLeast(br, scratch[:extra], int(extra)); err != nil {
return err
}
c, err := cid.Cast(scratch[1:extra])
if err != nil {
return err
}
cb(c)
} else {
remaining++
}
case MajArray:
remaining += extra
case MajMap:
remaining += (extra * 2)
default:
return fmt.Errorf("unhandled cbor type: %d", maj)
}
}
return nil
}
// discard is a helper function to discard data from a reader, special-casing
// the most common readers we encounter in this library for a significant
// performance boost.
func discard(br io.Reader, n int) error {
// If we're expecting no bytes, don't even try to read. Otherwise, we may read an EOF.
if n == 0 {
return nil
}
switch r := br.(type) {
case *bytes.Buffer:
buf := r.Next(n)
if len(buf) == 0 {
return io.EOF
} else if len(buf) < n {
return io.ErrUnexpectedEOF
}
return nil
case *bytes.Reader:
if r.Len() == 0 {
return io.EOF
} else if r.Len() < n {
_, _ = r.Seek(0, io.SeekEnd)
return io.ErrUnexpectedEOF
}
_, err := r.Seek(int64(n), io.SeekCurrent)
return err
case *bufio.Reader:
discarded, err := r.Discard(n)
if discarded != 0 && discarded < n && err == io.EOF {
return io.ErrUnexpectedEOF
}
return err
default:
discarded, err := io.CopyN(io.Discard, br, int64(n))
if discarded != 0 && discarded < int64(n) && err == io.EOF {
return io.ErrUnexpectedEOF
}
return err
}
}