mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
3608a2def2
Squashed commit of the following: commit 3b90850dae360878925a82a48eeb360ecf6c6969 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Mar 13 15:34:11 2024 +0300 version: sort version strings commit 7a9cb73a2f6c3579e104745b5c31abdd9edc8e33 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Wed Mar 13 13:02:36 2024 +0300 all: account candidate channel commit 76d237412f17ddfdd09def97f13489a4fc98d641 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Tue Mar 12 20:02:55 2024 +0300 bamboo-specs: add todo commit f99c726386a4a3ef322a32677a6c0a0e2dd6bbcc Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Tue Mar 12 20:01:38 2024 +0300 bamboo-specs: revert release commit 70a3b3e93647ed9474e0679e6e2d91b4b06691d4 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Tue Mar 12 19:58:20 2024 +0300 bamboo-specs: rm explicit checkout
187 lines
4.4 KiB
Go
187 lines
4.4 KiB
Go
// Package version contains AdGuard Home version information.
|
|
package version
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
"runtime/debug"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/golibs/stringutil"
|
|
)
|
|
|
|
// Channel constants.
|
|
const (
|
|
ChannelBeta = "beta"
|
|
ChannelCandidate = "candidate"
|
|
ChannelDevelopment = "development"
|
|
ChannelEdge = "edge"
|
|
ChannelRelease = "release"
|
|
)
|
|
|
|
// These are set by the linker. Unfortunately we cannot set constants during
|
|
// linking, and Go doesn't have a concept of immutable variables, so to be
|
|
// thorough we have to only export them through getters.
|
|
//
|
|
// TODO(a.garipov): Find out if we can get GOARM and GOMIPS values the same way
|
|
// we can GOARCH and GOOS.
|
|
var (
|
|
channel string = ChannelDevelopment
|
|
goarm string
|
|
gomips string
|
|
version string
|
|
committime string
|
|
)
|
|
|
|
// Channel returns the current AdGuard Home release channel.
|
|
func Channel() (v string) {
|
|
return channel
|
|
}
|
|
|
|
// vFmtFull defines the format of full version output.
|
|
const vFmtFull = "AdGuard Home, version %s"
|
|
|
|
// Full returns the full current version of AdGuard Home.
|
|
func Full() (v string) {
|
|
return fmt.Sprintf(vFmtFull, version)
|
|
}
|
|
|
|
// GOARM returns the GOARM value used to build the current AdGuard Home release.
|
|
func GOARM() (v string) {
|
|
return goarm
|
|
}
|
|
|
|
// GOMIPS returns the GOMIPS value used to build the current AdGuard Home
|
|
// release.
|
|
func GOMIPS() (v string) {
|
|
return gomips
|
|
}
|
|
|
|
// Version returns the AdGuard Home build version.
|
|
func Version() (v string) {
|
|
return version
|
|
}
|
|
|
|
// fmtModule returns formatted information about module. The result looks like:
|
|
//
|
|
// github.com/Username/module@v1.2.3 (sum: someHASHSUM=)
|
|
func fmtModule(m *debug.Module) (formatted string) {
|
|
if m == nil {
|
|
return ""
|
|
}
|
|
|
|
if repl := m.Replace; repl != nil {
|
|
return fmtModule(repl)
|
|
}
|
|
|
|
b := &strings.Builder{}
|
|
|
|
stringutil.WriteToBuilder(b, m.Path)
|
|
if ver := m.Version; ver != "" {
|
|
sep := "@"
|
|
if ver == "(devel)" {
|
|
sep = " "
|
|
}
|
|
|
|
stringutil.WriteToBuilder(b, sep, ver)
|
|
}
|
|
|
|
if sum := m.Sum; sum != "" {
|
|
stringutil.WriteToBuilder(b, "(sum: ", sum, ")")
|
|
}
|
|
|
|
return b.String()
|
|
}
|
|
|
|
// Constants defining the headers of build information message.
|
|
const (
|
|
vFmtAGHHdr = "AdGuard Home"
|
|
vFmtVerHdr = "Version: "
|
|
vFmtSchemaVerHdr = "Schema version: "
|
|
vFmtChanHdr = "Channel: "
|
|
vFmtGoHdr = "Go version: "
|
|
vFmtTimeHdr = "Commit time: "
|
|
vFmtRaceHdr = "Race: "
|
|
vFmtGOOSHdr = "GOOS: " + runtime.GOOS
|
|
vFmtGOARCHHdr = "GOARCH: " + runtime.GOARCH
|
|
vFmtGOARMHdr = "GOARM: "
|
|
vFmtGOMIPSHdr = "GOMIPS: "
|
|
vFmtDepsHdr = "Dependencies:"
|
|
)
|
|
|
|
// Verbose returns formatted build information. Output example:
|
|
//
|
|
// AdGuard Home
|
|
// Version: v0.105.3
|
|
// Schema version: 27
|
|
// Channel: development
|
|
// Go version: go1.15.3
|
|
// Build time: 2021-03-30T16:26:08Z+0300
|
|
// GOOS: darwin
|
|
// GOARCH: amd64
|
|
// Race: false
|
|
// Main module:
|
|
// ...
|
|
// Dependencies:
|
|
// ...
|
|
//
|
|
// TODO(e.burkov): Make it write into passed io.Writer.
|
|
func Verbose(schemaVersion uint) (v string) {
|
|
b := &strings.Builder{}
|
|
|
|
const nl = "\n"
|
|
stringutil.WriteToBuilder(b, vFmtAGHHdr, nl)
|
|
stringutil.WriteToBuilder(b, vFmtVerHdr, version, nl)
|
|
|
|
schemaVerStr := strconv.FormatUint(uint64(schemaVersion), 10)
|
|
stringutil.WriteToBuilder(b, vFmtSchemaVerHdr, schemaVerStr, nl)
|
|
|
|
stringutil.WriteToBuilder(b, vFmtChanHdr, channel, nl)
|
|
stringutil.WriteToBuilder(b, vFmtGoHdr, runtime.Version(), nl)
|
|
|
|
writeCommitTime(b)
|
|
|
|
stringutil.WriteToBuilder(b, vFmtGOOSHdr, nl)
|
|
stringutil.WriteToBuilder(b, vFmtGOARCHHdr, nl)
|
|
|
|
if goarm != "" {
|
|
stringutil.WriteToBuilder(b, vFmtGOARMHdr, "v", goarm, nl)
|
|
} else if gomips != "" {
|
|
stringutil.WriteToBuilder(b, vFmtGOMIPSHdr, gomips, nl)
|
|
}
|
|
|
|
stringutil.WriteToBuilder(b, vFmtRaceHdr, strconv.FormatBool(isRace), nl)
|
|
|
|
info, ok := debug.ReadBuildInfo()
|
|
if !ok {
|
|
return b.String()
|
|
}
|
|
|
|
if len(info.Deps) == 0 {
|
|
return b.String()
|
|
}
|
|
|
|
stringutil.WriteToBuilder(b, vFmtDepsHdr, nl)
|
|
for _, dep := range info.Deps {
|
|
if depStr := fmtModule(dep); depStr != "" {
|
|
stringutil.WriteToBuilder(b, "\t", depStr, nl)
|
|
}
|
|
}
|
|
|
|
return b.String()
|
|
}
|
|
|
|
func writeCommitTime(b *strings.Builder) {
|
|
if committime == "" {
|
|
return
|
|
}
|
|
|
|
commitTimeUnix, err := strconv.ParseInt(committime, 10, 64)
|
|
if err != nil {
|
|
stringutil.WriteToBuilder(b, vFmtTimeHdr, fmt.Sprintf("parse error: %s", err), "\n")
|
|
} else {
|
|
stringutil.WriteToBuilder(b, vFmtTimeHdr, time.Unix(commitTimeUnix, 0).String(), "\n")
|
|
}
|
|
}
|