tools/go-agent/cmd/helper.go (58 lines of code) (raw):

// Licensed to Apache Software Foundation (ASF) under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Apache Software Foundation (ASF) licenses this file to you 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 main import ( "fmt" "os" "runtime" "text/template" ) var ( version string gitCommit string ) type EnhancementToolFlags struct { Help bool `swflag:"-h"` Debug string `swflag:"-debug"` Config string `swflag:"-config"` Inject string `swflag:"-inject"` AllProjects bool `swflag:"-all"` Version bool `swflag:"-version"` } func PrintUsageWithExit() { usageTmpl := template.New("UsageTmpl") template.Must(usageTmpl.Parse(usageTemplate)) if err := usageTmpl.Execute(os.Stdout, os.Args[0]); err != nil { fmt.Fprintln(os.Stdout, err) } os.Exit(1) } func PrintVersion() { versionTmpl := template.New("VersionTmpl") template.Must(versionTmpl.Parse(versionTemplate)) versionInfo := map[string]any{ "Version": version, "GitCommit": gitCommit, "GoVersion": runtime.Version(), } if err := versionTmpl.Execute(os.Stdout, versionInfo); err != nil { fmt.Fprintln(os.Stdout, err) } os.Exit(1) } var versionTemplate = `skywalking-go agent Version: {{ or .Version "Unknown" }} Go version: {{ or .GoVersion "Unknown" }} Git commit: {{ or .GitCommit "Unknown" }} ` var usageTemplate = `A command line utility for operating skywalking go-agent Describe: The Go-agent-enhance tool is designed for automatic enhancement of Golang programs, or inject the agent code into the project. Usage: go {build,install} -a [-work] -toolexec "{{ . }} [flags]" PACKAGE... Available Flags: -h Print the usage message. -inject Inject the agent code into the project, the value is the path of the project or single file. -all Inject the agent code into all the project in the current directory. -debug Helping to debug the enhance process, the value is the path of the debug file. -config The file path of the agent config file. -version Print current agent version. `