/* 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 */ package services import ( "sync" "github.com/cgrates/birpc/context" "github.com/cgrates/cgrates/config" "github.com/cgrates/cgrates/engine" "github.com/cgrates/cgrates/servmanager" "github.com/cgrates/cgrates/trends" "github.com/cgrates/cgrates/utils" ) // NewTrendsService returns the TrendS Service func NewTrendService(cfg *config.CGRConfig) *TrendService { return &TrendService{ cfg: cfg, stateDeps: NewStateDependencies([]string{utils.StateServiceUP, utils.StateServiceDOWN}), } } type TrendService struct { mu sync.RWMutex cfg *config.CGRConfig trs *trends.TrendS stateDeps *StateDependencies // channel subscriptions for state changes } // Start should handle the sercive start func (trs *TrendService) Start(shutdown *utils.SyncedChan, registry *servmanager.ServiceRegistry) (err error) { srvDeps, err := WaitForServicesToReachState(utils.StateServiceUP, []string{ utils.CommonListenerS, utils.ConnManager, utils.CacheS, utils.FilterS, utils.DataDB, }, registry, trs.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.CacheTrendProfiles, utils.CacheTrends); err != nil { return err } fs := srvDeps[utils.FilterS].(*FilterService) dbs := srvDeps[utils.DataDB].(*DataDBService) trs.mu.Lock() defer trs.mu.Unlock() trs.trs = trends.NewTrendService(dbs.DataManager(), trs.cfg, fs.FilterS(), cms.ConnManager()) if err := trs.trs.StartTrendS(context.TODO()); err != nil { return err } srv, err := engine.NewService(trs.trs) if err != nil { return err } for _, s := range srv { cl.RpcRegister(s) } cms.AddInternalConn(utils.TrendS, srv) return nil } // Reload handles the change of config func (trs *TrendService) Reload(_ *utils.SyncedChan, _ *servmanager.ServiceRegistry) (err error) { trs.mu.Lock() trs.trs.Reload(context.TODO()) trs.mu.Unlock() return } // Shutdown stops the service func (trs *TrendService) Shutdown(registry *servmanager.ServiceRegistry) (err error) { trs.mu.Lock() defer trs.mu.Unlock() trs.trs.StopTrendS() trs.trs = nil cl := registry.Lookup(utils.CommonListenerS).(*CommonListenerService).CLS() cl.RpcUnregisterName(utils.TrendSv1) return } // ServiceName returns the service name func (trs *TrendService) ServiceName() string { return utils.TrendS } // ShouldRun returns if the service should be running func (trs *TrendService) ShouldRun() bool { return trs.cfg.TrendSCfg().Enabled } // StateChan returns signaling channel of specific state func (trs *TrendService) StateChan(stateID string) chan struct{} { return trs.stateDeps.StateChan(stateID) }