Files
cgrates/rater/csvreader.go
2013-04-08 17:55:09 +02:00

508 lines
13 KiB
Go

/*
Rating system designed to be used in VoIP Carriers World
Copyright (C) 2013 ITsysCOM
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 rater
import (
"encoding/csv"
"errors"
"fmt"
"log"
"os"
"strconv"
"strings"
"time"
)
type CSVReader struct {
readerFunc func(string, rune) (*csv.Reader, *os.File, error)
actions map[string][]*Action
actionsTimings map[string][]*ActionTiming
actionsTriggers map[string][]*ActionTrigger
accountActions []*UserBalance
destinations []*Destination
rates map[string][]*Rate
timings map[string][]*Timing
activationPeriods map[string]*ActivationPeriod
ratingProfiles map[string]*RatingProfile
}
func NewFileCSVReader() *CSVReader {
c := new(CSVReader)
c.actions = make(map[string][]*Action)
c.actionsTimings = make(map[string][]*ActionTiming)
c.actionsTriggers = make(map[string][]*ActionTrigger)
c.rates = make(map[string][]*Rate)
c.timings = make(map[string][]*Timing)
c.activationPeriods = make(map[string]*ActivationPeriod)
c.ratingProfiles = make(map[string]*RatingProfile)
c.readerFunc = openFileCSVReader
return c
}
func NewStringCSVReader() *CSVReader {
c := NewFileCSVReader()
c.readerFunc = openStringCSVReader
return c
}
func openFileCSVReader(fn string, comma rune) (csvReader *csv.Reader, fp *os.File, err error) {
fp, err = os.Open(fn)
if err != nil {
return
}
csvReader = csv.NewReader(fp)
csvReader.Comma = comma
csvReader.TrailingComma = true
return
}
func openStringCSVReader(data string, comma rune) (csvReader *csv.Reader, fp *os.File, err error) {
csvReader = csv.NewReader(strings.NewReader(data))
csvReader.Comma = comma
csvReader.TrailingComma = true
return
}
func (csvr *CSVReader) WriteToDatabase(storage DataStorage, flush, verbose bool) (err error) {
if flush {
storage.Flush()
}
if verbose {
log.Print("Destinations")
}
for _, d := range csvr.destinations {
err = storage.SetDestination(d)
if err != nil {
return err
}
if verbose {
log.Print(d.Id, " : ", d.Prefixes)
}
}
if verbose {
log.Print("Rating profiles")
}
for _, rp := range csvr.ratingProfiles {
err = storage.SetRatingProfile(rp)
if err != nil {
return err
}
if verbose {
log.Print(rp.Id)
}
}
if verbose {
log.Print("Action timings")
}
for k, ats := range csvr.actionsTimings {
err = storage.SetActionTimings(k, ats)
if err != nil {
return err
}
if verbose {
log.Println(k)
}
}
if verbose {
log.Print("Actions")
}
for k, as := range csvr.actions {
err = storage.SetActions(k, as)
if err != nil {
return err
}
if verbose {
log.Println(k)
}
}
if verbose {
log.Print("Account actions")
}
for _, ub := range csvr.accountActions {
err = storage.SetUserBalance(ub)
if err != nil {
return err
}
if verbose {
log.Println(ub.Id)
}
}
return
}
func (csvr *CSVReader) LoadDestinations(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load destinations file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tag" {
// skip header line
continue
}
var dest *Destination
for _, d := range csvr.destinations {
if d.Id == tag {
dest = d
break
}
}
if dest == nil {
dest = &Destination{Id: tag}
csvr.destinations = append(csvr.destinations, dest)
}
dest.Prefixes = append(dest.Prefixes, record[1])
}
return
}
func (csvr *CSVReader) LoadRates(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load rates file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tag" {
// skip header line
continue
}
var r *Rate
r, err = NewRate(record[1], record[2], record[3], record[4], record[5])
if err != nil {
return err
}
csvr.rates[tag] = append(csvr.rates[tag], r)
}
return
}
func (csvr *CSVReader) LoadTimings(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load timings file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tag" {
// skip header line
continue
}
t := NewTiming(record[1:]...)
csvr.timings[tag] = append(csvr.timings[tag], t)
}
return
}
func (csvr *CSVReader) LoadRateTimings(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load rate timings file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tag" {
// skip header line
continue
}
ts, exists := csvr.timings[record[2]]
if !exists {
return errors.New(fmt.Sprintf("Could not get timing for tag %v", record[2]))
}
for _, t := range ts {
rt := NewRateTiming(record[1], t, record[3])
rs, exists := csvr.rates[record[1]]
if !exists {
return errors.New(fmt.Sprintf("Could not find rate for tag %v", record[1]))
}
for _, r := range rs {
_, exists := csvr.activationPeriods[tag]
if !exists {
csvr.activationPeriods[tag] = &ActivationPeriod{}
}
csvr.activationPeriods[tag].AddIntervalIfNotPresent(rt.GetInterval(r))
}
}
}
return
}
func (csvr *CSVReader) LoadRatingProfiles(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load rating profiles file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tenant" {
// skip header line
continue
}
if len(record) != 7 {
return errors.New(fmt.Sprintf("Malformed rating profile: %v", record))
}
tenant, tor, direction, subject, fallbacksubject := record[0], record[1], record[2], record[3], record[4]
at, err := time.Parse(time.RFC3339, record[6])
if err != nil {
return errors.New(fmt.Sprintf("Cannot parse activation time from %v", record[6]))
}
key := fmt.Sprintf("%s:%s:%s:%s", direction, tenant, tor, subject)
rp, ok := csvr.ratingProfiles[key]
if !ok {
rp = &RatingProfile{Id: key}
csvr.ratingProfiles[key] = rp
}
for _, d := range csvr.destinations {
ap, exists := csvr.activationPeriods[record[5]]
if !exists {
return errors.New(fmt.Sprintf("Could not load ratinTiming for tag: %v", record[5]))
}
newAP := &ActivationPeriod{ActivationTime: at}
//copy(newAP.Intervals, ap.Intervals)
newAP.Intervals = append(newAP.Intervals, ap.Intervals...)
rp.AddActivationPeriodIfNotPresent(d.Id, newAP)
if fallbacksubject != "" {
rp.FallbackKey = fmt.Sprintf("%s:%s:%s:%s", direction, tenant, tor, fallbacksubject)
}
}
}
return
}
func (csvr *CSVReader) LoadActions(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load action triggers file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tag" {
// skip header line
continue
}
units, err := strconv.ParseFloat(record[4], 64)
if err != nil {
return errors.New(fmt.Sprintf("Could not parse action units: %v", err))
}
var a *Action
if record[2] != MINUTES {
a = &Action{
ActionType: record[1],
BalanceId: record[2],
Direction: record[3],
Units: units,
}
} else {
price, percent := 0.0, 0.0
value, err := strconv.ParseFloat(record[7], 64)
if err != nil {
return errors.New(fmt.Sprintf("Could not parse action price: %v", err))
}
if record[6] == PERCENT {
percent = value
}
if record[6] == ABSOLUTE {
price = value
}
minutesWeight, err := strconv.ParseFloat(record[8], 64)
if err != nil {
return errors.New(fmt.Sprintf("Could not parse action minutes weight: %v", err))
}
weight, err := strconv.ParseFloat(record[9], 64)
if err != nil {
return errors.New(fmt.Sprintf("Could not parse action weight: %v", err))
}
a = &Action{
Id: GenUUID(),
ActionType: record[1],
BalanceId: record[2],
Direction: record[3],
Weight: weight,
MinuteBucket: &MinuteBucket{
Seconds: units,
Weight: minutesWeight,
Price: price,
Percent: percent,
DestinationId: record[5],
},
}
}
csvr.actions[tag] = append(csvr.actions[tag], a)
}
return
}
func (csvr *CSVReader) LoadActionTimings(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load action triggers file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tag" {
// skip header line
continue
}
_, exists := csvr.actions[record[1]]
if !exists {
return errors.New(fmt.Sprintf("ActionTiming: Could not load the action for tag: %v", record[1]))
}
ts, exists := csvr.timings[record[2]]
if !exists {
return errors.New(fmt.Sprintf("ActionTiming: Could not load the timing for tag: %v", record[2]))
}
weight, err := strconv.ParseFloat(record[3], 64)
if err != nil {
return errors.New(fmt.Sprintf("ActionTiming: Could not parse action timing weight: %v", err))
}
for _, t := range ts {
at := &ActionTiming{
Id: GenUUID(),
Tag: record[2],
Weight: weight,
Timing: &Interval{
Months: t.Months,
MonthDays: t.MonthDays,
WeekDays: t.WeekDays,
StartTime: t.StartTime,
},
ActionsId: record[1],
}
csvr.actionsTimings[tag] = append(csvr.actionsTimings[tag], at)
}
}
return
}
func (csvr *CSVReader) LoadActionTriggers(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load action triggers file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
tag := record[0]
if tag == "Tag" {
// skip header line
continue
}
value, err := strconv.ParseFloat(record[3], 64)
if err != nil {
return errors.New(fmt.Sprintf("Could not parse action trigger value: %v", err))
}
weight, err := strconv.ParseFloat(record[6], 64)
if err != nil {
return errors.New(fmt.Sprintf("Could not parse action trigger weight: %v", err))
}
at := &ActionTrigger{
Id: GenUUID(),
BalanceId: record[1],
Direction: record[2],
ThresholdValue: value,
DestinationId: record[4],
ActionsId: record[5],
Weight: weight,
}
csvr.actionsTriggers[tag] = append(csvr.actionsTriggers[tag], at)
}
return
}
func (csvr *CSVReader) LoadAccountActions(fn string, comma rune) (err error) {
csvReader, fp, err := csvr.readerFunc(fn, comma)
if err != nil {
log.Print("Could not load account actions file: ", err)
// allow writing of the other values
return nil
}
if fp != nil {
defer fp.Close()
}
for record, err := csvReader.Read(); err == nil; record, err = csvReader.Read() {
if record[0] == "Tenant" {
continue
}
tag := fmt.Sprintf("%s:%s:%s", record[2], record[0], record[1])
aTriggers, exists := csvr.actionsTriggers[record[4]]
if record[4] != "" && !exists {
// only return error if there was something ther for the tag
return errors.New(fmt.Sprintf("Could not get action triggers for tag %v", record[4]))
}
ub := &UserBalance{
Type: UB_TYPE_PREPAID,
Id: tag,
ActionTriggers: aTriggers,
}
csvr.accountActions = append(csvr.accountActions, ub)
aTimings, exists := csvr.actionsTimings[record[3]]
if !exists {
log.Printf("Could not get action timing for tag %v", record[3])
// must not continue here
}
for _, at := range aTimings {
at.UserBalanceIds = append(at.UserBalanceIds, tag)
}
}
return
}