mirror of
https://github.com/pion/mediadevices.git
synced 2025-09-26 20:41:46 +08:00
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package prop
|
|
|
|
import (
|
|
"fmt"
|
|
"slices"
|
|
"strings"
|
|
)
|
|
|
|
// StringConstraint is an interface to represent string constraint.
|
|
type StringConstraint interface {
|
|
Compare(string) (float64, bool)
|
|
Value() (string, bool)
|
|
}
|
|
|
|
// String specifies expected string.
|
|
// Any value may be selected, but matched value takes priority.
|
|
type String string
|
|
|
|
// Compare implements StringConstraint.
|
|
func (f String) Compare(a string) (float64, bool) {
|
|
if string(f) == a {
|
|
return 0.0, true
|
|
}
|
|
return 1.0, true
|
|
}
|
|
|
|
// Value implements StringConstraint.
|
|
func (f String) Value() (string, bool) { return string(f), true }
|
|
|
|
// String implements Stringify
|
|
func (f String) String() string {
|
|
return fmt.Sprintf("%s (ideal)", string(f))
|
|
}
|
|
|
|
// StringExact specifies exact string.
|
|
type StringExact string
|
|
|
|
// Compare implements StringConstraint.
|
|
func (f StringExact) Compare(a string) (float64, bool) {
|
|
if string(f) == a {
|
|
return 0.0, true
|
|
}
|
|
return 1.0, false
|
|
}
|
|
|
|
// Value implements StringConstraint.
|
|
func (f StringExact) Value() (string, bool) { return string(f), true }
|
|
|
|
// String implements Stringify
|
|
func (f StringExact) String() string {
|
|
return fmt.Sprintf("%s (exact)", string(f))
|
|
}
|
|
|
|
// StringOneOf specifies list of expected string.
|
|
type StringOneOf []string
|
|
|
|
// Compare implements StringConstraint.
|
|
func (f StringOneOf) Compare(a string) (float64, bool) {
|
|
if slices.Contains(f, a) {
|
|
return 0.0, true
|
|
}
|
|
return 1.0, false
|
|
}
|
|
|
|
// Value implements StringConstraint.
|
|
func (StringOneOf) Value() (string, bool) { return "", false }
|
|
|
|
// String implements Stringify
|
|
func (f StringOneOf) String() string {
|
|
return fmt.Sprintf("%s (one of values)", strings.Join([]string(f), ","))
|
|
}
|