-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathversion.go
44 lines (39 loc) · 1.07 KB
/
version.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
package tableau
import (
"runtime/debug"
"github.com/tableauio/tableau/internal/confgen"
"github.com/tableauio/tableau/internal/protogen"
)
// VersionInfo holds versions of tableau's main modules and VCS info.
type VersionInfo struct {
ProtogenVersion string // version of protogen module
ConfgenVersion string // version of confgen module
// VCS info
Revision string
Time string
Experimental string
}
const RevisionSize = 7
// GetVersionInfo returns VersionInfo of tableau.
func GetVersionInfo() *VersionInfo {
info := &VersionInfo{
ProtogenVersion: protogen.Version,
ConfgenVersion: confgen.Version,
}
if buildInfo, ok := debug.ReadBuildInfo(); ok {
for _, setting := range buildInfo.Settings {
switch setting.Key {
case "vcs.revision":
info.Revision = setting.Value
if len(info.Revision) >= RevisionSize {
info.Revision = info.Revision[:RevisionSize]
}
case "vcs.time":
info.Time = setting.Value
case "vcs.modified":
info.Experimental = setting.Value
}
}
}
return info
}