Files
ent/entc/gen/template/where.tmpl
Ariel Mashraki 619b63d5f7 ent/schema: rename nullable to nillable
Reviewed By: idoshveki

Differential Revision: D16687892

fbshipit-source-id: e8cfaaf1241e94c2de0a9fe9077326339d593716
2019-08-07 06:56:33 -07:00

132 lines
4.6 KiB
Cheetah

{{ define "where" }}
{{- with extend $ "Package" $.Package -}}
{{ template "header" . }}
{{ end }}
{{ template "import" $ }}
// ID filters vertices based on their identifier.
func ID(id {{ $.ID.Type }}) predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{ $tmpl := printf "dialect/%s/predicate/id" $storage }}
{{- xtemplate $tmpl $ }},
{{ end -}}
)
}
{{ range $_, $op := ops $.ID }}
{{ $arg := "id" }}{{ if $op.Variadic }}{{ $arg = "ids" }}{{ end }}
{{ $func := printf "ID%s" $op.Name }}
// {{ $func }} applies the {{ $op.Name }} predicate on the ID field.
func {{ $func }}({{ $arg }} {{ if $op.Variadic }}...{{ end }}{{ $.ID.Type }}) predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{- with extend $ "Arg" $arg "Op" $op "Storage" $storage -}}
{{ $tmpl := printf "dialect/%s/predicate/id/ops" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
{{ end -}}
)
}
{{ end }}
{{ range $_, $f := $.Fields }}
{{ $func := pascal $f.Name }}
// {{ $func }} applies equality check predicate on the {{ quote $f.Name }} field. It's identical to {{ $func }}EQ.
func {{ $func }}(v {{ $f.Type }}) predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{- with extend $ "Field" $f -}}
{{ $tmpl := printf "dialect/%s/predicate/field" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
{{ end -}}
)
}
{{ end }}
{{ range $_, $f := $.Fields }}
{{ range $_, $op := (ops $f) }}
{{ $arg := "v" }}{{ if $op.Variadic }}{{ $arg = "vs" }}{{ end }}
{{ $func := print (pascal $f.Name) ($op.Name) }}
// {{ $func }} applies the {{ $op.Name }} predicate on the {{ quote $f.Name }} field.
func {{ $func }}({{ if not $op.Niladic }}{{ $arg }} {{ if $op.Variadic }}...{{ end }}{{ $f.Type }}{{ end }}) predicate.{{ $.Name }} {
{{- if $op.Variadic }}
v := make([]interface{}, len({{ $arg }}))
for i := range v {
v[i] = {{ $arg }}[i]
}
{{- end }}
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{- with extend $ "Arg" $arg "Field" $f "Op" $op "Storage" $storage -}}
{{ $tmpl := printf "dialect/%s/predicate/field/ops" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
{{ end -}}
)
}
{{ end }}
{{ end }}
{{ range $_, $e := $.Edges }}
{{ $func := pascal $e.Name | printf "Has%s" }}
// {{ $func }} applies the HasEdge predicate on the {{ quote $e.Name }} edge.
func {{ $func }}() predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{- with extend $ "Edge" $e -}}
{{ $tmpl := printf "dialect/%s/predicate/edge/has" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
{{ end -}}
)
}
{{ $func = printf "%sWith" $func }}
// {{ $func }} applies the HasEdge predicate on the {{ quote $e.Name }} edge with a given conditions (other predicates).
func {{ $func }}(preds ...predicate.{{ $e.Type.Name }}) predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{- with extend $ "Edge" $e -}}
{{ $tmpl := printf "dialect/%s/predicate/edge/haswith" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
{{ end -}}
)
}
{{ end }}
// And groups list of predicates with the AND operator between them.
func And(predicates ...predicate.{{ $.Name }}) predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{ $tmpl := printf "dialect/%s/predicate/and" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
)
}
// Or groups list of predicates with the OR operator between them.
func Or(predicates ...predicate.{{ $.Name }}) predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{ $tmpl := printf "dialect/%s/predicate/or" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
)
}
// Not applies the not operator on the given predicate.
func Not(p predicate.{{ $.Name }}) predicate.{{ $.Name }} {
return predicate.{{ $.Name }}{{ if gt (len $.Storage) 1 }}PerDialect{{ end }}(
{{ range $_, $storage := $.Storage -}}
{{ $tmpl := printf "dialect/%s/predicate/not" $storage }}
{{- xtemplate $tmpl . }},
{{ end -}}
)
}
{{ end }}