代码拉取完成,页面将自动刷新
// Copyright 2020 Douyu
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package pkg
import (
"fmt"
"os"
"path/filepath"
"runtime"
"strings"
"time"
"gitee.com/nonull/eden/pkg/util/xtime"
"gitee.com/nonull/eden/pkg/constant"
"gitee.com/nonull/eden/pkg/util/xcolor"
)
const jupiterVersion = "0.2.0"
var (
startTime string
goVersion string
)
// build info
/*
*/
var (
appName string
appID string
hostName string
buildAppVersion string
buildUser string
buildHost string
buildStatus string
buildTime string
)
func init() {
if appName == "" {
appName = os.Getenv(constant.EnvAppName)
if appName == "" {
appName = filepath.Base(os.Args[0])
}
}
name, err := os.Hostname()
if err != nil {
name = "unknown"
}
hostName = name
startTime = xtime.TS.Format(time.Now())
SetBuildTime(buildTime)
goVersion = runtime.Version()
InitEnv()
}
// Name gets application name.
func Name() string {
return appName
}
//SetName set app anme
func SetName(s string) {
appName = s
}
//AppID get appID
func AppID() string {
return appID
}
//SetAppID set appID
func SetAppID(s string) {
appID = s
}
//AppVersion get buildAppVersion
func AppVersion() string {
return buildAppVersion
}
//appVersion not defined
// func SetAppVersion(s string) {
// appVersion = s
// }
//JupiterVersion get jupiterVersion
func JupiterVersion() string {
return jupiterVersion
}
// todo: jupiterVersion is const not be set
// func SetJupiterVersion(s string) {
// jupiterVersion = s
// }
//BuildTime get buildTime
func BuildTime() string {
return buildTime
}
//BuildUser get buildUser
func BuildUser() string {
return buildUser
}
//BuildHost get buildHost
func BuildHost() string {
return buildHost
}
//SetBuildTime set buildTime
func SetBuildTime(param string) {
buildTime = strings.Replace(param, "--", " ", 1)
}
// HostName get host name
func HostName() string {
return hostName
}
//StartTime get start time
func StartTime() string {
return startTime
}
//GoVersion get go version
func GoVersion() string {
return goVersion
}
// PrintVersion print formated version info
func PrintVersion() {
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("name"), xcolor.Blue(appName))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("appID"), xcolor.Blue(appID))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("region"), xcolor.Blue(AppRegion()))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("zone"), xcolor.Blue(AppZone()))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("appVersion"), xcolor.Blue(buildAppVersion))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("jupiterVersion"), xcolor.Blue(jupiterVersion))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("buildUser"), xcolor.Blue(buildUser))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("buildHost"), xcolor.Blue(buildHost))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("buildTime"), xcolor.Blue(BuildTime()))
fmt.Printf("%-8s]> %-30s => %s\n", "jupiter", xcolor.Red("buildStatus"), xcolor.Blue(buildStatus))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。