-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathmain.go
62 lines (58 loc) · 1.16 KB
/
main.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
/*
* @Descripation: 引擎入口
* @Date: 2021-11-03 11:12:19
*/
package main
import (
"analyzer/engine"
"flag"
"fmt"
"path"
"strings"
"util/args"
"util/logs"
"util/model"
"util/report"
)
var version string
func main() {
args.Parse()
if len(args.Config.Path) > 0 {
output(engine.NewEngine().ParseFile(args.Config.Path))
} else {
flag.PrintDefaults()
}
}
// output 输出结果
func output(depRoot *model.DepTree, taskInfo report.TaskInfo) {
taskInfo.ToolVersion = version
// 记录依赖
logs.Debug("\n" + depRoot.String())
// 输出结果
var reportFunc func(*model.DepTree, report.TaskInfo) []byte
out := args.Config.Out
switch path.Ext(out) {
case ".html":
reportFunc = report.Html
case ".json":
if strings.HasSuffix(out, ".spdx.json") {
reportFunc = report.SpdxJson
break
}
reportFunc = report.Json
case ".spdx":
reportFunc = report.Spdx
case ".xml":
if strings.HasSuffix(out, ".spdx.xml") {
reportFunc = report.SpdxXml
break
}
default:
reportFunc = report.Json
}
if args.Config.Out != "" {
report.Save(reportFunc(depRoot, taskInfo), args.Config.Out)
} else {
fmt.Println(string(reportFunc(depRoot, taskInfo)))
}
}