1 Star 0 Fork 0

lqinggang/psiphon-tunnel-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
buildinfo.go 3.74 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* Copyright (c) 2015, Psiphon Inc.
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package common
import (
"encoding/json"
"strings"
)
/*
These values should be filled in at build time using the `-X` option[1] to the
Go linker (probably via `-ldflags` option to `go build` -- like `-ldflags "-X var1=abc -X var2=xyz"`).
[1]: http://golang.org/cmd/ld/
Without those build flags, the build info in the notice will simply be empty strings.
Suggestions for how to fill in the values will be given for each variable.
Note that any passed value must contain no whitespace.
*/
// -X github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common.buildDate=`date --iso-8601=seconds`
var buildDate string
// -X github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common.buildRepo=`git config --get remote.origin.url`
var buildRepo string
// -X github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common.buildRev=`git rev-parse --short HEAD`
var buildRev string
// -X github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common.goVersion=`go version | perl -ne '/go version (.*?) / && print $1'`
var goVersion string
// -X github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common.gomobileVersion=`gomobile version | perl -ne '/gomobile version (.*?) / && print $1'`
var gomobileVersion string
// -X github.com/Psiphon-Labs/psiphon-tunnel-core/common.dependencies=`echo -n "{" && go list -f '{{range $dep := .Deps}}{{printf "%s\n" $dep}}{{end}}' | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}' | xargs -I pkg bash -c 'cd $GOPATH/src/pkg && echo -n "\"pkg\":\"$(git rev-parse --short HEAD)\","' | sed 's/,$/}/'`
// Dependencies should be listed as a JSON object like the following (no spaces) {"github.com/Psiphon-Labs/psiphon-tunnel-core":"abcdef","...":"..."}
var dependencies string
// Capture relevant build information here for use in clients or servers
type BuildInfo struct {
BuildDate string `json:"buildDate"`
BuildRepo string `json:"buildRepo"`
BuildRev string `json:"buildRev"`
GoVersion string `json:"goVersion"`
GomobileVersion string `json:"gomobileVersion,omitempty"`
Dependencies json.RawMessage `json:"dependencies"`
}
// Convert 'BuildInfo' struct to 'map[string]interface{}'
func (bi *BuildInfo) ToMap() *map[string]interface{} {
var dependenciesMap map[string]interface{}
json.Unmarshal([]byte(bi.Dependencies), &dependenciesMap)
buildInfoMap := map[string]interface{}{
"buildDate": bi.BuildDate,
"buildRepo": bi.BuildRepo,
"buildRev": bi.BuildRev,
"goVersion": bi.GoVersion,
"dependencies": dependenciesMap,
}
return &buildInfoMap
}
// Return an instance of the BuildInfo struct
func GetBuildInfo() *BuildInfo {
if strings.TrimSpace(dependencies) == "" {
dependencies = "{}"
}
buildInfo := BuildInfo{
BuildDate: strings.TrimSpace(buildDate),
BuildRepo: strings.TrimSpace(buildRepo),
BuildRev: strings.TrimSpace(buildRev),
GoVersion: strings.TrimSpace(goVersion),
GomobileVersion: strings.TrimSpace(gomobileVersion),
Dependencies: json.RawMessage(strings.TrimSpace(dependencies)),
}
return &buildInfo
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lqinggang/psiphon-tunnel-core.git
git@gitee.com:lqinggang/psiphon-tunnel-core.git
lqinggang
psiphon-tunnel-core
psiphon-tunnel-core
v0.0.13-alpha

搜索帮助