代码拉取完成,页面将自动刷新
/*
* 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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。