Files
cgrates/services/suppliers.go
2019-10-28 12:17:15 +01:00

159 lines
4.9 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"
v1 "github.com/cgrates/cgrates/apier/v1"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/servmanager"
"github.com/cgrates/cgrates/utils"
"github.com/cgrates/rpcclient"
)
// NewSupplierService returns the Supplier Service
func NewSupplierService() servmanager.Service {
return &SupplierService{
connChan: make(chan rpcclient.RpcClientConnection, 1),
}
}
// SupplierService implements Service interface
type SupplierService struct {
sync.RWMutex
splS *engine.SupplierService
rpc *v1.SupplierSv1
connChan chan rpcclient.RpcClientConnection
}
// Start should handle the sercive start
func (splS *SupplierService) Start(sp servmanager.ServiceProvider, waitCache bool) (err error) {
if splS.IsRunning() {
return fmt.Errorf("service aleady running")
}
if waitCache {
<-sp.GetCacheS().GetPrecacheChannel(utils.CacheSupplierProfiles)
<-sp.GetCacheS().GetPrecacheChannel(utils.CacheSupplierFilterIndexes)
}
var attrSConn, resourceSConn, statSConn rpcclient.RpcClientConnection
attrSConn, err = sp.GetConnection(utils.AttributeS, sp.GetConfig().SupplierSCfg().AttributeSConns)
if err != nil {
utils.Logger.Crit(fmt.Sprintf("<%s> Could not connect to %s: %s",
utils.SupplierS, utils.SupplierS, err.Error()))
return
}
statSConn, err = sp.GetConnection(utils.StatS, sp.GetConfig().SupplierSCfg().StatSConns)
if err != nil {
utils.Logger.Crit(fmt.Sprintf("<%s> Could not connect to StatS: %s",
utils.SupplierS, err.Error()))
return
}
resourceSConn, err = sp.GetConnection(utils.ResourceS, sp.GetConfig().SupplierSCfg().ResourceSConns)
if err != nil {
utils.Logger.Crit(fmt.Sprintf("<%s> Could not connect to StatS: %s",
utils.SupplierS, err.Error()))
return
}
splS.Lock()
defer splS.Unlock()
splS.splS, err = engine.NewSupplierService(sp.GetDM(), sp.GetFilterS(), sp.GetConfig(),
resourceSConn, statSConn, attrSConn)
if err != nil {
utils.Logger.Crit(fmt.Sprintf("<%s> Could not init, error: %s",
utils.SupplierS, err.Error()))
return
}
utils.Logger.Info(fmt.Sprintf("<%s> starting <%s> subsystem", utils.CoreS, utils.SupplierS))
splS.rpc = v1.NewSupplierSv1(splS.splS)
if !sp.GetConfig().DispatcherSCfg().Enabled {
sp.GetServer().RpcRegister(splS.rpc)
}
splS.connChan <- splS.rpc
return
}
// GetIntenternalChan returns the internal connection chanel
func (splS *SupplierService) GetIntenternalChan() (conn chan rpcclient.RpcClientConnection) {
return splS.connChan
}
// Reload handles the change of config
func (splS *SupplierService) Reload(sp servmanager.ServiceProvider) (err error) {
var attrSConn, resourceSConn, statSConn rpcclient.RpcClientConnection
attrSConn, err = sp.GetConnection(utils.AttributeS, sp.GetConfig().SupplierSCfg().AttributeSConns)
if err != nil {
utils.Logger.Crit(fmt.Sprintf("<%s> Could not connect to %s: %s",
utils.SupplierS, utils.SupplierS, err.Error()))
return
}
statSConn, err = sp.GetConnection(utils.StatS, sp.GetConfig().SupplierSCfg().StatSConns)
if err != nil {
utils.Logger.Crit(fmt.Sprintf("<%s> Could not connect to StatS: %s",
utils.SupplierS, err.Error()))
return
}
resourceSConn, err = sp.GetConnection(utils.ResourceS, sp.GetConfig().SupplierSCfg().ResourceSConns)
if err != nil {
utils.Logger.Crit(fmt.Sprintf("<%s> Could not connect to StatS: %s",
utils.SupplierS, err.Error()))
return
}
splS.Lock()
splS.splS.SetAttributeSConnection(attrSConn)
splS.splS.SetStatSConnection(statSConn)
splS.splS.SetResourceSConnection(resourceSConn)
splS.Unlock()
return
}
// Shutdown stops the service
func (splS *SupplierService) Shutdown() (err error) {
splS.Lock()
defer splS.Unlock()
if err = splS.splS.Shutdown(); err != nil {
return
}
splS.splS = nil
splS.rpc = nil
<-splS.connChan
return
}
// GetRPCInterface returns the interface to register for server
func (splS *SupplierService) GetRPCInterface() interface{} {
return splS.rpc
}
// IsRunning returns if the service is running
func (splS *SupplierService) IsRunning() bool {
splS.RLock()
defer splS.RUnlock()
return splS != nil && splS.splS != nil
}
// ServiceName returns the service name
func (splS *SupplierService) ServiceName() string {
return utils.SupplierS
}