/* 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 ( "fmt" "sync" "github.com/cgrates/birpc" "github.com/cgrates/birpc/context" "github.com/cgrates/cgrates/engine" "github.com/cgrates/cgrates/agents" "github.com/cgrates/cgrates/config" "github.com/cgrates/cgrates/servmanager" "github.com/cgrates/cgrates/utils" ) // NewFreeswitchAgent returns the Freeswitch Agent func NewFreeswitchAgent(cfg *config.CGRConfig, connMgr *engine.ConnManager, srvDep map[string]*sync.WaitGroup, srvIndexer *servmanager.ServiceIndexer) servmanager.Service { return &FreeswitchAgent{ cfg: cfg, connMgr: connMgr, srvDep: srvDep, srvIndexer: srvIndexer, stateDeps: NewStateDependencies([]string{utils.StateServiceUP}), } } // FreeswitchAgent implements Agent interface type FreeswitchAgent struct { sync.RWMutex cfg *config.CGRConfig fS *agents.FSsessions connMgr *engine.ConnManager srvDep map[string]*sync.WaitGroup intRPCconn birpc.ClientConnector // expose API methods over internal connection srvIndexer *servmanager.ServiceIndexer // access directly services from here stateDeps *StateDependencies // channel subscriptions for state changes } // Start should handle the sercive start func (fS *FreeswitchAgent) Start(_ *context.Context, shtDwn context.CancelFunc) (err error) { if fS.IsRunning() { return utils.ErrServiceAlreadyRunning } fS.Lock() defer fS.Unlock() fS.fS = agents.NewFSsessions(fS.cfg.FsAgentCfg(), fS.cfg.GeneralCfg().DefaultTimezone, fS.connMgr) go fS.connect(shtDwn) close(fS.stateDeps.StateChan(utils.StateServiceUP)) return } // Reload handles the change of config func (fS *FreeswitchAgent) Reload(_ *context.Context, shtDwn context.CancelFunc) (err error) { fS.Lock() defer fS.Unlock() if err = fS.fS.Shutdown(); err != nil { return } fS.fS.Reload() go fS.connect(shtDwn) return } func (fS *FreeswitchAgent) connect(shtDwn context.CancelFunc) { if err := fS.fS.Connect(); err != nil { utils.Logger.Err(fmt.Sprintf("<%s> error: %s!", utils.FreeSWITCHAgent, err)) shtDwn() // stop the engine here } return } // Shutdown stops the service func (fS *FreeswitchAgent) Shutdown() (err error) { fS.Lock() defer fS.Unlock() err = fS.fS.Shutdown() fS.fS = nil return } // IsRunning returns if the service is running func (fS *FreeswitchAgent) IsRunning() bool { fS.RLock() defer fS.RUnlock() return fS.fS != nil } // ServiceName returns the service name func (fS *FreeswitchAgent) ServiceName() string { return utils.FreeSWITCHAgent } // ShouldRun returns if the service should be running func (fS *FreeswitchAgent) ShouldRun() bool { return fS.cfg.FsAgentCfg().Enabled } // StateChan returns signaling channel of specific state func (fS *FreeswitchAgent) StateChan(stateID string) chan struct{} { return fS.stateDeps.StateChan(stateID) } // IntRPCConn returns the internal connection used by RPCClient func (fS *FreeswitchAgent) IntRPCConn() birpc.ClientConnector { return fS.intRPCconn }