-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.go
82 lines (73 loc) · 2.25 KB
/
util.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright 2022 Alexandre Dutra
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package goalesce
import (
"fmt"
"reflect"
)
// zero returns the zero-value of type T.
func zero[T any]() (z T) {
return z
}
// cast converts v to a value of type T, or returns an error if v is not of type T.
func cast[T any](v reflect.Value) (T, error) {
itf, ok := v.Interface().(T)
if !ok {
// this should never happen since we check types before calling this function,
// but we check anyway to be safe
return itf, fmt.Errorf("cannot convert %s to %T", v.Type(), itf)
}
return itf, nil
}
// safeIndirect is a variant of reflect.Indirect that returns a zero-value if the value is a nil
// pointer. Because of that, this function never returns an invalid value.
func safeIndirect(v reflect.Value) reflect.Value {
indirect := reflect.Indirect(v)
if !indirect.IsValid() {
// nil pointer: return zero-value
indirect = reflect.Zero(v.Type().Elem())
}
return indirect
}
func indirect(t reflect.Type) reflect.Type {
if t.Kind() == reflect.Ptr {
t = t.Elem()
}
return t
}
func checkZero(v1, v2 reflect.Value) (reflect.Value, bool) {
if v1.IsZero() {
return v2, true
} else if v2.IsZero() {
return v1, true
}
return reflect.Value{}, false
}
func checkTypesMatch(v1, v2 reflect.Type) error {
if v1 != v2 {
return fmt.Errorf("types do not match: %s != %s", v1.String(), v2.String())
}
return nil
}
func checkCustomResult(result reflect.Value, err error, expectedType reflect.Type) (bool, reflect.Value, error) {
if err != nil {
return true, reflect.Value{}, err
} else if result.IsValid() {
if err := checkTypesMatch(result.Type(), expectedType); err != nil {
return true, reflect.Value{}, err
}
return true, result, nil
}
return false, reflect.Value{}, nil
}