/* 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 engine import ( "fmt" "time" "github.com/cgrates/cgrates/config" "github.com/cgrates/cgrates/utils" "github.com/cgrates/ltcache" ) var Cache *ltcache.TransCache func init() { InitCache(nil) } var precachedPartitions = utils.StringMap{ utils.CacheDestinations: true, utils.CacheReverseDestinations: true, utils.CacheRatingPlans: true, utils.CacheRatingProfiles: true, utils.CacheActions: true, utils.CacheActionPlans: true, utils.CacheAccountActionPlans: true, utils.CacheActionTriggers: true, utils.CacheSharedGroups: true, utils.CacheResourceProfiles: true, utils.CacheResources: true, utils.CacheEventResources: true, utils.CacheTimings: true, utils.CacheStatQueueProfiles: true, utils.CacheStatQueues: true, utils.CacheThresholdProfiles: true, utils.CacheThresholds: true, utils.CacheFilters: true, utils.CacheSupplierProfiles: true, utils.CacheAttributeProfiles: true, utils.CacheChargerProfiles: true, utils.CacheDispatcherProfiles: true, utils.CacheDiameterMessages: true, utils.CacheAttributeFilterIndexes: true, utils.CacheResourceFilterIndexes: true, utils.CacheStatFilterIndexes: true, utils.CacheThresholdFilterIndexes: true, utils.CacheSupplierFilterIndexes: true, utils.CacheChargerFilterIndexes: true, utils.CacheDispatcherFilterIndexes: true, } // InitCache will instantiate the cache with specific or default configuraiton func InitCache(cfg config.CacheCfg) { if cfg == nil { cfg = config.CgrConfig().CacheCfg() } Cache = ltcache.NewTransCache(cfg.AsTransCacheConfig()) } // NewCacheS initializes the Cache service func NewCacheS(cfg *config.CGRConfig, dm *DataManager) (c *CacheS) { InitCache(cfg.CacheCfg()) // to make sure we start with correct config c = &CacheS{cfg: cfg, dm: dm, pcItems: make(map[string]chan struct{})} for cacheID := range cfg.CacheCfg() { if !precachedPartitions.HasKey(cacheID) { continue } c.pcItems[cacheID] = make(chan struct{}) } return } // CacheS deals with cache preload and other cache related tasks/APIs type CacheS struct { cfg *config.CGRConfig dm *DataManager pcItems map[string]chan struct{} // signal precaching } // GetChannel returns the channel used to signal precaching func (chS *CacheS) GetPrecacheChannel(chID string) chan struct{} { return chS.pcItems[chID] } // Precache loads data from DataDB into cache at engine start func (chS *CacheS) Precache() (err error) { for cacheID, cacheCfg := range chS.cfg.CacheCfg() { if !precachedPartitions.HasKey(cacheID) { continue } if cacheCfg.Precache { if err = chS.dm.CacheDataFromDB( utils.CacheInstanceToPrefix[cacheID], nil, false); err != nil { return } } close(chS.pcItems[cacheID]) } return } type ArgsGetCacheItemIDs struct { CacheID string ItemIDPrefix string } func (chS *CacheS) V1GetItemIDs(args *ArgsGetCacheItemIDs, reply *[]string) (err error) { itmIDs := Cache.GetItemIDs(args.CacheID, args.ItemIDPrefix) if len(itmIDs) == 0 { return utils.ErrNotFound } *reply = itmIDs return } type ArgsGetCacheItem struct { CacheID string ItemID string } func (chS *CacheS) V1HasItem(args *ArgsGetCacheItem, reply *bool) (err error) { *reply = Cache.HasItem(args.CacheID, args.ItemID) return } func (chS *CacheS) V1GetItemExpiryTime(args *ArgsGetCacheItem, reply *time.Time) (err error) { expTime, has := Cache.GetItemExpiryTime(args.CacheID, args.ItemID) if !has { return utils.ErrNotFound } *reply = expTime return } func (chS *CacheS) V1RemoveItem(args *ArgsGetCacheItem, reply *string) (err error) { Cache.Remove(args.CacheID, args.ItemID, true, utils.NonTransactional) *reply = utils.OK return } func (chS *CacheS) V1Clear(cacheIDs []string, reply *string) (err error) { Cache.Clear(cacheIDs) *reply = utils.OK return } func (chS *CacheS) V1GetCacheStats(cacheIDs []string, rply *map[string]*ltcache.CacheStats) (err error) { cs := Cache.GetCacheStats(cacheIDs) *rply = cs return } func (chS *CacheS) V1PrecacheStatus(cacheIDs []string, rply *map[string]string) (err error) { if len(cacheIDs) == 0 { for cacheID := range precachedPartitions { cacheIDs = append(cacheIDs, cacheID) } } pCacheStatus := make(map[string]string) for _, cacheID := range cacheIDs { if _, has := chS.pcItems[cacheID]; !has { return fmt.Errorf("unknown cacheID: %s", cacheID) } select { case <-chS.GetPrecacheChannel(cacheID): pCacheStatus[cacheID] = utils.MetaReady default: pCacheStatus[cacheID] = utils.MetaPrecaching } } *rply = pCacheStatus return } type ArgsGetGroup struct { CacheID string GroupID string } func (chS *CacheS) V1HasGroup(args *ArgsGetGroup, rply *bool) (err error) { *rply = Cache.HasGroup(args.CacheID, args.GroupID) return } func (chS *CacheS) V1GetGroupItemIDs(args *ArgsGetGroup, rply *[]string) (err error) { if has := Cache.HasGroup(args.CacheID, args.GroupID); !has { return utils.ErrNotFound } *rply = Cache.GetGroupItemIDs(args.CacheID, args.GroupID) return } func (chS *CacheS) V1RemoveGroup(args *ArgsGetGroup, rply *string) (err error) { Cache.RemoveGroup(args.CacheID, args.GroupID, true, utils.NonTransactional) *rply = utils.OK return } func (chS *CacheS) reloadCache(chID string, IDs *[]string) error { if IDs == nil { return chS.dm.CacheDataFromDB(chID, nil, true) // Reload all } return chS.dm.CacheDataFromDB(chID, *IDs, true) } func (chS *CacheS) V1ReloadCache(attrs utils.AttrReloadCache, reply *string) (err error) { if attrs.FlushAll { Cache.Clear(nil) return } // Reload Destinations if err = chS.reloadCache(utils.DESTINATION_PREFIX, attrs.DestinationIDs); err != nil { return } // Reload ReverseDestinations if err = chS.reloadCache(utils.REVERSE_DESTINATION_PREFIX, attrs.ReverseDestinationIDs); err != nil { return } // RatingPlans if err = chS.reloadCache(utils.RATING_PLAN_PREFIX, attrs.RatingPlanIDs); err != nil { return } // RatingProfiles if err = chS.reloadCache(utils.RATING_PROFILE_PREFIX, attrs.RatingProfileIDs); err != nil { return } // Actions if err = chS.reloadCache(utils.ACTION_PREFIX, attrs.ActionIDs); err != nil { return } // ActionPlans if err = chS.reloadCache(utils.ACTION_PLAN_PREFIX, attrs.ActionPlanIDs); err != nil { return } // AccountActionPlans if err = chS.reloadCache(utils.AccountActionPlansPrefix, attrs.AccountActionPlanIDs); err != nil { return } // ActionTriggers if err = chS.reloadCache(utils.ACTION_TRIGGER_PREFIX, attrs.ActionTriggerIDs); err != nil { return } // SharedGroups if err = chS.reloadCache(utils.SHARED_GROUP_PREFIX, attrs.SharedGroupIDs); err != nil { return } // ResourceProfiles if err = chS.reloadCache(utils.ResourceProfilesPrefix, attrs.ResourceProfileIDs); err != nil { return } // Resources if err = chS.reloadCache(utils.ResourcesPrefix, attrs.ResourceIDs); err != nil { return } // StatQueues if err = chS.reloadCache(utils.StatQueuePrefix, attrs.StatsQueueIDs); err != nil { return } // StatQueueProfiles if err = chS.reloadCache(utils.StatQueueProfilePrefix, attrs.StatsQueueProfileIDs); err != nil { return } // Thresholds if err = chS.reloadCache(utils.ThresholdPrefix, attrs.ThresholdIDs); err != nil { return } // ThresholdProfiles if err = chS.reloadCache(utils.ThresholdProfilePrefix, attrs.ThresholdProfileIDs); err != nil { return } // Filters if err = chS.reloadCache(utils.FilterPrefix, attrs.FilterIDs); err != nil { return } // SupplierProfile if err = chS.reloadCache(utils.SupplierProfilePrefix, attrs.SupplierProfileIDs); err != nil { return } // AttributeProfile if err = chS.reloadCache(utils.AttributeProfilePrefix, attrs.AttributeProfileIDs); err != nil { return } // ChargerProfiles if err = chS.reloadCache(utils.ChargerProfilePrefix, attrs.ChargerProfileIDs); err != nil { return } // DispatcherProfile if err = chS.reloadCache(utils.DispatcherProfilePrefix, attrs.DispatcherProfileIDs); err != nil { return } *reply = utils.OK return nil } func toStringSlice(in *[]string) []string { if in == nil { return nil } return *in } func (chS *CacheS) V1LoadCache(args utils.AttrReloadCache, reply *string) (err error) { if args.FlushAll { Cache.Clear(nil) } if err := chS.dm.LoadDataDBCache( toStringSlice(args.DestinationIDs), toStringSlice(args.ReverseDestinationIDs), toStringSlice(args.RatingPlanIDs), toStringSlice(args.RatingProfileIDs), toStringSlice(args.ActionIDs), toStringSlice(args.ActionPlanIDs), toStringSlice(args.AccountActionPlanIDs), toStringSlice(args.ActionTriggerIDs), toStringSlice(args.SharedGroupIDs), toStringSlice(args.ResourceProfileIDs), toStringSlice(args.ResourceIDs), toStringSlice(args.StatsQueueIDs), toStringSlice(args.StatsQueueProfileIDs), toStringSlice(args.ThresholdIDs), toStringSlice(args.ThresholdProfileIDs), toStringSlice(args.FilterIDs), toStringSlice(args.SupplierProfileIDs), toStringSlice(args.AttributeProfileIDs), toStringSlice(args.ChargerProfileIDs), toStringSlice(args.DispatcherProfileIDs), ); err != nil { return utils.NewErrServerError(err) } *reply = utils.OK return nil } func flushCache(chID string, IDs *[]string) { if IDs == nil { Cache.Clear([]string{chID}) return } for _, key := range *IDs { Cache.Remove(chID, key, true, utils.NonTransactional) } } // FlushCache wipes out cache for a prefix or completely func (chS *CacheS) V1FlushCache(args utils.AttrReloadCache, reply *string) (err error) { if args.FlushAll { Cache.Clear(nil) *reply = utils.OK return } flushCache(utils.CacheDestinations, args.DestinationIDs) flushCache(utils.CacheReverseDestinations, args.ReverseDestinationIDs) flushCache(utils.CacheRatingPlans, args.RatingPlanIDs) flushCache(utils.CacheRatingProfiles, args.RatingProfileIDs) flushCache(utils.CacheActions, args.ActionIDs) flushCache(utils.CacheActionPlans, args.ActionPlanIDs) flushCache(utils.CacheActionTriggers, args.ActionTriggerIDs) flushCache(utils.CacheSharedGroups, args.SharedGroupIDs) flushCache(utils.CacheResourceProfiles, args.ResourceProfileIDs) flushCache(utils.CacheResources, args.ResourceIDs) flushCache(utils.CacheStatQueues, args.StatsQueueIDs) flushCache(utils.CacheThresholdProfiles, args.StatsQueueProfileIDs) flushCache(utils.CacheThresholds, args.ThresholdIDs) flushCache(utils.CacheThresholdProfiles, args.ThresholdProfileIDs) flushCache(utils.CacheFilters, args.FilterIDs) flushCache(utils.CacheSupplierProfiles, args.SupplierProfileIDs) flushCache(utils.CacheAttributeProfiles, args.AttributeProfileIDs) flushCache(utils.CacheChargerProfiles, args.ChargerProfileIDs) flushCache(utils.CacheDispatcherProfiles, args.DispatcherProfileIDs) flushCache(utils.CacheDispatcherRoutes, args.DispatcherRoutesIDs) *reply = utils.OK return }