blob: bb463025838b39132d8f48e32362e1e5d1af8ca9 [file] [log] [blame]
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
// Example for: *yaml* *tagvalue*
// This example demonstrates loading an SPDX tag-value file from disk into memory,
// and re-saving it to a different file on disk.
// Run project: go run exampleyamltotv.go ../sample-docs/yaml/SPDXYAMLExample-2.2.spdx.yaml test.spdx
package main
import (
"fmt"
"os"
"github.com/spdx/tools-golang/tagvalue"
"github.com/spdx/tools-golang/yaml"
)
func main() {
// check that we've received the right number of arguments
args := os.Args
if len(args) != 3 {
fmt.Printf("Usage: %v <yaml-file-in> <spdx-file-out>\n", args[0])
fmt.Printf(" Load YAML file <yaml-file-in>, and\n")
fmt.Printf(" save it out to <spdx-file-out>.\n")
return
}
// open the SPDX file
fileIn := args[1]
r, err := os.Open(fileIn)
if err != nil {
fmt.Printf("Error while opening %v for reading: %v", fileIn, err)
return
}
defer r.Close()
// try to load the SPDX file's contents as a YAML file
doc, err := yaml.Read(r)
if err != nil {
fmt.Printf("Error while parsing %v: %v", fileIn, err)
return
}
// if we got here, the file is now loaded into memory.
fmt.Printf("Successfully loaded %s\n", fileIn)
// we can now save it back to disk, using yaml, but tagvalue work also.
// create a new file for writing
fileOut := args[2]
w, err := os.Create(fileOut)
if err != nil {
fmt.Printf("Error while opening %v for writing: %v", fileOut, err)
return
}
defer w.Close()
// try to save the document to disk as an SPDX tag-value file
err = tagvalue.Write(doc, w)
if err != nil {
fmt.Printf("Error while saving %v: %v", fileOut, err)
return
}
// it worked
fmt.Printf("Successfully saved %s\n", fileOut)
}