Files
obitools4/pkg/goutils/goutils.go

76 lines
1.7 KiB
Go
Raw Normal View History

2022-01-13 23:27:39 +01:00
package goutils
import (
"bytes"
"encoding/gob"
)
2022-01-14 14:58:59 +01:00
// NotAnInteger defines a new type of Error : "NotAnInteger"
2022-01-13 23:27:39 +01:00
type NotAnInteger struct {
message string
}
2022-01-14 14:58:59 +01:00
// Error() retreives the error message associated to the "NotAnInteger"
// error. Tha addition of that Error message make the "NotAnInteger"
// complying with the error interface
2022-01-13 23:27:39 +01:00
func (m *NotAnInteger) Error() string {
return m.message
}
2022-01-14 14:58:59 +01:00
// InterfaceToInt converts a interface{} to an integer value if possible.
// If not a "NotAnInteger" error is returned via the err
// return value and val is set to 0.
2022-01-13 23:27:39 +01:00
func InterfaceToInt(i interface{}) (val int, err error) {
err = nil
val = 0
switch t := i.(type) {
case int:
val = t
case int8:
val = int(t) // standardizes across systems
case int16:
val = int(t) // standardizes across systems
case int32:
val = int(t) // standardizes across systems
case int64:
val = int(t) // standardizes across systems
case float32:
val = int(t) // standardizes across systems
case float64:
val = int(t) // standardizes across systems
case uint8:
val = int(t) // standardizes across systems
case uint16:
val = int(t) // standardizes across systems
case uint32:
val = int(t) // standardizes across systems
case uint64:
val = int(t) // standardizes across systems
default:
err = &NotAnInteger{"count attribute is not an integer"}
}
return
}
func CastableToInt(i interface{}) bool {
switch i.(type) {
case int,
int8, int16, int32, int64,
float32, float64,
uint8, uint16, uint32, uint64:
return true
default:
return false
}
}
2022-01-14 14:58:59 +01:00
// CopyMap makes a deep copy of a map[string]interface{}.
2022-01-13 23:27:39 +01:00
func CopyMap(dest, src map[string]interface{}) {
buf := new(bytes.Buffer)
gob.NewEncoder(buf).Encode(src)
gob.NewDecoder(buf).Decode(&dest)
}