/* 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/context" "github.com/cgrates/cgrates/agents" "github.com/cgrates/cgrates/config" "github.com/cgrates/cgrates/engine" "github.com/cgrates/cgrates/servmanager" "github.com/cgrates/cgrates/utils" ) // NewDiameterAgent returns the Diameter Agent func NewDiameterAgent(cfg *config.CGRConfig, filterSChan chan *engine.FilterS, connMgr *engine.ConnManager, srvDep map[string]*sync.WaitGroup) servmanager.Service { return &DiameterAgent{ cfg: cfg, filterSChan: filterSChan, connMgr: connMgr, srvDep: srvDep, } } // DiameterAgent implements Agent interface type DiameterAgent struct { sync.RWMutex cfg *config.CGRConfig filterSChan chan *engine.FilterS stopChan chan struct{} da *agents.DiameterAgent connMgr *engine.ConnManager lnet string laddr string srvDep map[string]*sync.WaitGroup } // Start should handle the sercive start func (da *DiameterAgent) Start(ctx *context.Context, shtDwn context.CancelFunc) (err error) { if da.IsRunning() { return utils.ErrServiceAlreadyRunning } var filterS *engine.FilterS if filterS, err = waitForFilterS(ctx, da.filterSChan); err != nil { return } da.Lock() defer da.Unlock() return da.start(filterS, shtDwn) } func (da *DiameterAgent) start(filterS *engine.FilterS, shtDwn context.CancelFunc) (err error) { da.da, err = agents.NewDiameterAgent(da.cfg, filterS, da.connMgr) if err != nil { utils.Logger.Err(fmt.Sprintf("<%s> error: %s!", utils.DiameterAgent, err)) return } da.lnet = da.cfg.DiameterAgentCfg().ListenNet da.laddr = da.cfg.DiameterAgentCfg().Listen da.stopChan = make(chan struct{}) go func(d *agents.DiameterAgent) { if err = d.ListenAndServe(da.stopChan); err != nil { utils.Logger.Err(fmt.Sprintf("<%s> error: %s!", utils.DiameterAgent, err)) shtDwn() } }(da.da) return } // Reload handles the change of config func (da *DiameterAgent) Reload(ctx *context.Context, shtDwn context.CancelFunc) (err error) { da.Lock() defer da.Unlock() if da.lnet == da.cfg.DiameterAgentCfg().ListenNet && da.laddr == da.cfg.DiameterAgentCfg().Listen { return } close(da.stopChan) var filterS *engine.FilterS if filterS, err = waitForFilterS(ctx, da.filterSChan); err != nil { return } return da.start(filterS, shtDwn) } // Shutdown stops the service func (da *DiameterAgent) Shutdown() (err error) { da.Lock() close(da.stopChan) da.da = nil da.Unlock() return // no shutdown for the momment } // IsRunning returns if the service is running func (da *DiameterAgent) IsRunning() bool { da.RLock() defer da.RUnlock() return da != nil && da.da != nil } // ServiceName returns the service name func (da *DiameterAgent) ServiceName() string { return utils.DiameterAgent } // ShouldRun returns if the service should be running func (da *DiameterAgent) ShouldRun() bool { return da.cfg.DiameterAgentCfg().Enabled }