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.
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
package generator
|
|
|
|
import (
|
|
_ "embed"
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
conf "github.com/zeromicro/go-zero/tools/goctl/config"
|
|
"github.com/zeromicro/go-zero/tools/goctl/rpc/parser"
|
|
"github.com/zeromicro/go-zero/tools/goctl/util"
|
|
"github.com/zeromicro/go-zero/tools/goctl/util/format"
|
|
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
|
|
)
|
|
|
|
//go:embed svc.tpl
|
|
var svcTemplate string
|
|
|
|
// GenSvc generates the servicecontext.go file, which is the resource dependency of a service,
|
|
// such as rpc dependency, model dependency, etc.
|
|
func (g *Generator) GenSvc(ctx DirContext, _ parser.Proto, cfg *conf.Config) error {
|
|
dir := ctx.GetSvc()
|
|
svcFilename, err := format.FileNamingFormat(cfg.NamingFormat, "service_context")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fileName := filepath.Join(dir.Filename, svcFilename+".go")
|
|
text, err := pathx.LoadTemplate(category, svcTemplateFile, svcTemplate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return util.With("svc").GoFmt(true).Parse(text).SaveTo(map[string]any{
|
|
"imports": fmt.Sprintf(`"%v"`, ctx.GetConfig().Package),
|
|
}, fileName, false)
|
|
}
|