Files
cgrates/services/actions.go
2025-10-19 13:15:57 +02:00

123 lines
3.8 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/actions"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/servmanager"
"github.com/cgrates/cgrates/utils"
)
// NewActionService returns the Action Service
func NewActionService(cfg *config.CGRConfig) *ActionService {
return &ActionService{
cfg: cfg,
rldChan: make(chan struct{}, 1),
stateDeps: NewStateDependencies([]string{utils.StateServiceUP, utils.StateServiceDOWN}),
}
}
// ActionService implements Service interface
type ActionService struct {
mu sync.RWMutex
cfg *config.CGRConfig
acts *actions.ActionS
rldChan chan struct{}
stopChan chan struct{}
stateDeps *StateDependencies // channel subscriptions for state changes
}
// Start should handle the service start
func (acts *ActionService) 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, acts.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.CacheActionProfiles,
utils.CacheActionProfilesFilterIndexes); err != nil {
return err
}
fs := srvDeps[utils.FilterS].(*FilterService).FilterS()
dbs := srvDeps[utils.DB].(*DataDBService).DataManager()
acts.mu.Lock()
defer acts.mu.Unlock()
acts.acts = actions.NewActionS(acts.cfg, fs, dbs, cms.ConnManager())
acts.stopChan = make(chan struct{})
go acts.acts.ListenAndServe(acts.stopChan, acts.rldChan)
srv, err := engine.NewServiceWithPing(acts.acts, utils.ActionSv1, utils.V1Prfx)
if err != nil {
return
}
// srv, _ := birpc.NewService(apis.NewActionSv1(acts.acts), "", false)
cl.RpcRegister(srv)
cms.AddInternalConn(utils.ActionS, srv)
return
}
// Reload handles the change of config
func (acts *ActionService) Reload(_ *utils.SyncedChan, _ *servmanager.ServiceRegistry) (err error) {
acts.rldChan <- struct{}{}
return // for the moment nothing to reload
}
// Shutdown stops the service
func (acts *ActionService) Shutdown(registry *servmanager.ServiceRegistry) (err error) {
acts.mu.Lock()
defer acts.mu.Unlock()
close(acts.stopChan)
acts.acts.Shutdown()
acts.acts = nil
cl := registry.Lookup(utils.CommonListenerS).(*CommonListenerService).CLS()
cl.RpcUnregisterName(utils.ActionSv1)
return
}
// ServiceName returns the service name
func (acts *ActionService) ServiceName() string {
return utils.ActionS
}
// ShouldRun returns if the service should be running
func (acts *ActionService) ShouldRun() bool {
return acts.cfg.ActionSCfg().Enabled
}
// StateChan returns signaling channel of specific state
func (acts *ActionService) StateChan(stateID string) chan struct{} {
return acts.stateDeps.StateChan(stateID)
}