cast/caste.go

367 lines
8.2 KiB
Go
Raw Normal View History

2014-04-05 09:21:52 +04:00
// Copyright © 2014 Steve Francia <spf@spf13.com>.
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
package cast
import (
"errors"
"fmt"
2014-12-09 16:17:55 +03:00
"html/template"
"reflect"
2014-04-05 09:21:52 +04:00
"strconv"
2015-02-19 05:44:31 +03:00
"strings"
2014-04-05 09:21:52 +04:00
"time"
jww "github.com/spf13/jwalterweatherman"
)
func ToTimeE(i interface{}) (tim time.Time, err error) {
i = indirect(i)
jww.DEBUG.Println("ToTimeE called on type:", reflect.TypeOf(i))
2014-04-05 09:21:52 +04:00
switch s := i.(type) {
case time.Time:
return s, nil
2014-04-05 09:21:52 +04:00
case string:
d, e := StringToDate(s)
if e == nil {
return d, nil
2014-04-05 09:21:52 +04:00
}
return time.Time{}, fmt.Errorf("Could not parse Date/Time format: %v\n", e)
2014-04-05 09:21:52 +04:00
default:
return time.Time{}, fmt.Errorf("Unable to Cast %#v to Time\n", i)
2014-04-05 09:21:52 +04:00
}
}
2015-02-19 05:56:24 +03:00
func ToDurationE(i interface{}) (d time.Duration, err error) {
i = indirect(i)
jww.DEBUG.Println("ToDurationE called on type:", reflect.TypeOf(i))
switch s := i.(type) {
case time.Duration:
return s, nil
case string:
d, err = time.ParseDuration(s)
return
default:
err = fmt.Errorf("Unable to Cast %#v to Duration\n", i)
return
}
}
func ToBoolE(i interface{}) (bool, error) {
i = indirect(i)
jww.DEBUG.Println("ToBoolE called on type:", reflect.TypeOf(i))
2014-04-05 09:21:52 +04:00
switch b := i.(type) {
case bool:
return b, nil
2014-04-05 09:21:52 +04:00
case nil:
return false, nil
2014-04-05 09:21:52 +04:00
case int:
if i.(int) != 0 {
return true, nil
2014-04-05 09:21:52 +04:00
}
return false, nil
case string:
return strconv.ParseBool(i.(string))
2014-04-05 09:21:52 +04:00
default:
return false, fmt.Errorf("Unable to Cast %#v to bool", i)
2014-04-05 09:21:52 +04:00
}
}
func ToFloat64E(i interface{}) (float64, error) {
i = indirect(i)
jww.DEBUG.Println("ToFloat64E called on type:", reflect.TypeOf(i))
2014-04-05 09:21:52 +04:00
switch s := i.(type) {
case float64:
return s, nil
2014-04-05 09:21:52 +04:00
case float32:
return float64(s), nil
2014-04-07 19:43:25 +04:00
case int64:
return float64(s), nil
2014-04-07 19:43:25 +04:00
case int32:
return float64(s), nil
2014-04-07 19:43:25 +04:00
case int16:
return float64(s), nil
2014-04-07 19:43:25 +04:00
case int8:
return float64(s), nil
2014-04-07 19:43:25 +04:00
case int:
return float64(s), nil
2014-04-05 09:21:52 +04:00
case string:
v, err := strconv.ParseFloat(s, 64)
if err == nil {
return float64(v), nil
2014-04-05 09:21:52 +04:00
} else {
return 0.0, fmt.Errorf("Unable to Cast %#v to float", i)
2014-04-05 09:21:52 +04:00
}
default:
return 0.0, fmt.Errorf("Unable to Cast %#v to float", i)
2014-04-05 09:21:52 +04:00
}
}
func ToIntE(i interface{}) (int, error) {
i = indirect(i)
jww.DEBUG.Println("ToIntE called on type:", reflect.TypeOf(i))
2014-04-05 09:21:52 +04:00
switch s := i.(type) {
case int:
return s, nil
2014-04-05 09:21:52 +04:00
case int64:
return int(s), nil
2014-04-05 09:21:52 +04:00
case int32:
return int(s), nil
2014-04-05 09:21:52 +04:00
case int16:
return int(s), nil
2014-04-05 09:21:52 +04:00
case int8:
return int(s), nil
2014-04-05 09:21:52 +04:00
case string:
v, err := strconv.ParseInt(s, 0, 0)
if err == nil {
return int(v), nil
2014-04-05 09:21:52 +04:00
} else {
return 0, fmt.Errorf("Unable to Cast %#v to int", i)
2014-04-05 09:21:52 +04:00
}
case float64:
return int(s), nil
2014-04-05 09:21:52 +04:00
case bool:
if bool(s) {
return 1, nil
2014-04-05 09:21:52 +04:00
} else {
return 0, nil
2014-04-05 09:21:52 +04:00
}
case nil:
return 0, nil
2014-04-05 09:21:52 +04:00
default:
return 0, fmt.Errorf("Unable to Cast %#v to int", i)
2014-04-05 09:21:52 +04:00
}
}
// From html/template/content.go
// Copyright 2011 The Go Authors. All rights reserved.
// indirect returns the value, after dereferencing as many times
// as necessary to reach the base type (or nil).
func indirect(a interface{}) interface{} {
if a == nil {
return nil
}
if t := reflect.TypeOf(a); t.Kind() != reflect.Ptr {
// Avoid creating a reflect.Value if it's not a pointer.
return a
}
v := reflect.ValueOf(a)
for v.Kind() == reflect.Ptr && !v.IsNil() {
v = v.Elem()
}
return v.Interface()
}
// From html/template/content.go
// Copyright 2011 The Go Authors. All rights reserved.
// indirectToStringerOrError returns the value, after dereferencing as many times
// as necessary to reach the base type (or nil) or an implementation of fmt.Stringer
// or error,
func indirectToStringerOrError(a interface{}) interface{} {
if a == nil {
return nil
}
var errorType = reflect.TypeOf((*error)(nil)).Elem()
var fmtStringerType = reflect.TypeOf((*fmt.Stringer)(nil)).Elem()
v := reflect.ValueOf(a)
for !v.Type().Implements(fmtStringerType) && !v.Type().Implements(errorType) && v.Kind() == reflect.Ptr && !v.IsNil() {
v = v.Elem()
}
return v.Interface()
}
func ToStringE(i interface{}) (string, error) {
i = indirectToStringerOrError(i)
jww.DEBUG.Println("ToStringE called on type:", reflect.TypeOf(i))
2014-04-05 09:21:52 +04:00
switch s := i.(type) {
case string:
return s, nil
2014-04-05 09:21:52 +04:00
case float64:
return strconv.FormatFloat(i.(float64), 'f', -1, 64), nil
2014-04-05 09:21:52 +04:00
case int:
return strconv.FormatInt(int64(i.(int)), 10), nil
case []byte:
return string(s), nil
2014-12-09 16:17:55 +03:00
case template.HTML:
return string(s), nil
2014-04-05 09:21:52 +04:00
case nil:
return "", nil
case fmt.Stringer:
return s.String(), nil
case error:
return s.Error(), nil
2014-04-05 09:21:52 +04:00
default:
return "", fmt.Errorf("Unable to Cast %#v to string", i)
2014-04-05 09:21:52 +04:00
}
}
func ToStringMapStringE(i interface{}) (map[string]string, error) {
jww.DEBUG.Println("ToStringMapStringE called on type:", reflect.TypeOf(i))
var m = map[string]string{}
switch v := i.(type) {
case map[interface{}]interface{}:
for k, val := range v {
m[ToString(k)] = ToString(val)
}
return m, nil
case map[string]interface{}:
for k, val := range v {
m[ToString(k)] = ToString(val)
}
return m, nil
case map[string]string:
return v, nil
default:
return m, fmt.Errorf("Unable to Cast %#v to map[string]string", i)
}
return m, fmt.Errorf("Unable to Cast %#v to map[string]string", i)
}
func ToStringMapBoolE(i interface{}) (map[string]bool, error) {
jww.DEBUG.Println("ToStringMapBoolE called on type:", reflect.TypeOf(i))
var m = map[string]bool{}
switch v := i.(type) {
case map[interface{}]interface{}:
for k, val := range v {
m[ToString(k)] = ToBool(val)
}
return m, nil
case map[string]interface{}:
for k, val := range v {
m[ToString(k)] = ToBool(val)
}
return m, nil
case map[string]bool:
return v, nil
default:
return m, fmt.Errorf("Unable to Cast %#v to map[string]bool", i)
}
return m, fmt.Errorf("Unable to Cast %#v to map[string]bool", i)
}
func ToStringMapE(i interface{}) (map[string]interface{}, error) {
jww.DEBUG.Println("ToStringMapE called on type:", reflect.TypeOf(i))
var m = map[string]interface{}{}
switch v := i.(type) {
case map[interface{}]interface{}:
for k, val := range v {
m[ToString(k)] = val
}
return m, nil
case map[string]interface{}:
return v, nil
default:
return m, fmt.Errorf("Unable to Cast %#v to map[string]interface{}", i)
}
return m, fmt.Errorf("Unable to Cast %#v to map[string]interface{}", i)
}
2014-04-27 02:56:25 +04:00
func ToSliceE(i interface{}) ([]interface{}, error) {
jww.DEBUG.Println("ToSliceE called on type:", reflect.TypeOf(i))
var s []interface{}
switch v := i.(type) {
case []interface{}:
for _, u := range v {
s = append(s, u)
}
return s, nil
case []map[string]interface{}:
for _, u := range v {
s = append(s, u)
}
return s, nil
default:
return s, fmt.Errorf("Unable to Cast %#v of type %v to []interface{}", i, reflect.TypeOf(i))
}
return s, fmt.Errorf("Unable to Cast %#v to []interface{}", i)
}
func ToStringSliceE(i interface{}) ([]string, error) {
jww.DEBUG.Println("ToStringSliceE called on type:", reflect.TypeOf(i))
var a []string
switch v := i.(type) {
case []interface{}:
for _, u := range v {
a = append(a, ToString(u))
}
return a, nil
case []string:
return v, nil
2015-02-19 05:44:31 +03:00
case string:
2015-02-19 20:58:55 +03:00
return strings.Fields(v), nil
default:
return a, fmt.Errorf("Unable to Cast %#v to []string", i)
}
return a, fmt.Errorf("Unable to Cast %#v to []string", i)
}
2015-02-24 13:58:16 +03:00
func ToIntSliceE(i interface{}) ([]int, error) {
jww.DEBUG.Println("ToIntSliceE called on type:", reflect.TypeOf(i))
var a []int
switch v := i.(type) {
case []interface{}:
for _, u := range v {
a = append(a, ToInt(u))
}
return a, nil
case []int:
return v, nil
default:
return a, fmt.Errorf("Unable to Cast %#v to []int", i)
}
return a, fmt.Errorf("Unable to Cast %#v to []int", i)
}
2014-04-05 09:21:52 +04:00
func StringToDate(s string) (time.Time, error) {
return parseDateWith(s, []string{
time.RFC3339,
"2006-01-02T15:04:05", // iso8601 without timezone
time.RFC1123Z,
time.RFC1123,
time.RFC822Z,
time.RFC822,
time.ANSIC,
time.UnixDate,
time.RubyDate,
"2006-01-02 15:04:05Z07:00",
"02 Jan 06 15:04 MST",
"2006-01-02",
"02 Jan 2006",
})
}
func parseDateWith(s string, dates []string) (d time.Time, e error) {
for _, dateType := range dates {
if d, e = time.Parse(dateType, s); e == nil {
return
}
}
return d, errors.New(fmt.Sprintf("Unable to parse date: %s", s))
}