2013-09-03 17:23:58 +00:00
|
|
|
// Copyright 2013 bee authors
|
2013-07-27 01:44:44 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2013-07-24 11:20:30 +00:00
|
|
|
// Bee is a tool for developling applications based on beego framework.
|
2012-12-15 16:56:28 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2016-01-18 03:33:52 +00:00
|
|
|
const version = "1.4.1"
|
2014-05-16 17:37:45 +00:00
|
|
|
|
2012-12-15 16:56:28 +00:00
|
|
|
type Command struct {
|
|
|
|
// Run runs the command.
|
|
|
|
// The args are the arguments after the command name.
|
2014-08-15 09:38:51 +00:00
|
|
|
Run func(cmd *Command, args []string) int
|
2012-12-15 16:56:28 +00:00
|
|
|
|
|
|
|
// UsageLine is the one-line usage message.
|
|
|
|
// The first word in the line is taken to be the command name.
|
|
|
|
UsageLine string
|
|
|
|
|
|
|
|
// Short is the short description shown in the 'go help' output.
|
2014-05-19 08:31:02 +00:00
|
|
|
Short template.HTML
|
2012-12-15 16:56:28 +00:00
|
|
|
|
|
|
|
// Long is the long message shown in the 'go help <this-command>' output.
|
2014-05-19 08:31:02 +00:00
|
|
|
Long template.HTML
|
2012-12-15 16:56:28 +00:00
|
|
|
|
|
|
|
// Flag is a set of flags specific to this command.
|
|
|
|
Flag flag.FlagSet
|
|
|
|
|
|
|
|
// CustomFlags indicates that the command will do its own
|
|
|
|
// flag parsing.
|
|
|
|
CustomFlags bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name returns the command's name: the first word in the usage line.
|
|
|
|
func (c *Command) Name() string {
|
|
|
|
name := c.UsageLine
|
|
|
|
i := strings.Index(name, " ")
|
|
|
|
if i >= 0 {
|
|
|
|
name = name[:i]
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Command) Usage() {
|
|
|
|
fmt.Fprintf(os.Stderr, "usage: %s\n\n", c.UsageLine)
|
2014-05-19 08:31:02 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "%s\n", strings.TrimSpace(string(c.Long)))
|
2012-12-15 16:56:28 +00:00
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Runnable reports whether the command can be run; otherwise
|
|
|
|
// it is a documentation pseudo-command such as importpath.
|
|
|
|
func (c *Command) Runnable() bool {
|
|
|
|
return c.Run != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var commands = []*Command{
|
2013-07-24 11:20:30 +00:00
|
|
|
cmdNew,
|
2013-07-24 12:01:14 +00:00
|
|
|
cmdRun,
|
2013-06-27 02:15:54 +00:00
|
|
|
cmdPack,
|
2013-07-08 07:34:58 +00:00
|
|
|
cmdApiapp,
|
2014-10-14 13:30:32 +00:00
|
|
|
cmdHproseapp,
|
2014-08-18 15:12:27 +00:00
|
|
|
//cmdRouter,
|
|
|
|
//cmdTest,
|
2013-09-03 17:23:58 +00:00
|
|
|
cmdBale,
|
2014-05-16 17:37:45 +00:00
|
|
|
cmdVersion,
|
2014-06-18 04:19:03 +00:00
|
|
|
cmdGenerate,
|
2014-08-18 15:12:27 +00:00
|
|
|
//cmdRundocs,
|
2014-08-11 03:33:53 +00:00
|
|
|
cmdMigrate,
|
2016-01-06 03:55:56 +00:00
|
|
|
cmdFix,
|
2012-12-15 16:56:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Usage = usage
|
|
|
|
flag.Parse()
|
|
|
|
log.SetFlags(0)
|
|
|
|
|
|
|
|
args := flag.Args()
|
|
|
|
if len(args) < 1 {
|
|
|
|
usage()
|
|
|
|
}
|
|
|
|
|
|
|
|
if args[0] == "help" {
|
|
|
|
help(args[1:])
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cmd := range commands {
|
|
|
|
if cmd.Name() == args[0] && cmd.Run != nil {
|
|
|
|
cmd.Flag.Usage = func() { cmd.Usage() }
|
|
|
|
if cmd.CustomFlags {
|
|
|
|
args = args[1:]
|
|
|
|
} else {
|
2013-06-27 07:29:27 +00:00
|
|
|
cmd.Flag.Parse(args[1:])
|
|
|
|
args = cmd.Flag.Args()
|
2012-12-15 16:56:28 +00:00
|
|
|
}
|
2014-08-15 09:38:51 +00:00
|
|
|
os.Exit(cmd.Run(cmd, args))
|
2012-12-15 16:56:28 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 02:15:54 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "bee: unknown subcommand %q\nRun 'bee help' for usage.\n", args[0])
|
2012-12-15 16:56:28 +00:00
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
var usageTemplate = `Bee is a tool for managing beego framework.
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
|
|
|
|
bee command [arguments]
|
|
|
|
|
|
|
|
The commands are:
|
|
|
|
{{range .}}{{if .Runnable}}
|
|
|
|
{{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
|
|
|
|
|
|
|
|
Use "bee help [command]" for more information about a command.
|
|
|
|
|
|
|
|
Additional help topics:
|
|
|
|
{{range .}}{{if not .Runnable}}
|
|
|
|
{{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
|
|
|
|
|
|
|
|
Use "bee help [topic]" for more information about that topic.
|
|
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
var helpTemplate = `{{if .Runnable}}usage: bee {{.UsageLine}}
|
|
|
|
|
|
|
|
{{end}}{{.Long | trim}}
|
|
|
|
`
|
|
|
|
|
|
|
|
func usage() {
|
|
|
|
tmpl(os.Stdout, usageTemplate, commands)
|
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func tmpl(w io.Writer, text string, data interface{}) {
|
|
|
|
t := template.New("top")
|
2014-05-19 08:31:02 +00:00
|
|
|
t.Funcs(template.FuncMap{"trim": func(s template.HTML) template.HTML {
|
|
|
|
return template.HTML(strings.TrimSpace(string(s)))
|
|
|
|
}})
|
2012-12-15 16:56:28 +00:00
|
|
|
template.Must(t.Parse(text))
|
|
|
|
if err := t.Execute(w, data); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func help(args []string) {
|
|
|
|
if len(args) == 0 {
|
|
|
|
usage()
|
|
|
|
// not exit 2: succeeded at 'go help'.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(args) != 1 {
|
|
|
|
fmt.Fprintf(os.Stdout, "usage: bee help command\n\nToo many arguments given.\n")
|
|
|
|
os.Exit(2) // failed at 'bee help'
|
|
|
|
}
|
|
|
|
|
|
|
|
arg := args[0]
|
|
|
|
|
|
|
|
for _, cmd := range commands {
|
|
|
|
if cmd.Name() == arg {
|
|
|
|
tmpl(os.Stdout, helpTemplate, cmd)
|
|
|
|
// not exit 2: succeeded at 'go help cmd'.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintf(os.Stdout, "Unknown help topic %#q. Run 'bee help'.\n", arg)
|
|
|
|
os.Exit(2) // failed at 'bee help cmd'
|
|
|
|
}
|