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.
73 lines
2.0 KiB
Go
73 lines
2.0 KiB
Go
package generator
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"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/stringx"
|
|
)
|
|
|
|
const mainTemplate = `{{.head}}
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
|
|
{{.imports}}
|
|
|
|
"github.com/tal-tech/go-zero/core/conf"
|
|
"github.com/tal-tech/go-zero/zrpc"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
var configFile = flag.String("f", "etc/{{.serviceName}}.yaml", "the config file")
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
var c config.Config
|
|
conf.MustLoad(*configFile, &c)
|
|
ctx := svc.NewServiceContext(c)
|
|
srv := server.New{{.serviceNew}}Server(ctx)
|
|
|
|
s := zrpc.MustNewServer(c.RpcServerConf, func(grpcServer *grpc.Server) {
|
|
{{.pkg}}.Register{{.service}}Server(grpcServer, srv)
|
|
})
|
|
defer s.Stop()
|
|
|
|
fmt.Printf("Starting rpc server at %s...\n", c.ListenOn)
|
|
s.Start()
|
|
}
|
|
`
|
|
|
|
func (g *defaultGenerator) GenMain(ctx DirContext, proto parser.Proto, namingStyle NamingStyle) error {
|
|
dir := ctx.GetMain()
|
|
serviceNameLower := formatFilename(ctx.GetMain().Base, namingStyle)
|
|
fileName := filepath.Join(dir.Filename, fmt.Sprintf("%v.go", serviceNameLower))
|
|
imports := make([]string, 0)
|
|
pbImport := fmt.Sprintf(`"%v"`, ctx.GetPb().Package)
|
|
svcImport := fmt.Sprintf(`"%v"`, ctx.GetSvc().Package)
|
|
remoteImport := fmt.Sprintf(`"%v"`, ctx.GetServer().Package)
|
|
configImport := fmt.Sprintf(`"%v"`, ctx.GetConfig().Package)
|
|
imports = append(imports, configImport, pbImport, remoteImport, svcImport)
|
|
head := util.GetHead(proto.Name)
|
|
text, err := util.LoadTemplate(category, mainTemplateFile, mainTemplate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return util.With("main").GoFmt(true).Parse(text).SaveTo(map[string]interface{}{
|
|
"head": head,
|
|
"serviceName": strings.ToLower(stringx.From(ctx.GetMain().Base).ToCamel()),
|
|
"imports": strings.Join(imports, util.NL),
|
|
"pkg": proto.PbPackage,
|
|
"serviceNew": stringx.From(proto.Service.Name).ToCamel(),
|
|
"service": parser.CamelCase(proto.Service.Name),
|
|
}, fileName, false)
|
|
}
|