mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
124 lines
3.6 KiB
Go
124 lines
3.6 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 Affero 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
package services
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/cgrates/cgrates/config"
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/rates"
|
|
"github.com/cgrates/cgrates/servmanager"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
// NewRateService constructs RateService
|
|
func NewRateService(cfg *config.CGRConfig) *RateService {
|
|
return &RateService{
|
|
cfg: cfg,
|
|
rldChan: make(chan struct{}),
|
|
stateDeps: NewStateDependencies([]string{utils.StateServiceUP, utils.StateServiceDOWN}),
|
|
}
|
|
}
|
|
|
|
// RateService is the service structure for RateS
|
|
type RateService struct {
|
|
mu sync.RWMutex
|
|
cfg *config.CGRConfig
|
|
rateS *rates.RateS
|
|
rldChan chan struct{}
|
|
stopChan chan struct{}
|
|
stateDeps *StateDependencies // channel subscriptions for state changes
|
|
}
|
|
|
|
// Start should handle the service start
|
|
func (rs *RateService) Start(shutdown *utils.SyncedChan, registry *servmanager.ServiceRegistry) (err error) {
|
|
srvDeps, err := WaitForServicesToReachState(utils.StateServiceUP,
|
|
[]string{
|
|
utils.CommonListenerS,
|
|
utils.ConnManager,
|
|
utils.CacheS,
|
|
utils.FilterS,
|
|
utils.DB,
|
|
},
|
|
registry, rs.cfg.GeneralCfg().ConnectTimeout)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cl := srvDeps[utils.CommonListenerS].(*CommonListenerService).CLS()
|
|
cms := srvDeps[utils.ConnManager].(*ConnManagerService)
|
|
cacheS := srvDeps[utils.CacheS].(*CacheService)
|
|
if err = cacheS.WaitToPrecache(shutdown,
|
|
utils.CacheRateProfiles,
|
|
utils.CacheRateProfilesFilterIndexes,
|
|
utils.CacheRateFilterIndexes); err != nil {
|
|
return err
|
|
}
|
|
fs := srvDeps[utils.FilterS].(*FilterService).FilterS()
|
|
dbs := srvDeps[utils.DB].(*DataDBService).DataManager()
|
|
|
|
rs.mu.Lock()
|
|
rs.rateS = rates.NewRateS(rs.cfg, fs, dbs)
|
|
rs.mu.Unlock()
|
|
|
|
rs.stopChan = make(chan struct{})
|
|
go rs.rateS.ListenAndServe(rs.stopChan, rs.rldChan)
|
|
|
|
srv, err := engine.NewServiceWithPing(rs.rateS, utils.RateSv1, utils.V1Prfx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// srv, _ := birpc.NewService(apis.NewRateSv1(rs.rateS), "", false)
|
|
cl.RpcRegister(srv)
|
|
cms.AddInternalConn(utils.RateS, srv)
|
|
return
|
|
}
|
|
|
|
// Reload handles the change of config
|
|
func (rs *RateService) Reload(_ *utils.SyncedChan, _ *servmanager.ServiceRegistry) (_ error) {
|
|
rs.rldChan <- struct{}{}
|
|
return
|
|
}
|
|
|
|
// Shutdown stops the service
|
|
func (rs *RateService) Shutdown(registry *servmanager.ServiceRegistry) (err error) {
|
|
rs.mu.Lock()
|
|
defer rs.mu.Unlock()
|
|
close(rs.stopChan)
|
|
rs.rateS = nil
|
|
cl := registry.Lookup(utils.CommonListenerS).(*CommonListenerService).CLS()
|
|
cl.RpcUnregisterName(utils.RateSv1)
|
|
return
|
|
}
|
|
|
|
// StateChan returns signaling channel of specific state
|
|
func (rs *RateService) StateChan(stateID string) chan struct{} {
|
|
return rs.stateDeps.StateChan(stateID)
|
|
}
|
|
|
|
// ServiceName returns the service name
|
|
func (rs *RateService) ServiceName() string {
|
|
return utils.RateS
|
|
}
|
|
|
|
// ShouldRun returns if the service should be running
|
|
func (rs *RateService) ShouldRun() (should bool) {
|
|
return rs.cfg.RateSCfg().Enabled
|
|
}
|