mirror of https://github.com/rocboss/paopao-ce
parent
3bf5dd53d5
commit
6570286a4e
@ -0,0 +1,83 @@
|
||||
// Copyright 2022 ROC. All rights reserved.
|
||||
// Use of this source code is governed by a MIT style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"sync"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
var (
|
||||
httpServers = make(map[string]*httpServer)
|
||||
)
|
||||
|
||||
const (
|
||||
httpServerInitilized uint8 = iota + 1
|
||||
httpServerStarted
|
||||
httpServerStoped
|
||||
)
|
||||
|
||||
// httpServer wraper for gin.engine and http.Server
|
||||
type httpServer struct {
|
||||
sync.RWMutex
|
||||
|
||||
e *gin.Engine
|
||||
server *http.Server
|
||||
serverStatus uint8
|
||||
}
|
||||
|
||||
func (s *httpServer) status() uint8 {
|
||||
s.RLock()
|
||||
defer s.RUnlock()
|
||||
|
||||
return s.serverStatus
|
||||
}
|
||||
|
||||
func (s *httpServer) start() error {
|
||||
s.Lock()
|
||||
if s.serverStatus == httpServerStarted || s.serverStatus == httpServerStoped {
|
||||
return nil
|
||||
}
|
||||
oldStatus := s.serverStatus
|
||||
s.serverStatus = httpServerStarted
|
||||
s.Unlock()
|
||||
|
||||
if err := s.server.ListenAndServe(); err != nil {
|
||||
s.Lock()
|
||||
s.serverStatus = oldStatus
|
||||
s.Unlock()
|
||||
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *httpServer) stop() error {
|
||||
s.Lock()
|
||||
defer s.Unlock()
|
||||
|
||||
if s.serverStatus == httpServerStoped || s.serverStatus == httpServerInitilized {
|
||||
return nil
|
||||
}
|
||||
if err := s.server.Shutdown(context.Background()); err != nil {
|
||||
return err
|
||||
}
|
||||
s.serverStatus = httpServerStoped
|
||||
return nil
|
||||
}
|
||||
|
||||
func httpServerFrom(addr string, newServer func() *httpServer) *httpServer {
|
||||
s, exist := httpServers[addr]
|
||||
if exist {
|
||||
return s
|
||||
}
|
||||
s = newServer()
|
||||
s.serverStatus = httpServerInitilized
|
||||
httpServers[addr] = s
|
||||
return s
|
||||
}
|
@ -0,0 +1,49 @@
|
||||
// Copyright 2022 ROC. All rights reserved.
|
||||
// Use of this source code is governed by a MIT style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package service
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
type httpService interface {
|
||||
Service
|
||||
|
||||
registerRoute(e *gin.Engine)
|
||||
}
|
||||
|
||||
type baseHttpService struct {
|
||||
baseService
|
||||
|
||||
server *httpServer
|
||||
}
|
||||
|
||||
func (s *baseHttpService) Init() error {
|
||||
if s.server.status() != httpServerStarted {
|
||||
s.registerRoute(s.server.e)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *baseHttpService) Start() error {
|
||||
if err := s.server.start(); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *baseHttpService) Stop() error {
|
||||
return s.server.stop()
|
||||
}
|
||||
|
||||
func (s *baseHttpService) registerRoute(e *gin.Engine) {
|
||||
// default empty
|
||||
}
|
||||
|
||||
func newBaseHttpService(s *httpServer) httpService {
|
||||
return &baseHttpService{
|
||||
server: s,
|
||||
}
|
||||
}
|
Loading…
Reference in new issue