12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package generator
- import (
- "fmt"
- "path/filepath"
- 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"
- )
- const svcTemplate = `package svc
- import {{.imports}}
- type ServiceContext struct {
- Config config.Config
- }
- func NewServiceContext(c config.Config) *ServiceContext {
- return &ServiceContext{
- Config:c,
- }
- }
- `
- // GenSvc generates the servicecontext.go file, which is the resource dependency of a service,
- // such as rpc dependency, model dependency, etc.
- func (g *DefaultGenerator) 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 := util.LoadTemplate(category, svcTemplateFile, svcTemplate)
- if err != nil {
- return err
- }
- return util.With("svc").GoFmt(true).Parse(text).SaveTo(map[string]interface{}{
- "imports": fmt.Sprintf(`"%v"`, ctx.GetConfig().Package),
- }, fileName, false)
- }
|