blob: 774a5bb9329de97d8e56709b3cd65a44091bf3f8 [file] [log] [blame]
package main
/*
* Licensed to the 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. The 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.
*/
import (
"fmt"
"os"
"path/filepath"
"syscall" // TODO change to x/unix ?
"github.com/apache/trafficcontrol/cache-config/t3cutil"
"github.com/apache/trafficcontrol/lib/go-log"
"github.com/pborman/getopt/v2"
)
const AppName = "t3c-check"
// Version is the application version.
// This is overwritten by the build with the current project version.
var Version = "0.4"
// GitRevision is the git revision the application was built from.
// This is overwritten by the build with the current project version.
var GitRevision = "nogit"
var commands = map[string]struct{}{
"apply": struct{}{},
"check": struct{}{},
"diff": struct{}{},
"generate": struct{}{},
"preprocess": struct{}{},
"request": struct{}{},
"tail": struct{}{},
"update": struct{}{},
}
const ExitCodeSuccess = 0
const ExitCodeNoCommand = 1
const ExitCodeUnknownCommand = 2
const ExitCodeCommandErr = 3
const ExitCodeExeErr = 4
const ExitCodeCommandLookupErr = 5
func main() {
flagHelp := getopt.BoolLong("help", 'h', "Print usage information and exit")
flagVersion := getopt.BoolLong("version", 'V', "Print version information and exit.")
getopt.Parse()
log.Init(os.Stderr, os.Stderr, os.Stderr, os.Stderr, os.Stderr)
if *flagHelp {
log.Errorln(usageStr())
os.Exit(ExitCodeSuccess)
} else if *flagVersion {
fmt.Println(t3cutil.VersionStr(AppName, Version, GitRevision))
os.Exit(ExitCodeSuccess)
}
if len(os.Args) < 2 {
log.Errorf("no command\n\n%s", usageStr())
os.Exit(ExitCodeNoCommand)
}
cmd := os.Args[1]
if _, ok := commands[cmd]; !ok {
log.Errorf("unknown command\n%s", usageStr())
os.Exit(ExitCodeUnknownCommand)
}
app := "t3c-" + cmd
appPath := filepath.Join(t3cutil.InstallDir(), app)
_, err := os.Stat(appPath)
if err != nil {
log.Errorf("error finding path to '%s': %s\n", app, err.Error())
os.Exit(ExitCodeCommandLookupErr)
}
args := append([]string{app}, os.Args[2:]...)
env := os.Environ()
if err := syscall.Exec(appPath, args, env); err != nil {
log.Errorf("error executing sub-command '%s': %s\n", appPath, err.Error())
os.Exit(ExitCodeCommandErr)
}
}
func usageStr() string {
return `usage: t3c [--help]
<command> [<args>]
For the arguments of a command, see 't3c <command> --help'.
These are the available commands:
apply generate and apply configuration
check check that new config can be applied
diff diff config files, with logic like ignoring comments
generate generate configuration from Traffic Ops data
preprocess preprocess generated config files
request request Traffic Ops data
tail tail a log file
update update a cache's queue and reval status in Traffic Ops
`
}