Files
cgrates/services/loaders.go
2021-12-21 15:05:44 +01:00

162 lines
4.2 KiB
Go

/*
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
Copyright (C) ITsysCOM GmbH
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package services
import (
"sync"
"github.com/cgrates/birpc/context"
"github.com/cgrates/birpc"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/cores"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/loaders"
"github.com/cgrates/cgrates/utils"
)
// NewLoaderService returns the Loader Service
func NewLoaderService(cfg *config.CGRConfig, dm *DataDBService,
filterSChan chan *engine.FilterS, server *cores.Server,
internalLoaderSChan chan birpc.ClientConnector,
connMgr *engine.ConnManager, anz *AnalyzerService,
srvDep map[string]*sync.WaitGroup) *LoaderService {
return &LoaderService{
connChan: internalLoaderSChan,
cfg: cfg,
dm: dm,
filterSChan: filterSChan,
server: server,
connMgr: connMgr,
stopChan: make(chan struct{}),
anz: anz,
srvDep: srvDep,
}
}
// LoaderService implements Service interface
type LoaderService struct {
sync.RWMutex
cfg *config.CGRConfig
dm *DataDBService
filterSChan chan *engine.FilterS
server *cores.Server
stopChan chan struct{}
ldrs *loaders.LoaderS
connChan chan birpc.ClientConnector
connMgr *engine.ConnManager
anz *AnalyzerService
srvDep map[string]*sync.WaitGroup
}
// Start should handle the service start
func (ldrs *LoaderService) Start(ctx *context.Context, _ context.CancelFunc) (err error) {
if ldrs.IsRunning() {
return utils.ErrServiceAlreadyRunning
}
var filterS *engine.FilterS
if filterS, err = waitForFilterS(ctx, ldrs.filterSChan); err != nil {
return
}
var datadb *engine.DataManager
if datadb, err = ldrs.dm.WaitForDM(ctx); err != nil {
return
}
ldrs.Lock()
defer ldrs.Unlock()
ldrs.ldrs = loaders.NewLoaderService(ldrs.cfg, datadb, filterS, ldrs.connMgr)
if !ldrs.ldrs.Enabled() {
return
}
if err = ldrs.ldrs.ListenAndServe(ldrs.stopChan); err != nil {
return
}
srv, _ := engine.NewService(ldrs.ldrs)
// srv, _ := birpc.NewService(apis.NewLoaderSv1(ldrs.ldrs), "", false)
if !ldrs.cfg.DispatcherSCfg().Enabled {
for _, s := range srv {
ldrs.server.RpcRegister(s)
}
}
ldrs.connChan <- ldrs.anz.GetInternalCodec(srv, utils.LoaderS)
return
}
// Reload handles the change of config
func (ldrs *LoaderService) Reload(ctx *context.Context, _ context.CancelFunc) error {
filterS, err := waitForFilterS(ctx, ldrs.filterSChan)
if err != nil {
return err
}
datadb, err := ldrs.dm.WaitForDM(ctx)
if err != nil {
return err
}
close(ldrs.stopChan)
ldrs.stopChan = make(chan struct{})
ldrs.RLock()
defer ldrs.RUnlock()
ldrs.ldrs.Reload(datadb, filterS, ldrs.connMgr)
return ldrs.ldrs.ListenAndServe(ldrs.stopChan)
}
// Shutdown stops the service
func (ldrs *LoaderService) Shutdown() (_ error) {
ldrs.Lock()
ldrs.ldrs = nil
close(ldrs.stopChan)
<-ldrs.connChan
ldrs.server.RpcUnregisterName(utils.LoaderSv1)
ldrs.Unlock()
return
}
// IsRunning returns if the service is running
func (ldrs *LoaderService) IsRunning() bool {
ldrs.RLock()
defer ldrs.RUnlock()
return ldrs != nil && ldrs.ldrs != nil && ldrs.ldrs.Enabled()
}
// ServiceName returns the service name
func (ldrs *LoaderService) ServiceName() string {
return utils.LoaderS
}
// ShouldRun returns if the service should be running
func (ldrs *LoaderService) ShouldRun() bool {
return ldrs.cfg.LoaderCfg().Enabled()
}
// GetLoaderS returns the initialized LoaderService
func (ldrs *LoaderService) GetLoaderS() *loaders.LoaderS {
return ldrs.ldrs
}
// GetRPCChan returns the conn chan
func (ldrs *LoaderService) GetRPCChan() chan birpc.ClientConnector {
return ldrs.connChan
}