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
use crate::std::{fmt, marker::PhantomData};
use crate::{
internal::{Internal, InternalVisitor},
Error, ValueBag,
};
impl<'v> ValueBag<'v> {
/// Try get a collection `S` of `u64`s from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the attempted conversion of each of its elements.
///
/// If this value is not a sequence then this method will return `None`.
pub fn to_u64_seq<S: Default + Extend<Option<u64>>>(&self) -> Option<S> {
self.inner.seq::<ExtendPrimitive<S, u64>>().map(|seq| seq.0)
}
/// Try get a collection `S` of `i64`s from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the attempted conversion of each of its elements.
///
/// If this value is not a sequence then this method will return `None`.
pub fn to_i64_seq<S: Default + Extend<Option<i64>>>(&self) -> Option<S> {
self.inner.seq::<ExtendPrimitive<S, i64>>().map(|seq| seq.0)
}
/// Try get a collection `S` of `u128`s from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the attempted conversion of each of its elements.
///
/// If this value is not a sequence then this method will return `None`.
pub fn to_u128_seq<S: Default + Extend<Option<u128>>>(&self) -> Option<S> {
self.inner
.seq::<ExtendPrimitive<S, u128>>()
.map(|seq| seq.0)
}
/// Try get a collection `S` of `i128`s from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the attempted conversion of each of its elements.
///
/// If this value is not a sequence then this method will return `None`.
pub fn to_i128_seq<S: Default + Extend<Option<i128>>>(&self) -> Option<S> {
self.inner
.seq::<ExtendPrimitive<S, i128>>()
.map(|seq| seq.0)
}
/// Try get a collection `S` of `f64`s from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the attempted conversion of each of its elements.
///
/// If this value is not a sequence then this method will return `None`.
pub fn to_f64_seq<S: Default + Extend<Option<f64>>>(&self) -> Option<S> {
self.inner.seq::<ExtendPrimitive<S, f64>>().map(|seq| seq.0)
}
/// Get a collection `S` of `f64`s from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the conversion of each of its elements. The conversion is the
/// same as [`ValueBag::as_f64`].
///
/// If this value is not a sequence then this method will return an
/// empty collection.
///
/// This is similar to [`ValueBag::to_f64_seq`], but can be more
/// convenient when there's no need to distinguish between an empty
/// collection and a non-collection, or between `f64` and non-`f64` elements.
pub fn as_f64_seq<S: Default + Extend<f64>>(&self) -> S {
#[derive(Default)]
struct ExtendF64<S>(S);
impl<'a, S: Extend<f64>> ExtendValue<'a> for ExtendF64<S> {
fn extend<'b>(&mut self, inner: Internal<'b>) {
self.0.extend(Some(ValueBag { inner }.as_f64()))
}
}
self.inner.seq::<ExtendF64<S>>().map(|seq| seq.0).unwrap_or_default()
}
/// Try get a collection `S` of `bool`s from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the attempted conversion of each of its elements.
///
/// If this value is not a sequence then this method will return `None`.
pub fn to_bool_seq<S: Default + Extend<Option<bool>>>(&self) -> Option<S> {
self.inner
.seq::<ExtendPrimitive<S, bool>>()
.map(|seq| seq.0)
}
}
#[cfg(feature = "alloc")]
mod alloc_support {
use super::*;
use crate::std::borrow::Cow;
impl<'v> ValueBag<'v> {
/// Try get a collection `S` of strings from this value.
///
/// If this value is a sequence then the collection `S` will be extended
/// with the attempted conversion of each of its elements.
///
/// If this value is not a sequence then this method will return `None`.
#[inline]
pub fn to_str_seq<S: Default + Extend<Option<Cow<'v, str>>>>(&self) -> Option<S> {
#[derive(Default)]
struct ExtendStr<'a, S>(S, PhantomData<Cow<'a, str>>);
impl<'a, S: Extend<Option<Cow<'a, str>>>> ExtendValue<'a> for ExtendStr<'a, S> {
fn extend<'b>(&mut self, inner: Internal<'b>) {
self.0.extend(Some(
ValueBag { inner }
.to_str()
.map(|s| Cow::Owned(s.into_owned())),
))
}
fn extend_borrowed(&mut self, inner: Internal<'a>) {
self.0.extend(Some(ValueBag { inner }.to_str()))
}
}
self.inner.seq::<ExtendStr<'v, S>>().map(|seq| seq.0)
}
}
}
#[derive(Default)]
struct ExtendPrimitive<S, T>(S, PhantomData<T>);
impl<'a, S: Extend<Option<T>>, T: for<'b> TryFrom<ValueBag<'b>>> ExtendValue<'a>
for ExtendPrimitive<S, T>
{
fn extend<'b>(&mut self, inner: Internal<'b>) {
self.0.extend(Some(ValueBag { inner }.try_into().ok()))
}
}
pub(crate) trait ExtendValue<'v> {
fn extend<'a>(&mut self, v: Internal<'a>);
fn extend_borrowed(&mut self, v: Internal<'v>) {
self.extend(v);
}
}
impl<'v> Internal<'v> {
#[inline]
fn seq<S: Default + ExtendValue<'v>>(&self) -> Option<S> {
struct SeqVisitor<S>(Option<S>);
impl<'v, S: Default + ExtendValue<'v>> InternalVisitor<'v> for SeqVisitor<S> {
#[inline]
fn debug(&mut self, _: &dyn fmt::Debug) -> Result<(), Error> {
Ok(())
}
#[inline]
fn display(&mut self, _: &dyn fmt::Display) -> Result<(), Error> {
Ok(())
}
#[inline]
fn u64(&mut self, _: u64) -> Result<(), Error> {
Ok(())
}
#[inline]
fn i64(&mut self, _: i64) -> Result<(), Error> {
Ok(())
}
#[inline]
fn u128(&mut self, _: &u128) -> Result<(), Error> {
Ok(())
}
#[inline]
fn i128(&mut self, _: &i128) -> Result<(), Error> {
Ok(())
}
#[inline]
fn f64(&mut self, _: f64) -> Result<(), Error> {
Ok(())
}
#[inline]
fn bool(&mut self, _: bool) -> Result<(), Error> {
Ok(())
}
#[inline]
fn char(&mut self, _: char) -> Result<(), Error> {
Ok(())
}
#[inline]
fn str(&mut self, _: &str) -> Result<(), Error> {
Ok(())
}
#[inline]
fn none(&mut self) -> Result<(), Error> {
Ok(())
}
#[cfg(feature = "error")]
#[inline]
fn error(&mut self, _: &dyn crate::internal::error::Error) -> Result<(), Error> {
Ok(())
}
#[cfg(feature = "sval2")]
#[inline]
fn sval2(&mut self, v: &dyn crate::internal::sval::v2::Value) -> Result<(), Error> {
self.0 = crate::internal::sval::v2::seq::extend(v);
Ok(())
}
#[cfg(feature = "sval2")]
#[inline]
fn borrowed_sval2(
&mut self,
v: &'v dyn crate::internal::sval::v2::Value,
) -> Result<(), Error> {
self.0 = crate::internal::sval::v2::seq::extend_borrowed(v);
Ok(())
}
#[cfg(feature = "serde1")]
#[inline]
fn serde1(
&mut self,
v: &dyn crate::internal::serde::v1::Serialize,
) -> Result<(), Error> {
self.0 = crate::internal::serde::v1::seq::extend(v);
Ok(())
}
fn poisoned(&mut self, _: &'static str) -> Result<(), Error> {
Ok(())
}
}
let mut visitor = SeqVisitor(None);
let _ = self.internal_visit(&mut visitor);
visitor.0
}
}