1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
use crate::{
join_utils::AliasedJoin,
model_extensions::{AsColumn, AsColumns, AsTable, SelectionResultExt},
ordering::OrderByDefinition,
query_arguments_ext::QueryArgumentsExt,
Context,
};
use itertools::Itertools;
use quaint::ast::*;
use query_structure::*;
#[derive(Debug)]
struct CursorOrderDefinition {
/// Direction of the sort
pub(crate) sort_order: SortOrder,
/// Column on which the top-level ORDER BY is performed
pub(crate) order_column: Expression<'static>,
/// Foreign keys of the relations on which the order is performed
pub(crate) order_fks: Option<Vec<CursorOrderForeignKey>>,
/// Indicates whether the ordering is performed on nullable field(s)
pub(crate) on_nullable_fields: bool,
}
#[derive(Debug)]
struct CursorOrderForeignKey {
field: ScalarFieldRef,
alias: Option<String>,
}
/// Builds a cursor query condition based on the cursor arguments and if necessary a table that the condition depends on.
///
/// An example query for 4 order-by fields (where the last field is one2m relation) is:
///
/// ```sql
/// SELECT `ModelA`.`id`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (
/// (
/// `ModelA`.`fieldA` = (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// AND `ModelA`.`fieldB` = (
/// SELECT `ModelA`.`fieldB`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// AND `ModelA`.`fieldC` = (
/// SELECT `ModelA`.`fieldC`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// AND `orderby_3_ModelB`.`fieldD` <= (
/// SELECT `orderby_3_ModelB`.`fieldD`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// )
/// OR (
/// `ModelA`.`fieldA` = (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// AND `ModelA`.`fieldB` = (
/// SELECT `ModelA`.`fieldB`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// AND `ModelA`.`fieldC` > (
/// SELECT `ModelA`.`fieldC`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// )
/// OR (
/// `ModelA`.`fieldA` = (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// AND `ModelA`.`fieldB` > (
/// SELECT `ModelA`.`fieldB`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// )
/// OR (
/// `ModelA`.`fieldA` < (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// )
/// )
/// ORDER BY `ModelA`.`fieldA` DESC,
/// `ModelA`.`fieldB` ASC,
/// `ModelA`.`fieldC` ASC,
/// `orderby_3_ModelB`.`fieldD` DESC
/// ```
///
/// The above assumes that all field are non-nullable. If a field is nullable, #2 conditions slighty change:
/// ```sql
/// -- ... The first (4 - condition) block:
/// (
/// (
/// `TestModel`.`fieldA` = (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// OR (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// ) IS NULL
/// OR `TestModel`.`fieldA` IS NULL
/// )
/// AND -- ...
/// )
/// -- ...The other blocks (3, 2) in between, then the single condition block:
/// OR (
/// `TestModel`.`fieldA` < (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// OR (
/// SELECT `ModelA`.`fieldA`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// ) IS NULL
/// OR `TestModel`.`fieldA` IS NULL
/// )
/// -- ...
/// ```
/// When the ordering is performed on a nullable _relation_,
/// the conditions change in the same way as above, with the addition that foreign keys are also compared to NULL:
/// ```sql
/// -- ... The first (4 - condition) block:
/// AND (
/// `orderby_3_ModelB`.`id` <= (
/// SELECT `orderby_3_ModelB`.`fieldD`
/// FROM `ModelA`
/// LEFT JOIN `ModelB` AS `orderby_3_ModelB` ON (
/// `ModelA`.`modelB_id` = `orderby_3_ModelB`.`fieldD`
/// )
/// WHERE (`ModelA`.`id`) = (?)
/// )
/// OR `ModelA`.`modelB_id` IS NULL -- >>> Additional check for the nullable foreign key
/// )
/// ```
pub(crate) fn build(
query_arguments: &QueryArguments,
model: &Model,
order_by_defs: &[OrderByDefinition],
ctx: &Context<'_>,
) -> ConditionTree<'static> {
match query_arguments.cursor {
None => ConditionTree::NoCondition,
Some(ref cursor) => {
let cursor_fields: Vec<_> = cursor.as_scalar_fields().expect("Cursor fields contain non-scalars.");
let cursor_values: Vec<_> = cursor.db_values(ctx);
let cursor_columns: Vec<_> = cursor_fields.as_slice().as_columns(ctx).collect();
let cursor_row = Row::from(cursor_columns);
// Invariant: Cursors are unique. This means we can create a subquery to find at most one row
// that contains all the values required for the ordering row comparison (order_subquery).
// That does _not_ mean that this retrieved row has an ordering unique across all records, because
// that can only be true if the orderBy contains a combination of fields that are unique, or a single unique field.
let cursor_condition = cursor_row.clone().equals(cursor_values.clone());
// Orderings for this query. Influences which fields we need to fetch for comparing order fields.
let mut definitions = order_definitions(query_arguments, model, order_by_defs, ctx);
// Subquery to find the value of the order field(s) that we need for comparison.
let order_subquery = Select::from_table(model.as_table(ctx)).so_that(cursor_condition);
let order_subquery = order_by_defs
.iter()
.flat_map(|j| &j.joins)
.fold(order_subquery, |acc, join| acc.join(join.data.clone()));
let len = definitions.len();
let reverse = query_arguments.needs_reversed_order();
// If we only have one ordering, we only want a single, slightly different, condition of (orderField [<= / >=] cmp_field).
let condition_tree = if len == 1 {
let order_definition = definitions.pop().unwrap();
ConditionTree::Single(Box::new(map_orderby_condition(
&order_subquery,
&order_definition,
reverse,
true,
ctx,
)))
} else {
let or_conditions = (0..len).fold(Vec::with_capacity(len), |mut conditions_acc, n| {
let (head, tail) = definitions.split_at(len - n - 1);
let mut and_conditions = Vec::with_capacity(head.len() + 1);
for order_definition in head {
and_conditions.push(map_equality_condition(&order_subquery, order_definition));
}
let order_definition = tail.first().unwrap();
if head.len() == len - 1 {
// Special case where we build lte / gte, not lt / gt.
// - We use the combination of all order-by fields as comparator for the the cursor.
// - This isn't necessarily unique as a combination, i.e. doesn't guarantee stable sort order.
// - Only the first condition, which is done over the full length of the fields, can have the leniency
// of equality, because if _all_ sorting fields up until the last one are identical _and_ the last field is identical,
// then the comparison row has multiple identical records and we need to retrieve those for post-processing later (throwing
// away records up until the cursor ID, but we can't do that in SQL, because we can't assume IDs to be linear).
//
// Example to illustrate the above:
// OrderBy: A ASC | B ASC | C DESC, cursor on 2.
// ID A B C
// 1 2 2 3
// 2 2 2 2 <- cursor
// 3 3 1 4
// 4 5 7 1
//
// The conditions we build to make sure that we only get (2, 2, 2), (3, 1, 4) and (5, 7, 1):
// `(A = 2 AND B = 2 AND C >= 2) OR (A = 2 AND B > 2) OR (A > 2)`
// If we would do `(A = 2 AND B >= 2)` as the middle statement, we suddenly get record with ID 1 a well. However, we can't do
// `(A = 2 AND B = 2 AND C > 2)` either, because then we'd miss out on the cursor row as well as possible duplicates coming after the cursor,
// which also need to be included in the result.
//
// Said differently, we handle all the cases in which the prefixes are equal to len - 1 to account for possible identical comparators,
// but everything else must come strictly "after" the cursor.
and_conditions.push(map_orderby_condition(
&order_subquery,
order_definition,
reverse,
true,
ctx,
));
} else {
and_conditions.push(map_orderby_condition(
&order_subquery,
order_definition,
reverse,
false,
ctx,
));
}
conditions_acc.push(ConditionTree::And(and_conditions));
conditions_acc
});
ConditionTree::Or(or_conditions.into_iter().map(Into::into).collect())
};
condition_tree
}
}
}
// A negative `take` value signifies that values should be taken before the cursor,
// requiring the correct comparison operator to be used to fit the reversed order.
fn map_orderby_condition(
order_subquery: &Select<'static>,
order_definition: &CursorOrderDefinition,
reverse: bool,
include_eq: bool,
ctx: &Context<'_>,
) -> Expression<'static> {
let cmp_column = order_subquery.clone().value(order_definition.order_column.clone());
let cloned_cmp_column = cmp_column.clone();
let order_column = order_definition.order_column.clone();
let cloned_order_column = order_column.clone();
let order_expr: Expression<'static> = match order_definition.sort_order {
// If it's ASC but we want to take from the back, the ORDER BY will be DESC, meaning that comparisons done need to be lt(e).
SortOrder::Ascending if reverse => {
if include_eq {
order_column.less_than_or_equals(cmp_column)
} else {
order_column.less_than(cmp_column)
}
}
// If it's DESC but we want to take from the back, the ORDER BY will be ASC, meaning that comparisons done need to be gt(e).
SortOrder::Descending if reverse => {
if include_eq {
order_column.greater_than_or_equals(cmp_column)
} else {
order_column.greater_than(cmp_column)
}
}
SortOrder::Ascending => {
if include_eq {
order_column.greater_than_or_equals(cmp_column)
} else {
order_column.greater_than(cmp_column)
}
}
SortOrder::Descending => {
if include_eq {
order_column.less_than_or_equals(cmp_column)
} else {
order_column.less_than(cmp_column)
}
}
}
.into();
// If we have null values in the ordering or comparison row, those are automatically included because we can't make a
// statement over their order relative to the cursor.
let order_expr = if order_definition.on_nullable_fields {
order_expr
.or(cloned_order_column.is_null())
.or(Expression::from(cloned_cmp_column).is_null())
.into()
} else {
order_expr
};
// Add OR statements for the foreign key fields too if they are nullable
let order_expr = if let Some(fks) = &order_definition.order_fks {
fks.iter()
.filter(|fk| !fk.field.is_required())
.fold(order_expr, |acc, fk| {
let col = if let Some(alias) = &fk.alias {
Column::from((alias.to_owned(), fk.field.db_name().to_owned()))
} else {
fk.field.as_column(ctx)
}
.is_null();
acc.or(col).into()
})
} else {
order_expr
};
order_expr
}
fn map_equality_condition(
order_subquery: &Select<'static>,
order_definition: &CursorOrderDefinition,
) -> Expression<'static> {
let cmp_column = order_subquery.clone().value(order_definition.order_column.clone());
let order_column = order_definition.order_column.to_owned();
// If we have null values in the ordering or comparison row, those are automatically included because we can't make a
// statement over their order relative to the cursor.
if order_definition.on_nullable_fields {
order_column
.clone()
.equals(cmp_column.clone())
.or(Expression::from(cmp_column).is_null())
.or(order_column.is_null())
.into()
} else {
order_column.equals(cmp_column).into()
}
}
fn order_definitions(
query_arguments: &QueryArguments,
model: &Model,
order_by_defs: &[OrderByDefinition],
ctx: &Context<'_>,
) -> Vec<CursorOrderDefinition> {
if query_arguments.order_by.len() != order_by_defs.len() {
unreachable!("There must be an equal amount of order by definition than there are order bys")
}
if query_arguments.order_by.is_empty() {
return model
.primary_identifier()
.as_scalar_fields()
.expect("Primary identifier has non-scalar fields.")
.into_iter()
.map(|f| CursorOrderDefinition {
sort_order: SortOrder::Ascending,
order_column: f.as_column(ctx).into(),
order_fks: None,
on_nullable_fields: !f.is_required(),
})
.collect();
}
query_arguments
.order_by
.iter()
.enumerate()
.zip(order_by_defs.iter())
.map(|((_, order_by), order_by_def)| match order_by {
OrderBy::Scalar(order_by) => cursor_order_def_scalar(order_by, order_by_def),
OrderBy::ScalarAggregation(order_by) => cursor_order_def_aggregation_scalar(order_by, order_by_def),
OrderBy::ToManyAggregation(order_by) => cursor_order_def_aggregation_rel(order_by, order_by_def),
OrderBy::Relevance(order_by) => cursor_order_def_relevance(order_by, order_by_def),
})
.collect_vec()
}
/// Build a CursorOrderDefinition for an order by scalar
fn cursor_order_def_scalar(order_by: &OrderByScalar, order_by_def: &OrderByDefinition) -> CursorOrderDefinition {
// If there are any ordering hops, this finds the foreign key fields for the _last_ hop (we look for the last one because the ordering is done the last one).
// These fk fields are needed to check whether they are nullable
// cf: part #2 of the SQL query above, when a field is nullable.
let fks = foreign_keys_from_order_path(&order_by.path, &order_by_def.joins);
CursorOrderDefinition {
sort_order: order_by.sort_order,
order_column: order_by_def.order_column.clone(),
order_fks: fks,
on_nullable_fields: !order_by.field.is_required(),
}
}
/// Build a CursorOrderDefinition for an order by aggregation scalar
fn cursor_order_def_aggregation_scalar(
order_by: &OrderByScalarAggregation,
order_by_def: &OrderByDefinition,
) -> CursorOrderDefinition {
let coalesce_exprs: Vec<Expression> = vec![order_by_def.order_column.clone(), Value::int32(0).into()];
// We coalesce the order column to 0 when it's compared to the cmp table since the aggregations joins
// might return NULL on relations that have no connected records
let order_column: Expression = coalesce(coalesce_exprs).into();
CursorOrderDefinition {
sort_order: order_by.sort_order,
order_column: order_column.clone(),
order_fks: None,
on_nullable_fields: false,
}
}
/// Build a CursorOrderDefinition for an order by aggregation on relations
fn cursor_order_def_aggregation_rel(
order_by: &OrderByToManyAggregation,
order_by_def: &OrderByDefinition,
) -> CursorOrderDefinition {
// If there are any ordering hop, this finds the foreign key fields for the _last_ hop (we look for the last one because the ordering is done the last one).
// These fk fields are needed to check whether they are nullable
// cf: part #2 of the SQL query above, when a field is nullable.
let fks = foreign_keys_from_order_path(&order_by.path, &order_by_def.joins);
let coalesce_exprs: Vec<Expression> = vec![order_by_def.order_column.clone(), Value::int32(0).into()];
// We coalesce the order column to 0 when it's compared to the cmp table since the aggregations joins
// might return NULL on relations that have no connected records
let order_column: Expression = coalesce(coalesce_exprs).into();
CursorOrderDefinition {
sort_order: order_by.sort_order,
order_column: order_column.clone(),
order_fks: fks,
on_nullable_fields: false,
}
}
/// Build a CursorOrderDefinition for an order by relevance
fn cursor_order_def_relevance(order_by: &OrderByRelevance, order_by_def: &OrderByDefinition) -> CursorOrderDefinition {
let order_column = &order_by_def.order_column;
CursorOrderDefinition {
sort_order: order_by.sort_order,
order_column: order_column.clone(),
order_fks: None,
on_nullable_fields: false,
}
}
fn foreign_keys_from_order_path(path: &[OrderByHop], joins: &[AliasedJoin]) -> Option<Vec<CursorOrderForeignKey>> {
let (before_last_hop, last_hop) = take_last_two_elem(path);
last_hop.map(|hop| {
match hop {
OrderByHop::Relation(rf) => {
rf.scalar_fields()
.into_iter()
.map(|fk_field| {
// If there are _more than one_ hop, we need to refer to the fk fields using the
// join alias of the hop _before_ the last hop. eg:
//
// ```sql
// SELECT ...
// FROM
// "public"."ModelA"
// LEFT JOIN "public"."ModelB" AS "orderby_0_ModelB" ON (
// "public"."ModelA"."b_id" = "orderby_0_ModelB"."id"
// )
// LEFT JOIN "public"."ModelC" AS "orderby_0_ModelC" ON (
// "orderby_0_ModelB"."c_id" = "orderby_0_ModelC"."id"
// )
// WHERE
// ( ... OR <before_last_join_alias>.<foreign_key_db_name> IS NULL )
// ```
// In the example above, <before_last_join_alias> == "orderby_0_ModelB"
// <foreign_key_db_name> == "c_id"
match before_last_hop {
Some(_) => {
let (before_last_join, _) = take_last_two_elem(joins);
let before_last_join = before_last_join
.expect("There should be an equal amount of order by hops and joins");
CursorOrderForeignKey {
field: fk_field,
alias: Some(before_last_join.alias.to_owned()),
}
}
None => {
// If there is not more than one hop, then there's no need to alias the fk field
CursorOrderForeignKey {
field: fk_field,
alias: None,
}
}
}
})
.collect_vec()
}
OrderByHop::Composite(_) => unreachable!("SQL connectors don't have composite support."),
}
})
}
// Returns (before_last_elem, last_elem)
fn take_last_two_elem<T>(slice: &[T]) -> (Option<&T>, Option<&T>) {
let len = slice.len();
match len {
0 => (None, None),
1 => (None, slice.first()),
_ => (slice.get(len - 2), slice.get(len - 1)),
}
}