@@ -26,17 +26,14 @@ import (
26
26
"iter"
27
27
"maps"
28
28
"os"
29
- "path/filepath"
30
29
"regexp"
31
30
"slices"
32
31
"strconv"
33
- "strings"
34
32
)
35
33
36
34
var (
37
35
outPath = flag .String ("out" , "" , "The path to write the results in JSON format" )
38
36
comparePath = flag .String ("compare" , "" , "The path to a JSON file to compare against" )
39
- useMapping = flag .Bool ("use-mapping" , false , "Apply the mapping and look up files in OpenSSL instead" )
40
37
)
41
38
42
39
func sortedKeyValuePairs [K cmp.Ordered , V any ](m map [K ]V ) iter.Seq2 [K , V ] {
@@ -69,35 +66,6 @@ var copyrightRE = regexp.MustCompile(
69
66
// summary to double-check an otherwise mostly automated process.
70
67
`([-a-zA-Z ]*[-a-zA-Z])` )
71
68
72
- var fileMapping map [string ][]string
73
-
74
- //go:embed mapping.txt
75
- var fileMappingData string
76
-
77
- func parseMapping () (map [string ][]string , error ) {
78
- ret := map [string ][]string {}
79
- for _ , line := range strings .Split (fileMappingData , "\n " ) {
80
- if idx := strings .IndexByte (line , '#' ); idx >= 0 {
81
- line = line [:idx ]
82
- }
83
- line = strings .TrimSpace (line )
84
- if len (line ) == 0 {
85
- continue
86
- }
87
- colon := strings .IndexByte (line , ':' )
88
- if colon < 0 {
89
- return nil , fmt .Errorf ("could not parse %q" , line )
90
- }
91
- from := strings .TrimSpace (line [:colon ])
92
- to := strings .TrimSpace (line [colon + 1 :])
93
- if _ , ok := ret [from ]; ok {
94
- return nil , fmt .Errorf ("duplicate mapping for %q" , from )
95
- }
96
- ret [from ] = strings .Fields (to )
97
- }
98
- return ret , nil
99
- }
100
-
101
69
type CopyrightInfo struct {
102
70
Name string
103
71
StartYear int
@@ -127,27 +95,6 @@ func summarize(info FileInfo) map[string]int {
127
95
}
128
96
129
97
func process (path string ) (info FileInfo , err error ) {
130
- if ! * useMapping {
131
- return processImpl (path )
132
- }
133
-
134
- newPaths , ok := fileMapping [path ]
135
- if ! ok {
136
- err = fmt .Errorf ("no mapping found for %q" , path )
137
- return
138
- }
139
- for _ , newPath := range newPaths {
140
- var newInfo FileInfo
141
- newInfo , err = processImpl (filepath .Join ("../openssl" , newPath ))
142
- if err != nil {
143
- return
144
- }
145
- info .MergeFrom (newInfo )
146
- }
147
- return
148
- }
149
-
150
- func processImpl (path string ) (info FileInfo , err error ) {
151
98
f , err := os .Open (path )
152
99
if err != nil {
153
100
return
@@ -175,15 +122,6 @@ func processImpl(path string) (info FileInfo, err error) {
175
122
func main () {
176
123
flag .Parse ()
177
124
178
- if * useMapping {
179
- var err error
180
- fileMapping , err = parseMapping ()
181
- if err != nil {
182
- fmt .Fprintf (os .Stderr , "Error parsing mapping file: %s\n " , err )
183
- os .Exit (1 )
184
- }
185
- }
186
-
187
125
infos := map [string ]FileInfo {}
188
126
for _ , path := range flag .Args () {
189
127
info , err := process (path )
0 commit comments