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 83 84 85
|
package utils
import (
"reflect"
"github.com/pkg/errors"
)
// MustMergeTags is same as MergeTags but panics if there is an error.
func MustMergeTags(obj interface{}, tags []string) {
err := MergeTags(obj, tags)
if err != nil {
panic(err)
}
}
// MergeTags merges Tags in the object with tags.
func MergeTags(obj interface{}, tags []string) error {
if len(tags) == 0 {
return nil
}
ptr := reflect.ValueOf(obj)
if ptr.Kind() != reflect.Ptr {
return errors.New("obj is not a pointer")
}
v := reflect.Indirect(ptr)
structTags := v.FieldByName("Tags")
var zero reflect.Value
if structTags == zero {
return nil
}
m := make(map[string]bool)
for i := 0; i < structTags.Len(); i++ {
tag := reflect.Indirect(structTags.Index(i)).String()
m[tag] = true
}
for _, tag := range tags {
if _, ok := m[tag]; !ok {
t := tag
structTags.Set(reflect.Append(structTags, reflect.ValueOf(&t)))
}
}
return nil
}
// MustRemoveTags is same as RemoveTags but panics if there is an error.
func MustRemoveTags(obj interface{}, tags []string) {
err := RemoveTags(obj, tags)
if err != nil {
panic(err)
}
}
// RemoveTags removes tags from the Tags in obj.
func RemoveTags(obj interface{}, tags []string) error {
if len(tags) == 0 {
return nil
}
m := make(map[string]bool)
for _, tag := range tags {
m[tag] = true
}
ptr := reflect.ValueOf(obj)
if ptr.Kind() != reflect.Ptr {
return errors.New("obj is not a pointer")
}
v := reflect.Indirect(ptr)
structTags := v.FieldByName("Tags")
var zero reflect.Value
if structTags == zero {
return nil
}
res := reflect.MakeSlice(reflect.SliceOf(reflect.PtrTo(reflect.TypeOf(""))), 0, 0)
for i := 0; i < structTags.Len(); i++ {
tag := reflect.Indirect(structTags.Index(i)).String()
if !m[tag] {
res = reflect.Append(res, structTags.Index(i))
}
}
structTags.Set(res)
return nil
}
|