mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
e76f44a35b
* reactor rpc generation * update flag * update command * update command * update unit test * delete test file * optimize code * update doc * update gen pb * rename target dir * update mysql data type convert rule * add done flag * optimize req/reply parameter * optimize req/reply parameter * remove waste code * remove duplicate parameter * format code * format code * optimize naming * reactor rpcv2 to rpc * remove new line * format code * rename underline to snake * reactor getParentPackage * remove debug log * reactor background
38 lines
805 B
Go
38 lines
805 B
Go
package generator
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
)
|
|
|
|
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) error {
|
|
dir := ctx.GetSvc()
|
|
fileName := filepath.Join(dir.Filename, formatFilename("service_context")+".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)
|
|
}
|