-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.go
95 lines (85 loc) · 2.48 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package main
import (
"flag"
"fmt"
"github.com/DeNA/unity-meta-check/git"
"github.com/DeNA/unity-meta-check/options"
"github.com/DeNA/unity-meta-check/report"
"github.com/DeNA/unity-meta-check/resultfilter"
"github.com/DeNA/unity-meta-check/unity"
"github.com/DeNA/unity-meta-check/unity/checker"
"github.com/DeNA/unity-meta-check/util/cli"
"github.com/DeNA/unity-meta-check/util/logging"
"github.com/DeNA/unity-meta-check/util/ostestable"
"github.com/DeNA/unity-meta-check/version"
"os"
)
func main() {
var cmd cli.Command
profModeSwitch := os.Getenv("UNITY_META_CHECK_PROFILE")
if profModeSwitch == "cpu" {
cmd = cli.NewCommandWithCPUProfile(NewMain())
} else if profModeSwitch == "heap" {
cmd = cli.NewCommandWithHeapProfile(NewMain())
} else if profModeSwitch != "" {
println(fmt.Sprintf("unsupported profile mode: %q", profModeSwitch))
os.Exit(1)
} else {
cmd = NewMain()
}
exitStatus := cmd(os.Args[1:], cli.GetProcessInout(), cli.NewEnv())
os.Exit(int(exitStatus))
}
func NewMain() cli.Command {
return func(args []string, procInout cli.ProcessInout, env cli.Env) cli.ExitStatus {
opts, err := options.ParseArgs(args, procInout)
if err != nil {
if err != flag.ErrHelp {
_, _ = fmt.Fprintln(procInout.Stderr, err.Error())
}
return cli.ExitAbnormal
}
if opts.Version {
_, _ = fmt.Fprintln(procInout.Stdout, version.Version)
return cli.ExitNormal
}
logger := logging.NewLogger(opts.LogLevel, procInout.Stderr)
check := checker.NewChecker(
checker.NewStrategySelector(
unity.NewFindPackages(logger),
git.NewLsFiles(logger),
logger,
),
logger,
)
result, err := check(
opts.RootDirAbs,
&checker.Options{
IgnoreCase: opts.IgnoreCase,
IgnoreSubmodulesAndNested: opts.IgnoreSubmodulesAndNested,
TargetType: opts.TargetType,
},
)
if err != nil {
_, _ = fmt.Fprintln(procInout.Stderr, err.Error())
return cli.ExitAbnormal
}
filterFunc := resultfilter.NewFilter(ostestable.NewGetwd(), logger)
filtered, err := filterFunc(result, &resultfilter.Options{
IgnoreDangling: opts.IgnoreDangling,
IgnoredGlobs: opts.IgnoredPaths,
})
if err != nil {
_, _ = fmt.Fprintln(procInout.Stderr, err.Error())
return cli.ExitAbnormal
}
if err := report.WriteResult(procInout.Stdout, filtered); err != nil {
_, _ = fmt.Fprintln(procInout.Stderr, err.Error())
return cli.ExitAbnormal
}
if !filtered.Empty() {
return cli.ExitAbnormal
}
return cli.ExitNormal
}
}