|
|
|
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 {
|
|
|
|
c config.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
|
|
|
return &ServiceContext{
|
|
|
|
c:c,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|