dialect/sql: add hasneighborswith for predicates

Summary: Pull Request resolved: https://github.com/facebookincubator/ent/pull/185

Reviewed By: alexsn

Differential Revision: D18661688

fbshipit-source-id: 4c60fa5e81372f10bfecf4f166b048784bc515ee
This commit is contained in:
Ariel Mashraki
2019-11-24 05:46:40 -08:00
committed by Facebook Github Bot
parent 0fc310e600
commit 7fb6238d18
2 changed files with 110 additions and 2 deletions

View File

@@ -176,3 +176,39 @@ func HasNeighbors(q *Selector, s *Step) {
)
}
}
// HasNeighborsWith applies on the given Selector a neighbors check.
// The given predicate applies its filtering on the selector.
func HasNeighborsWith(q *Selector, s *Step, pred func(*Selector)) {
builder := Dialect(q.dialect)
switch r := s.Edge.Rel; {
case r == M2M:
pk1, pk2 := s.Edge.Columns[1], s.Edge.Columns[0]
if s.Edge.Inverse {
pk1, pk2 = pk2, pk1
}
from := q.Table()
to := builder.Table(s.To.Table)
join := builder.Table(s.Edge.Table)
matches := builder.Select(join.C(pk2)).
From(join).
Join(to).
On(join.C(pk1), to.C(s.To.Column))
pred(matches)
q.Where(In(from.C(s.From.Column), matches))
case r == M2O || (r == O2O && s.Edge.Inverse):
from := q.Table()
to := builder.Table(s.To.Table)
matches := builder.Select(to.C(s.To.Column)).
From(to)
pred(matches)
q.Where(In(from.C(s.From.Column), matches))
case r == O2M || (r == O2O && !s.Edge.Inverse):
from := q.Table()
to := builder.Table(s.Edge.Table)
matches := builder.Select(to.C(s.Edge.Columns[0])).
From(to)
pred(matches)
q.Where(In(from.C(s.From.Column), matches))
}
}