go-zero/tools/goctl/api/javagen/gen.go

40 lines
890 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package javagen
import (
"errors"
"fmt"
"strings"
"github.com/logrusorgru/aurora"
"github.com/zeromicro/go-zero/core/logx"
"github.com/zeromicro/go-zero/tools/goctl/api/parser"
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
2020-07-29 17:11:41 +08:00
"github.com/urfave/cli"
)
// JavaCommand the generate java code command entrance
2020-07-29 17:11:41 +08:00
func JavaCommand(c *cli.Context) error {
apiFile := c.String("api")
dir := c.String("dir")
if len(apiFile) == 0 {
return errors.New("missing -api")
}
if len(dir) == 0 {
return errors.New("missing -dir")
}
api, err := parser.Parse(apiFile)
2020-07-29 17:11:41 +08:00
if err != nil {
return err
}
api.Service = api.Service.JoinPrefix()
2021-09-29 13:09:20 +08:00
packetName := strings.TrimSuffix(api.Service.Name, "-api")
logx.Must(pathx.MkdirIfNotExist(dir))
logx.Must(genPacket(dir, packetName, api))
logx.Must(genComponents(dir, packetName, api))
2020-07-29 17:11:41 +08:00
fmt.Println(aurora.Green("Done."))
return nil
}