123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- // Copyright 2017 The Xorm Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- // +build go1.1
- package main
- import (
- "fmt"
- "io"
- "os"
- "runtime"
- "strings"
- "sync"
- "text/template"
- "unicode"
- "unicode/utf8"
- )
- // Test that go1.1 tag above is included in builds. main.go refers to this definition.
- const go11tag = true
- const version = "0.3.0324"
- var supportedDrivers = map[string]string{
- "mysql": "github.com/go-sql-driver/mysql",
- "mymysql": "github.com/ziutek/mymysql/godrv",
- "postgres": "github.com/lib/pq",
- "mssql": "github.com/denisenkom/go-mssqldb",
- }
- // Commands lists the available commands and help topics.
- // The order here is the order in which they are printed by 'gopm help'.
- var commands = []*Command{
- CmdReverse,
- CmdShell,
- CmdDump,
- CmdDriver,
- CmdSource,
- }
- func init() {
- runtime.GOMAXPROCS(runtime.NumCPU())
- }
- func main() {
- // Check length of arguments.
- args := os.Args[1:]
- if len(args) < 1 {
- usage()
- return
- }
- // Show help documentation.
- if args[0] == "help" {
- help(args[1:])
- return
- }
- // Check commands and run.
- for _, comm := range commands {
- if comm.Name() == args[0] && comm.Run != nil {
- comm.Run(comm, args[1:])
- exit()
- return
- }
- }
- fmt.Fprintf(os.Stderr, "xorm: unknown subcommand %q\nRun 'xorm help' for usage.\n", args[0])
- setExitStatus(2)
- exit()
- }
- var exitStatus = 0
- var exitMu sync.Mutex
- func setExitStatus(n int) {
- exitMu.Lock()
- if exitStatus < n {
- exitStatus = n
- }
- exitMu.Unlock()
- }
- var usageTemplate = `xorm is a database tool based xorm package.
- Version:
- ` + version + `
- Usage:
- xorm command [arguments]
- The commands are:
- {{range .}}{{if .Runnable}}
- {{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
- Use "xorm help [command]" for more information about a command.
- Additional help topics:
- {{range .}}{{if not .Runnable}}
- {{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
- Use "xorm help [topic]" for more information about that topic.
- `
- var helpTemplate = `{{if .Runnable}}usage: xorm {{.UsageLine}}
- {{end}}{{.Long | trim}}
- `
- // tmpl executes the given template text on data, writing the result to w.
- func tmpl(w io.Writer, text string, data interface{}) {
- t := template.New("top")
- t.Funcs(template.FuncMap{"trim": strings.TrimSpace, "capitalize": capitalize})
- template.Must(t.Parse(text))
- if err := t.Execute(w, data); err != nil {
- panic(err)
- }
- }
- func capitalize(s string) string {
- if s == "" {
- return s
- }
- r, n := utf8.DecodeRuneInString(s)
- return string(unicode.ToTitle(r)) + s[n:]
- }
- func printUsage(w io.Writer) {
- tmpl(w, usageTemplate, commands)
- }
- func usage() {
- printUsage(os.Stderr)
- os.Exit(2)
- }
- // help implements the 'help' command.
- func help(args []string) {
- if len(args) == 0 {
- printUsage(os.Stdout)
- // not exit 2: succeeded at 'gopm help'.
- return
- }
- if len(args) != 1 {
- fmt.Fprintf(os.Stderr, "usage: xorm help command\n\nToo many arguments given.\n")
- os.Exit(2) // failed at 'gopm help'
- }
- arg := args[0]
- for _, cmd := range commands {
- if cmd.Name() == arg {
- tmpl(os.Stdout, helpTemplate, cmd)
- // not exit 2: succeeded at 'gopm help cmd'.
- return
- }
- }
- fmt.Fprintf(os.Stderr, "Unknown help topic %#q. Run 'xorm help'.\n", arg)
- os.Exit(2) // failed at 'gopm help cmd'
- }
- var atexitFuncs []func()
- func atexit(f func()) {
- atexitFuncs = append(atexitFuncs, f)
- }
- func exit() {
- for _, f := range atexitFuncs {
- f()
- }
- os.Exit(exitStatus)
- }
|