You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
814 B
39 lines
814 B
package di
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"{{.ModPrefix}}{{.Name}}/internal/service"
|
|
|
|
"github.com/bilibili/kratos/pkg/log"
|
|
bm "github.com/bilibili/kratos/pkg/net/http/blademaster"
|
|
"github.com/bilibili/kratos/pkg/net/rpc/warden"
|
|
)
|
|
|
|
//go:generate wire
|
|
type App struct {
|
|
svc *service.Service
|
|
http *bm.Engine
|
|
grpc *warden.Server
|
|
}
|
|
|
|
func NewApp(svc *service.Service, h *bm.Engine, g *warden.Server) (app *App, closeFunc func(), err error){
|
|
app = &App{
|
|
svc: svc,
|
|
http: h,
|
|
grpc: g,
|
|
}
|
|
closeFunc = func() {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 35*time.Second)
|
|
if err := g.Shutdown(ctx); err != nil {
|
|
log.Error("grpcSrv.Shutdown error(%v)", err)
|
|
}
|
|
if err := h.Shutdown(ctx); err != nil {
|
|
log.Error("httpSrv.Shutdown error(%v)", err)
|
|
}
|
|
svc.Close()
|
|
cancel()
|
|
}
|
|
return
|
|
}
|
|
|