Files
obitools4/pkg/goutils/goutils.go

109 lines
2.3 KiB
Go
Raw Normal View History

2022-01-13 23:27:39 +01:00
package goutils
import (
"bufio"
2022-01-13 23:27:39 +01:00
"bytes"
"encoding/gob"
"io"
"os"
2022-01-13 23:27:39 +01:00
)
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)
}
// Read a whole file into the memory and store it as array of lines
func ReadLines(path string) (lines []string, err error) {
var (
file *os.File
part []byte
prefix bool
)
if file, err = os.Open(path); err != nil {
return
}
defer file.Close()
reader := bufio.NewReader(file)
buffer := bytes.NewBuffer(make([]byte, 0))
for {
if part, prefix, err = reader.ReadLine(); err != nil {
break
}
buffer.Write(part)
if !prefix {
lines = append(lines, buffer.String())
buffer.Reset()
}
}
if err == io.EOF {
err = nil
}
return
}