Files
cgrates/services/accounts.go
2025-10-19 13:15:57 +02:00

121 lines
3.7 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 Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
*/
package services
import (
"sync"
"github.com/cgrates/cgrates/accounts"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/servmanager"
"github.com/cgrates/cgrates/utils"
)
// NewAccountService returns the Account Service
func NewAccountService(cfg *config.CGRConfig) *AccountService {
return &AccountService{
cfg: cfg,
rldChan: make(chan struct{}, 1),
stateDeps: NewStateDependencies([]string{utils.StateServiceUP, utils.StateServiceDOWN}),
}
}
// AccountService implements Service interface
type AccountService struct {
mu sync.RWMutex
cfg *config.CGRConfig
acts *accounts.AccountS
rldChan chan struct{}
stopChan chan struct{}
stateDeps *StateDependencies // channel subscriptions for state changes
}
// Start should handle the service start
func (acts *AccountService) Start(shutdown *utils.SyncedChan, registry *servmanager.ServiceRegistry) (err error) {
srvDeps, err := WaitForServicesToReachState(utils.StateServiceUP,
[]string{
utils.CommonListenerS,
utils.ConnManager,
utils.CacheS,
utils.FilterS,
utils.DB,
},
registry, acts.cfg.GeneralCfg().ConnectTimeout)
if err != nil {
return err
}
cl := srvDeps[utils.CommonListenerS].(*CommonListenerService).CLS()
cms := srvDeps[utils.ConnManager].(*ConnManagerService)
cacheS := srvDeps[utils.CacheS].(*CacheService)
if err = cacheS.WaitToPrecache(shutdown,
utils.CacheAccounts,
utils.CacheAccountsFilterIndexes); err != nil {
return err
}
fs := srvDeps[utils.FilterS].(*FilterService).FilterS()
dbs := srvDeps[utils.DB].(*DataDBService).DataManager()
acts.mu.Lock()
defer acts.mu.Unlock()
acts.acts = accounts.NewAccountS(acts.cfg, fs, cms.ConnManager(), dbs)
acts.stopChan = make(chan struct{})
go acts.acts.ListenAndServe(acts.stopChan, acts.rldChan)
srv, err := engine.NewServiceWithPing(acts.acts, utils.AccountSv1, utils.V1Prfx)
if err != nil {
return err
}
cl.RpcRegister(srv)
cms.AddInternalConn(utils.AccountS, srv)
return
}
// Reload handles the change of config
func (acts *AccountService) Reload(_ *utils.SyncedChan, _ *servmanager.ServiceRegistry) (err error) {
acts.rldChan <- struct{}{}
return // for the moment nothing to reload
}
// Shutdown stops the service
func (acts *AccountService) Shutdown(registry *servmanager.ServiceRegistry) (err error) {
acts.mu.Lock()
defer acts.mu.Unlock()
close(acts.stopChan)
acts.acts = nil
cl := registry.Lookup(utils.CommonListenerS).(*CommonListenerService).CLS()
cl.RpcUnregisterName(utils.AccountSv1)
return
}
// ServiceName returns the service name
func (acts *AccountService) ServiceName() string {
return utils.AccountS
}
// ShouldRun returns if the service should be running
func (acts *AccountService) ShouldRun() bool {
return acts.cfg.AccountSCfg().Enabled
}
// StateChan returns signaling channel of specific state
func (acts *AccountService) StateChan(stateID string) chan struct{} {
return acts.stateDeps.StateChan(stateID)
}