-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathreader.go
84 lines (72 loc) · 1.83 KB
/
reader.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
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
package yaml
import (
"bytes"
"fmt"
"io"
"sigs.k8s.io/yaml"
"github.com/spdx/tools-golang/convert"
"github.com/spdx/tools-golang/spdx"
"github.com/spdx/tools-golang/spdx/common"
"github.com/spdx/tools-golang/spdx/v2/v2_1"
"github.com/spdx/tools-golang/spdx/v2/v2_2"
"github.com/spdx/tools-golang/spdx/v2/v2_3"
)
// Read takes an io.Reader and returns a fully-parsed current model SPDX Document
// or an error if any error is encountered.
func Read(content io.Reader) (*spdx.Document, error) {
doc := spdx.Document{}
err := ReadInto(content, &doc)
return &doc, err
}
// ReadInto takes an io.Reader, reads in the SPDX document at the version provided
// and converts to the doc version
func ReadInto(content io.Reader, doc common.AnyDocument) error {
if !convert.IsPtr(doc) {
return fmt.Errorf("doc to read into must be a pointer")
}
buf := new(bytes.Buffer)
_, err := buf.ReadFrom(content)
if err != nil {
return err
}
var data interface{}
err = yaml.Unmarshal(buf.Bytes(), &data)
if err != nil {
return err
}
val, ok := data.(map[string]interface{})
if !ok {
return fmt.Errorf("not a valid SPDX YAML document")
}
version, ok := val["spdxVersion"]
if !ok {
return fmt.Errorf("YAML document does not contain spdxVersion field")
}
switch version {
case v2_1.Version:
var doc v2_1.Document
err = yaml.Unmarshal(buf.Bytes(), &doc)
if err != nil {
return err
}
data = doc
case v2_2.Version:
var doc v2_2.Document
err = yaml.Unmarshal(buf.Bytes(), &doc)
if err != nil {
return err
}
data = doc
case v2_3.Version:
var doc v2_3.Document
err = yaml.Unmarshal(buf.Bytes(), &doc)
if err != nil {
return err
}
data = doc
default:
return fmt.Errorf("unsupported SDPX version: %s", version)
}
return convert.Document(data, doc)
}