-
Notifications
You must be signed in to change notification settings - Fork 78
/
scan.go
251 lines (227 loc) · 6.67 KB
/
scan.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package licensecheck
import (
"bytes"
"errors"
"fmt"
"regexp"
"strings"
"sync"
"github.com/google/licensecheck/internal/match"
)
var (
// builtinScanner is initialized lazily,
// because init is fairly expensive,
// and delaying it lets us see the init
// in test cpu profiles.
builtinScanner = new(Scanner)
builtinScannerOnce sync.Once
)
// BuiltinLicenses returns the list of licenses built into the package.
// That is, the built-in scanner is equivalent to NewScanner(BuiltinLicenses()).
func BuiltinLicenses() []License {
// Return a copy so caller cannot change list entries.
list := append([]License{}, builtinLREs...)
m := make(map[string]Type)
for _, l := range list {
m[l.ID] = l.Type
}
for _, l := range builtinURLs {
// Fill in Type from builtinLREs.
if typ, ok := m[l.ID]; ok {
l.Type = typ
} else {
l.Type = Unknown
}
list = append(list, l)
}
return list
}
// A Scanner matches a set of known licenses.
type Scanner struct {
licenses []License
urls map[string]License
re *match.MultiLRE
}
// NewScanner returns a new Scanner that recognizes the given set of licenses.
// See the description of Scan more information.
func NewScanner(licenses []License) (*Scanner, error) {
s := new(Scanner)
err := s.init(licenses)
if err != nil {
return nil, err
}
return s, nil
}
func (s *Scanner) init(licenses []License) error {
d := new(match.Dict)
d.Insert("copyright")
d.Insert("http")
var list []*match.LRE
s.urls = make(map[string]License)
for _, l := range licenses {
if l.URL != "" {
s.urls[l.URL] = l
}
if l.LRE != "" {
s.licenses = append(s.licenses, l)
re, err := match.ParseLRE(d, l.ID, l.LRE)
if err != nil {
return fmt.Errorf("parsing %v: %v", l.ID, err)
}
list = append(list, re)
}
}
re, err := match.NewMultiLRE(list)
if err != nil {
return err
}
if re == nil {
return errors.New("missing lre")
}
s.re = re
return nil
}
const maxCopyrightWords = 50
// Scan computes the coverage of the text according to the license set compiled
// into the package. The design aims never to give a false positive.
//
// The license set contains all licenses known to SPDX (https://spdx.dev/licenses/)
// plus other commonly used, possibly not open-source licenses. The matched license
// identifiers are therefore a strict superset of SPDX. For more details about the
// licenses see licenses/README.md.
//
// A call to Scan is equivalent to calling NewScanner with the default license set
// returned by BuiltinLicenses, and then calling its Scan method.
//
// An input text may match multiple licenses. If that happens, Match contains only
// disjoint matches. If multiple licenses match a particular section of the input,
// the earliest match is chosen so the returned coverage describes at most one
// match for each section of the input.
//
func Scan(text []byte) Coverage {
return builtinScanner.Scan(text)
}
var urlScanRE = regexp.MustCompile(`^(?i)https?://[-a-z0-9_.]+\.(org|com)(/[-a-z0-9_.#?=]+)+/?`)
// Scan is like the top-level function Scan,
// but it uses the set of licenses in the Scanner instead of the built-in license set.
func (s *Scanner) Scan(text []byte) Coverage {
if s == builtinScanner {
builtinScannerOnce.Do(func() {
if err := builtinScanner.init(BuiltinLicenses()); err != nil {
panic("licensecheck: initializing Scan: " + err.Error())
}
})
}
matches := s.re.Match(string(text)) // TODO remove conversion
var c Coverage
words := matches.Words
total := 0
lastEnd := 0
copyright := s.re.Dict().Lookup("copyright")
http := s.re.Dict().Lookup("http")
// Add sentinel match trigger URL scan from last match to end of text.
matches.List = append(matches.List, match.Match{Start: len(words), ID: -1})
for _, m := range matches.List {
if m.Start < len(words) && lastEnd < m.Start && copyright >= 0 {
limit := m.Start - maxCopyrightWords
if limit < lastEnd {
limit = lastEnd
}
for i := limit; i < m.Start; i++ {
if words[i].ID == copyright {
m.Start = i
break
}
}
}
// Pick up any URLs before m.Start.
for i := lastEnd; i < m.Start; i++ {
w := &words[i]
if w.ID == http {
// Potential URL match.
// urlRE only considers a match at the start of the input string.
// Only accept URLs that end before the next scan match.
if u := urlScanRE.FindIndex(text[w.Lo:]); u != nil && (m.Start == len(words) || int(w.Lo)+u[1] <= int(words[m.Start].Lo)) {
u0, u1 := int(w.Lo)+u[0], int(w.Lo)+u[1]
if l, ok := s.licenseURL(string(text[u0:u1])); ok {
c.Match = append(c.Match, Match{
ID: l.ID,
Type: l.Type,
Start: u0,
End: u1,
IsURL: true,
})
start := i
for i < m.Start && int(words[i].Hi) <= u1 {
i++
}
total += i - start
i-- // counter loop i++
}
}
}
}
if m.ID < 0 { // sentinel added above
break
}
start := int(words[m.Start].Lo) // byte offset (unlike m.Start)
if m.Start == 0 {
start = 0
} else {
prev := int(words[m.Start-1].Hi)
if i := bytes.LastIndexByte(text[prev:start], '\n'); i >= 0 {
start = prev + i + 1
}
}
end := int(words[m.End-1].Hi) // byte offset (unlike m.End)
if m.End == len(words) {
end = len(text)
} else {
next := int(words[m.End].Lo)
if i := bytes.IndexByte(text[end:next], '\n'); i >= 0 {
end = end + i + 1
}
}
l := &s.licenses[m.ID]
c.Match = append(c.Match, Match{
ID: l.ID,
Type: l.Type,
Start: start,
End: end,
})
total += m.End - m.Start
lastEnd = m.End
}
if len(words) > 0 { // len(words)==0 should be impossible, but avoid NaN
c.Percent = 100.0 * float64(total) / float64(len(words))
}
return c
}
// licenseURL reports whether url is a known URL, and returns its name if it is.
func (s *Scanner) licenseURL(url string) (License, bool) {
// We need to canonicalize the text for lookup.
// First, trim the leading http:// or https:// and the trailing /.
// Then we lower-case it.
url = strings.TrimPrefix(url, "http://")
url = strings.TrimPrefix(url, "https://")
url = strings.TrimSuffix(url, "/")
url = strings.TrimSuffix(url, "/legalcode") // Common for CC licenses.
url = strings.ToLower(url)
l, ok := s.urls[url]
if ok {
return l, true
}
// Try trimming one more path element, so that the ported URL
// https://creativecommons.org/licenses/by/3.0/us/
// is recognized as the known unported URL
// https://creativecommons.org/licenses/by/3.0
if i := strings.LastIndex(url, "/"); i >= 0 {
if l, ok = s.urls[url[:i]]; ok {
return l, true
}
}
return License{}, false
}