Files
cgrates/timespans/storage_interface.go
2012-07-05 14:48:43 +03:00

187 lines
4.4 KiB
Go

/*
Rating system designed to be used in VoIP Carriers World
Copyright (C) 2012 Radu Ioan Fericean
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 timespans
import (
"bytes"
"encoding/gob"
"encoding/json"
"errors"
"log"
"strings"
)
/*
Interface for storage providers.
*/
type StorageGetter interface {
Close()
Flush() error
GetActivationPeriodsOrFallback(string) ([]*ActivationPeriod, string, error)
SetActivationPeriodsOrFallback(string, []*ActivationPeriod, string) error
GetDestination(string) (*Destination, error)
SetDestination(*Destination) error
GetActions(string) ([]*Action, error)
SetActions(string, []*Action) error
GetUserBalance(string) (*UserBalance, error)
SetUserBalance(*UserBalance) error
GetActionTimings(string) ([]*ActionTiming, error)
SetActionTimings(string, []*ActionTiming) error
GetAllActionTimings() ([]*ActionTiming, error)
}
type Marshaler interface {
Marshal(v interface{}) ([]byte, error)
Unmarshal(data []byte, v interface{}) error
}
type JSONMarshaler struct{}
func (jm *JSONMarshaler) Marshal(v interface{}) ([]byte, error) {
return json.Marshal(v)
}
func (jm *JSONMarshaler) Unmarshal(data []byte, v interface{}) error {
return json.Unmarshal(data, v)
}
type JSONBufMarshaler struct {
buf bytes.Buffer
}
func (jbm *JSONBufMarshaler) Marshal(v interface{}) (data []byte, err error) {
jbm.buf.Reset()
if err = json.NewEncoder(&jbm.buf).Encode(v); err == nil {
data = jbm.buf.Bytes()
}
return
}
func (jbm *JSONBufMarshaler) Unmarshal(data []byte, v interface{}) error {
jbm.buf.Reset()
jbm.buf.Write(data)
return json.NewDecoder(&jbm.buf).Decode(v)
}
type GOBMarshaler struct {
buf bytes.Buffer
}
func (gm *GOBMarshaler) Marshal(v interface{}) (data []byte, err error) {
gm.buf.Reset()
if err = gob.NewEncoder(&gm.buf).Encode(v); err == nil {
data = gm.buf.Bytes()
}
return
}
func (gm *GOBMarshaler) Unmarshal(data []byte, v interface{}) error {
gm.buf.Reset()
gm.buf.Write(data)
return gob.NewDecoder(&gm.buf).Decode(v)
}
type storer interface {
store() string
restore(string)
}
type MyMarshaler struct {
buf bytes.Buffer
}
func (mm *MyMarshaler) Marshal(v interface{}) (data []byte, err error) {
switch v.(type) {
case []*ActivationPeriod:
result := ""
for _, ap := range v.([]*ActivationPeriod) {
result += ap.store() + "\n"
}
return []byte(result), nil
case []*Action:
result := ""
for _, a := range v.([]*Action) {
result += a.store() + "\n"
}
return []byte(result), nil
case []*ActionTiming:
result := ""
for _, at := range v.([]*ActionTiming) {
result += at.store() + "\n"
}
return []byte(result), nil
case storer:
s := v.(storer)
return []byte(s.store()), nil
}
mm.buf.Reset()
if err = gob.NewEncoder(&mm.buf).Encode(v); err == nil {
data = mm.buf.Bytes()
}
return
}
func (mm *MyMarshaler) Unmarshal(data []byte, v interface{}) (err error) {
switch v.(type) {
case *[]*ActivationPeriod:
aps := v.(*[]*ActivationPeriod)
splits := strings.Split(string(data), "\n")
if len(splits) == 0 {
return errors.New("")
}
for _, ap_string := range splits {
if len(ap_string) > 0 {
ap := &ActivationPeriod{}
ap.restore(ap_string)
*aps = append(*aps, ap)
}
}
return nil
case *[]*Action:
as := v.(*[]*Action)
for _, a_string := range strings.Split(string(data), "\n") {
if len(a_string) > 0 {
a := &Action{}
a.restore(a_string)
*as = append(*as, a)
}
}
return nil
case *[]*ActionTiming:
ats := v.(*[]*ActionTiming)
for _, at_string := range strings.Split(string(data), "\n") {
if len(at_string) > 0 {
at := &ActionTiming{}
at.restore(at_string)
*ats = append(*ats, at)
}
}
return nil
case storer:
s := v.(storer)
s.restore(string(data))
return nil
}
log.Print("Using default gob marshalling!")
mm.buf.Reset()
mm.buf.Write(data)
return gob.NewDecoder(&mm.buf).Decode(v)
}