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
|
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
// Example for: *json*
// This example demonstrates loading an SPDX JSON document from disk into memory,
// and then logging some attributes to the console.
// Run project: go run example_json_loader.go ../sample-docs/json/SPDXJSONExample-v2.2.spdx.json
package main
import (
"fmt"
"os"
"strings"
"github.com/spdx/tools-golang/json"
)
func main() {
// check that we've received the right number of arguments
args := os.Args
if len(args) != 2 {
fmt.Printf("Usage: %v <json-file-in>\n", args[0])
fmt.Printf(" Load SPDX JSON file <spdx-file-in>, and\n")
fmt.Printf(" print portions of its creation info data.\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 json file
doc, err := json.Read(r)
if err != nil {
fmt.Printf("Error while parsing %v: %v", args[1], err)
return
}
// if we got here, the file is now loaded into memory.
fmt.Printf("Successfully loaded %s\n", args[1])
fmt.Println(strings.Repeat("=", 80))
fmt.Println("Some Attributes of the Document:")
fmt.Printf("Document Name: %s\n", doc.DocumentName)
fmt.Printf("DataLicense: %s\n", doc.DataLicense)
fmt.Printf("Document Namespace: %s\n", doc.DocumentNamespace)
fmt.Printf("SPDX Version: %s\n", doc.SPDXVersion)
fmt.Println(strings.Repeat("=", 80))
}
|