vendor dependencies with dep

This commit is contained in:
dhax 2017-09-25 20:20:52 +02:00
parent 93d8310491
commit 1384296a47
2712 changed files with 965742 additions and 0 deletions

122
vendor/github.com/go-pg/pg/orm/zero.go generated vendored Normal file
View file

@ -0,0 +1,122 @@
package orm
import (
"database/sql/driver"
"reflect"
"github.com/go-pg/pg/types"
)
var driverValuerType = reflect.TypeOf((*driver.Valuer)(nil)).Elem()
var appenderType = reflect.TypeOf((*types.ValueAppender)(nil)).Elem()
var isZeroerType = reflect.TypeOf((*isZeroer)(nil)).Elem()
type isZeroer interface {
IsZero() bool
}
func isZeroFunc(typ reflect.Type) func(reflect.Value) bool {
if typ.Implements(isZeroerType) {
return isZero
}
switch typ.Kind() {
case reflect.Array:
if typ.Elem().Kind() == reflect.Uint8 {
return isZeroBytes
}
return isZeroLen
case reflect.Map, reflect.Slice, reflect.String:
return isZeroLen
case reflect.Bool:
return isZeroBool
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return isZeroInt
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return isZeroUint
case reflect.Float32, reflect.Float64:
return isZeroFloat
case reflect.Interface, reflect.Ptr:
return isZeroNil
}
if typ.Implements(appenderType) {
return isZeroAppenderValue
}
if typ.Implements(driverValuerType) {
return isZeroDriverValue
}
return isZeroFalse
}
func isZero(v reflect.Value) bool {
if v.Kind() == reflect.Ptr {
return v.IsNil()
}
return v.Interface().(isZeroer).IsZero()
}
func isZeroAppenderValue(v reflect.Value) bool {
if v.Kind() == reflect.Ptr {
return v.IsNil()
}
appender := v.Interface().(types.ValueAppender)
value, err := appender.AppendValue(nil, 0)
if err != nil {
return false
}
return value == nil
}
func isZeroDriverValue(v reflect.Value) bool {
if v.Kind() == reflect.Ptr {
return v.IsNil()
}
valuer := v.Interface().(driver.Valuer)
value, err := valuer.Value()
if err != nil {
return false
}
return value == nil
}
func isZeroLen(v reflect.Value) bool {
return v.Len() == 0
}
func isZeroNil(v reflect.Value) bool {
return v.IsNil()
}
func isZeroBool(v reflect.Value) bool {
return !v.Bool()
}
func isZeroInt(v reflect.Value) bool {
return v.Int() == 0
}
func isZeroUint(v reflect.Value) bool {
return v.Uint() == 0
}
func isZeroFloat(v reflect.Value) bool {
return v.Float() == 0
}
func isZeroBytes(v reflect.Value) bool {
b := v.Slice(0, v.Len()).Bytes()
for _, c := range b {
if c != 0 {
return false
}
}
return true
}
func isZeroFalse(v reflect.Value) bool {
return false
}