risingwave_frontend/optimizer/property/cardinality.rs
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
// Copyright 2024 RisingWave Labs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::cmp::{max, min, Ordering};
use std::ops::{Add, Mul, RangeFrom, RangeInclusive, Sub};
use risingwave_pb::plan_common::PbCardinality;
/// The upper bound of the [`Cardinality`].
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum Hi {
Limited(usize),
Unlimited,
}
impl PartialOrd for Hi {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for Hi {
fn cmp(&self, other: &Self) -> Ordering {
match (self, other) {
(Self::Unlimited, Self::Unlimited) => Ordering::Equal,
(Self::Unlimited, Self::Limited(_)) => Ordering::Greater,
(Self::Limited(_), Self::Unlimited) => Ordering::Less,
(Self::Limited(lhs), Self::Limited(rhs)) => lhs.cmp(rhs),
}
}
}
impl From<Option<usize>> for Hi {
fn from(value: Option<usize>) -> Self {
value.map_or(Self::Unlimited, Self::Limited)
}
}
impl From<usize> for Hi {
fn from(value: usize) -> Self {
Self::Limited(value)
}
}
/// The cardinality of the output rows of a plan node. Bounds are inclusive.
///
/// The default value is `0..`, i.e. the number of rows is unknown.
// TODO: Make this the property of each plan node.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub struct Cardinality {
lo: usize,
hi: Hi,
}
impl Default for Cardinality {
fn default() -> Self {
Self::unknown()
}
}
impl std::fmt::Display for Cardinality {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self.hi {
Hi::Limited(hi) => write!(f, "{}..={}", self.lo, hi),
Hi::Unlimited => write!(f, "{}..", self.lo),
}
}
}
impl From<RangeInclusive<usize>> for Cardinality {
/// Converts an inclusive range to a [`Cardinality`].
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card = Cardinality::from(0..=10);
/// assert_eq!(card.lo(), 0);
/// assert_eq!(card.hi(), Some(10));
/// ```
fn from(value: RangeInclusive<usize>) -> Self {
Self::new(*value.start(), *value.end())
}
}
impl From<RangeFrom<usize>> for Cardinality {
/// Converts a range with unlimited upper bound to a [`Cardinality`].
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card = Cardinality::from(10..);
/// assert_eq!(card.lo(), 10);
/// assert_eq!(card.hi(), None);
/// ```
fn from(value: RangeFrom<usize>) -> Self {
Self::new(value.start, Hi::Unlimited)
}
}
impl From<usize> for Cardinality {
/// Converts a single value to a [`Cardinality`] with the same lower and upper bounds, i.e. the
/// value is exact.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card = Cardinality::from(10);
/// assert_eq!(card.lo(), 10);
/// assert_eq!(card.hi(), Some(10));
/// ```
fn from(value: usize) -> Self {
Self::new(value, Hi::Limited(value))
}
}
impl Cardinality {
/// Creates a new [`Cardinality`] of `0..`, i.e. the number of rows is unknown.
pub const fn unknown() -> Self {
Self {
lo: 0,
hi: Hi::Unlimited,
}
}
/// Creates a new [`Cardinality`] with the given lower and upper bounds.
pub fn new(lo: usize, hi: impl Into<Hi>) -> Self {
let hi: Hi = hi.into();
debug_assert!(hi >= Hi::from(lo));
Self { lo, hi }
}
/// Returns the lower bound of the cardinality.
pub fn lo(self) -> usize {
self.lo
}
/// Returns the upper bound of the cardinality, `None` if the upper bound is unlimited.
pub fn hi(self) -> Option<usize> {
match self.hi {
Hi::Limited(hi) => Some(hi),
Hi::Unlimited => None,
}
}
/// Returns the minimum of the two cardinalities, where the lower and upper bounds are
/// respectively the minimum of the lower and upper bounds of the two cardinalities.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card1 = Cardinality::from(3..);
/// let card2 = Cardinality::from(5..=8);
/// let card3 = Cardinality::from(3..=8);
/// assert_eq!(card1.min(card2), card3);
///
/// // Limit both the lower and upper bounds to a single value, a.k.a. "limit_to".
/// let card1 = Cardinality::from(3..=10);
/// let card2 = Cardinality::from(5);
/// let card3 = Cardinality::from(3..=5);
/// assert_eq!(card1.min(card2), card3);
///
/// // Limit the lower bound to a value, a.k.a. "as_low_as".
/// let card1 = Cardinality::from(3..=10);
/// let card2 = Cardinality::from(1..);
/// let card3 = Cardinality::from(1..=10);
/// assert_eq!(card1.min(card2), card3);
/// ```
pub fn min(self, rhs: impl Into<Self>) -> Self {
let rhs: Self = rhs.into();
Self::new(min(self.lo(), rhs.lo()), min(self.hi, rhs.hi))
}
/// Returns the maximum of the two cardinalities, where the lower and upper bounds are
/// respectively the maximum of the lower and upper bounds of the two cardinalities.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card1 = Cardinality::from(3..);
/// let card2 = Cardinality::from(5..=8);
/// let card3 = Cardinality::from(5..);
/// assert_eq!(card1.max(card2), card3);
/// ```
pub fn max(self, rhs: impl Into<Self>) -> Self {
let rhs: Self = rhs.into();
Self::new(max(self.lo(), rhs.lo()), max(self.hi, rhs.hi))
}
}
impl<T: Into<Cardinality>> Add<T> for Cardinality {
type Output = Self;
/// Returns the sum of the two cardinalities, where the lower and upper bounds are
/// respectively the sum of the lower and upper bounds of the two cardinalities.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card1 = Cardinality::from(3..=5);
/// let card2 = Cardinality::from(5..=10);
/// let card3 = Cardinality::from(8..=15);
/// assert_eq!(card1 + card2, card3);
///
/// let card1 = Cardinality::from(3..);
/// let card2 = Cardinality::from(5..=10);
/// let card3 = Cardinality::from(8..);
/// assert_eq!(card1 + card2, card3);
/// ```
fn add(self, rhs: T) -> Self::Output {
let rhs: Self = rhs.into();
let lo = self.lo().saturating_add(rhs.lo());
let hi = if let (Some(lhs), Some(rhs)) = (self.hi(), rhs.hi()) {
lhs.checked_add(rhs)
} else {
None
};
Self::new(lo, hi)
}
}
impl Sub<usize> for Cardinality {
type Output = Self;
/// Returns the cardinality with both lower and upper bounds subtracted by `rhs`.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card = Cardinality::from(3..=5);
/// assert_eq!(card - 2, Cardinality::from(1..=3));
/// assert_eq!(card - 4, Cardinality::from(0..=1));
/// assert_eq!(card - 6, Cardinality::from(0));
///
/// let card = Cardinality::from(3..);
/// assert_eq!(card - 2, Cardinality::from(1..));
/// assert_eq!(card - 4, Cardinality::from(0..));
/// ```
fn sub(self, rhs: usize) -> Self::Output {
let lo = self.lo().saturating_sub(rhs);
let hi = self.hi().map(|hi| hi.saturating_sub(rhs));
Self::new(lo, hi)
}
}
impl<T: Into<Cardinality>> Mul<T> for Cardinality {
type Output = Self;
/// Returns the product of the two cardinalities, where the lower and upper bounds are
/// respectively the product of the lower and upper bounds of the two cardinalities.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card1 = Cardinality::from(2..=4);
/// let card2 = Cardinality::from(3..=5);
/// let card3 = Cardinality::from(6..=20);
/// assert_eq!(card1 * card2, card3);
///
/// let card1 = Cardinality::from(2..);
/// let card2 = Cardinality::from(3..=5);
/// let card3 = Cardinality::from(6..);
/// assert_eq!(card1 * card2, card3);
///
/// let card1 = Cardinality::from((usize::MAX - 1)..=(usize::MAX));
/// let card2 = Cardinality::from(3..=5);
/// let card3 = Cardinality::from((usize::MAX)..);
/// assert_eq!(card1 * card2, card3);
///
/// // Or directly with a scalar.
/// let card = Cardinality::from(3..=5);
/// assert_eq!(card * 2, Cardinality::from(6..=10));
///
/// let card = Cardinality::from(3..);
/// assert_eq!(card * 2, Cardinality::from(6..));
///
/// let card = Cardinality::from((usize::MAX - 1)..=(usize::MAX));
/// assert_eq!(card * 2, Cardinality::from((usize::MAX)..));
/// ```
fn mul(self, rhs: T) -> Self::Output {
let rhs: Self = rhs.into();
let lo = self.lo().saturating_mul(rhs.lo());
let hi = if let (Some(lhs), Some(rhs)) = (self.hi(), rhs.hi()) {
lhs.checked_mul(rhs)
} else {
None
};
Self::new(lo, hi)
}
}
impl Cardinality {
/// Returns the cardinality if it is exact, `None` otherwise.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card = Cardinality::from(3..=3);
/// assert_eq!(card.get_exact(), Some(3));
///
/// let card = Cardinality::from(3..=4);
/// assert_eq!(card.get_exact(), None);
/// ```
pub fn get_exact(self) -> Option<usize> {
self.hi().filter(|hi| *hi == self.lo())
}
/// Returns `true` if the cardinality is at most `count` rows.
///
/// ```
/// # use risingwave_frontend::optimizer::property::Cardinality;
/// let card = Cardinality::from(3..=5);
/// assert!(card.is_at_most(5));
/// assert!(card.is_at_most(6));
/// assert!(!card.is_at_most(4));
///
/// let card = Cardinality::from(3..);
/// assert!(!card.is_at_most(usize::MAX));
/// ```
pub fn is_at_most(self, count: usize) -> bool {
self.hi().is_some_and(|hi| hi <= count)
}
}
impl Cardinality {
pub fn to_protobuf(self) -> PbCardinality {
PbCardinality {
lo: self.lo as u64,
hi: self.hi().map(|hi| hi as u64),
}
}
pub fn from_protobuf(pb: &PbCardinality) -> Self {
Self::new(pb.lo as usize, pb.hi.map(|hi| hi as usize))
}
}