42 lines
823 B
Go
42 lines
823 B
Go
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
package spdx_yaml
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/spdx/tools-golang/spdx/v2_2"
|
|
"github.com/spdx/tools-golang/spdx/v2_3"
|
|
"sigs.k8s.io/yaml"
|
|
)
|
|
|
|
// Save2_2 takes an SPDX Document (version 2.2) and an io.Writer, and writes the document to the writer in YAML format.
|
|
func Save2_2(doc *v2_2.Document, w io.Writer) error {
|
|
buf, err := yaml.Marshal(doc)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = w.Write(buf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Save2_3 takes an SPDX Document (version 2.3) and an io.Writer, and writes the document to the writer in YAML format.
|
|
func Save2_3(doc *v2_3.Document, w io.Writer) error {
|
|
buf, err := yaml.Marshal(doc)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = w.Write(buf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|