Files
cgrates/services/sipagent.go
ionutboangiu 652d1e68cf Remove cls fields from service structs
now retrieved through registry.Lookup
2025-01-24 12:02:24 +01:00

117 lines
3.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 (
"fmt"
"sync"
"github.com/cgrates/cgrates/agents"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/servmanager"
"github.com/cgrates/cgrates/utils"
)
// NewSIPAgent returns the sip Agent
func NewSIPAgent(cfg *config.CGRConfig) *SIPAgent {
return &SIPAgent{
cfg: cfg,
stateDeps: NewStateDependencies([]string{utils.StateServiceUP, utils.StateServiceDOWN}),
}
}
// SIPAgent implements Agent interface
type SIPAgent struct {
mu sync.RWMutex
cfg *config.CGRConfig
sip *agents.SIPAgent
oldListen string
stateDeps *StateDependencies // channel subscriptions for state changes
}
// Start should handle the sercive start
func (sip *SIPAgent) Start(shutdown *utils.SyncedChan, registry *servmanager.ServiceRegistry) (err error) {
srvDeps, err := WaitForServicesToReachState(utils.StateServiceUP,
[]string{
utils.ConnManager,
utils.FilterS,
},
registry, sip.cfg.GeneralCfg().ConnectTimeout)
if err != nil {
return
}
cm := srvDeps[utils.ConnManager].(*ConnManagerService).ConnManager()
fs := srvDeps[utils.FilterS].(*FilterService).FilterS()
sip.mu.Lock()
defer sip.mu.Unlock()
sip.oldListen = sip.cfg.SIPAgentCfg().Listen
sip.sip, err = agents.NewSIPAgent(cm, sip.cfg, fs)
if err != nil {
return
}
go sip.listenAndServe(shutdown)
return
}
func (sip *SIPAgent) listenAndServe(shutdown *utils.SyncedChan) {
if err := sip.sip.ListenAndServe(); err != nil {
utils.Logger.Err(fmt.Sprintf("<%s> error: <%s>", utils.SIPAgent, err.Error()))
shutdown.CloseOnce() // stop the engine here
}
}
// Reload handles the change of config
func (sip *SIPAgent) Reload(shutdown *utils.SyncedChan, _ *servmanager.ServiceRegistry) (err error) {
if sip.oldListen == sip.cfg.SIPAgentCfg().Listen {
return
}
sip.mu.Lock()
sip.sip.Shutdown()
sip.oldListen = sip.cfg.SIPAgentCfg().Listen
sip.sip.InitStopChan()
sip.mu.Unlock()
go sip.listenAndServe(shutdown)
return
}
// Shutdown stops the service
func (sip *SIPAgent) Shutdown(_ *servmanager.ServiceRegistry) (err error) {
sip.mu.Lock()
defer sip.mu.Unlock()
sip.sip.Shutdown()
sip.sip = nil
return
}
// ServiceName returns the service name
func (sip *SIPAgent) ServiceName() string {
return utils.SIPAgent
}
// ShouldRun returns if the service should be running
func (sip *SIPAgent) ShouldRun() bool {
return sip.cfg.SIPAgentCfg().Enabled
}
// StateChan returns signaling channel of specific state
func (sip *SIPAgent) StateChan(stateID string) chan struct{} {
return sip.stateDeps.StateChan(stateID)
}