You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.6 KiB
Go
116 lines
3.6 KiB
Go
package generator
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/tal-tech/go-zero/core/collection"
|
|
conf "github.com/tal-tech/go-zero/tools/goctl/config"
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util/format"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util/stringx"
|
|
)
|
|
|
|
const (
|
|
serverTemplate = `{{.head}}
|
|
|
|
package server
|
|
|
|
import (
|
|
{{if .notStream}}"context"{{end}}
|
|
|
|
{{.imports}}
|
|
)
|
|
|
|
type {{.server}}Server struct {
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func New{{.server}}Server(svcCtx *svc.ServiceContext) *{{.server}}Server {
|
|
return &{{.server}}Server{
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
{{.funcs}}
|
|
`
|
|
functionTemplate = `
|
|
{{if .hasComment}}{{.comment}}{{end}}
|
|
func (s *{{.server}}Server) {{.method}} ({{if .notStream}}ctx context.Context,{{if .hasReq}} in {{.request}}{{end}}{{else}}{{if .hasReq}} in {{.request}},{{end}}stream {{.streamBody}}{{end}}) ({{if .notStream}}{{.response}},{{end}}error) {
|
|
l := logic.New{{.logicName}}({{if .notStream}}ctx,{{else}}stream.Context(),{{end}}s.svcCtx)
|
|
return l.{{.method}}({{if .hasReq}}in{{if .stream}} ,stream{{end}}{{else}}{{if .stream}}stream{{end}}{{end}})
|
|
}
|
|
`
|
|
)
|
|
|
|
// GenServer generates rpc server file, which is an implementation of rpc server
|
|
func (g *DefaultGenerator) GenServer(ctx DirContext, proto parser.Proto, cfg *conf.Config) error {
|
|
dir := ctx.GetServer()
|
|
logicImport := fmt.Sprintf(`"%v"`, ctx.GetLogic().Package)
|
|
svcImport := fmt.Sprintf(`"%v"`, ctx.GetSvc().Package)
|
|
pbImport := fmt.Sprintf(`"%v"`, ctx.GetPb().Package)
|
|
|
|
imports := collection.NewSet()
|
|
imports.AddStr(logicImport, svcImport, pbImport)
|
|
|
|
head := util.GetHead(proto.Name)
|
|
service := proto.Service
|
|
serverFilename, err := format.FileNamingFormat(cfg.NamingFormat, service.Name+"_server")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
serverFile := filepath.Join(dir.Filename, serverFilename+".go")
|
|
funcList, err := g.genFunctions(proto.PbPackage, service)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
text, err := util.LoadTemplate(category, serverTemplateFile, serverTemplate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = util.With("server").GoFmt(true).Parse(text).SaveTo(map[string]interface{}{
|
|
"head": head,
|
|
"server": stringx.From(service.Name).ToCamel(),
|
|
"imports": strings.Join(imports.KeysStr(), util.NL),
|
|
"funcs": strings.Join(funcList, util.NL),
|
|
}, serverFile, true)
|
|
return err
|
|
}
|
|
|
|
func (g *DefaultGenerator) genFunctions(goPackage string, service parser.Service) ([]string, error) {
|
|
var functionList []string
|
|
for _, rpc := range service.RPC {
|
|
text, err := util.LoadTemplate(category, serverFuncTemplateFile, functionTemplate)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
comment := parser.GetComment(rpc.Doc())
|
|
streamServer := fmt.Sprintf("%s.%s_%s%s", goPackage, parser.CamelCase(service.Name), parser.CamelCase(rpc.Name), "Server")
|
|
buffer, err := util.With("func").Parse(text).Execute(map[string]interface{}{
|
|
"server": stringx.From(service.Name).ToCamel(),
|
|
"logicName": fmt.Sprintf("%sLogic", stringx.From(rpc.Name).ToCamel()),
|
|
"method": parser.CamelCase(rpc.Name),
|
|
"request": fmt.Sprintf("*%s.%s", goPackage, parser.CamelCase(rpc.RequestType)),
|
|
"response": fmt.Sprintf("*%s.%s", goPackage, parser.CamelCase(rpc.ReturnsType)),
|
|
"hasComment": len(comment) > 0,
|
|
"comment": comment,
|
|
"hasReq": !rpc.StreamsRequest,
|
|
"stream": rpc.StreamsRequest || rpc.StreamsReturns,
|
|
"notStream": !rpc.StreamsRequest && !rpc.StreamsReturns,
|
|
"streamBody": streamServer,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
functionList = append(functionList, buffer.String())
|
|
}
|
|
return functionList, nil
|
|
}
|