2020-08-29 00:15:15 +08:00
|
|
|
package gen
|
2020-08-28 19:24:58 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
|
|
|
|
2020-10-15 16:36:49 +08:00
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/templatex"
|
2020-08-28 19:24:58 +08:00
|
|
|
)
|
|
|
|
|
2020-08-28 21:22:35 +08:00
|
|
|
const svcTemplate = `package svc
|
2020-08-28 19:24:58 +08:00
|
|
|
|
|
|
|
import {{.imports}}
|
|
|
|
|
2020-08-28 21:22:35 +08:00
|
|
|
type ServiceContext struct {
|
|
|
|
c config.Config
|
|
|
|
}
|
2020-08-28 19:24:58 +08:00
|
|
|
|
|
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
|
|
|
return &ServiceContext{
|
|
|
|
c:c,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
func (g *defaultRpcGenerator) genSvc() error {
|
|
|
|
svcPath := g.dirM[dirSvc]
|
|
|
|
fileName := filepath.Join(svcPath, fileServiceContext)
|
2020-10-15 16:36:49 +08:00
|
|
|
return templatex.With("svc").GoFmt(true).Parse(svcTemplate).SaveTo(map[string]interface{}{
|
2020-08-28 19:24:58 +08:00
|
|
|
"imports": fmt.Sprintf(`"%v"`, g.mustGetPackage(dirConfig)),
|
|
|
|
}, fileName, false)
|
|
|
|
}
|