/* 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/cgrates/engine" "github.com/cgrates/cgrates/agents" "github.com/cgrates/cgrates/config" "github.com/cgrates/cgrates/servmanager" "github.com/cgrates/cgrates/utils" ) // NewAsteriskAgent returns the Asterisk Agent func NewAsteriskAgent(cfg *config.CGRConfig, shdChan *utils.SyncedChan, connMgr *engine.ConnManager, srvDep map[string]*sync.WaitGroup) servmanager.Service { return &AsteriskAgent{ cfg: cfg, shdChan: shdChan, connMgr: connMgr, srvDep: srvDep, } } // AsteriskAgent implements Agent interface type AsteriskAgent struct { sync.RWMutex cfg *config.CGRConfig shdChan *utils.SyncedChan stopChan chan struct{} smas []*agents.AsteriskAgent connMgr *engine.ConnManager srvDep map[string]*sync.WaitGroup } // Start should handle the sercive start func (ast *AsteriskAgent) Start() (err error) { if ast.IsRunning() { return utils.ErrServiceAlreadyRunning } ast.Lock() defer ast.Unlock() listenAndServe := func(sma *agents.AsteriskAgent, stopChan chan struct{}, shdChan *utils.SyncedChan) { if lnsErr := sma.ListenAndServe(stopChan); lnsErr != nil { utils.Logger.Err(fmt.Sprintf("<%s> runtime error: %s!", utils.AsteriskAgent, lnsErr)) shdChan.CloseOnce() } } ast.stopChan = make(chan struct{}) ast.smas = make([]*agents.AsteriskAgent, len(ast.cfg.AsteriskAgentCfg().AsteriskConns)) for connIdx := range ast.cfg.AsteriskAgentCfg().AsteriskConns { // Instantiate connections towards asterisk servers ast.smas[connIdx], err = agents.NewAsteriskAgent(ast.cfg, connIdx, ast.connMgr) if err != nil { utils.Logger.Err(fmt.Sprintf("<%s> failed to initialize agent for connection %d, error: %s!", utils.AsteriskAgent, connIdx, err)) return err } go listenAndServe(ast.smas[connIdx], ast.stopChan, ast.shdChan) } return nil } // Reload handles the change of config func (ast *AsteriskAgent) Reload() (err error) { ast.shutdown() return ast.Start() } // Shutdown stops the service func (ast *AsteriskAgent) Shutdown() (err error) { ast.shutdown() return } func (ast *AsteriskAgent) shutdown() { ast.Lock() close(ast.stopChan) ast.smas = nil ast.Unlock() // no shutdown for the momment } // IsRunning returns if the service is running func (ast *AsteriskAgent) IsRunning() bool { ast.RLock() defer ast.RUnlock() return ast.smas != nil } // ServiceName returns the service name func (ast *AsteriskAgent) ServiceName() string { return utils.AsteriskAgent } // ShouldRun returns if the service should be running func (ast *AsteriskAgent) ShouldRun() bool { return ast.cfg.AsteriskAgentCfg().Enabled }