/* 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 ( "sync" "github.com/cgrates/cgrates/apis" "github.com/cgrates/cgrates/config" "github.com/cgrates/cgrates/engine" "github.com/cgrates/cgrates/servmanager" "github.com/cgrates/cgrates/utils" ) // NewAdminSv1Service returns the AdminSv1 Service func NewAdminSv1Service(cfg *config.CGRConfig) *AdminSv1Service { return &AdminSv1Service{ cfg: cfg, stateDeps: NewStateDependencies([]string{utils.StateServiceUP, utils.StateServiceDOWN}), } } // AdminSv1Service implements Service interface type AdminSv1Service struct { mu sync.RWMutex cfg *config.CGRConfig api *apis.AdminSv1 stopChan chan struct{} stateDeps *StateDependencies // channel subscriptions for state changes } // Start should handle the sercive start // For this service the start should be called from RAL Service func (s *AdminSv1Service) Start(_ *utils.SyncedChan, registry *servmanager.ServiceRegistry) (err error) { srvDeps, err := WaitForServicesToReachState(utils.StateServiceUP, []string{ utils.CommonListenerS, utils.ConnManager, utils.FilterS, utils.DataDB, utils.StorDB, }, registry, s.cfg.GeneralCfg().ConnectTimeout) if err != nil { return err } cl := srvDeps[utils.CommonListenerS].(*CommonListenerService).CLS() cms := srvDeps[utils.ConnManager].(*ConnManagerService) fs := srvDeps[utils.FilterS].(*FilterService).FilterS() dm := srvDeps[utils.DataDB].(*DataDBService).DataManager() sdb := srvDeps[utils.StorDB].(*StorDBService).DB() s.mu.Lock() defer s.mu.Unlock() s.api = apis.NewAdminSv1(s.cfg, dm, cms.ConnManager(), fs, sdb) srv, _ := engine.NewService(s.api) // srv, _ := birpc.NewService(s.api, "", false) for _, s := range srv { cl.RpcRegister(s) } rpl, _ := engine.NewService(apis.NewReplicatorSv1(dm, s.api)) for _, svc := range rpl { cl.RpcRegister(svc) } cms.AddInternalConn(utils.AdminS, srv) return } // Reload handles the change of config func (s *AdminSv1Service) Reload(_ *utils.SyncedChan, _ *servmanager.ServiceRegistry) (err error) { return } // Shutdown stops the service func (s *AdminSv1Service) Shutdown(registry *servmanager.ServiceRegistry) (err error) { s.mu.Lock() defer s.mu.Unlock() // close(s.stopChan) s.api = nil cl := registry.Lookup(utils.CommonListenerS).(*CommonListenerService).CLS() cl.RpcUnregisterName(utils.AdminSv1) return } // ServiceName returns the service name func (s *AdminSv1Service) ServiceName() string { return utils.AdminS } // ShouldRun returns if the service should be running func (s *AdminSv1Service) ShouldRun() bool { return s.cfg.AdminSCfg().Enabled } // StateChan returns signaling channel of specific state func (s *AdminSv1Service) StateChan(stateID string) chan struct{} { return s.stateDeps.StateChan(stateID) }