forked from gobuffalo/pop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
float.go
53 lines (46 loc) · 1015 Bytes
/
float.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package slices
import (
"database/sql/driver"
"fmt"
"strconv"
"strings"
"github.com/pkg/errors"
)
type Float []float64
func (s *Float) Scan(src interface{}) error {
b, ok := src.([]byte)
if !ok {
return errors.New("Scan source was not []byte")
}
str := string(b)
(*s) = strToFloat(str, *s)
return nil
}
func (s Float) Value() (driver.Value, error) {
sa := make([]string, len(s))
for x, i := range s {
sa[x] = strconv.FormatFloat(i, 'f', -1, 64)
}
return fmt.Sprintf("{%s}", strings.Join(sa, ",")), nil
}
func (s *Float) UnmarshalText(text []byte) error {
ss := []float64{}
for _, x := range strings.Split(string(text), ",") {
f, err := strconv.ParseFloat(x, 64)
if err != nil {
return errors.WithStack(err)
}
ss = append(ss, f)
}
(*s) = ss
return nil
}
func strToFloat(s string, a []float64) []float64 {
r := strings.Trim(s, "{}")
a = make([]float64, 0, 10)
for _, t := range strings.Split(r, ",") {
i, _ := strconv.ParseFloat(t, 64)
a = append(a, i)
}
return a
}