123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- package gogen
- import (
- _ "embed"
- "fmt"
- "path"
- "strconv"
- "strings"
- "github.com/zeromicro/go-zero/tools/goctl/api/parser/g4/gen/api"
- "github.com/zeromicro/go-zero/tools/goctl/api/spec"
- "github.com/zeromicro/go-zero/tools/goctl/config"
- "github.com/zeromicro/go-zero/tools/goctl/util/format"
- "github.com/zeromicro/go-zero/tools/goctl/util/pathx"
- "github.com/zeromicro/go-zero/tools/goctl/vars"
- )
- //go:embed logic.tpl
- var logicTemplate string
- func genLogic(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
- for _, g := range api.Service.Groups {
- for _, r := range g.Routes {
- err := genLogicByRoute(dir, rootPkg, cfg, g, r)
- if err != nil {
- return err
- }
- }
- }
- return nil
- }
- func genLogicByRoute(dir, rootPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
- logic := getLogicName(route)
- goFile, err := format.FileNamingFormat(cfg.NamingFormat, logic)
- if err != nil {
- return err
- }
- imports := genLogicImports(route, rootPkg)
- var responseString string
- var returnString string
- var requestString string
- if len(route.ResponseTypeName()) > 0 {
- resp := responseGoTypeName(route, typesPacket)
- responseString = "(resp " + resp + ", err error)"
- returnString = "return"
- } else {
- responseString = "error"
- returnString = "return nil"
- }
- if len(route.RequestTypeName()) > 0 {
- requestString = "req *" + requestGoTypeName(route, typesPacket)
- }
- subDir := getLogicFolderPath(group, route)
- return genFile(fileGenConfig{
- dir: dir,
- subdir: subDir,
- filename: goFile + ".go",
- templateName: "logicTemplate",
- category: category,
- templateFile: logicTemplateFile,
- builtinTemplate: logicTemplate,
- data: map[string]string{
- "pkgName": subDir[strings.LastIndex(subDir, "/")+1:],
- "imports": imports,
- "logic": strings.Title(logic),
- "function": strings.Title(strings.TrimSuffix(logic, "Logic")),
- "responseType": responseString,
- "returnString": returnString,
- "request": requestString,
- },
- })
- }
- func getLogicFolderPath(group spec.Group, route spec.Route) string {
- folder := route.GetAnnotation(groupProperty)
- if len(folder) == 0 {
- folder = group.GetAnnotation(groupProperty)
- if len(folder) == 0 {
- return logicDir
- }
- }
- folder = strings.TrimPrefix(folder, "/")
- folder = strings.TrimSuffix(folder, "/")
- return path.Join(logicDir, folder)
- }
- func genLogicImports(route spec.Route, parentPkg string) string {
- var imports []string
- imports = append(imports, `"context"`+"\n")
- imports = append(imports, fmt.Sprintf("\"%s\"", pathx.JoinPackages(parentPkg, contextDir)))
- if shallImportTypesPackage(route) {
- imports = append(imports, fmt.Sprintf("\"%s\"\n", pathx.JoinPackages(parentPkg, typesDir)))
- }
- imports = append(imports, fmt.Sprintf("\"%s/core/logx\"", vars.ProjectOpenSourceURL))
- return strings.Join(imports, "\n\t")
- }
- func onlyPrimitiveTypes(val string) bool {
- fields := strings.FieldsFunc(val, func(r rune) bool {
- return r == '[' || r == ']' || r == ' '
- })
- for _, field := range fields {
- if field == "map" {
- continue
- }
- // ignore array dimension number, like [5]int
- if _, err := strconv.Atoi(field); err == nil {
- continue
- }
- if !api.IsBasicType(field) {
- return false
- }
- }
- return true
- }
- func shallImportTypesPackage(route spec.Route) bool {
- if len(route.RequestTypeName()) > 0 {
- return true
- }
- respTypeName := route.ResponseTypeName()
- if len(respTypeName) == 0 {
- return false
- }
- if onlyPrimitiveTypes(respTypeName) {
- return false
- }
- return true
- }
|