jsonbb 0.2.3

A binary representation of json value, optimized for parsing and querying.
Documentation
// 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.

//! `PartialEq` implementations for `ValueRef` and `Value`.

use crate::ValueRef;

use super::Value;

fn eq_i64(value: ValueRef<'_>, other: i64) -> bool {
    value.as_i64() == Some(other)
}

fn eq_u64(value: ValueRef<'_>, other: u64) -> bool {
    value.as_u64() == Some(other)
}

fn eq_f32(value: ValueRef<'_>, other: f32) -> bool {
    match value {
        ValueRef::Number(n) => n.as_f32() == Some(other),
        _ => false,
    }
}

fn eq_f64(value: ValueRef<'_>, other: f64) -> bool {
    value.as_f64() == Some(other)
}

fn eq_bool(value: ValueRef<'_>, other: bool) -> bool {
    value.as_bool() == Some(other)
}

fn eq_str(value: ValueRef<'_>, other: &str) -> bool {
    value.as_str() == Some(other)
}

impl PartialEq<str> for ValueRef<'_> {
    fn eq(&self, other: &str) -> bool {
        eq_str(*self, other)
    }
}

impl PartialEq<&str> for ValueRef<'_> {
    fn eq(&self, other: &&str) -> bool {
        eq_str(*self, other)
    }
}

impl PartialEq<ValueRef<'_>> for str {
    fn eq(&self, other: &ValueRef<'_>) -> bool {
        eq_str(*other, self)
    }
}

impl PartialEq<ValueRef<'_>> for &str {
    fn eq(&self, other: &ValueRef<'_>) -> bool {
        eq_str(*other, self)
    }
}

impl PartialEq<String> for ValueRef<'_> {
    fn eq(&self, other: &String) -> bool {
        eq_str(*self, other.as_str())
    }
}

impl PartialEq<ValueRef<'_>> for String {
    fn eq(&self, other: &ValueRef<'_>) -> bool {
        eq_str(*other, self.as_str())
    }
}

macro_rules! partialeq_numeric {
    ($($eq:ident [$($ty:ty)*])*) => {
        $($(
            impl PartialEq<$ty> for ValueRef<'_> {
                fn eq(&self, other: &$ty) -> bool {
                    $eq(*self, *other as _)
                }
            }

            impl PartialEq<Value> for $ty {
                fn eq(&self, other: &Value) -> bool {
                    $eq(other.as_ref(), *self as _)
                }
            }

            impl<'a> PartialEq<$ty> for &'a Value {
                fn eq(&self, other: &$ty) -> bool {
                    $eq(self.as_ref(), *other as _)
                }
            }
        )*)*
    }
}

partialeq_numeric! {
    eq_i64[i8 i16 i32 i64 isize]
    eq_u64[u8 u16 u32 u64 usize]
    eq_f32[f32]
    eq_f64[f64]
    eq_bool[bool]
}