Files
cgrates/config/erscfg.go
2020-04-07 09:32:01 +02:00

235 lines
6.4 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 config
import (
"time"
"github.com/cgrates/cgrates/utils"
)
type ERsCfg struct {
Enabled bool
SessionSConns []string
Readers []*EventReaderCfg
}
func (erS *ERsCfg) loadFromJsonCfg(jsnCfg *ERsJsonCfg, sep string, dfltRdrCfg *EventReaderCfg) (err error) {
if jsnCfg == nil {
return
}
if jsnCfg.Enabled != nil {
erS.Enabled = *jsnCfg.Enabled
}
if jsnCfg.Sessions_conns != nil {
erS.SessionSConns = make([]string, len(*jsnCfg.Sessions_conns))
for i, fID := range *jsnCfg.Sessions_conns {
// if we have the connection internal we change the name so we can have internal rpc for each subsystem
if fID == utils.MetaInternal {
erS.SessionSConns[i] = utils.ConcatenatedKey(utils.MetaInternal, utils.MetaSessionS)
} else {
erS.SessionSConns[i] = fID
}
}
}
return erS.appendERsReaders(jsnCfg.Readers, sep, dfltRdrCfg)
}
func (ers *ERsCfg) appendERsReaders(jsnReaders *[]*EventReaderJsonCfg, sep string,
dfltRdrCfg *EventReaderCfg) (err error) {
if jsnReaders == nil {
return
}
for _, jsnReader := range *jsnReaders {
rdr := new(EventReaderCfg)
if dfltRdrCfg != nil {
rdr = dfltRdrCfg.Clone()
}
var haveID bool
if jsnReader.Id != nil {
for _, reader := range ers.Readers {
if reader.ID == *jsnReader.Id {
rdr = reader
haveID = true
break
}
}
}
if err := rdr.loadFromJsonCfg(jsnReader, sep); err != nil {
return err
}
if !haveID {
ers.Readers = append(ers.Readers, rdr)
}
}
return nil
}
// Clone itself into a new ERsCfg
func (erS *ERsCfg) Clone() (cln *ERsCfg) {
cln = new(ERsCfg)
cln.Enabled = erS.Enabled
cln.SessionSConns = make([]string, len(erS.SessionSConns))
for idx, sConn := range erS.SessionSConns {
cln.SessionSConns[idx] = sConn
}
cln.Readers = make([]*EventReaderCfg, len(erS.Readers))
for idx, rdr := range erS.Readers {
cln.Readers[idx] = rdr.Clone()
}
return
}
type EventReaderCfg struct {
ID string
Type string
RowLength int
FieldSep string
RunDelay time.Duration
ConcurrentReqs int
SourcePath string
ProcessedPath string
XmlRootPath utils.HierarchyPath
Tenant RSRParsers
Timezone string
Filters []string
Flags utils.FlagsWithParams
FailedCallsPrefix string // Used in case of flatstore CDRs to avoid searching for BYE records
PartialRecordCache time.Duration // Duration to cache partial records when not pairing
PartialCacheExpiryAction string
Fields []*FCTemplate
CacheDumpFields []*FCTemplate
}
func (er *EventReaderCfg) loadFromJsonCfg(jsnCfg *EventReaderJsonCfg, sep string) (err error) {
if jsnCfg == nil {
return
}
if jsnCfg.Id != nil {
er.ID = *jsnCfg.Id
}
if jsnCfg.Type != nil {
er.Type = *jsnCfg.Type
}
if jsnCfg.Row_length != nil {
er.RowLength = *jsnCfg.Row_length
}
if jsnCfg.Field_separator != nil {
er.FieldSep = *jsnCfg.Field_separator
}
if jsnCfg.Run_delay != nil {
if er.RunDelay, err = utils.ParseDurationWithNanosecs(*jsnCfg.Run_delay); err != nil {
return
}
}
if jsnCfg.Concurrent_requests != nil {
er.ConcurrentReqs = *jsnCfg.Concurrent_requests
}
if jsnCfg.Source_path != nil {
er.SourcePath = *jsnCfg.Source_path
}
if jsnCfg.Processed_path != nil {
er.ProcessedPath = *jsnCfg.Processed_path
}
if jsnCfg.Xml_root_path != nil {
er.XmlRootPath = utils.ParseHierarchyPath(*jsnCfg.Xml_root_path, utils.EmptyString)
}
if jsnCfg.Tenant != nil {
if er.Tenant, err = NewRSRParsers(*jsnCfg.Tenant, true, sep); err != nil {
return err
}
}
if jsnCfg.Timezone != nil {
er.Timezone = *jsnCfg.Timezone
}
if jsnCfg.Filters != nil {
er.Filters = make([]string, len(*jsnCfg.Filters))
for i, fltr := range *jsnCfg.Filters {
er.Filters[i] = fltr
}
}
if jsnCfg.Flags != nil {
if er.Flags, err = utils.FlagsWithParamsFromSlice(*jsnCfg.Flags); err != nil {
return
}
}
if jsnCfg.Failed_calls_prefix != nil {
er.FailedCallsPrefix = *jsnCfg.Failed_calls_prefix
}
if jsnCfg.Partial_record_cache != nil {
if er.PartialRecordCache, err = utils.ParseDurationWithNanosecs(*jsnCfg.Partial_record_cache); err != nil {
return err
}
}
if jsnCfg.Partial_cache_expiry_action != nil {
er.PartialCacheExpiryAction = *jsnCfg.Partial_cache_expiry_action
}
if jsnCfg.Fields != nil {
if er.Fields, err = FCTemplatesFromFCTemplatesJsonCfg(*jsnCfg.Fields, sep); err != nil {
return err
}
}
if jsnCfg.Cache_dump_fields != nil {
if er.CacheDumpFields, err = FCTemplatesFromFCTemplatesJsonCfg(*jsnCfg.Cache_dump_fields, sep); err != nil {
return err
}
}
return
}
//Clone itself into a new EventReaderCfg
func (er *EventReaderCfg) Clone() (cln *EventReaderCfg) {
cln = new(EventReaderCfg)
cln.ID = er.ID
cln.Type = er.Type
cln.FieldSep = er.FieldSep
cln.RunDelay = er.RunDelay
cln.ConcurrentReqs = er.ConcurrentReqs
cln.SourcePath = er.SourcePath
cln.ProcessedPath = er.ProcessedPath
cln.XmlRootPath = er.XmlRootPath
if len(er.Tenant) != 0 {
cln.Tenant = make(RSRParsers, len(er.Tenant))
for idx, val := range er.Tenant {
clnVal := *val
cln.Tenant[idx] = &clnVal
}
}
cln.Timezone = er.Timezone
if len(er.Filters) != 0 {
cln.Filters = make([]string, len(er.Filters))
for idx, val := range er.Filters {
cln.Filters[idx] = val
}
}
cln.Flags = er.Flags
cln.FailedCallsPrefix = er.FailedCallsPrefix
cln.Fields = make([]*FCTemplate, len(er.Fields))
for idx, fld := range er.Fields {
cln.Fields[idx] = fld.Clone()
}
cln.CacheDumpFields = make([]*FCTemplate, len(er.CacheDumpFields))
for idx, fld := range er.CacheDumpFields {
cln.CacheDumpFields[idx] = fld.Clone()
}
return
}