2014-04-12 05:18:18 +00:00
|
|
|
// Beego (http://beego.me/)
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @authors astaxie
|
2013-12-13 02:00:24 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// convert interface to string.
|
2013-12-13 02:00:24 +00:00
|
|
|
func GetString(v interface{}) string {
|
|
|
|
switch result := v.(type) {
|
|
|
|
case string:
|
|
|
|
return result
|
|
|
|
case []byte:
|
|
|
|
return string(result)
|
|
|
|
default:
|
2014-07-10 05:04:18 +00:00
|
|
|
if v != nil {
|
2013-12-13 02:00:24 +00:00
|
|
|
return fmt.Sprintf("%v", result)
|
|
|
|
}
|
|
|
|
}
|
2014-07-10 05:04:18 +00:00
|
|
|
return ""
|
2013-12-13 02:00:24 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// convert interface to int.
|
2013-12-13 02:00:24 +00:00
|
|
|
func GetInt(v interface{}) int {
|
|
|
|
switch result := v.(type) {
|
|
|
|
case int:
|
|
|
|
return result
|
|
|
|
case int32:
|
|
|
|
return int(result)
|
|
|
|
case int64:
|
|
|
|
return int(result)
|
|
|
|
default:
|
2014-07-10 05:04:18 +00:00
|
|
|
if d := GetString(v); d != "" {
|
|
|
|
value, _ := strconv.Atoi(d)
|
|
|
|
return value
|
2013-12-13 02:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// convert interface to int64.
|
2013-12-13 02:00:24 +00:00
|
|
|
func GetInt64(v interface{}) int64 {
|
|
|
|
switch result := v.(type) {
|
|
|
|
case int:
|
|
|
|
return int64(result)
|
|
|
|
case int32:
|
|
|
|
return int64(result)
|
|
|
|
case int64:
|
|
|
|
return result
|
|
|
|
default:
|
2014-07-10 05:04:18 +00:00
|
|
|
|
|
|
|
if d := GetString(v); d != "" {
|
|
|
|
value, _ := strconv.ParseInt(d, 10, 64)
|
|
|
|
return value
|
2013-12-13 02:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// convert interface to float64.
|
2013-12-13 02:00:24 +00:00
|
|
|
func GetFloat64(v interface{}) float64 {
|
|
|
|
switch result := v.(type) {
|
|
|
|
case float64:
|
|
|
|
return result
|
|
|
|
default:
|
2014-07-10 05:04:18 +00:00
|
|
|
if d := GetString(v); d != "" {
|
|
|
|
value, _ := strconv.ParseFloat(d, 64)
|
|
|
|
return value
|
2013-12-13 02:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// convert interface to bool.
|
2013-12-13 02:00:24 +00:00
|
|
|
func GetBool(v interface{}) bool {
|
|
|
|
switch result := v.(type) {
|
|
|
|
case bool:
|
|
|
|
return result
|
|
|
|
default:
|
2014-07-10 05:04:18 +00:00
|
|
|
if d := GetString(v); d != "" {
|
|
|
|
value, _ := strconv.ParseBool(d)
|
|
|
|
return value
|
2013-12-13 02:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2013-12-22 05:35:02 +00:00
|
|
|
// convert interface to byte slice.
|
2013-12-13 02:00:24 +00:00
|
|
|
func getByteArray(v interface{}) []byte {
|
|
|
|
switch result := v.(type) {
|
|
|
|
case []byte:
|
|
|
|
return result
|
|
|
|
case string:
|
|
|
|
return []byte(result)
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|