mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 09:44:59 +00:00
61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
package conf
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"reflect"
|
|
"strings"
|
|
)
|
|
|
|
var optionalGlobalValuesType = func() reflect.Type {
|
|
var fields []reflect.StructField
|
|
rt := reflect.TypeOf(Conf{})
|
|
nf := rt.NumField()
|
|
|
|
for i := 0; i < nf; i++ {
|
|
f := rt.Field(i)
|
|
j := f.Tag.Get("json")
|
|
|
|
if j != "-" && j != "pathDefaults" && j != "paths" {
|
|
if !strings.Contains(j, ",omitempty") {
|
|
j += ",omitempty"
|
|
}
|
|
|
|
typ := f.Type
|
|
if typ.Kind() != reflect.Pointer {
|
|
typ = reflect.PtrTo(typ)
|
|
}
|
|
|
|
fields = append(fields, reflect.StructField{
|
|
Name: f.Name,
|
|
Type: typ,
|
|
Tag: reflect.StructTag(`json:"` + j + `"`),
|
|
})
|
|
}
|
|
}
|
|
|
|
return reflect.StructOf(fields)
|
|
}()
|
|
|
|
func newOptionalGlobalValues() interface{} {
|
|
return reflect.New(optionalGlobalValuesType).Interface()
|
|
}
|
|
|
|
// OptionalGlobal is a Conf whose values can all be optional.
|
|
type OptionalGlobal struct {
|
|
Values interface{}
|
|
}
|
|
|
|
// UnmarshalJSON implements json.Unmarshaler.
|
|
func (p *OptionalGlobal) UnmarshalJSON(b []byte) error {
|
|
p.Values = newOptionalGlobalValues()
|
|
d := json.NewDecoder(bytes.NewReader(b))
|
|
d.DisallowUnknownFields()
|
|
return d.Decode(p.Values)
|
|
}
|
|
|
|
// MarshalJSON implements json.Marshaler.
|
|
func (p *OptionalGlobal) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(p.Values)
|
|
}
|