2016-03-25 20:22:29 +00:00
|
|
|
// Copyright (C) 2016 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2016-03-25 20:22:29 +00:00
|
|
|
|
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
2019-11-21 07:41:15 +00:00
|
|
|
"context"
|
2017-12-07 07:08:24 +00:00
|
|
|
"fmt"
|
2016-03-25 20:22:29 +00:00
|
|
|
"net/url"
|
|
|
|
"reflect"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2020-06-18 08:55:41 +00:00
|
|
|
"time"
|
2016-03-25 20:22:29 +00:00
|
|
|
)
|
|
|
|
|
2019-02-12 06:58:24 +00:00
|
|
|
type defaultParser interface {
|
|
|
|
ParseDefault(string) error
|
|
|
|
}
|
|
|
|
|
2016-03-25 20:22:29 +00:00
|
|
|
// SetDefaults sets default values on a struct, based on the default annotation.
|
2019-02-12 06:58:24 +00:00
|
|
|
func SetDefaults(data interface{}) {
|
2016-03-25 20:22:29 +00:00
|
|
|
s := reflect.ValueOf(data).Elem()
|
|
|
|
t := s.Type()
|
|
|
|
|
|
|
|
for i := 0; i < s.NumField(); i++ {
|
|
|
|
f := s.Field(i)
|
|
|
|
tag := t.Field(i).Tag
|
|
|
|
|
|
|
|
v := tag.Get("default")
|
|
|
|
if len(v) > 0 {
|
2019-02-12 06:58:24 +00:00
|
|
|
if f.CanInterface() {
|
|
|
|
if parser, ok := f.Interface().(defaultParser); ok {
|
|
|
|
if err := parser.ParseDefault(v); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if f.CanAddr() && f.Addr().CanInterface() {
|
|
|
|
if parser, ok := f.Addr().Interface().(defaultParser); ok {
|
|
|
|
if err := parser.ParseDefault(v); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
continue
|
2017-02-06 10:27:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 20:22:29 +00:00
|
|
|
switch f.Interface().(type) {
|
|
|
|
case string:
|
|
|
|
f.SetString(v)
|
|
|
|
|
2020-08-25 06:11:14 +00:00
|
|
|
case int, uint32, int32, int64, uint64:
|
2016-03-25 20:22:29 +00:00
|
|
|
i, err := strconv.ParseInt(v, 10, 64)
|
|
|
|
if err != nil {
|
2019-02-12 06:58:24 +00:00
|
|
|
panic(err)
|
2016-03-25 20:22:29 +00:00
|
|
|
}
|
|
|
|
f.SetInt(i)
|
|
|
|
|
2020-08-25 06:11:14 +00:00
|
|
|
case float64, float32:
|
2016-03-25 20:22:29 +00:00
|
|
|
i, err := strconv.ParseFloat(v, 64)
|
|
|
|
if err != nil {
|
2019-02-12 06:58:24 +00:00
|
|
|
panic(err)
|
2016-03-25 20:22:29 +00:00
|
|
|
}
|
|
|
|
f.SetFloat(i)
|
|
|
|
|
|
|
|
case bool:
|
|
|
|
f.SetBool(v == "true")
|
|
|
|
|
|
|
|
case []string:
|
|
|
|
// We don't do anything with string slices here. Any default
|
|
|
|
// we set will be appended to by the XML decoder, so we fill
|
|
|
|
// those after decoding.
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic(f.Type())
|
|
|
|
}
|
2020-11-20 13:21:54 +00:00
|
|
|
} else if f.CanSet() && f.Kind() == reflect.Struct && f.CanAddr() {
|
|
|
|
if addr := f.Addr(); addr.CanInterface() {
|
|
|
|
SetDefaults(addr.Interface())
|
|
|
|
}
|
2016-03-25 20:22:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-07 07:08:24 +00:00
|
|
|
// CopyMatchingTag copies fields tagged tag:"value" from "from" struct onto "to" struct.
|
|
|
|
func CopyMatchingTag(from interface{}, to interface{}, tag string, shouldCopy func(value string) bool) {
|
|
|
|
fromStruct := reflect.ValueOf(from).Elem()
|
|
|
|
fromType := fromStruct.Type()
|
|
|
|
|
|
|
|
toStruct := reflect.ValueOf(to).Elem()
|
|
|
|
toType := toStruct.Type()
|
|
|
|
|
|
|
|
if fromType != toType {
|
|
|
|
panic(fmt.Sprintf("non equal types: %s != %s", fromType, toType))
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < toStruct.NumField(); i++ {
|
|
|
|
fromField := fromStruct.Field(i)
|
|
|
|
toField := toStruct.Field(i)
|
|
|
|
|
2017-12-07 08:33:32 +00:00
|
|
|
if !toField.CanSet() {
|
|
|
|
// Unexported fields
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-12-07 07:08:24 +00:00
|
|
|
structTag := toType.Field(i).Tag
|
|
|
|
|
|
|
|
v := structTag.Get(tag)
|
|
|
|
if shouldCopy(v) {
|
|
|
|
toField.Set(fromField)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-16 16:39:15 +00:00
|
|
|
// UniqueTrimmedStrings returns a list of all unique strings in ss,
|
|
|
|
// in the order in which they first appear in ss, after trimming away
|
|
|
|
// leading and trailing spaces.
|
2019-05-29 07:56:40 +00:00
|
|
|
func UniqueTrimmedStrings(ss []string) []string {
|
|
|
|
var m = make(map[string]struct{}, len(ss))
|
|
|
|
var us = make([]string, 0, len(ss))
|
|
|
|
for _, v := range ss {
|
2021-01-16 16:39:15 +00:00
|
|
|
v = strings.Trim(v, " ")
|
2019-05-29 07:56:40 +00:00
|
|
|
if _, ok := m[v]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
m[v] = struct{}{}
|
|
|
|
us = append(us, v)
|
2016-03-25 20:22:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return us
|
|
|
|
}
|
|
|
|
|
2020-11-20 13:21:54 +00:00
|
|
|
func FillNilExceptDeprecated(data interface{}) {
|
|
|
|
fillNil(data, true)
|
|
|
|
}
|
|
|
|
|
2020-06-28 18:35:22 +00:00
|
|
|
func FillNil(data interface{}) {
|
2020-11-20 13:21:54 +00:00
|
|
|
fillNil(data, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func fillNil(data interface{}, skipDeprecated bool) {
|
2020-06-28 18:35:22 +00:00
|
|
|
s := reflect.ValueOf(data).Elem()
|
2020-11-20 13:21:54 +00:00
|
|
|
t := s.Type()
|
2020-06-28 18:35:22 +00:00
|
|
|
for i := 0; i < s.NumField(); i++ {
|
2020-11-20 13:21:54 +00:00
|
|
|
if skipDeprecated && strings.HasPrefix(t.Field(i).Name, "Deprecated") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-06-28 18:35:22 +00:00
|
|
|
f := s.Field(i)
|
|
|
|
|
|
|
|
for f.Kind() == reflect.Ptr && f.IsZero() && f.CanSet() {
|
|
|
|
newValue := reflect.New(f.Type().Elem())
|
|
|
|
f.Set(newValue)
|
|
|
|
f = f.Elem()
|
|
|
|
}
|
|
|
|
|
|
|
|
if f.CanSet() {
|
|
|
|
if f.IsZero() {
|
|
|
|
switch f.Kind() {
|
|
|
|
case reflect.Map:
|
|
|
|
f.Set(reflect.MakeMap(f.Type()))
|
|
|
|
case reflect.Slice:
|
|
|
|
f.Set(reflect.MakeSlice(f.Type(), 0, 0))
|
|
|
|
case reflect.Chan:
|
|
|
|
f.Set(reflect.MakeChan(f.Type(), 0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-20 13:21:54 +00:00
|
|
|
switch f.Kind() {
|
|
|
|
case reflect.Slice:
|
|
|
|
if f.Type().Elem().Kind() != reflect.Struct {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for i := 0; i < f.Len(); i++ {
|
|
|
|
fillNil(f.Index(i).Addr().Interface(), skipDeprecated)
|
|
|
|
}
|
|
|
|
case reflect.Struct:
|
|
|
|
if f.CanAddr() {
|
|
|
|
if addr := f.Addr(); addr.CanInterface() {
|
|
|
|
fillNil(addr.Interface(), skipDeprecated)
|
|
|
|
}
|
2020-06-28 18:35:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 20:22:29 +00:00
|
|
|
// FillNilSlices sets default value on slices that are still nil.
|
|
|
|
func FillNilSlices(data interface{}) error {
|
|
|
|
s := reflect.ValueOf(data).Elem()
|
|
|
|
t := s.Type()
|
|
|
|
|
|
|
|
for i := 0; i < s.NumField(); i++ {
|
|
|
|
f := s.Field(i)
|
|
|
|
tag := t.Field(i).Tag
|
|
|
|
|
|
|
|
v := tag.Get("default")
|
|
|
|
if len(v) > 0 {
|
|
|
|
switch f.Interface().(type) {
|
|
|
|
case []string:
|
|
|
|
if f.IsNil() {
|
|
|
|
// Treat the default as a comma separated slice
|
|
|
|
vs := strings.Split(v, ",")
|
|
|
|
for i := range vs {
|
|
|
|
vs[i] = strings.TrimSpace(vs[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
rv := reflect.MakeSlice(reflect.TypeOf([]string{}), len(vs), len(vs))
|
|
|
|
for i, v := range vs {
|
|
|
|
rv.Index(i).SetString(v)
|
|
|
|
}
|
|
|
|
f.Set(rv)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Address constructs a URL from the given network and hostname.
|
|
|
|
func Address(network, host string) string {
|
|
|
|
u := url.URL{
|
|
|
|
Scheme: network,
|
|
|
|
Host: host,
|
|
|
|
}
|
|
|
|
return u.String()
|
|
|
|
}
|
2019-07-09 09:40:30 +00:00
|
|
|
|
2020-02-24 20:57:15 +00:00
|
|
|
func CallWithContext(ctx context.Context, fn func() error) error {
|
|
|
|
var err error
|
|
|
|
done := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
err = fn()
|
|
|
|
close(done)
|
|
|
|
}()
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
return err
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
}
|
|
|
|
}
|
2020-06-18 08:55:41 +00:00
|
|
|
|
|
|
|
func NiceDurationString(d time.Duration) string {
|
|
|
|
switch {
|
|
|
|
case d > 24*time.Hour:
|
|
|
|
d = d.Round(time.Hour)
|
|
|
|
case d > time.Hour:
|
|
|
|
d = d.Round(time.Minute)
|
|
|
|
case d > time.Minute:
|
|
|
|
d = d.Round(time.Second)
|
|
|
|
case d > time.Second:
|
|
|
|
d = d.Round(time.Millisecond)
|
|
|
|
case d > time.Millisecond:
|
|
|
|
d = d.Round(time.Microsecond)
|
|
|
|
}
|
|
|
|
return d.String()
|
|
|
|
}
|
2021-04-26 20:13:59 +00:00
|
|
|
|
|
|
|
func EqualStrings(a, b []string) bool {
|
|
|
|
if len(a) != len(b) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for i := range a {
|
|
|
|
if a[i] != b[i] {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|