45 lines
970 B
Go
45 lines
970 B
Go
// +build !consulent
|
|
|
|
package state
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
func prefixIndexFromQuery(arg interface{}) ([]byte, error) {
|
|
var b indexBuilder
|
|
switch v := arg.(type) {
|
|
case *structs.EnterpriseMeta:
|
|
return nil, nil
|
|
case structs.EnterpriseMeta:
|
|
return nil, nil
|
|
case Query:
|
|
b.String(strings.ToLower(v.Value))
|
|
return b.Bytes(), nil
|
|
}
|
|
|
|
return nil, fmt.Errorf("unexpected type %T for Query prefix index", arg)
|
|
}
|
|
|
|
func prefixIndexFromQueryNoNamespace(arg interface{}) ([]byte, error) {
|
|
return prefixIndexFromQuery(arg)
|
|
}
|
|
|
|
func prefixIndexFromServiceNameAsString(arg interface{}) ([]byte, error) {
|
|
var b indexBuilder
|
|
switch v := arg.(type) {
|
|
case *structs.EnterpriseMeta:
|
|
return nil, nil
|
|
case structs.EnterpriseMeta:
|
|
return nil, nil
|
|
case structs.ServiceName:
|
|
b.String(strings.ToLower(v.String()))
|
|
return b.Bytes(), nil
|
|
}
|
|
|
|
return nil, fmt.Errorf("unexpected type %T for Query prefix index", arg)
|
|
}
|